:root {
  --eye-accent-vivid: #0284c7;
  --eye-accent-deep: #0f172a;
  --eye-accent-glow: #38bdf8;
  --eye-tint-soft: #f0f9ff;
  --eye-surface-pure: #ffffff;
  --eye-contrast-dark: #0f172a;
  --eye-slate-medium: #475569;
  --eye-crimson-error: #ef4444;
  
  --eye-font-display: 'Raleway', sans-serif;
  --eye-font-body: 'Poppins', sans-serif;
  
  --eye-curve-radius: 16px;
  --eye-shadow-raised: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  --eye-shadow-glow: 0 0 20px rgba(56, 189, 248, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--eye-font-body);
  color: var(--eye-contrast-dark);
  background-color: var(--eye-tint-soft);
}

body {
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scroll-driven progress bar */
.eye-scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  background: var(--eye-accent-glow);
  width: 0%;
  z-index: 10000;
  animation: eye-progress-growth linear;
  animation-timeline: scroll();
}

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

/* Base Reveal Animation */
.eye-reveal-block {
  animation: eye-reveal-fade linear both;
  animation-timeline: view();
  animation-range: entry 10% entry 40%;
}

@keyframes eye-reveal-fade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navigation Header */
.eye-navigation-shell {
  background-color: var(--eye-accent-vivid);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: var(--eye-shadow-raised);
}

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

.eye-brand-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--eye-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--eye-surface-pure);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eye-brand-identity svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
}

.eye-bar-menu-trigger {
  display: none;
}

.eye-bar-menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.eye-bar-menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--eye-surface-pure);
  transition: 0.3s ease;
}

.eye-navigation-links-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.eye-navigation-link-item {
  text-decoration: none;
  color: var(--eye-surface-pure);
  font-family: var(--eye-font-display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.eye-navigation-link-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--eye-accent-glow);
  transition: width 0.3s ease;
}

.eye-navigation-link-item:hover {
  color: var(--eye-accent-glow);
}

.eye-navigation-link-item:hover::after {
  width: 100%;
}

/* Preset C: Bold Accent Hero */
.eye-hero-splash {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--eye-accent-vivid) 0%, var(--eye-accent-deep) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6dvh 2rem;
  color: var(--eye-surface-pure);
}

.eye-hero-watermark {
  position: absolute;
  right: 5%;
  bottom: 5%;
  font-size: 20rem;
  font-weight: 900;
  font-family: var(--eye-font-display);
  color: var(--eye-surface-pure);
  opacity: 0.06;
  user-select: none;
  line-height: 1;
}

.eye-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.eye-hero-text-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eye-hero-title {
  font-family: var(--eye-font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.eye-hero-title span {
  color: var(--eye-accent-glow);
  display: block;
}

.eye-hero-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

.eye-action-pill {
  display: inline-block;
  align-self: flex-start;
  background-color: var(--eye-accent-glow);
  color: var(--eye-accent-deep);
  text-decoration: none;
  font-family: var(--eye-font-display);
  font-weight: 800;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  box-shadow: var(--eye-shadow-glow);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.eye-action-pill:hover {
  transform: translateY(-3px);
  background-color: var(--eye-surface-pure);
  box-shadow: 0 15px 30px rgba(56, 189, 248, 0.5);
}

.eye-abstract-illustration {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eye-geometric-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.2) 0%, rgba(2,132,199,0) 70%);
}

.eye-circle-large {
  width: 350px;
  height: 350px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  animation: eye-spin 40s linear infinite;
}

.eye-circle-medium {
  width: 250px;
  height: 250px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.eye-circle-small {
  width: 120px;
  height: 120px;
  background: var(--eye-accent-glow);
  opacity: 0.2;
}

.eye-geometric-rect {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid var(--eye-accent-glow);
  opacity: 0.15;
  top: 10%;
  right: 15%;
  transform: rotate(45deg);
}

@keyframes eye-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Preset C: Diagonal Content Section with bg2.webp */
.eye-diagonal-section {
  position: relative;
  overflow: hidden;
  padding: 14dvh 0;
  background-color: var(--eye-tint-soft);
}

.eye-diagonal-backdrop-clipped {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.75)), url('img/bg2.webp') no-repeat center center;
  background-size: cover;
  clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
  z-index: 1;
}

.eye-diagonal-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.eye-diagonal-pane {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--eye-curve-radius);
  padding: 3rem;
  max-width: 800px;
  color: var(--eye-surface-pure);
  box-shadow: var(--eye-shadow-raised);
}

.eye-diagonal-pane h2 {
  font-family: var(--eye-font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.eye-diagonal-pane p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* Preset C: Features Section with Big Bold Numbers */
.eye-features-segment {
  padding: 10dvh 2rem;
  background-color: var(--eye-surface-pure);
}

.eye-features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.eye-segment-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.eye-segment-header h2 {
  font-family: var(--eye-font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eye-segment-header h2 span {
  color: var(--eye-accent-vivid);
}

.eye-segment-header p {
  color: var(--eye-slate-medium);
  font-size: 1.1rem;
}

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

.eye-feature-card-plain {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: var(--eye-tint-soft);
  border-radius: var(--eye-curve-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eye-feature-card-plain:hover {
  transform: translateY(-5px);
  box-shadow: var(--eye-shadow-raised);
}

.eye-feature-card-number {
  font-family: var(--eye-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--eye-accent-vivid);
  line-height: 1;
}

.eye-feature-card-title {
  font-family: var(--eye-font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eye-feature-card-text {
  color: var(--eye-slate-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Preset C: "How It Works" with Continuous Colored Line Connector */
.eye-mechanism-segment {
  padding: 10dvh 2rem;
  background-color: var(--eye-tint-soft);
}

.eye-mechanism-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.eye-stepper-track {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
  gap: 2rem;
}

.eye-stepper-track::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 10%;
  right: 10%;
  height: 4px;
  background-color: var(--eye-accent-vivid);
  z-index: 1;
}

.eye-stepper-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eye-stepper-circle {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--eye-font-display);
  font-size: 1.8rem;
  font-weight: 900;
  transition: transform 0.3s ease;
  margin-bottom: 1.5rem;
}

.eye-stepper-node:nth-child(odd) .eye-stepper-circle {
  background-color: var(--eye-accent-vivid);
  color: var(--eye-surface-pure);
  box-shadow: var(--eye-shadow-raised);
}

.eye-stepper-node:nth-child(even) .eye-stepper-circle {
  background-color: var(--eye-surface-pure);
  color: var(--eye-accent-vivid);
  border: 4px solid var(--eye-accent-vivid);
  box-shadow: var(--eye-shadow-raised);
}

.eye-stepper-node:hover .eye-stepper-circle {
  transform: scale(1.1);
}

.eye-stepper-headline {
  font-family: var(--eye-font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.eye-stepper-brief {
  color: var(--eye-slate-medium);
  font-size: 0.95rem;
  max-width: 250px;
}

/* Preset C: CTA Strip */
.eye-cta-strip-block {
  background-color: var(--eye-accent-deep);
  color: var(--eye-surface-pure);
  padding: 5rem 2rem;
}

.eye-cta-strip-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.eye-cta-strip-heading {
  font-family: var(--eye-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 700px;
}

.eye-cta-strip-heading span {
  color: var(--eye-accent-glow);
}

.eye-cta-strip-action {
  flex-shrink: 0;
}

/* Expert Page Custom Layout classes */
.eye-expert-bio-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10dvh 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.eye-expert-bio-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.eye-expert-bio-title {
  font-family: var(--eye-font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  text-transform: uppercase;
}

.eye-expert-bio-title span {
  color: var(--eye-accent-vivid);
}

.eye-expert-bio-text {
  font-size: 1.1rem;
  color: var(--eye-slate-medium);
  line-height: 1.8;
}

.eye-expert-bio-right {
  position: relative;
  border-radius: var(--eye-curve-radius);
  overflow: hidden;
  box-shadow: var(--eye-shadow-raised);
}

.eye-expert-bio-right img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Expert Stats Strip (4 horizontal stats in row) */
.eye-stats-strip {
  background-color: var(--eye-accent-vivid);
  color: var(--eye-surface-pure);
  padding: 4rem 2rem;
}

.eye-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  text-align: center;
}

.eye-stat-numerical {
  font-family: var(--eye-font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--eye-accent-glow);
}

.eye-stat-subtitle {
  font-family: var(--eye-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}

/* Concluding section bg3.webp and text overlay */
.eye-concluding-splash {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 6dvh 2rem;
}

.eye-concluding-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.8)), url('img/bg3.webp') no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.eye-concluding-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: var(--eye-surface-pure);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.eye-concluding-inner h2 {
  font-family: var(--eye-font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
}

.eye-concluding-inner p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.7;
}

/* Reservation Page Layout split */
.eye-reserve-segment {
  padding: 10dvh 2rem;
  background-color: var(--eye-tint-soft);
}

.eye-reserve-grid-dual {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: flex-start;
}

.eye-reserve-card-form {
  background-color: var(--eye-surface-pure);
  padding: 3rem;
  border-radius: var(--eye-curve-radius);
  box-shadow: var(--eye-shadow-raised);
}

.eye-reserve-form-title {
  font-family: var(--eye-font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--eye-accent-deep);
}

.eye-form-field-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eye-form-field-group label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--eye-slate-medium);
}

.eye-form-text-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--eye-font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.eye-form-text-input:focus {
  outline: none;
  border-color: var(--eye-accent-vivid);
}

.eye-form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--eye-slate-medium);
  line-height: 1.4;
}

.eye-form-checkbox-label input {
  margin-top: 0.2rem;
}

.eye-form-trigger-btn {
  background-color: var(--eye-accent-vivid);
  color: var(--eye-surface-pure);
  font-family: var(--eye-font-display);
  font-weight: 800;
  text-transform: uppercase;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 100%;
  display: inline-block;
  text-align: center;
}

.eye-form-trigger-btn:hover {
  background-color: var(--eye-accent-deep);
  transform: translateY(-2px);
}

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

.eye-reserve-info-card {
  background-color: var(--eye-surface-pure);
  padding: 2rem;
  border-radius: var(--eye-curve-radius);
  box-shadow: var(--eye-shadow-raised);
}

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

.eye-reserve-info-badge {
  color: var(--eye-accent-vivid);
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye-reserve-info-badge svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.eye-reserve-info-headline {
  font-family: var(--eye-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--eye-accent-deep);
}

.eye-reserve-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.eye-reserve-info-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--eye-slate-medium);
}

.eye-reserve-info-circle-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--eye-accent-vivid);
  flex-shrink: 0;
}

.eye-mailto-anchor {
  color: var(--eye-accent-vivid);
  text-decoration: none;
  font-weight: 600;
}

.eye-mailto-anchor:hover {
  text-decoration: underline;
}

/* FAQ Accordion bottom */
.eye-faq-block {
  padding: 10dvh 2rem;
  background-color: var(--eye-surface-pure);
}

.eye-faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.eye-accordion-pack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 3rem;
}

.eye-accordion-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.5rem;
}

.eye-accordion-question {
  font-family: var(--eye-font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--eye-accent-deep);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.eye-accordion-answer {
  color: var(--eye-slate-medium);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Legal Documents & Thank you details */
.eye-legal-segment {
  padding: 12dvh 2rem;
  max-width: 800px;
  margin: 0 auto;
  min-height: 90vh;
}

.eye-legal-segment h1 {
  font-family: var(--eye-font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: var(--eye-accent-deep);
}

.eye-legal-segment h2 {
  font-family: var(--eye-font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--eye-accent-deep);
}

.eye-legal-segment p {
  color: var(--eye-slate-medium);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

/* Footer structure */
.eye-footer-base {
  background-color: var(--eye-accent-deep);
  color: var(--eye-surface-pure);
  padding: 4rem 2rem;
  border-top: 5px solid var(--eye-accent-vivid);
}

.eye-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.eye-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.eye-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--eye-font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--eye-surface-pure);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.eye-footer-brand svg {
  fill: currentColor;
  width: 32px;
  height: 32px;
}

.eye-footer-links-row {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.eye-footer-link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.eye-footer-link:hover {
  color: var(--eye-accent-glow);
}

.eye-footer-disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.eye-footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* Cookie banner style */
.eye-cookie-banner-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--eye-accent-deep);
  color: var(--eye-surface-pure);
  padding: 1.5rem 2rem;
  z-index: 9999;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
  display: none;
}

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

.eye-cookie-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

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

.eye-cookie-button-pill {
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  font-family: var(--eye-font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.eye-cookie-btn-accept {
  background-color: var(--eye-accent-glow);
  color: var(--eye-accent-deep);
}

.eye-cookie-btn-decline {
  background-color: transparent;
  color: var(--eye-surface-pure);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.eye-cookie-button-pill:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Response for handheld devices & Mobile menu */
@media (max-width: 968px) {
  .eye-bar-menu-icon {
    display: flex;
  }

  .eye-navigation-links-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--eye-accent-vivid);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--eye-shadow-raised);
  }

  .eye-bar-menu-trigger:checked ~ .eye-navigation-links-list {
    display: flex;
  }

  .eye-bar-menu-trigger:checked ~ .eye-bar-menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .eye-bar-menu-trigger:checked ~ .eye-bar-menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .eye-bar-menu-trigger:checked ~ .eye-bar-menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .eye-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eye-abstract-illustration {
    height: 300px;
  }

  .eye-diagonal-section {
    padding: 10dvh 0;
  }

  .eye-diagonal-pane {
    padding: 2rem;
  }

  .eye-stepper-track {
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
  }

  .eye-stepper-track::before {
    top: 50px;
    bottom: 50px;
    left: 37px;
    width: 4px;
    height: auto;
    right: auto;
  }

  .eye-stepper-node {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem;
    align-items: center;
  }

  .eye-stepper-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .eye-stepper-brief {
    max-width: 100%;
  }

  .eye-cta-strip-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .eye-expert-bio-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eye-expert-bio-right img {
    height: 350px;
  }

  .eye-reserve-grid-dual {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .eye-cookie-banner-body {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}