/* style.css - Visual Theme: Dark & Modern (Professional Dark Preset A) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --focus-bg-dark: #0a0f18;
  --focus-surface-dark: #121824;
  --focus-tone-cyan: #00f2fe;
  --focus-tone-hover: #4facfe;
  --focus-text-light: #f8fafc;
  --focus-text-muted: #94a3b8;
  --focus-border-color: rgba(255, 255, 255, 0.08);
  --focus-gradient: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
  --focus-overlay: rgba(10, 15, 24, 0.75);
  
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --eye-padding-spacious: 16dvh;
  --eye-radius-soft: 16px;
  --eye-shadow-deep: 0 20px 40px -15px rgba(0, 0, 0, 0.7);
  --eye-transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets & typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  background-color: var(--focus-bg-dark);
  color: var(--focus-text-light);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--eye-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Scroll progress bar */
.vision-progress-track {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  z-index: 10001;
}

.vision-progress-bar {
  height: 100%;
  background: var(--focus-gradient);
  width: 0%;
  animation: vision-scroll-progress linear;
  animation-timeline: scroll(root);
}

@keyframes vision-scroll-progress {
  to { width: 100%; }
}

/* HEADER styling (Preset A: Dark, sticky, navigation right) */
.vision-header-bar {
  position: sticky;
  top: 0;
  z-index: 10000;
  background-color: var(--focus-surface-dark);
  border-bottom: 1px solid var(--focus-border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.vision-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vision-brand-anchor {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--focus-text-light);
}

.vision-brand-icon {
  width: 35px;
  height: 35px;
  fill: var(--focus-tone-cyan);
}

.vision-navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vision-nav-item {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 0;
}

.vision-nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--focus-tone-cyan);
  transition: var(--eye-transition);
}

.vision-nav-item:hover::after {
  width: 100%;
}

.vision-nav-item:hover {
  color: var(--focus-tone-cyan);
}

/* Mobile Hamburger Menu via CSS Checkbox */
.vision-hamburger-checkbox {
  display: none;
}

.vision-hamburger-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.vision-hamburger-line {
  width: 28px;
  height: 3px;
  background-color: var(--focus-text-light);
  border-radius: 2px;
  transition: var(--eye-transition);
}

/* FOOTER styling */
.vision-footer-wrapper {
  background-color: var(--focus-bg-dark);
  border-top: 1px solid var(--focus-border-color);
  padding: 5rem 2rem 2rem 2rem;
}

.vision-footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.vision-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 4rem;
}

.vision-footer-identity {
  max-width: 400px;
}

.vision-footer-desc {
  color: var(--focus-text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.vision-footer-nav-hub {
  display: flex;
  gap: 4rem;
}

.vision-footer-col-title {
  font-size: 1.1rem;
  color: var(--focus-text-light);
  margin-bottom: 1.2rem;
}

.vision-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.vision-footer-link {
  color: var(--focus-text-muted);
  font-size: 0.9rem;
}

.vision-footer-link:hover {
  color: var(--focus-tone-cyan);
}

.vision-footer-disclaimer-box {
  border-top: 1px solid var(--focus-border-color);
  padding-top: 2rem;
  text-align: center;
}

.vision-disclaimer-txt {
  font-size: 0.8rem;
  color: var(--focus-text-muted);
  max-width: 800px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.5;
}

.vision-copyright-txt {
  font-size: 0.85rem;
  color: var(--focus-text-muted);
}

/* HERO Section (index.html, fullscreen 100vh) */
.sight-splash-wrapper {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sight-splash-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 24, 0.4) 0%, var(--focus-bg-dark) 100%);
}

.sight-splash-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 850px;
  padding: 0 1.5rem;
}

.sight-splash-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--focus-text-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.sight-splash-sub {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--focus-text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Floating Stat bar under hero */
.sight-stat-strip {
  position: relative;
  margin-top: -80px;
  z-index: 10;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

.sight-stat-row {
  display: flex;
  gap: 1.5rem;
  background-color: var(--focus-surface-dark);
  border: 1px solid var(--focus-border-color);
  border-radius: var(--eye-radius-soft);
  padding: 2.5rem;
  box-shadow: var(--eye-shadow-deep);
}

.sight-stat-card {
  flex: 1;
  text-align: center;
  border-right: 1px solid var(--focus-border-color);
}

.sight-stat-card:last-child {
  border-right: none;
}

.sight-stat-value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--focus-tone-cyan);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sight-stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--focus-text-muted);
  letter-spacing: 1px;
}

/* Buttons */
.eye-button-pill {
  display: inline-flex;
  align-items: center;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  background: var(--focus-gradient);
  color: #05050a;
  box-shadow: 0 8px 30px rgba(0, 242, 254, 0.3);
  transition: var(--eye-transition);
}

.eye-button-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 242, 254, 0.5);
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.eye-button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  border: 2px solid var(--focus-tone-cyan);
  color: var(--focus-text-light);
  background: transparent;
  transition: var(--eye-transition);
}

.eye-button-secondary:hover {
  background-color: var(--focus-tone-cyan);
  color: #05050a;
  box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
}

/* Section Common Spacing and Viewport animations */
.retina-content-section {
  padding: var(--eye-padding-spacious) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(40px);
  animation: revealSection linear forwards;
  animation-timeline: view();
  animation-range: entry 104vh90 exit 90%;
}

@keyframes revealSection {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.retina-section-hdr {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.retina-section-pre {
  color: var(--focus-tone-cyan);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 0.8rem;
}

.retina-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.retina-section-desc {
  color: var(--focus-text-muted);
  font-size: 1.1rem;
}

/* ZigZag Content Sections (Preset A) */
.retina-zigzag-group {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 4rem;
}

.retina-zigzag-item {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.retina-zigzag-item:nth-child(even) {
  flex-direction: row-reverse;
}

.retina-zigzag-media {
  flex: 1;
  position: relative;
}

.retina-zigzag-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--eye-radius-soft);
  box-shadow: var(--eye-shadow-deep);
}

/* Skewed clip paths for Preset A images */
.retina-zigzag-item:nth-child(odd) .retina-zigzag-img {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0% 100%);
}

.retina-zigzag-item:nth-child(even) .retina-zigzag-img {
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
}

.retina-zigzag-body {
  flex: 1;
}

.retina-zigzag-label {
  color: var(--focus-tone-cyan);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
  display: block;
}

.retina-zigzag-headline {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}

.retina-zigzag-txt {
  color: var(--focus-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.retina-zigzag-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.retina-zigzag-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--focus-text-light);
}

.retina-zigzag-bullet svg {
  width: 20px;
  height: 20px;
  fill: var(--focus-tone-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Features Grid (Preset A: 2-row grid with left border and SVGs) */
.focus-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.focus-feature-item {
  background-color: var(--focus-surface-dark);
  border-left: 4px solid var(--focus-tone-cyan);
  border-top: 1px solid var(--focus-border-color);
  border-right: 1px solid var(--focus-border-color);
  border-bottom: 1px solid var(--focus-border-color);
  padding: 3rem;
  border-radius: var(--eye-radius-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--eye-transition);
}

.focus-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--eye-shadow-deep);
  border-left-color: var(--focus-tone-hover);
}

.focus-feature-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--eye-radius-soft);
  background-color: rgba(0, 242, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
}

.focus-feature-icon {
  width: 32px;
  height: 32px;
  fill: var(--focus-tone-cyan);
}

.focus-feature-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--focus-text-light);
}

.focus-feature-desc {
  color: var(--focus-text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Timeline: "How it works" - Vertical flow */
.timeline-steps-flow {
  position: relative;
  max-width: 900px;
  margin: 5rem auto 0 auto;
  padding: 2rem 0;
}

.timeline-steps-flow::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: var(--focus-border-color);
}

.timeline-step-unit {
  position: relative;
  margin-bottom: 4rem;
  width: 100%;
  display: flex;
}

.timeline-step-unit:last-child {
  margin-bottom: 0;
}

.timeline-step-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--focus-surface-dark);
  border: 2px solid var(--focus-tone-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--focus-tone-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
}

.timeline-step-content {
  width: 45%;
  background-color: var(--focus-surface-dark);
  border: 1px solid var(--focus-border-color);
  padding: 2rem;
  border-radius: var(--eye-radius-soft);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-step-unit:nth-child(odd) .timeline-step-content {
  margin-left: auto;
}

.timeline-step-unit:nth-child(even) .timeline-step-content {
  margin-right: auto;
}

.timeline-step-title {
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
  color: var(--focus-text-light);
}

.timeline-step-desc {
  color: var(--focus-text-muted);
  font-size: 0.95rem;
}

/* CTA Strip (Fixed background, centered content) */
.action-call-strip {
  position: relative;
  padding: 10rem 1.5rem;
  background-image: url('img/bg.webp');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.action-call-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--focus-overlay);
}

.action-call-content {
  position: relative;
  z-index: 5;
  max-width: 750px;
  margin: 0 auto;
}

.action-call-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1.2rem;
}

.action-call-tag {
  color: var(--focus-text-muted);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* COOKIE BANNER */
.cookie-banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--focus-surface-dark);
  border-top: 1px solid var(--focus-border-color);
  padding: 1.5rem 2rem;
  z-index: 99999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  display: none;
}

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

.cookie-banner-txt {
  font-size: 0.95rem;
  color: var(--focus-text-muted);
  max-width: 800px;
}

.cookie-banner-txt a {
  color: var(--focus-tone-cyan);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
}

.cookie-banner-btn-accept {
  padding: 0.7rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--focus-gradient);
  border-radius: var(--eye-radius-soft);
  color: #05050a;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-banner-btn-decline {
  padding: 0.7rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: transparent;
  border: 1px solid var(--focus-border-color);
  border-radius: var(--eye-radius-soft);
  color: var(--focus-text-muted);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-banner-btn-decline:hover {
  border-color: var(--focus-text-muted);
  color: var(--focus-text-light);
}

/* EXPERT PAGE SPECIFICS */
.expert-profile-section {
  padding: var(--eye-padding-spacious) 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.expert-profile-split {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.expert-profile-media {
  flex: 1;
}

.expert-profile-img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: var(--eye-radius-soft);
  box-shadow: var(--eye-shadow-deep);
}

.expert-profile-info {
  flex: 1;
}

.expert-profile-tag {
  color: var(--focus-tone-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: block;
}

.expert-profile-name {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
}

.expert-profile-bio {
  color: var(--focus-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Stat row inside Expert */
.expert-stat-row {
  display: flex;
  gap: 1.5rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

/* RESERVE PAGE SPECIFICS */
.booking-page-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 4rem;
  margin-top: 4rem;
  align-items: start;
}

.booking-form-wrapper {
  background-color: var(--focus-surface-dark);
  border: 1px solid var(--focus-border-color);
  padding: 4rem;
  border-radius: var(--eye-radius-soft);
  box-shadow: var(--eye-shadow-deep);
}

.booking-form-headline {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.booking-form-intro {
  color: var(--focus-text-muted);
  margin-bottom: 2.5rem;
}

.booking-input-group {
  margin-bottom: 1.8rem;
}

.booking-input-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.6rem;
  color: var(--focus-text-muted);
}

.booking-input-field {
  width: 100%;
  background-color: var(--focus-bg-dark);
  border: 1px solid var(--focus-border-color);
  border-radius: 8px;
  padding: 1rem;
  color: var(--focus-text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--eye-transition);
}

.booking-input-field:focus {
  outline: none;
  border-color: var(--focus-tone-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.15);
}

.booking-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.85rem;
  color: var(--focus-text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.booking-checkbox-label input {
  margin-top: 3px;
}

.booking-checkbox-label a {
  color: var(--focus-tone-cyan);
}

.faq-accordion-group {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 5rem;
}

.faq-accordion-item {
  background-color: var(--focus-surface-dark);
  border: 1px solid var(--focus-border-color);
  border-radius: var(--eye-radius-soft);
  padding: 1.5rem 2rem;
}

.faq-accordion-item[open] summary {
  border-bottom: 1px solid var(--focus-border-color);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  color: var(--focus-tone-cyan);
}

.faq-accordion-item summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--focus-tone-cyan);
}

.faq-accordion-item[open] summary::after {
  content: '−';
}

.faq-accordion-body {
  color: var(--focus-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.booking-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.booking-info-item {
  background-color: var(--focus-surface-dark);
  border: 1px solid var(--focus-border-color);
  border-radius: var(--eye-radius-soft);
  padding: 2.2rem;
}

.booking-info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.booking-info-icon {
  width: 28px;
  height: 28px;
  fill: var(--focus-tone-cyan);
}

.booking-info-title {
  font-size: 1.2rem;
  color: var(--focus-text-light);
}

.booking-info-desc {
  color: var(--focus-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.booking-bullets-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.booking-bullets-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--focus-text-light);
}

.booking-bullets-circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(0, 242, 254, 0.1);
  color: var(--focus-tone-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.booking-contact-email {
  margin-top: 2rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--focus-text-muted);
}

.booking-contact-email a {
  color: var(--focus-tone-cyan);
  font-weight: 600;
  text-decoration: underline;
}

/* THANK PAGE SPECIFICS */
.thank-splash-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--eye-padding-spacious) 1.5rem;
}

.thank-splash-card {
  max-width: 750px;
  background-color: var(--focus-surface-dark);
  border: 1px solid var(--focus-border-color);
  border-radius: var(--eye-radius-soft);
  overflow: hidden;
  box-shadow: var(--eye-shadow-deep);
  display: flex;
  flex-direction: column;
}

.thank-splash-banner-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.thank-splash-body {
  padding: 4rem 3rem;
  text-align: center;
}

.thank-splash-heading {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.thank-splash-message {
  color: var(--focus-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* DOCUMENT STYLE (Privacy & Terms) */
.legal-document-layout {
  padding: calc(var(--eye-padding-spacious) * 0.7) 1.5rem;
  max-width: 850px;
  margin: 0 auto;
}

.legal-document-layout h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.legal-document-layout h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--focus-text-light);
}

.legal-document-layout p {
  color: var(--focus-text-muted);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.legal-document-layout ul {
  color: var(--focus-text-muted);
  font-size: 1rem;
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
  .vision-hamburger-label {
    display: flex;
  }

  .vision-navbar-links {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background-color: var(--focus-surface-dark);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 1.5rem;
    transition: var(--eye-transition);
    border-top: 1px solid var(--focus-border-color);
  }

  .vision-hamburger-checkbox:checked ~ .vision-navbar-links {
    left: 0;
  }

  .vision-hamburger-checkbox:checked ~ .vision-hamburger-label .vision-hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .vision-hamburger-checkbox:checked ~ .vision-hamburger-label .vision-hamburger-line:nth-child(2) {
    opacity: 0;
  }

  .vision-hamburger-checkbox:checked ~ .vision-hamburger-label .vision-hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .sight-stat-row {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }

  .sight-stat-card {
    border-right: none;
    border-bottom: 1px solid var(--focus-border-color);
    padding-bottom: 1.5rem;
  }

  .sight-stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .retina-zigzag-item, .retina-zigzag-item:nth-child(even) {
    flex-direction: column;
    gap: 3rem;
  }

  .retina-zigzag-img {
    height: 320px;
    clip-path: none !important;
  }

  .focus-feature-grid {
    grid-template-columns: 1fr;
  }

  .timeline-steps-flow::before {
    left: 20px;
  }

  .timeline-step-marker {
    left: 20px;
    transform: none;
  }

  .timeline-step-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }

  .expert-profile-split {
    flex-direction: column;
    gap: 3rem;
  }

  .booking-page-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}