/* --- CSS VARIABLES & NEUMORPHIC SYSTEM --- */
:root {
  --vis-light-bg: #f3f6fa;
  --vis-surface: #f3f6fa;
  --vis-neum-dark: #d1d9e6;
  --vis-neum-light: #ffffff;
  --vis-brand-tone: #295482;
  --vis-brand-hover: #1c3d61;
  --vis-brand-accent: #eef4fc;
  --vis-text-dark: #2c3e50;
  --vis-text-muted: #5e6f80;
  --vis-danger-soft: #fcf0f0;
  --vis-danger-text: #c0392b;
  --vis-success-soft: #ebfcf2;
  --vis-success-text: #27ae60;
  
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- RESET & BASIC STYLES --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vis-brand-tone);
  line-height: 1.25;
}

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

/* --- SCROLL DRIVEN PROGRESS BAR --- */
@keyframes eye-progress-grow {
  to { width: 100%; }
}
.eye-scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--vis-brand-tone);
  width: 0;
  z-index: 10000;
  animation: eye-progress-grow linear;
  animation-timeline: scroll();
}

/* --- SCROLL REVEAL ANIMATION --- */
@keyframes eye-fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.eye-scroll-reveal {
  animation: eye-fade-up linear both;
  animation-timeline: view();
  animation-range: entry 10% cover 30%;
}

/* --- HEADER PRESET G (NEUMORPHIC LIGHT) --- */
.eye-topbar {
  background: var(--vis-surface);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03), 0 1px 3px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
}

.eye-topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.eye-topbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--vis-brand-tone);
}

.eye-topbar-brand svg {
  width: 32px;
  height: 32px;
  fill: var(--vis-brand-tone);
}

.eye-topbar-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.eye-topbar-item {
  font-weight: 600;
  color: var(--vis-text-muted);
  position: relative;
  padding: 0.5rem 0.25rem;
}

.eye-topbar-item:hover, .eye-topbar-item.eye-active {
  color: var(--vis-brand-tone);
}

.eye-topbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--vis-brand-tone);
  transition: width 0.3s ease;
}

.eye-topbar-item:hover::after, .eye-topbar-item.eye-active::after {
  width: 100%;
}

/* --- MOBILE MENU (CSS ONLY) --- */
.eye-topbar-toggle {
  display: none;
}

.eye-topbar-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.eye-topbar-trigger span {
  width: 25px;
  height: 3px;
  background-color: var(--vis-brand-tone);
  border-radius: 3px;
  transition: 0.3s ease;
}

/* --- NEUMORPHIC HELPERS --- */
.eye-neumorph-raised {
  background: var(--vis-surface);
  border-radius: 20px;
  box-shadow: 8px 8px 16px var(--vis-neum-dark), -8px -8px 16px var(--vis-neum-light);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.eye-neumorph-inset {
  background: var(--vis-surface);
  border-radius: 20px;
  box-shadow: inset 5px 5px 10px var(--vis-neum-dark), inset -5px -5px 10px var(--vis-neum-light);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.eye-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--vis-brand-tone);
  background: var(--vis-surface);
  border-radius: 30px;
  box-shadow: 5px 5px 10px var(--vis-neum-dark), -5px -5px 10px var(--vis-neum-light);
  border: 1px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all 0.2s ease;
}

.eye-cta-button:hover {
  box-shadow: 2px 2px 5px var(--vis-neum-dark), -2px -2px 5px var(--vis-neum-light);
  transform: translateY(1px);
  color: var(--vis-brand-hover);
}

.eye-cta-button:active {
  box-shadow: inset 3px 3px 6px var(--vis-neum-dark), inset -3px -3px 6px var(--vis-neum-light);
  transform: translateY(2px);
}

/* --- INDEX.HTML LAYOUT --- */
/* Hero section Split Preset G */
.eye-hero-split-wrap {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.eye-hero-text-side {
  position: relative;
}

.eye-hero-tagline {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--vis-brand-tone);
  margin-bottom: 1rem;
  font-weight: 700;
}

.eye-hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.eye-hero-description {
  font-size: 1.1rem;
  color: var(--vis-text-muted);
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.eye-hero-badge {
  position: absolute;
  bottom: -20px;
  right: 10%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
}

.eye-hero-badge svg {
  width: 24px;
  height: 24px;
  fill: var(--vis-brand-tone);
}

.eye-hero-badge-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--vis-brand-tone);
}

.eye-hero-media-side {
  position: relative;
}

.eye-hero-img-frame {
  width: 100%;
  height: 480px;
  border-radius: 32px;
  overflow: hidden;
  display: block;
}

.eye-hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Problem & Recommendation Layout */
.eye-prob-sol-section {
  max-width: 1200px;
  margin: 8dvh auto;
  padding: 0 2rem;
}

.eye-prob-sol-headline {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2rem;
}

.eye-prob-sol-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.eye-problem-box {
  padding: 2.5rem;
  border-left: 5px solid var(--vis-danger-text);
  background-color: var(--vis-danger-soft);
}

.eye-problem-box h3 {
  color: var(--vis-danger-text);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.eye-solution-box {
  padding: 2.5rem;
  border-left: 5px solid var(--vis-success-text);
  background-color: var(--vis-success-soft);
}

.eye-solution-box h3 {
  color: var(--vis-success-text);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.eye-bullet-list {
  list-style: none;
}

.eye-bullet-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.75rem;
  font-weight: 500;
}

.eye-bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0.5rem;
  font-size: 1.5rem;
  line-height: 1;
}

.eye-problem-box .eye-bullet-list li::before {
  color: var(--vis-danger-text);
}

.eye-solution-box .eye-bullet-list li::before {
  color: var(--vis-success-text);
}

/* Parallax Banner */
.eye-parallax-strip {
  width: 100%;
  height: 40vh;
  position: relative;
  margin: 8dvh 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.eye-parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  z-index: 1;
}

.eye-parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 1.5rem;
  max-width: 800px;
}

.eye-parallax-content h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

.eye-parallax-content p {
  font-size: 1.1rem;
  font-weight: 300;
  opacity: 0.95;
}

/* Features Grid - Neumorphic */
.eye-features-container {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.eye-features-title {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.2rem;
}

.eye-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.eye-feature-card {
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.eye-feature-card:hover {
  box-shadow: 2px 2px 5px var(--vis-neum-dark), -2px -2px 5px var(--vis-neum-light);
  transform: translateY(-2px);
}

.eye-feature-icon-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.eye-feature-icon-circle svg {
  width: 36px;
  height: 36px;
  fill: var(--vis-brand-tone);
}

.eye-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.eye-feature-card p {
  color: var(--vis-text-muted);
  font-size: 0.95rem;
}

/* How It Works Stepper Preset G */
.eye-stepper-wrap {
  max-width: 1200px;
  margin: 10dvh auto;
  padding: 0 2rem;
}

.eye-stepper-headline {
  text-align: center;
  margin-bottom: 4rem;
  font-size: 2.2rem;
}

.eye-stepper-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
}

.eye-stepper-row::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 3px;
  background: var(--vis-neum-dark);
  z-index: 1;
}

.eye-step-pill-item {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--vis-brand-tone);
  text-align: center;
}

.eye-step-pill-number {
  background: var(--vis-brand-tone);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.eye-stepper-descriptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.eye-step-text-unit {
  text-align: center;
}

.eye-step-text-unit h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.eye-step-text-unit p {
  color: var(--vis-text-muted);
  font-size: 0.95rem;
}

/* CTA Strip Centered Card Preset G */
.eye-cta-banner-strip {
  padding: 8dvh 2rem;
  background-color: var(--vis-light-bg);
}

.eye-cta-banner-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 3rem;
  text-align: center;
}

.eye-cta-banner-card h2 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.eye-cta-banner-card p {
  color: var(--vis-text-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- EXPERT.HTML LAYOUT --- */
.eye-expert-heading-center {
  text-align: center;
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.eye-expert-heading-center h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.eye-expert-media-container {
  max-width: 1000px;
  margin: 0 auto 5dvh;
  padding: 0 2rem;
}

.eye-expert-rounded-frame {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  border-radius: 32px;
  display: block;
}

.eye-expert-rounded-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.eye-expert-stats-grid {
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.eye-stat-neumorph-card {
  padding: 2.5rem;
  text-align: center;
}

.eye-stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--vis-brand-tone);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.eye-stat-label {
  font-size: 1rem;
  color: var(--vis-text-muted);
  font-weight: 600;
}

.eye-expert-alternate-block {
  max-width: 1000px;
  margin: 6dvh auto;
  padding: 0 2rem;
}

.eye-expert-row-unit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6dvh;
}

.eye-expert-row-unit:nth-child(even) {
  direction: rtl;
}

.eye-expert-row-unit:nth-child(even) .eye-expert-unit-text {
  direction: ltr;
}

.eye-expert-unit-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
}

.eye-expert-unit-text p {
  color: var(--vis-text-muted);
  margin-bottom: 1.5rem;
}

.eye-expert-unit-image {
  border-radius: 24px;
  overflow: hidden;
  height: 320px;
}

.eye-expert-unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- RESERVE.HTML LAYOUT --- */
.eye-reserve-container {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.eye-reserve-info-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.eye-reserve-info-card {
  padding: 2rem;
}

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

.eye-reserve-info-header svg {
  width: 28px;
  height: 28px;
  fill: var(--vis-brand-tone);
}

.eye-reserve-info-header h3 {
  font-size: 1.15rem;
}

.eye-reserve-info-card p {
  font-size: 0.95rem;
  color: var(--vis-text-muted);
  margin-bottom: 1rem;
}

.eye-reserve-numbered-list {
  list-style: none;
}

.eye-reserve-numbered-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.eye-reserve-number-dot {
  background-color: var(--vis-brand-tone);
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.eye-reserve-form-side {
  max-width: 620px;
  width: 100%;
}

.eye-reserve-form-card {
  padding: 3.5rem 2.5rem;
}

.eye-reserve-form-card h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.eye-reserve-form-card p {
  color: var(--vis-text-muted);
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.eye-reserve-form-holder {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eye-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eye-input-wrapper label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--vis-text-dark);
}

.eye-form-input, .eye-form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--vis-text-dark);
  border-radius: 15px;
  outline: none;
  background-color: var(--vis-surface);
  transition: all 0.3s ease;
}

.eye-form-input:focus, .eye-form-textarea:focus {
  box-shadow: inset 2px 2px 5px var(--vis-neum-dark), inset -2px -2px 5px var(--vis-neum-light);
}

.eye-checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.eye-checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.eye-checkbox-wrapper label {
  font-size: 0.8rem;
  color: var(--vis-text-muted);
  line-height: 1.4;
  cursor: pointer;
}

.eye-checkbox-wrapper label a {
  text-decoration: underline;
  color: var(--vis-brand-tone);
}

.eye-form-submit-btn {
  width: 100%;
  margin-top: 1rem;
}

.eye-contact-direct {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--vis-text-muted);
}

.eye-contact-direct a {
  font-weight: 700;
  color: var(--vis-brand-tone);
}

/* FAQ SECTION ON RESERVE.HTML */
.eye-faq-wrapper {
  max-width: 800px;
  margin: 6dvh auto 10dvh;
  padding: 0 2rem;
}

.eye-faq-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.eye-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eye-faq-cabinet {
  padding: 1.75rem 2rem;
}

.eye-faq-cabinet h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.eye-faq-cabinet p {
  color: var(--vis-text-muted);
  font-size: 0.95rem;
}

/* --- PRIVACY POLICY / TERMS / THANK --- */
.eye-info-page-wrap {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 2rem;
  min-height: 60vh;
}

.eye-info-page-wrap h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.eye-info-page-wrap h2 {
  font-size: 1.6rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.eye-info-page-wrap p {
  color: var(--vis-text-muted);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.eye-thank-box {
  text-align: center;
  padding: 4rem 2.5rem;
  margin-top: 4rem;
}

.eye-thank-icon {
  width: 80px;
  height: 80px;
  background-color: var(--vis-success-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.eye-thank-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--vis-success-text);
}

.eye-thank-box h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.eye-thank-box p {
  color: var(--vis-text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* --- COOKIE BANNER --- */
.eye-cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--vis-surface);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  padding: 1.5rem 2rem;
  z-index: 9999;
  display: none;
}

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

.eye-cookie-text {
  font-size: 0.9rem;
  color: var(--vis-text-muted);
  line-height: 1.4;
}

.eye-cookie-text a {
  text-decoration: underline;
  color: var(--vis-brand-tone);
}

.eye-cookie-btns {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.eye-cookie-btn {
  padding: 0.6rem 1.4rem;
  font-size: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 20px;
  cursor: pointer;
  border: none;
  background: var(--vis-surface);
  box-shadow: 3px 3px 6px var(--vis-neum-dark), -3px -3px 6px var(--vis-neum-light);
  color: var(--vis-text-dark);
}

.eye-cookie-btn-accept {
  background: var(--vis-brand-tone);
  color: white;
  box-shadow: none;
}

.eye-cookie-btn-accept:hover {
  background-color: var(--vis-brand-hover);
}

/* --- FOOTER --- */
.eye-footer-wrap {
  display: block;
  background-color: var(--vis-surface);
  padding: 5rem 2rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.01);
}

.eye-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.eye-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.eye-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--vis-brand-tone);
}

.eye-footer-brand svg {
  width: 32px;
  height: 32px;
  fill: var(--vis-brand-tone);
}

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

.eye-footer-link-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--vis-text-muted);
}

.eye-footer-link-item:hover {
  color: var(--vis-brand-tone);
}

.eye-footer-divider {
  height: 1px;
  background-color: var(--vis-neum-dark);
}

.eye-footer-disclaimer {
  font-size: 0.8rem;
  color: var(--vis-text-muted);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}

.eye-footer-copyright {
  text-align: center;
  font-size: 0.8rem;
  color: var(--vis-text-muted);
  font-weight: 500;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
  .eye-hero-split-wrap {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 2rem auto;
  }
  
  .eye-hero-media-side {
    order: 2;
  }
  
  .eye-hero-img-frame {
    height: 350px;
  }
  
  .eye-expert-row-unit {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .eye-expert-row-unit:nth-child(even) {
    direction: ltr;
  }
  
  .eye-reserve-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .eye-topbar-trigger {
    display: flex;
  }
  
  .eye-topbar-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--vis-surface);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    border-top: 1px solid var(--vis-neum-dark);
  }
  
  .eye-topbar-toggle:checked ~ .eye-topbar-links {
    display: flex;
  }
  
  .eye-topbar-toggle:checked ~ .eye-topbar-trigger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .eye-topbar-toggle:checked ~ .eye-topbar-trigger span:nth-child(2) {
    opacity: 0;
  }
  
  .eye-topbar-toggle:checked ~ .eye-topbar-trigger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .eye-prob-sol-two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .eye-stepper-row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .eye-stepper-row::before {
    display: none;
  }
  
  .eye-stepper-descriptions {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .eye-expert-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .eye-footer-top {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .eye-footer-links {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .eye-cookie-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}