/* Custom CSS Variables - Ophthalmology & Light-Dark Balance Theme */
:root {
  --vis-optic-bg-dark: #0f172a;        /* deep slate 900 */
  --vis-optic-bg-surface: #1e293b;     /* slate 800 */
  --vis-optic-bg-light: #f8fafc;       /* slate 50 */
  --vis-optic-bg-white: #ffffff;
  --vis-optic-accent: #0ea5e9;         /* bright focus sky blue */
  --vis-optic-accent-hover: #38bdf8;   /* lighter blue glow */
  --vis-optic-gold: #f59e0b;           /* warning/attention gold */
  --vis-optic-gold-dark: #d97706;
  --vis-optic-text-dark: #0f172a;
  --vis-optic-text-muted: #64748b;     /* text slate 500 */
  --vis-optic-text-light: #f1f5f9;     /* text slate 100 */
  --vis-optic-border-color: #e2e8f0;   /* border slate 200 */
  
  --vis-font-display: 'Montserrat', sans-serif;
  --vis-font-body: 'Poppins', sans-serif;
  
  --vis-padding-normal: 10dvh;
  --vis-border-soft: 16px;
  --vis-shadow-depth: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --vis-shadow-heavy: 0 20px 40px -15px rgba(15, 23, 42, 0.25);
  --vis-transition-speed: 0.3s;
}

/* Reset & Global Base Settings */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--vis-font-body);
  background-color: var(--vis-optic-bg-light);
  color: var(--vis-optic-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll Progress Bar (Scroll-driven optimization CSS-only) */
@keyframes vis-progress-grow {
  from { width: 0%; }
  to { width: 100%; }
}
.vis-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background-color: var(--vis-optic-accent);
  width: 0%;
  z-index: 99999;
  animation: vis-progress-grow linear;
  animation-timeline: scroll();
}

/* Scroll reveal animations */
@keyframes vis-slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.vis-reveal-active {
  animation: vis-slide-up 0.5s ease-out both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

/* Structural Shell (Constraint wrapper) */
.vis-optic-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER STYLE (Preset A: Dark surface background, sticky) */
.vis-optic-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--vis-optic-bg-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  transition: background-color var(--vis-transition-speed) ease;
}

.vis-optic-header-inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vis-optic-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--vis-optic-text-light);
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.5px;
}

.vis-optic-logo svg {
  width: 32px;
  height: 32px;
  color: var(--vis-optic-accent);
}

.vis-logo span {
  background: linear-gradient(to right, var(--vis-optic-text-light), var(--vis-optic-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navigation & Hamburger Toggle */
.vis-menu-toggle {
  display: none;
}

.vis-hamburger-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.vis-hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--vis-optic-text-light);
  border-radius: 2px;
  transition: all var(--vis-transition-speed) ease;
}

.vis-optic-bar {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.vis-optic-bar-link {
  text-decoration: none;
  font-family: var(--vis-font-display);
  font-weight: 600;
  color: rgba(241, 245, 249, 0.84);
  font-size: 0.95rem;
  transition: color var(--vis-transition-speed) ease;
}

.vis-optic-bar-link:hover,
.vis-optic-bar-link.active {
  color: var(--vis-optic-accent);
}

/* Header CTAs */
.vis-optic-trigger-pill {
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background-color: var(--vis-optic-bg-surface);
  border: 1.5px solid var(--vis-optic-accent);
  color: var(--vis-optic-text-light) !important;
  transition: all var(--vis-transition-speed) ease;
}

.vis-optic-trigger-pill:hover {
  background-color: var(--vis-optic-accent);
  border-color: var(--vis-optic-accent);
  color: var(--vis-optic-bg-dark) !important;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
}

/* HERO SECTION (Preset A: Fullscreen, bg image overlay, centered content) */
.vis-optic-hero-canvas {
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vis-optic-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5;
  color: var(--vis-optic-text-light);
  max-width: 850px;
}

.vis-optic-badge-intro {
  font-family: var(--vis-font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--vis-optic-accent);
  letter-spacing: 2px;
  font-size: 0.85rem;
  background-color: rgba(14, 165, 233, 0.15);
  padding: 0.5rem 1rem;
  border-radius: var(--vis-border-soft);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.vis-optic-main-headline {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.vis-optic-subhead-prose {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 700px;
  margin-bottom: 2.5rem;
  color: rgba(241, 245, 249, 0.88);
}

/* Buttons style */
.vis-optic-trigger-gold {
  display: inline-block;
  text-decoration: none;
  font-family: var(--vis-font-display);
  font-weight: 800;
  background-color: var(--vis-optic-gold);
  color: var(--vis-optic-bg-dark);
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  transition: all var(--vis-transition-speed) ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.vis-optic-trigger-gold:hover {
  background-color: var(--vis-optic-gold-dark);
  color: var(--vis-optic-text-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

/* FLOATING STAT BAR (Preset A item sitting -60px relative below hero) */
.vis-optic-floating-tier {
  position: relative;
  margin-top: -60px;
  z-index: 20;
}

.vis-optic-stat-inner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background-color: var(--vis-optic-bg-white);
  padding: 2.5rem;
  border-radius: var(--vis-border-soft);
  box-shadow: var(--vis-shadow-heavy);
  border: 1px solid var(--vis-optic-border-color);
}

.vis-optic-stat-card {
  text-align: center;
  border-right: 1px solid var(--vis-optic-border-color);
  padding: 0 1rem;
}

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

.vis-optic-stat-num {
  display: block;
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--vis-optic-accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.vis-optic-stat-txt {
  font-size: 0.9rem;
  color: var(--vis-optic-text-muted);
}

/* ZIGZAG & CONTENT SEGMENTS */
.vis-optic-segment-light {
  padding: var(--vis-padding-normal) 0;
  background-color: var(--vis-optic-bg-white);
}

.vis-optic-zigzag-row {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-bottom: 6rem;
}

.vis-optic-zigzag-row:last-child {
  margin-bottom: 0;
}

.vis-optic-zigzag-reverse {
  flex-direction: row-reverse;
}

.vis-optic-zigzag-media {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: var(--vis-border-soft);
  height: 380px;
  box-shadow: var(--vis-shadow-depth);
}

.vis-optic-zigzag-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-optic-zigzag-text {
  flex: 1.1;
}

.vis-optic-mini-tag {
  display: inline-block;
  font-family: var(--vis-font-display);
  font-weight: 800;
  color: var(--vis-optic-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.vis-optic-mini-tag-light {
  display: inline-block;
  font-family: var(--vis-font-display);
  font-weight: 800;
  color: var(--vis-optic-gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.vis-optic-block-headline {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--vis-optic-bg-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.vis-optic-paragraph {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  color: #475569; /* slate 600 */
}

.vis-optic-paragraph:last-child {
  margin-bottom: 0;
}

/* FEATURES SECTION (Preset A: 2-row grid, color left border 4px, hover effect) */
.vis-optic-segment-feat {
  padding: var(--vis-padding-normal) 0;
  background-color: var(--vis-optic-bg-light);
}

.vis-optic-section-center-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.vis-optic-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.vis-optic-feat-item {
  background-color: var(--vis-optic-bg-white);
  padding: 2.5rem;
  border-radius: var(--vis-border-soft);
  border-left: 4px solid var(--vis-optic-accent);
  box-shadow: var(--vis-shadow-depth);
  transition: all var(--vis-transition-speed) ease;
}

.vis-optic-feat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--vis-shadow-heavy);
}

.vis-optic-feat-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--vis-border-soft);
  background-color: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--vis-optic-accent);
}

.vis-optic-feat-icon svg {
  width: 26px;
  height: 26px;
}

.vis-optic-feat-title {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--vis-optic-bg-dark);
  margin-bottom: 0.75rem;
}

.vis-optic-feat-desc {
  font-size: 0.95rem;
  color: var(--vis-optic-text-muted);
}

/* TIMELINE "How it works" (Preset A: Vertical axis centered, alternating content) */
.vis-optic-timeline-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.vis-optic-timeline-axis {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background-color: var(--vis-optic-border-color);
}

.vis-optic-timeline-row {
  display: flex;
  width: 100%;
  position: relative;
  margin-bottom: 4rem;
}

.vis-optic-timeline-row:last-child {
  margin-bottom: 0;
}

.vis-optic-timeline-card {
  width: 45%;
  background-color: var(--vis-optic-bg-light);
  padding: 2rem;
  border-radius: var(--vis-border-soft);
  box-shadow: var(--vis-shadow-depth);
  position: relative;
  border: 1px solid var(--vis-optic-border-color);
}

.vis-timeline-left {
  margin-right: auto;
}

.vis-timeline-right {
  margin-left: auto;
}

/* Circles on line */
.vis-optic-timeline-badge {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--vis-optic-accent);
  color: var(--vis-optic-text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
  z-index: 10;
}

.vis-timeline-left .vis-optic-timeline-badge {
  right: -67px;
}

.vis-timeline-right .vis-optic-timeline-badge {
  left: -67px;
}

.vis-optic-timeline-title {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--vis-optic-bg-dark);
}

.vis-optic-timeline-text {
  font-size: 0.95rem;
  color: var(--vis-optic-text-muted);
}

/* CTA STRIP (Preset A: bg, fixed overlay, centered text) */
.vis-optic-cta-strip-block {
  padding: 8dvh 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}

.vis-optic-cta-inner {
  max-width: 800px;
  color: var(--vis-optic-text-light);
}

.vis-optic-cta-headline {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.vis-optic-cta-subhead {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  color: rgba(241, 245, 249, 0.85);
}

/* EXPERT PAGE SPECIFIC STYLES */
.vis-expert-hero-size {
  height: 60vh;
  min-height: 400px;
}

.vis-optic-segment-stats {
  padding: 4rem 0;
  background-color: var(--vis-optic-bg-dark);
  color: var(--vis-optic-text-light);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vis-optic-stats-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.vis-optic-stat-block-item {
  text-align: center;
}

.vis-optic-strong-stat {
  display: block;
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 3rem;
  color: var(--vis-optic-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.vis-optic-stat-desc-inline {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.8);
}

.vis-optic-bio-split {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.vis-optic-bio-media {
  flex: 1;
  height: 480px;
  border-radius: var(--vis-border-soft);
  overflow: hidden;
  box-shadow: var(--vis-shadow-heavy);
}

.vis-optic-bio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vis-optic-bio-text {
  flex: 1.1;
}

/* CTA banner in expert.html */
.vis-optic-segment-dark {
  padding: 6dvh 0;
  background-color: var(--vis-optic-bg-surface);
  color: var(--vis-optic-text-light);
}

.vis-optic-cta-banner-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.vis-optic-banner-text-side {
  flex: 2;
}

.vis-optic-banner-heading {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.vis-optic-banner-intro {
  color: rgba(241, 245, 249, 0.8);
  font-size: 1rem;
}

.vis-optic-banner-action-side {
  flex: 1;
  text-align: right;
}

/* RESERVE PAGE SPECIFIC STYLES */
.vis-optic-reserve-split {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  padding: 4dvh 0;
}

.vis-optic-form-host {
  flex: 1.3;
  background-color: var(--vis-optic-bg-white);
  padding: 3rem;
  border-radius: var(--vis-border-soft);
  box-shadow: var(--vis-shadow-heavy);
  border: 1px solid var(--vis-optic-border-color);
}

.vis-optic-form-headline {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--vis-optic-bg-dark);
  margin-bottom: 0.5rem;
}

.vis-optic-form-subtitle {
  color: var(--vis-optic-text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.vis-optic-actual-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-optic-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.vis-optic-input-label {
  font-family: var(--vis-font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--vis-optic-bg-dark);
  letter-spacing: 0.5px;
}

.vis-optic-form-field {
  width: 100%;
  padding: 1rem;
  border: 1.5px solid var(--vis-optic-border-color);
  border-radius: 8px;
  font-family: var(--vis-font-body);
  font-size: 1rem;
  background-color: var(--vis-optic-bg-light);
  color: var(--vis-optic-text-dark);
  transition: all var(--vis-transition-speed) ease;
}

.vis-optic-form-field:focus {
  outline: none;
  border-color: var(--vis-optic-accent);
  background-color: var(--vis-optic-bg-white);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.1);
}

.vis-form-textarea {
  min-height: 100px;
  resize: vertical;
}

.vis-optic-form-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.vis-optic-form-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--vis-optic-accent);
  cursor: pointer;
}

.vis-optic-checkbox-label {
  font-size: 0.85rem;
  color: var(--vis-optic-text-muted);
}

.vis-optic-checkbox-label a {
  color: var(--vis-optic-accent);
  text-decoration: underline;
}

.vis-form-submit-btn {
  width: 100%;
}

.vis-optic-contact-fallback {
  text-align: center;
  font-size: 0.85rem;
  color: var(--vis-optic-text-muted);
  margin-top: 1.5rem;
}

.vis-optic-contact-fallback a {
  color: var(--vis-optic-accent);
  text-decoration: none;
  font-weight: 600;
}

/* Info Column on reservation page */
.vis-optic-info-column {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-optic-reserve-info-plate {
  background-color: var(--vis-optic-bg-white);
  padding: 1.75rem;
  border-radius: var(--vis-border-soft);
  box-shadow: var(--vis-shadow-depth);
  border: 1px solid var(--vis-optic-border-color);
  display: flex;
  gap: 1.25rem;
}

.vis-reserve-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vis-optic-accent);
}

.vis-reserve-info-icon svg {
  width: 22px;
  height: 22px;
}

.vis-reserve-info-content {
  flex: 1;
}

.vis-reserve-info-title {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--vis-optic-bg-dark);
  margin-bottom: 0.5rem;
}

.vis-reserve-info-para {
  font-size: 0.9rem;
  color: var(--vis-optic-text-muted);
}

/* FAQ SECTION (Open by default, CSS layout only) */
.vis-optic-segment-faq-box {
  padding: var(--vis-padding-normal) 0;
  background-color: var(--vis-optic-bg-light);
  border-top: 1px solid var(--vis-optic-border-color);
}

.vis-optic-faq-list {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vis-optic-faq-card-wrap {
  background-color: var(--vis-optic-bg-white);
  padding: 2rem;
  border-radius: var(--vis-border-soft);
  box-shadow: var(--vis-shadow-depth);
  border: 1px solid var(--vis-optic-border-color);
}

.vis-optic-faq-ques {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--vis-optic-bg-dark);
  margin-bottom: 0.75rem;
}

.vis-optic-faq-ans {
  font-size: 0.95rem;
  color: var(--vis-optic-text-muted);
}

/* LEGAL PAGES LAYOUT */
.vis-legal-page-layout {
  padding: 8dvh 0;
  background-color: var(--vis-optic-bg-white);
  min-height: 100vh;
}

.vis-legal-headline {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--vis-optic-bg-dark);
  margin-bottom: 0.5rem;
}

.vis-legal-date {
  font-size: 0.9rem;
  color: var(--vis-optic-text-muted);
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--vis-optic-border-color);
  padding-bottom: 1rem;
}

.vis-legal-content-flow {
  max-width: 800px;
}

.vis-legal-content-flow p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: #334155;
}

.vis-legal-subhead-hash {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--vis-optic-bg-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

/* THANK YOU PAGE SPECIFIC STYLES */
.vis-thank-canvas {
  height: 90vh;
  min-height: 600px;
}

.vis-thank-inner {
  max-width: 700px;
}

.vis-thank-icon-box {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--vis-optic-gold);
  color: var(--vis-optic-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.vis-thank-icon-box svg {
  width: 40px;
  height: 40px;
}

.vis-thank-headline {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
  color: var(--vis-optic-text-light);
}

.vis-thank-sub {
  font-size: 1.1rem;
  color: rgba(241, 245, 249, 0.9);
  margin-bottom: 2.5rem;
}

.vis-thank-recommendations {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: var(--vis-border-soft);
  text-align: left;
  margin-bottom: 3rem;
  width: 100%;
}

.vis-recommendations-title {
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--vis-optic-accent);
  margin-bottom: 1rem;
}

.vis-recommendations-list {
  list-style: none;
}

.vis-recommendations-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.85);
}

.vis-recommendations-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--vis-optic-gold);
  font-weight: bold;
}

.vis-recommendations-list li:last-child {
  margin-bottom: 0;
}

/* FOOTER (Global dark theme) */
.vis-optic-footer {
  background-color: var(--vis-optic-bg-dark);
  color: var(--vis-optic-text-light);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.vis-optic-footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.vis-footer-logo svg {
  color: var(--vis-optic-gold);
}

.vis-optic-footer-links {
  display: flex;
  gap: 2rem;
}

.vis-optic-foot-link {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.75);
  transition: color var(--vis-transition-speed) ease;
}

.vis-optic-foot-link:hover {
  color: var(--vis-optic-accent);
}

.vis-optic-disclaimer-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}

.vis-optic-disclaimer-text {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(241, 245, 249, 0.65);
}

.vis-optic-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vis-optic-copy {
  font-size: 0.8rem;
  color: rgba(241, 245, 249, 0.5);
}

/* COOKIE BANNER (Floating elements bottom) */
.vis-optic-cookie-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  padding: 1.5rem;
  background-color: var(--vis-optic-bg-dark);
  border-top: 2px solid var(--vis-optic-accent);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  animation: vis-slide-up 0.4s ease-out;
}

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

.vis-optic-cookie-text {
  font-size: 0.88rem;
  color: rgba(241, 245, 249, 0.9);
  line-height: 1.5;
}

.vis-optic-cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.vis-optic-cookie-btn {
  padding: 0.65rem 1.5rem;
  font-family: var(--vis-font-display);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all var(--vis-transition-speed) ease;
}

.vis-cookie-accept {
  background-color: var(--vis-optic-accent);
  color: var(--vis-optic-bg-dark);
}

.vis-cookie-accept:hover {
  background-color: var(--vis-optic-accent-hover);
}

.vis-cookie-decline {
  background-color: transparent;
  color: var(--vis-optic-text-muted);
  border: 1px solid var(--vis-optic-text-muted);
}

.vis-cookie-decline:hover {
  color: var(--vis-optic-text-light);
  border-color: var(--vis-optic-text-light);
}

/* MEDIA QUERIES (Mobile Responsive Settings 1024px, 768px, 480px) */
@media (max-width: 1024px) {
  .vis-optic-zigzag-row {
    gap: 2.5rem;
  }
  .vis-optic-zigzag-media {
    height: 300px;
  }
  .vis-optic-bio-split {
    gap: 2.5rem;
  }
  .vis-optic-bio-media {
    height: 400px;
  }
}

@media (max-width: 768px) {
  /* Navigation Toggle logic integration */
  .vis-hamburger-icon {
    display: flex;
  }
  
  .vis-optic-bar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--vis-optic-bg-dark);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 2px solid var(--vis-optic-accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    display: none;
  }

  .vis-menu-toggle:checked ~ .vis-optic-bar {
    display: flex;
  }

  /* Hamburger transform animation on toggle check */
  .vis-menu-toggle:checked ~ .vis-hamburger-icon span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .vis-menu-toggle:checked ~ .vis-hamburger-icon span:nth-child(2) {
    opacity: 0;
  }
  .vis-menu-toggle:checked ~ .vis-hamburger-icon span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Hero Adjustments */
  .vis-optic-hero-canvas {
    height: auto;
    padding: 8rem 0 6rem 0;
  }

  /* Floating Stat Bar stack design */
  .vis-optic-floating-tier {
    margin-top: 2rem;
  }
  .vis-optic-stat-inner-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .vis-optic-stat-card {
    border-right: none;
    border-bottom: 1px solid var(--vis-optic-border-color);
    padding-bottom: 1rem;
  }
  .vis-optic-stat-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Zigzag items collapse to stacked column */
  .vis-optic-zigzag-row,
  .vis-optic-zigzag-reverse {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  .vis-optic-zigzag-media {
    width: 100%;
    height: 250px;
    clip-path: none !important;
  }

  /* Features Grid stack */
  .vis-optic-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Timeline stacked to left side */
  .vis-optic-timeline-axis {
    left: 15px;
  }
  .vis-optic-timeline-card {
    width: calc(100% - 40px);
    margin-left: 40px !important;
  }
  .vis-timeline-left .vis-optic-timeline-badge,
  .vis-timeline-right .vis-optic-timeline-badge {
    left: -48px;
    right: auto;
    top: 1.5rem;
    transform: none;
  }

  /* Expert Page stats collapse */
  .vis-optic-stats-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .vis-optic-bio-split {
    flex-direction: column;
    gap: 1.5rem;
  }
  .vis-optic-bio-media {
    width: 100%;
    height: 280px;
  }

  /* Banner block collapse */
  .vis-optic-cta-banner-box {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  .vis-optic-banner-action-side {
    text-align: center;
    width: 100%;
  }

  /* Reservation Area Collapse */
  .vis-optic-reserve-split {
    flex-direction: column;
    gap: 2.5rem;
  }
  .vis-optic-form-host {
    width: 100%;
    padding: 1.5rem;
  }
  .vis-optic-info-column {
    width: 100%;
  }

  /* Cookie Banner collapse style */
  .vis-optic-cookie-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .vis-optic-cookie-actions {
    width: 100%;
    justify-content: center;
  }

  /* Footer layout */
  .vis-optic-footer-top {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .vis-optic-footer-links {
    flex-direction: column;
    gap: 1rem;
  }
  .vis-optic-footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .vis-optic-stats-strip-grid {
    grid-template-columns: 1fr;
  }
}