:root {
  --v-cardio-bg: #090c15;
  --v-cardio-surface: #121826;
  --v-cardio-surface-elevated: #1b233a;
  --v-cardio-glass: rgba(18, 24, 38, 0.75);
  --v-cardio-glass-border: rgba(255, 255, 255, 0.1);
  --v-cardio-pulse: #00f0ff;
  --v-cardio-pulse-glow: rgba(0, 240, 255, 0.35);
  --v-cardio-vitality: #39ff14;
  --v-cardio-vitality-glow: rgba(57, 255, 20, 0.25);
  --v-cardio-ink-primary: #ffffff;
  --v-cardio-ink-secondary: #94a3b8;
  --v-cardio-ink-muted: #64748b;
  --v-cardio-gradient-glow: linear-gradient(135deg, #00f0ff 0%, #39ff14 100%);
  --v-cardio-font-heading: 'Montserrat', sans-serif;
  --v-cardio-font-text: 'Open Sans', sans-serif;
  --v-cardio-radius: 16px;
  --v-cardio-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --v-cardio-shadow-deep: 0 10px 30px -5px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 240, 255, 0.1);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 15px var(--v-cardio-pulse-glow); }
  50% { box-shadow: 0 0 25px rgba(0, 240, 255, 0.6); }
  100% { box-shadow: 0 0 15px var(--v-cardio-pulse-glow); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideProgress {
  from { width: 0%; }
  to { width: 100%; }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--v-cardio-bg);
  color: var(--v-cardio-ink-primary);
  font-family: var(--v-cardio-font-text);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* Header & Navigation */
.v-cardio-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--v-cardio-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--v-cardio-glass-border);
}

.v-cardio-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v-cardio-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--v-cardio-ink-primary);
  font-family: var(--v-cardio-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.v-cardio-branding svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 8px var(--v-cardio-pulse));
}

.v-cardio-menu-toggle {
  display: none;
}

.v-cardio-hamburger-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.v-cardio-hamburger-icon span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--v-cardio-ink-primary);
  border-radius: 2px;
  transition: var(--v-cardio-transition);
}

.v-cardio-nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.v-cardio-nav-links a {
  text-decoration: none;
  color: var(--v-cardio-ink-secondary);
  font-family: var(--v-cardio-font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--v-cardio-transition);
  position: relative;
  padding: 0.5rem 0;
}

.v-cardio-nav-links a:hover,
.v-cardio-nav-links a.active {
  color: var(--v-cardio-pulse);
  text-shadow: 0 0 10px var(--v-cardio-pulse-glow);
}

.v-cardio-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--v-cardio-gradient-glow);
  transition: var(--v-cardio-transition);
}

.v-cardio-nav-links a:hover::after,
.v-cardio-nav-links a.active::after {
  width: 100%;
}

.v-cardio-scroll-tracker {
  height: 4px;
  background: var(--v-cardio-gradient-glow);
  width: 0%;
  position: absolute;
  bottom: 0;
  left: 0;
  animation: slideProgress linear;
  animation-timeline: scroll();
}

/* Footer Section */
.v-cardio-footer-section {
  background: var(--v-cardio-bg);
  border-top: 1px solid var(--v-cardio-glass-border);
  padding: 4rem 2rem 2rem;
  margin-top: auto;
}

.v-cardio-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.v-cardio-footer-col h4 {
  font-family: var(--v-cardio-font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--v-cardio-pulse);
  letter-spacing: 1px;
}

.v-cardio-footer-col p {
  color: var(--v-cardio-ink-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.v-cardio-footer-links {
  list-style: none;
}

.v-cardio-footer-links li {
  margin-bottom: 0.75rem;
}

.v-cardio-footer-links a {
  text-decoration: none;
  color: var(--v-cardio-ink-secondary);
  font-size: 0.95rem;
  transition: var(--v-cardio-transition);
}

.v-cardio-footer-links a:hover {
  color: var(--v-cardio-vitality);
  padding-left: 5px;
}

.v-cardio-disclaimer-box {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
  background: var(--v-cardio-surface);
  border-radius: var(--v-cardio-radius);
  border: 1px solid var(--v-cardio-glass-border);
  margin-bottom: 2rem;
  font-size: 0.85rem;
  color: var(--v-cardio-ink-muted);
  text-align: center;
}

.v-cardio-copyright-row {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--v-cardio-ink-muted);
}

/* Base Styles & Utility Classes */
.v-cardio-btn-primary {
  display: inline-block;
  background: var(--v-cardio-gradient-glow);
  color: var(--v-cardio-bg);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--v-cardio-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
  transition: var(--v-cardio-transition);
  border: none;
  cursor: pointer;
}

.v-cardio-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 240, 255, 0.5);
}

.v-cardio-btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--v-cardio-pulse);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-family: var(--v-cardio-font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: 2px solid var(--v-cardio-pulse);
  transition: var(--v-cardio-transition);
  cursor: pointer;
}

.v-cardio-btn-secondary:hover {
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: var(--v-cardio-glow);
}

/* Preset D - Dark Immersive Elements */

/* Hero Index Template */
.v-immersive-sky-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(18, 24, 38, 0.4) 0%, rgba(9, 12, 21, 0.95) 100%), url('img/bg.webp') no-repeat center center/cover;
  padding: 8rem 2rem 4rem;
}

.v-immersive-glass-shield {
  background: var(--v-cardio-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--v-cardio-glass-border);
  border-radius: var(--v-cardio-radius);
  padding: 4rem;
  max-width: 800px;
  width: 100%;
  text-align: center;
  box-shadow: var(--v-cardio-shadow-deep);
  animation: fadeIn 1s ease-out;
}

.v-immersive-glass-shield h1 {
  font-family: var(--v-cardio-font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.v-immersive-glass-shield p {
  font-size: 1.2rem;
  color: var(--v-cardio-ink-secondary);
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Split Content Section */
.v-immersive-zig-panel {
  background: var(--v-cardio-bg);
  padding: 10dvh 2rem;
}

.v-immersive-zig-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.v-immersive-zig-visual {
  flex: 1;
  border-radius: var(--v-cardio-radius);
  overflow: hidden;
  box-shadow: var(--v-cardio-shadow-deep);
  border: 1px solid var(--v-cardio-glass-border);
  position: relative;
  min-height: 450px;
}

.v-immersive-zig-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.v-immersive-zig-editorial {
  flex: 1;
}

.v-immersive-zig-editorial h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--v-cardio-pulse);
  letter-spacing: 1px;
}

.v-immersive-zig-editorial p {
  color: var(--v-cardio-ink-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.v-immersive-zig-bullets {
  list-style: none;
}

.v-immersive-zig-bullets li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  color: var(--v-cardio-ink-primary);
}

.v-immersive-zig-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--v-cardio-vitality);
  box-shadow: 0 0 8px var(--v-cardio-vitality-glow);
}

/* Features Grid Section */
.v-features-deck-section {
  padding: 10dvh 2rem;
  background: radial-gradient(circle at top right, rgba(18, 24, 38, 0.6) 0%, rgba(9, 12, 21, 1) 100%);
  border-top: 1px solid var(--v-cardio-glass-border);
  border-bottom: 1px solid var(--v-cardio-glass-border);
}

.v-features-deck-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.v-features-deck-header h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.v-features-deck-header p {
  color: var(--v-cardio-ink-secondary);
  font-size: 1.1rem;
}

.v-features-triple-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.v-features-glass-card {
  background: var(--v-cardio-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--v-cardio-glass-border);
  border-top: 3px solid var(--v-cardio-pulse);
  border-radius: var(--v-cardio-radius);
  padding: 3rem 2rem;
  transition: var(--v-cardio-transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.v-features-glass-card:hover {
  transform: translateY(-5px);
  border-top-color: var(--v-cardio-vitality);
  box-shadow: var(--v-cardio-shadow-deep);
}

.v-features-card-icon {
  margin-bottom: 1.5rem;
  color: var(--v-cardio-vitality);
}

.v-features-card-icon svg {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 5px var(--v-cardio-vitality-glow));
}

.v-features-glass-card h3 {
  font-family: var(--v-cardio-font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.v-features-glass-card p {
  color: var(--v-cardio-ink-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Timeline/How it works */
.v-timeline-ladder-section {
  padding: 10dvh 2rem;
  background: var(--v-cardio-bg);
}

.v-timeline-ladder-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 5rem;
}

.v-timeline-ladder-header h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.v-timeline-vertical-spine {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.v-timeline-vertical-spine::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--v-cardio-gradient-glow);
}

.v-timeline-spine-block {
  position: relative;
  margin-bottom: 4rem;
}

.v-timeline-spine-block:last-child {
  margin-bottom: 0;
}

.v-timeline-spine-node {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--v-cardio-bg);
  border: 3px solid var(--v-cardio-pulse);
  box-shadow: 0 0 15px var(--v-cardio-pulse-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.v-timeline-spine-content {
  background: var(--v-cardio-surface);
  border-radius: var(--v-cardio-radius);
  border: 1px solid var(--v-cardio-glass-border);
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.v-timeline-spine-content h3 {
  font-family: var(--v-cardio-font-heading);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--v-cardio-pulse);
}

.v-timeline-spine-content p {
  color: var(--v-cardio-ink-secondary);
  font-size: 1rem;
}

/* CTA Strip */
.v-cta-dark-strip {
  padding: 8dvh 2rem;
  background: radial-gradient(circle at bottom left, rgba(27, 35, 58, 0.8) 0%, rgba(9, 12, 21, 1) 100%);
  border-top: 1px solid var(--v-cardio-glass-border);
  border-bottom: 1px solid var(--v-cardio-glass-border);
  text-align: center;
}

.v-cta-dark-container {
  max-width: 800px;
  margin: 0 auto;
}

.v-cta-dark-container h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #fff;
}

.v-cta-dark-container p {
  color: var(--v-cardio-ink-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

/* Expert Specific Styles */
.v-immersive-expert-hero {
  padding: 6rem 2rem 4rem;
  background: radial-gradient(circle at top left, rgba(27, 35, 58, 0.7) 0%, rgba(9, 12, 21, 1) 100%), url('img/bg3.webp') no-repeat center center/cover;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.v-expert-bio-wrap {
  padding: 10dvh 2rem;
  background: var(--v-cardio-bg);
}

.v-expert-bio-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  align-items: center;
}

.v-expert-bio-visual {
  flex: 1;
  border-radius: var(--v-cardio-radius);
  overflow: hidden;
  box-shadow: var(--v-cardio-shadow-deep);
  border: 1px solid var(--v-cardio-glass-border);
  height: 500px;
  position: relative;
}

.v-expert-bio-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v-expert-bio-text {
  flex: 1.2;
}

.v-expert-bio-text h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--v-cardio-pulse);
}

.v-expert-bio-text p {
  color: var(--v-cardio-ink-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.v-immersive-accordion-section {
  padding: 8dvh 2rem;
  background: var(--v-cardio-surface);
  border-top: 1px solid var(--v-cardio-glass-border);
}

.v-immersive-accordion-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.v-immersive-accordion-wrap h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.v-accordion-custom-item {
  background: var(--v-cardio-bg);
  border-radius: var(--v-cardio-radius);
  border: 1px solid var(--v-cardio-glass-border);
  padding: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 4.5rem;
}

.v-accordion-custom-item::before {
  content: counter(accordion-counter, decimal-leading-zero);
  counter-increment: accordion-counter;
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  font-family: var(--v-cardio-font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--v-cardio-vitality);
}

.v-accordion-custom-item h3 {
  font-family: var(--v-cardio-font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.75rem;
}

.v-accordion-custom-item p {
  color: var(--v-cardio-ink-secondary);
  font-size: 0.95rem;
}

.v-expert-stats-track {
  background: radial-gradient(circle at bottom center, rgba(18, 24, 38, 0.8) 0%, rgba(9, 12, 21, 1) 100%);
  padding: 6rem 2rem;
  border-top: 1px solid var(--v-cardio-glass-border);
}

.v-stats-linear-row {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.v-stat-focus-box {
  background: var(--v-cardio-glass);
  border: 1px solid var(--v-cardio-glass-border);
  border-radius: var(--v-cardio-radius);
  padding: 2.5rem 1.5rem;
}

.v-stat-focus-box .v-stat-num {
  font-family: var(--v-cardio-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--v-cardio-pulse);
  margin-bottom: 0.5rem;
  text-shadow: 0 0 10px var(--v-cardio-pulse-glow);
}

.v-stat-focus-box .v-stat-lbl {
  color: var(--v-cardio-ink-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Reserve Specific Styles */
.v-immersive-booking-platform {
  padding: 8rem 2rem 6rem;
  background: radial-gradient(circle at top right, rgba(27, 35, 58, 0.8) 0%, rgba(9, 12, 21, 1) 100%);
  min-height: 100vh;
}

.v-booking-stellar-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.v-booking-benefits-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v-booking-benefits-stack h1 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.v-booking-benefits-stack p {
  color: var(--v-cardio-ink-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.v-benefit-stellar-card {
  background: var(--v-cardio-surface);
  border: 1px solid var(--v-cardio-glass-border);
  border-radius: var(--v-cardio-radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.5rem;
}

.v-benefit-icon-node {
  color: var(--v-cardio-pulse);
}

.v-benefit-icon-node svg {
  width: 32px;
  height: 32px;
}

.v-benefit-desc-node h3 {
  font-family: var(--v-cardio-font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}

.v-benefit-desc-node p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--v-cardio-ink-secondary);
}

.v-benefit-desc-node ul {
  list-style: none;
  margin-top: 1rem;
}

.v-benefit-desc-node ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.v-benefit-desc-node ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--v-cardio-vitality);
}

.v-immersive-interactive-card {
  background: var(--v-cardio-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--v-cardio-glass-border);
  border-radius: var(--v-cardio-radius);
  padding: 3rem;
  box-shadow: var(--v-cardio-shadow-deep);
}

.v-immersive-interactive-card h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
  color: #fff;
}

.v-stellar-interactive-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.v-form-group-stellar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.v-form-group-stellar label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--v-cardio-pulse);
  font-weight: 600;
}

.v-form-group-stellar input,
.v-form-group-stellar textarea {
  background: var(--v-cardio-surface-elevated);
  border: 1px solid var(--v-cardio-glass-border);
  border-radius: 8px;
  padding: 1rem;
  color: #fff;
  font-family: var(--v-cardio-font-text);
  font-size: 1rem;
  transition: var(--v-cardio-transition);
  width: 100%;
}

.v-form-group-stellar input:focus,
.v-form-group-stellar textarea:focus {
  outline: none;
  border-color: var(--v-cardio-pulse);
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.v-checkbox-stellar-shield {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--v-cardio-ink-secondary);
}

.v-checkbox-stellar-shield input {
  width: 18px;
  height: 18px;
  accent-color: var(--v-cardio-pulse);
  margin-top: 3px;
}

.v-checkbox-stellar-shield a {
  color: var(--v-cardio-pulse);
  text-decoration: none;
}

.v-checkbox-stellar-shield a:hover {
  text-decoration: underline;
}

.v-mailto-lead {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--v-cardio-ink-secondary);
}

.v-mailto-lead a {
  color: var(--v-cardio-vitality);
  text-decoration: none;
  font-weight: bold;
}

.v-mailto-lead a:hover {
  text-decoration: underline;
}

/* FAQ Accordion Section */
.v-faq-elevated-section {
  padding: 8rem 2rem;
  background: var(--v-cardio-bg);
  border-top: 1px solid var(--v-cardio-glass-border);
}

.v-faq-elevated-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.v-faq-elevated-wrap h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 3rem;
}

.v-faq-stellar-item {
  margin-bottom: 1.5rem;
}

.v-faq-stellar-question {
  background: var(--v-cardio-surface);
  border: 1px solid var(--v-cardio-glass-border);
  border-radius: var(--v-cardio-radius);
  padding: 1.5rem 2rem;
  font-family: var(--v-cardio-font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--v-cardio-pulse);
}

.v-faq-stellar-answer {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--v-cardio-glass-border);
  border-top: none;
  border-bottom-left-radius: var(--v-cardio-radius);
  border-bottom-right-radius: var(--v-cardio-radius);
  padding: 1.5rem 2rem;
  color: var(--v-cardio-ink-secondary);
  font-size: 0.95rem;
}

/* Static Docs Pages */
.v-doc-immersion-wall {
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
}

.v-doc-immersion-wall h1 {
  font-family: var(--v-cardio-font-heading);
  font-size: 2.75rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #fff;
  border-bottom: 2px solid var(--v-cardio-glass-border);
  padding-bottom: 1rem;
}

.v-doc-immersion-wall h2 {
  font-family: var(--v-cardio-font-heading);
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--v-cardio-pulse);
}

.v-doc-immersion-wall p {
  font-size: 1.1rem;
  color: var(--v-cardio-ink-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Cookie Banner */
.v-immersion-cookie-guard {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(18, 24, 38, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--v-cardio-glass-border);
  padding: 1.5rem 2rem;
  display: none;
  animation: fadeIn 0.5s ease-out;
}

.v-cookie-guard-anchor {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.v-cookie-guard-text {
  color: var(--v-cardio-ink-secondary);
  font-size: 0.95rem;
}

.v-cookie-guard-keys {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Response Thank You */
.v-immersive-thank-card {
  text-align: center;
  background: radial-gradient(circle at center, rgba(18, 24, 38, 0.5) 0%, rgba(9, 12, 21, 0.98) 100%), url('img/bg3.webp') no-repeat center center/cover;
  min-height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

/* Responsive Adaptability */
@media (max-width: 992px) {
  .v-immersive-zig-container,
  .v-expert-bio-grid,
  .v-booking-stellar-grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .v-booking-stellar-grid {
    grid-template-columns: 1fr;
  }

  .v-features-triple-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .v-stats-linear-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .v-cardio-hamburger-icon {
    display: flex;
  }

  .v-cardio-nav-links {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background: rgba(9, 12, 21, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.5rem;
    transition: var(--v-cardio-transition);
    z-index: 999;
    border-top: 1px solid var(--v-cardio-glass-border);
  }

  .v-cardio-menu-toggle:checked ~ .v-cardio-nav-links {
    left: 0;
  }

  .v-cardio-menu-toggle:checked ~ .v-cardio-hamburger-icon span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .v-cardio-menu-toggle:checked ~ .v-cardio-hamburger-icon span:nth-child(2) {
    opacity: 0;
  }

  .v-cardio-menu-toggle:checked ~ .v-cardio-hamburger-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .v-immersive-glass-shield {
    padding: 2.5rem 1.5rem;
  }

  .v-immersive-glass-shield h1 {
    font-size: 2rem;
  }

  .v-immersive-glass-shield p {
    font-size: 1rem;
  }

  .v-footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .v-cookie-guard-anchor {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}