/* --- OPTIMIZED EYE-HEALTH STYLING SHEETS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --sight-base-bg: #f8fafc;
  --sight-dark-bg: #091a22;
  --sight-glass-bg: rgba(255, 255, 255, 0.08);
  --sight-panel-bg: #ffffff;
  --sight-lead-color: #0d5c75;
  --sight-lead-hover: #073a4b;
  --sight-accent-color: #f5a623;
  --sight-accent-hover: #d48b16;
  --sight-text-body: #334155;
  --sight-text-pale: #64748b;
  --sight-text-light: #f8fafc;
  --sight-border-color: #e2e8f0;
  
  --sight-primary-grad: linear-gradient(135deg, #0d5c75 0%, #059669 100%);
  --sight-accent-grad: linear-gradient(135deg, #f5a623 0%, #d97706 100%);
  --sight-dark-grad: linear-gradient(135deg, #0f172a 0%, #091a22 100%);
  --sight-soft-grad: linear-gradient(135deg, rgba(13, 92, 117, 0.04) 0%, rgba(5, 150, 105, 0.04) 100%);

  --sight-font-head: 'Montserrat', sans-serif;
  --sight-font-body: 'Inter', sans-serif;
  
  --sight-radius-standard: 16px;
  --sight-radius-pill: 999px;
  --sight-shadow-raised: 0 10px 25px -5px rgba(13, 92, 117, 0.1), 0 8px 10px -6px rgba(13, 92, 117, 0.05);
  --sight-shadow-deep: 0 20px 40px -10px rgba(13, 92, 117, 0.15), 0 10px 20px -10px rgba(13, 92, 117, 0.1);
  --sight-shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
}

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

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

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- SCROLL PROGRESS CHRONOLOGY --- */
@keyframes sight-progress-grow {
  to { width: 100%; }
}
.sight-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--sight-accent-grad);
  width: 0%;
  z-index: 10001;
  animation: sight-progress-grow linear;
  animation-timeline: scroll();
}

/* --- VIEWPORT REVEAL ANIMATIONS (CSS-ONLY) --- */
@keyframes sight-reveal-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sight-reveal-item {
  animation: sight-reveal-up 0.8s ease-out both;
  animation-timeline: view();
  animation-range: entry 5% cover 25%;
}

/* --- GLOBAL SIGHT-SHELL BOUNDARY --- */
.sight-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- HEADER / NAVIGATION SYSTEM --- */
.sight-masthead {
  background: var(--sight-panel-bg);
  box-shadow: var(--sight-shadow-raised);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--sight-border-color);
}

.sight-masthead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.sight-brand-anchor {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sight-lead-color);
  font-family: var(--sight-font-head);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.sight-brand-anchor svg {
  transition: transform 0.3s ease;
}

.sight-brand-anchor:hover svg {
  transform: rotate(15deg);
}

.sight-nav-bar {
  display: flex;
  align-items: center;
  gap: 32px;
}

.eye-link-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.eye-link-list a {
  text-decoration: none;
  font-family: var(--sight-font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sight-text-body);
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 6px 0;
  position: relative;
}

.eye-link-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sight-primary-grad);
  transition: width 0.3s ease;
}

.eye-link-list a:hover {
  color: var(--sight-lead-color);
}

.eye-link-list a:hover::after {
  width: 100%;
}

.eye-link-list li.active-link a {
  color: var(--sight-lead-color);
}

.eye-link-list li.active-link a::after {
  width: 100%;
}

/* Hamburguer CSS Only */
.eye-toggle-input {
  display: none;
}

.eye-toggle-trigger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.eye-toggle-trigger span {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--sight-lead-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- TYPOGRAPHY COMPONENT STYLING --- */
h1, h2, h3, h4 {
  font-family: var(--sight-font-head);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.sight-heading-lead {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--sight-text-light);
  margin-bottom: 24px;
}

.sight-sub-heading {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(248, 250, 252, 0.9);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 700px;
}

.sight-section-label {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--sight-lead-color);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.sight-section-label::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--sight-accent-grad);
  margin: 12px auto 0;
  border-radius: var(--sight-radius-pill);
}

.sight-section-tagline {
  text-align: center;
  color: var(--sight-text-pale);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 60px;
}

/* --- ACTION TRIGGER (BUTTONS) --- */
.opti-action-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--sight-font-head);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: var(--sight-radius-standard);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: none;
}

.opti-action-trigger-primary {
  background: var(--sight-accent-grad);
  color: var(--sight-text-light);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.opti-action-trigger-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.6);
  background: var(--sight-accent-hover);
}

.opti-action-trigger-dark {
  background: var(--sight-dark-bg);
  color: var(--sight-text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.opti-action-trigger-dark:hover {
  transform: translateY(-2px);
  background: #0f2e3d;
  box-shadow: var(--sight-shadow-deep);
}

.opti-action-trigger-outline {
  background: transparent;
  border: 2px solid var(--sight-lead-color);
  color: var(--sight-lead-color);
}

.opti-action-trigger-outline:hover {
  background: var(--sight-lead-color);
  color: var(--sight-text-light);
  transform: translateY(-2px);
}

/* --- INDEX HERO SEGMENT (PRESET F STYLE) --- */
.sight-welcome-zone {
  position: relative;
  background: var(--sight-primary-grad);
  padding: 120px 0 160px;
  overflow: hidden;
  color: var(--sight-text-light);
}

.sight-welcome-zone::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/bg.webp') center center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: overlay;
  z-index: 1;
}

.sight-welcome-zone-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Animated Counters Block */
.sight-counter-belt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 900px;
  margin: 60px 0 40px;
}

.sight-counter-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--sight-radius-standard);
  padding: 24px;
  text-align: center;
}

.sight-counter-num {
  font-family: var(--sight-font-head);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--sight-accent-color);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.sight-counter-txt {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Horizontal Trust Strip */
.sight-trust-layer {
  width: 100%;
  max-width: 1000px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.sight-trust-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
  font-family: var(--sight-font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* --- HORIZONTAL TRACK / CONTENT (PRESET F) --- */
.sight-track-division {
  padding: 100px 0;
  background: var(--sight-soft-grad);
}

.sight-track-panel-scroller {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.sight-track-element {
  background: var(--sight-panel-bg);
  border-radius: var(--sight-radius-standard);
  padding: 40px 30px;
  box-shadow: var(--sight-shadow-raised);
  border-top: 4px solid var(--sight-lead-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sight-track-element:hover {
  transform: translateY(-8px);
  box-shadow: var(--sight-shadow-deep);
}

.sight-track-element-icon {
  margin-bottom: 24px;
  color: var(--sight-lead-color);
}

.sight-track-element h3 {
  color: var(--sight-lead-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
  text-transform: none;
}

.sight-track-element p {
  color: var(--sight-text-pale);
  font-size: 0.95rem;
}

/* Background image overlay section */
.sight-photo-plate {
  position: relative;
  background: var(--sight-dark-grad);
  padding: 120px 0;
  color: var(--sight-text-light);
  border-radius: var(--sight-radius-standard);
  overflow: hidden;
  margin: 40px 0;
}

.sight-photo-plate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/bg2.webp') center center / cover no-repeat;
  opacity: 0.25;
  z-index: 1;
}

.sight-photo-plate-inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.sight-photo-plate H2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 20px;
}

.sight-photo-plate p {
  font-size: 1.15rem;
  color: rgba(248, 250, 252, 0.9);
  margin-bottom: 32px;
}

/* --- FEATURES GRID (PRESET F COLOR FLIP) --- */
.opti-benefits-section {
  padding: 100px 0;
  background: var(--sight-panel-bg);
}

.opti-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.opti-benefit-unit {
  background: var(--sight-base-bg);
  border: 1px solid var(--sight-border-color);
  border-radius: var(--sight-radius-standard);
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.opti-benefit-unit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--sight-primary-grad);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.opti-benefit-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sight-panel-bg);
  box-shadow: var(--sight-shadow-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sight-lead-color);
  margin-bottom: 24px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.opti-benefit-unit h3 {
  color: var(--sight-lead-color);
  font-size: 1.3rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.opti-benefit-unit p {
  color: var(--sight-text-pale);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

/* Color Flip On Hover */
.opti-benefit-unit:hover {
  transform: translateY(-6px);
  box-shadow: var(--sight-shadow-deep);
}

.opti-benefit-unit:hover::before {
  opacity: 1;
}

.opti-benefit-unit:hover .opti-benefit-icon-wrapper {
  transform: scale(1.1);
  background: var(--sight-accent-grad);
  color: var(--sight-text-light);
}

.opti-benefit-unit:hover h3 {
  color: var(--sight-text-light);
}

.opti-benefit-unit:hover p {
  color: rgba(248, 250, 252, 0.9);
}

/* --- "HOW IT WORKS" PROGRESS LAYER --- */
.opti-process-section {
  padding: 100px 0;
  background: var(--sight-soft-grad);
}

.opti-progress-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 50px auto 0;
  gap: 24px;
}

.opti-progress-bar-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 3px;
  background: var(--sight-border-color);
  z-index: 1;
}

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

.opti-process-number-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--sight-panel-bg);
  border: 4px solid var(--sight-lead-color);
  box-shadow: var(--sight-shadow-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sight-font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--sight-lead-color);
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.opti-process-node:hover .opti-process-number-circle {
  background: var(--sight-accent-grad);
  color: var(--sight-text-light);
  border-color: var(--sight-accent-color);
  transform: scale(1.1);
}

.opti-process-title {
  font-size: 1.1rem;
  color: var(--sight-lead-color);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.opti-process-explanation {
  font-size: 0.9rem;
  color: var(--sight-text-pale);
  max-width: 240px;
}

/* --- CTA STRIP (PRESET F STYLE) --- */
.sight-cta-stripe {
  background: var(--sight-primary-grad);
  color: var(--sight-text-light);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.sight-cta-stripe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/bg.webp') center center / cover no-repeat;
  opacity: 0.12;
  mix-blend-mode: overlay;
}

.sight-cta-stripe-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.sight-cta-stripe-text {
  max-width: 700px;
}

.sight-cta-stripe-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 12px;
}

.sight-cta-stripe-text p {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.9);
}

/* --- EXPERT PAGE COMPONENT LAYOUT --- */
.opti-expert-profile {
  padding: 100px 0;
  background: var(--sight-panel-bg);
}

.opti-expert-grid {
  display: grid;
  grid-template-columns: 4fr 6fr;
  gap: 60px;
  align-items: center;
}

.opti-expert-image-frame {
  position: relative;
  border-radius: var(--sight-radius-standard);
  overflow: hidden;
  box-shadow: var(--sight-shadow-deep);
  aspect-ratio: 4/5;
}

.opti-expert-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.opti-expert-image-frame:hover img {
  transform: scale(1.05);
}

.opti-expert-bio {
  color: var(--sight-text-body);
}

.opti-expert-role {
  font-family: var(--sight-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sight-accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.opti-expert-fullname {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--sight-lead-color);
  margin-bottom: 24px;
}

.opti-expert-bio-prose {
  font-size: 1.05rem;
  color: var(--sight-text-pale);
  margin-bottom: 24px;
}

.p-lead {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sight-lead-color);
  margin-bottom: 16px;
}

/* Statistical Blocks Grid on Expert */
.opti-stat-mesh {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.opti-stat-box {
  background: var(--sight-soft-grad);
  border: 1px solid var(--sight-border-color);
  border-radius: var(--sight-radius-standard);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.opti-stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--sight-lead-color);
}

.opti-stat-number {
  font-family: var(--sight-font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--sight-accent-color);
  display: block;
  margin-bottom: 6px;
}

.opti-stat-label {
  font-size: 0.85rem;
  color: var(--sight-text-pale);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- RESERVATION LAYOUT (PRESET F 2-COLSTICKY) --- */
.opti-booking-arena {
  padding: 100px 0;
  background: var(--sight-panel-bg);
}

.opti-booking-layout {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  gap: 60px;
  align-items: start;
}

.opti-sticky-briefing {
  position: sticky;
  top: 120px;
}

.opti-sticky-briefing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--sight-lead-color);
  margin-bottom: 16px;
}

.opti-sticky-briefing p {
  color: var(--sight-text-pale);
  font-size: 1.05rem;
  margin-bottom: 30px;
}

.opti-booking-perk-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}

.opti-booking-perk-card {
  display: flex;
  gap: 16px;
  background: var(--sight-soft-grad);
  padding: 20px;
  border-radius: var(--sight-radius-standard);
  border-left: 4px solid var(--sight-accent-color);
}

.opti-perk-num-badge {
  width: 32px;
  height: 32px;
  background: var(--sight-lead-color);
  color: var(--sight-text-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.opti-perk-text-block h4 {
  font-size: 1.05rem;
  color: var(--sight-lead-color);
  margin-bottom: 6px;
  text-transform: none;
}

.opti-perk-text-block p {
  font-size: 0.9rem;
  color: var(--sight-text-pale);
  margin: 0;
}

/* Booking Form */
.opti-booking-form-wrap {
  background: var(--sight-panel-bg);
  box-shadow: var(--sight-shadow-deep);
  border-radius: var(--sight-radius-standard);
  padding: 40px;
  border: 1px solid var(--sight-border-color);
}

.opti-booking-form-wrap h3 {
  color: var(--sight-lead-color);
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.eye-input-field {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--sight-font-body);
  font-size: 0.95rem;
  color: var(--sight-text-body);
  background-color: var(--sight-base-bg);
  border: 1px solid var(--sight-border-color);
  border-radius: var(--sight-radius-standard);
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.eye-input-field:focus {
  border-color: var(--sight-lead-color);
  background-color: var(--sight-panel-bg);
}

textarea.eye-input-field {
  resize: vertical;
  min-height: 120px;
}

.eye-form-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
  cursor: pointer;
}

.eye-form-terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--sight-lead-color);
}

.eye-form-terms-text {
  font-size: 0.85rem;
  color: var(--sight-text-pale);
  line-height: 1.4;
}

.eye-form-terms-text a {
  color: var(--sight-lead-color);
  text-decoration: underline;
}

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

.opti-alternate-contact {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--sight-text-pale);
}

.opti-alternate-contact a {
  color: var(--sight-lead-color);
  font-weight: 600;
  text-decoration: none;
}

.opti-alternate-contact a:hover {
  text-decoration: underline;
}

/* --- FAQ ACCORDEON COMPONENT --- */
.opti-faq-segment {
  padding: 80px 0;
  background: var(--sight-base-bg);
  border-top: 1px solid var(--sight-border-color);
}

.opti-faq-belt {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.opti-faq-card {
  background: var(--sight-panel-bg);
  border: 1px solid var(--sight-border-color);
  border-radius: var(--sight-radius-standard);
  padding: 24px;
}

.opti-faq-card h4 {
  color: var(--sight-lead-color);
  font-size: 1.1rem;
  margin-bottom: 8px;
  text-transform: none;
}

.opti-faq-card p {
  color: var(--sight-text-pale);
  font-size: 0.95rem;
  margin: 0;
}

/* --- LEGAL / TEXT PAGES --- */
.opti-legal-plate {
  padding: 100px 0;
  background: var(--sight-panel-bg);
  min-height: 70vh;
}

.opti-legal-plate h1 {
  font-size: 2.5rem;
  color: var(--sight-lead-color);
  margin-bottom: 20px;
}

.opti-legal-plate h2 {
  font-size: 1.5rem;
  color: var(--sight-lead-color);
  margin-top: 40px;
  margin-bottom: 16px;
  text-transform: none;
}

.opti-legal-plate p {
  color: var(--sight-text-body);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

.opti-legal-plate ul {
  margin-bottom: 20px;
  padding-left: 24px;
  color: var(--sight-text-body);
}

.opti-legal-plate li {
  margin-bottom: 8px;
}

/* --- THANK YOU SCREEN --- */
.sight-gratitude-screen {
  text-align: center;
  padding: 120px 0;
  background: var(--sight-panel-bg);
  min-height: 70vh;
}

.sight-gratitude-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.sight-gratitude-wrapper h1 {
  font-size: 3rem;
  color: var(--sight-lead-color);
  margin-bottom: 16px;
}

.sight-gratitude-wrapper p {
  font-size: 1.15rem;
  color: var(--sight-text-pale);
  margin-bottom: 40px;
}

.sight-gratitude-frame {
  margin: 40px auto;
  border-radius: var(--sight-radius-standard);
  overflow: hidden;
  box-shadow: var(--sight-shadow-deep);
  height: 300px;
}

.sight-gratitude-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- FOOTER GENERAL STYLING --- */
.sight-base-footer {
  background: var(--sight-dark-grad);
  color: var(--sight-text-light);
  padding: 60px 0 20px;
  margin-top: auto;
}

.sight-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sight-footer-brand-segment {
  max-width: 380px;
}

.sight-footer-brand-segment .sight-brand-anchor {
  color: var(--sight-text-light);
  margin-bottom: 16px;
}

.sight-footer-brand-segment p {
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
}

.sight-footer-links-grid {
  display: flex;
  gap: 60px;
}

.sight-footer-link-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sight-footer-link-column h5 {
  font-family: var(--sight-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sight-accent-color);
  margin-bottom: 8px;
}

.sight-footer-link-column a {
  text-decoration: none;
  font-size: 0.9rem;
  color: rgba(248, 250, 252, 0.7);
  transition: color 0.2s ease;
}

.sight-footer-link-column a:hover {
  color: var(--sight-text-light);
}

.sight-footer-bottom {
  padding-top: 30px;
}

.sight-disclaimer-box {
  font-size: 0.75rem;
  color: rgba(248, 250, 252, 0.45);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sight-copyright-label {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(248, 250, 252, 0.5);
}

/* --- COOKIE ADVISORY PANEL (INDEX ONLY) --- */
.opti-cookie-plate {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sight-dark-bg);
  color: var(--sight-text-light);
  border-top: 2px solid var(--sight-lead-color);
  z-index: 9999;
  padding: 20px 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  display: none; /* Controlled by JS */
}

.opti-cookie-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.opti-cookie-text {
  font-size: 0.9rem;
  line-height: 1.4;
  color: rgba(248, 250, 252, 0.85);
}

.opti-cookie-text a {
  color: var(--sight-accent-color);
  text-decoration: underline;
}

.opti-cookie-controls {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.opti-cookie-btn {
  padding: 10px 20px;
  border-radius: var(--sight-radius-standard);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: var(--sight-font-head);
  transition: all 0.2s ease;
}

.opti-cookie-btn-accept {
  background: var(--sight-accent-grad);
  color: var(--sight-text-light);
}

.opti-cookie-btn-accept:hover {
  background: var(--sight-accent-hover);
}

.opti-cookie-btn-decline {
  background: transparent;
  color: rgba(248, 250, 252, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.opti-cookie-btn-decline:hover {
  background: rgba(255,255,255,0.05);
  color: var(--sight-text-light);
}

/* --- MOBILE RESPONSIVENESS MEDIA BLUEPRINTS --- */
@media (max-width: 1024px) {
  .sight-track-panel-scroller {
    grid-template-columns: repeat(2, 1fr);
  }
  .opti-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opti-expert-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .opti-expert-image-frame {
    max-width: 450px;
    margin: 0 auto;
  }
  .opti-booking-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .opti-sticky-briefing {
    position: static;
  }
}

@media (max-width: 768px) {
  /* Hamburger menu interaction */
  .eye-toggle-trigger {
    display: flex;
    z-index: 1001;
  }
  
  .sight-nav-bar {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sight-panel-bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 24px;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--sight-shadow-deep);
    overflow-y: auto;
  }
  
  .eye-link-list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    width: 100%;
  }

  .eye-link-list a {
    font-size: 1.2rem;
  }

  .eye-toggle-input:checked ~ .sight-nav-bar {
    transform: translateX(0);
  }
  
  .eye-toggle-input:checked ~ .eye-toggle-trigger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .eye-toggle-input:checked ~ .eye-toggle-trigger span:nth-child(2) {
    opacity: 0;
  }
  
  .eye-toggle-input:checked ~ .eye-toggle-trigger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Index Hero belt stats */
  .sight-counter-belt {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Horizontal track on mobile: scrollable */
  .sight-track-panel-scroller {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    margin-right: -24px;
    margin-left: -24px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .sight-track-element {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }

  .opti-benefits-grid {
    grid-template-columns: 1fr;
  }

  .opti-process-bar-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .opti-process-bar-container::before {
    display: none;
  }

  .sight-cta-stripe-inner {
    flex-direction: column;
    text-align: center;
  }

  .opti-stat-mesh {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .opti-booking-form-wrap {
    padding: 24px;
  }

  .opti-cookie-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 20px;
  }

  .opti-cookie-controls {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .opti-stat-mesh {
    grid-template-columns: 1fr;
  }
  .sight-trust-layer {
    flex-direction: column;
    gap: 16px;
  }
}