/* --- DESIGN SYSTEM RESETS & VARIABLES (PRESET B - LIGHT SPLIT) --- */
:root {
  --ocular-pale-bg: #fdfcf9;      /* Warm editorial cream background */
  --ocular-panel-surface: #f5f0e6; /* Soft beige for secondary split areas */
  --ocular-vibrant-tint: #145e52;  /* Deep rich teal (accessible contrast & premium tone) */
  --ocular-vibrant-hover: #0c3d35; /* Dark forest teal for hover states */
  --ocular-accent-coral: #d46a43;  /* Coral accent color for announcement / tags */
  --ocular-dark-ink: #1b2422;      /* Elegant near-black text */
  --ocular-soft-ink: #546561;      /* Muted teal-tinted gray text */
  --ocular-ambient-shadow: 0 10px 30px rgba(20, 94, 82, 0.06);
  --ocular-flat-border: 1px solid rgba(20, 94, 82, 0.12);
  --ocular-radius-style: 16px;     /* Soft border radius style */
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ocular-dark-ink);
  background-color: var(--ocular-pale-bg);
}

body {
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- SCROLL-DRIVEN PROGRESS BAR --- */
.ocular-progress-bar-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--ocular-accent-coral);
  width: 0;
  z-index: 10000;
  animation: progress-grow linear;
  animation-timeline: scroll();
}

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

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--ocular-dark-ink);
}

p {
  color: var(--ocular-soft-ink);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

/* --- COMMON HEADER STYLE --- */
.vis-header {
  background-color: var(--ocular-pale-bg);
  border-bottom: var(--ocular-flat-border);
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s ease;
}

.vis-header:focus-within {
  box-shadow: var(--ocular-ambient-shadow);
}

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

.vis-logo-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 1px;
  color: var(--ocular-vibrant-tint);
}

.vis-logo-area svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* --- CSS ONLY HAMBURGER MENU --- */
.vis-menu-checkbox {
  display: none;
}

.vis-menu-label {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.vis-menu-label span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--ocular-vibrant-tint);
  border-radius: 2px;
  transition: 0.3s ease;
}

.vis-nav-items {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.vis-nav-link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--ocular-dark-ink);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

.vis-nav-link:hover, .vis-nav-link.active {
  color: var(--ocular-vibrant-tint);
  border-bottom-color: var(--ocular-vibrant-tint);
}

/* --- BUTTONS --- */
.vis-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  background-color: var(--ocular-vibrant-tint);
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--ocular-radius-style);
  border: none;
  cursor: pointer;
  box-shadow: var(--ocular-ambient-shadow);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.vis-action-trigger:hover {
  background-color: var(--ocular-vibrant-hover);
  transform: translateY(-2px);
}

/* --- COOKIE BANNER --- */
.vis-cookie-container {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--ocular-dark-ink);
  color: #ffffff;
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.15);
  display: none;
  animation: slide-up-cookie 0.5s ease forwards;
}

@keyframes slide-up-cookie {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

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

.vis-cookie-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
  min-width: 280px;
}

.vis-cookie-buttons {
  display: flex;
  gap: 1rem;
}

.vis-cookie-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--ocular-radius-style);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}

.vis-cookie-accept {
  background-color: var(--ocular-accent-coral);
  color: #ffffff;
}

.vis-cookie-accept:hover {
  background-color: #be552f;
}

.vis-cookie-decline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.25);
}

.vis-cookie-decline:hover {
  background-color: rgba(255,255,255,0.1);
}

/* --- COMMON FOOTER STYLE --- */
.vis-footer-wrapper {
  background-color: var(--ocular-panel-surface);
  border-top: var(--ocular-flat-border);
  padding: 5rem 2rem 3rem;
}

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

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

.vis-footer-brand-column {
  max-width: 380px;
}

.vis-footer-brand-column p {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.vis-footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vis-footer-links-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--ocular-vibrant-tint);
}

.vis-footer-link {
  font-size: 0.95rem;
  color: var(--ocular-soft-ink);
}

.vis-footer-link:hover {
  color: var(--ocular-vibrant-tint);
}

.vis-footer-middle-disclaimer {
  border-top: 1px solid rgba(20, 94, 82, 0.08);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.85rem;
  color: var(--ocular-soft-ink);
  text-align: justify;
}

.vis-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(20, 94, 82, 0.08);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ocular-soft-ink);
}

/* --- PRESET B: INDEX SPECIFIC STYLES --- */

/* Announcement Bar */
.vis-announcement-bar {
  background-color: var(--ocular-accent-coral);
  color: #ffffff;
  text-align: center;
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.vis-announcement-bar a {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.vis-announcement-bar a:hover {
  text-decoration: underline;
}

/* Split Hero Section */
.vis-hero-split-wrapper {
  display: flex;
  min-height: calc(85vh - 40px);
}

.vis-hero-split-text {
  flex: 0 0 55%;
  background-color: var(--ocular-panel-surface);
  padding: 6dvh 5% 6dvh 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.vis-hero-tag {
  background-color: rgba(20, 94, 82, 0.08);
  color: var(--ocular-vibrant-tint);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

.vis-hero-split-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--ocular-vibrant-tint);
}

.vis-hero-split-text p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.vis-hero-split-visual {
  flex: 0 0 45%;
  position: relative;
}

.vis-hero-split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Editorial Full-width Strip & Columns */
.vis-editorial-image-strip {
  width: 100%;
  height: 45vh;
  object-fit: cover;
}

.vis-mag-columns-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
}

.vis-mag-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.vis-mag-col {
  border-top: 3px solid var(--ocular-vibrant-tint);
  padding-top: 1.5rem;
}

.vis-mag-col h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.vis-mag-col p {
  font-size: 0.95rem;
  text-align: justify;
}

/* Features - Masonry Style */
.vis-features-section {
  background-color: var(--ocular-panel-surface);
  padding: 10dvh 2rem;
}

.vis-features-section-header {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.vis-features-section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  color: var(--ocular-vibrant-tint);
}

.vis-masonry-container {
  max-width: 1200px;
  margin: 0 auto;
  columns: 3;
  column-gap: 2rem;
}

.vis-masonry-card {
  break-inside: avoid;
  background-color: var(--ocular-pale-bg);
  border-radius: var(--ocular-radius-style);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--ocular-ambient-shadow);
  border: var(--ocular-flat-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vis-masonry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(20, 94, 82, 0.1);
}

.vis-masonry-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: rgba(20, 94, 82, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocular-vibrant-tint);
  margin-bottom: 1.5rem;
}

.vis-masonry-icon-box svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vis-masonry-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.vis-masonry-card p {
  font-size: 0.95rem;
}

.vis-masonry-visual-deco {
  height: 120px;
  background-color: rgba(20, 94, 82, 0.03);
  border-radius: calc(var(--ocular-radius-style) - 4px);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(20, 94, 82, 0.15);
  border: 1px dashed rgba(20, 94, 82, 0.1);
}

/* Horizontal Process Track */
.vis-process-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
}

.vis-process-header {
  text-align: center;
  margin-bottom: 5rem;
}

.vis-process-header h2 {
  font-size: 2.25rem;
  color: var(--ocular-vibrant-tint);
}

.vis-progress-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  position: relative;
}

.vis-progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.vis-progress-step::after {
  content: "";
  position: absolute;
  top: 25px;
  left: calc(50% + 25px);
  width: calc(100% - 50px);
  border-top: 2px dashed rgba(20, 94, 82, 0.15);
  z-index: -1;
}

.vis-progress-step:last-child::after {
  display: none;
}

.vis-step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--ocular-pale-bg);
  border: 2px solid var(--ocular-vibrant-tint);
  color: var(--ocular-vibrant-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--ocular-ambient-shadow);
  transition: all 0.3s ease;
}

.vis-progress-step.active .vis-step-circle {
  background-color: var(--ocular-vibrant-tint);
  color: #ffffff;
  box-shadow: 0 0 0 6px rgba(20, 94, 82, 0.1);
}

.vis-progress-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.vis-progress-step p {
  font-size: 0.9rem;
  max-width: 250px;
  margin: 0 auto;
}

/* CTA Strip */
.vis-cta-section {
  background-color: var(--ocular-vibrant-tint);
  color: #ffffff;
  padding: 8dvh 2rem;
  text-align: center;
}

.vis-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.vis-cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.vis-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

.vis-cta-btn {
  background-color: var(--ocular-accent-coral);
}

.vis-cta-btn:hover {
  background-color: #be552f;
}


/* --- PRESET B: EXPERT PAGE STYLES --- */
.vis-expert-hero {
  display: flex;
  min-height: 60vh;
}

.vis-expert-visual {
  flex: 0 0 50%;
}

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

.vis-expert-bio {
  flex: 0 0 50%;
  background-color: var(--ocular-pale-bg);
  padding: 6dvh 10% 6dvh 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.vis-expert-credential {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ocular-accent-coral);
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.vis-expert-bio h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--ocular-vibrant-tint);
}

.vis-expert-bio p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* Stats Row */
.vis-stats-panel {
  background-color: var(--ocular-panel-surface);
  border-top: var(--ocular-flat-border);
  border-bottom: var(--ocular-flat-border);
  padding: 4rem 2rem;
}

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

.vis-stat-box h3 {
  font-size: 3rem;
  color: var(--ocular-vibrant-tint);
  margin-bottom: 0.5rem;
}

.vis-stat-box p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CSS Only Accordion approaches */
.vis-approaches-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
}

.vis-approaches-section h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--ocular-vibrant-tint);
  font-size: 2.25rem;
}

.vis-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.vis-accordion-card {
  background-color: var(--ocular-pale-bg);
  border: var(--ocular-flat-border);
  border-radius: var(--ocular-radius-style);
  padding: 2rem;
  box-shadow: var(--ocular-ambient-shadow);
}

.vis-accordion-head {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.vis-accordion-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--ocular-accent-coral);
}

.vis-accordion-card h3 {
  font-size: 1.25rem;
  color: var(--ocular-vibrant-tint);
}

.vis-accordion-body p {
  font-size: 0.95rem;
  line-height: 1.7;
}


/* --- PRESET B: RESERVE PAGE STYLES --- */
.vis-reserve-grid-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8dvh 2rem;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
}

.vis-reserve-info-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.vis-reserve-info-col h1 {
  font-size: 2.5rem;
  color: var(--ocular-vibrant-tint);
}

.vis-reserve-card {
  background-color: var(--ocular-panel-surface);
  border-radius: var(--ocular-radius-style);
  padding: 2rem;
  border: var(--ocular-flat-border);
}

.vis-reserve-card-title-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.vis-reserve-card-title-row svg {
  width: 28px;
  height: 28px;
  fill: var(--ocular-vibrant-tint);
}

.vis-reserve-card h3 {
  font-size: 1.2rem;
}

.vis-reserve-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.vis-reserve-list li {
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.vis-reserve-marker {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--ocular-accent-coral);
  margin-top: 0.45rem;
  flex-shrink: 0;
}

/* Contact form custom elements */
.vis-reserve-form-col {
  background-color: var(--ocular-pale-bg);
  border: var(--ocular-flat-border);
  border-radius: var(--ocular-radius-style);
  padding: 3rem;
  box-shadow: var(--ocular-ambient-shadow);
  height: fit-content;
}

.vis-reserve-form-col h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--ocular-vibrant-tint);
}

.vis-form-group {
  margin-bottom: 1.5rem;
}

.vis-form-label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  color: var(--ocular-dark-ink);
}

.vis-form-input {
  width: 100%;
  padding: 1rem;
  border: var(--ocular-flat-border);
  border-radius: calc(var(--ocular-radius-style) - 6px);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ocular-dark-ink);
  background-color: var(--ocular-pale-bg);
  transition: border-color 0.3s;
}

.vis-form-input:focus {
  outline: none;
  border-color: var(--ocular-vibrant-tint);
}

.vis-checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--ocular-soft-ink);
}

.vis-checkbox-container input {
  margin-top: 0.2rem;
}

.vis-checkbox-container a {
  text-decoration: underline;
  color: var(--ocular-vibrant-tint);
}

.vis-form-submit {
  width: 100%;
  margin-top: 2rem;
}

/* FAQ below form */
.vis-faq-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
  border-top: var(--ocular-flat-border);
}

.vis-faq-container h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--ocular-vibrant-tint);
  font-size: 2.25rem;
}

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

.vis-faq-item h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--ocular-vibrant-tint);
}

.vis-faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}


/* --- TECHNICAL / LEGAL PAGES SPECIFICS --- */
.vis-legal-outer {
  max-width: 900px;
  margin: 6dvh auto 10dvh;
  padding: 0 2rem;
}

.vis-legal-outer h1 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: var(--ocular-vibrant-tint);
  border-bottom: 2px solid var(--ocular-vibrant-tint);
  padding-bottom: 1rem;
}

.vis-legal-content h2 {
  font-size: 1.4rem;
  margin: 2.5rem 0 1rem;
  color: var(--ocular-dark-ink);
}

.vis-legal-content p {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.vis-legal-content ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.vis-legal-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--ocular-soft-ink);
}

/* --- THANK YOU PAGE --- */
.vis-thank-card {
  max-width: 700px;
  margin: 10dvh auto;
  padding: 4rem 2rem;
  background-color: var(--ocular-panel-surface);
  border-radius: var(--ocular-radius-style);
  border: var(--ocular-flat-border);
  box-shadow: var(--ocular-ambient-shadow);
  text-align: center;
}

.vis-thank-card h1 {
  font-size: 3rem;
  color: var(--ocular-vibrant-tint);
  margin-bottom: 1.5rem;
}

.vis-thank-card p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.vis-thank-image {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: calc(var(--ocular-radius-style) - 4px);
  margin-bottom: 2.5rem;
}


/* --- RESPONSIVE DESIGN BREAKPOINTS --- */
@media (max-width: 991px) {
  .vis-hero-split-wrapper {
    flex-direction: column;
  }
  .vis-hero-split-text {
    flex: 0 0 100%;
    padding: 8dvh 2rem;
  }
  .vis-hero-split-visual {
    flex: 0 0 100%;
    height: 400px;
  }
  .vis-mag-columns-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .vis-masonry-container {
    columns: 2;
  }
  .vis-progress-track {
    flex-direction: column;
    gap: 3rem;
  }
  .vis-progress-step::after {
    display: none;
  }
  .vis-progress-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
  .vis-step-circle {
    margin: 0;
    flex-shrink: 0;
  }
  .vis-progress-step p {
    margin: 0;
    max-width: 100%;
  }
  .vis-expert-hero {
    flex-direction: column-reverse;
  }
  .vis-expert-bio {
    flex: 0 0 100%;
    padding: 8dvh 2rem;
  }
  .vis-expert-visual {
    flex: 0 0 100%;
    height: 400px;
  }
  .vis-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vis-reserve-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vis-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .vis-menu-label {
    display: flex;
  }
  .vis-nav-items {
    position: fixed;
    top: 73px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 73px);
    background-color: var(--ocular-pale-bg);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2rem;
    transition: left 0.4s ease;
    border-top: var(--ocular-flat-border);
    z-index: 1000;
  }
  .vis-menu-checkbox:checked ~ .vis-nav-items {
    left: 0;
  }
  .vis-menu-checkbox:checked ~ .vis-menu-label span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .vis-menu-checkbox:checked ~ .vis-menu-label span:nth-child(2) {
    opacity: 0;
  }
  .vis-menu-checkbox:checked ~ .vis-menu-label span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .vis-masonry-container {
    columns: 1;
  }
  .vis-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --- SCROLL ANIMATIONS (CSS ONLY) --- */
.vis-reveal {
  animation: vis-slide-up 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  animation-timeline: view();
  animation-range: entry 5% entry 30%;
}

@keyframes vis-slide-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}