/* Custom CSS Variables - Theme: Light / Emerald Vision */
:root {
  --ocular-bg: #f8f9f6;
  --ocular-surface: #ffffff;
  --ocular-tone: #0f4c3a;
  --ocular-tone-hover: #083327;
  --ocular-ink: #1c2520;
  --ocular-ink-muted: #53635b;
  --ocular-amber: #d97706;
  --ocular-amber-soft: #fef3c7;
  --ocular-mint: #e8f4f0;
  --ocular-mint-dark: #c4e5db;
  --ocular-gradient: linear-gradient(135deg, #0f4c3a 0%, #1c6b53 100%);
  --ocular-gradient-gold: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --ocular-radius-soft: 16px;
  --ocular-radius-pill: 999px;
  
  --ocular-shadow-soft: 0 8px 24px rgba(15, 76, 58, 0.08);
  --ocular-shadow-heavy: 0 20px 60px rgba(15, 76, 58, 0.15);
  --ocular-shadow-deep: 0 30px 80px rgba(10, 53, 40, 0.22);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--ocular-bg);
  color: var(--ocular-ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Base */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ocular-ink);
  line-height: 1.25;
}

a {
  color: var(--ocular-tone);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--ocular-amber);
}

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

/* Header & Navigation (Preset K Depth & Shadow) */
.sight-head-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.sight-head-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sight-brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--ocular-tone);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
}

.sight-brand-mark svg {
  color: var(--ocular-tone);
}

.sight-link-group {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.sight-nav-item {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ocular-ink-muted);
  position: relative;
  padding: 0.25rem 0;
}

.sight-nav-item:hover,
.sight-nav-item.active-link {
  color: var(--ocular-tone);
}

.sight-nav-item.active-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--ocular-amber);
  border-radius: 2px;
}

.sight-nav-cta {
  background: var(--ocular-gradient);
  color: #ffffff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--ocular-radius-pill);
  box-shadow: var(--ocular-shadow-soft);
}

.sight-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--ocular-shadow-heavy);
}

/* Hamburger CSS-only */
.sight-nav-checkbox {
  display: none;
}

.sight-hamburger-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.sight-hamburger-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--ocular-ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Scroll Progress Line (Scroll-driven animation) */
.sight-progress-line {
  height: 3px;
  background: var(--ocular-gradient-gold);
  width: 100%;
  transform-origin: 0 50%;
  animation: sight-progress linear;
  animation-timeline: scroll(root block);
}

@keyframes sight-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* Preset K: Hero Panel Stack */
.ocular-deck-stage {
  min-height: 90vh;
  position: relative;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.ocular-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: var(--ocular-hero-gradient, linear-gradient(135deg, rgba(15, 76, 58, 0.88), rgba(28, 107, 83, 0.82)));
}

.ocular-stack-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.retina-stack-item {
  border-radius: var(--ocular-radius-soft);
  padding: 2.5rem;
  transition: all 0.4s ease;
}

.stack-bg-back {
  position: absolute;
  top: -20px;
  left: 5%;
  right: 5%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  transform: translateY(-10px) scale(0.95);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #ffffff;
  font-weight: 500;
}

.stack-bg-mid {
  position: absolute;
  top: -10px;
  left: 2.5%;
  right: 2.5%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  transform: translateY(-5px) scale(0.98);
  z-index: 2;
  padding: 1rem 2rem;
}

.retina-badge-pill {
  display: inline-block;
  background: var(--ocular-amber);
  color: #ffffff;
  padding: 0.25rem 0.85rem;
  border-radius: var(--ocular-radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
}

.stack-fg-front {
  position: relative;
  z-index: 3;
  background: var(--ocular-surface);
  box-shadow: var(--ocular-shadow-deep);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.opti-category-badge {
  display: inline-block;
  background: var(--ocular-mint);
  color: var(--ocular-tone);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: var(--ocular-radius-pill);
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.opti-heading-main {
  font-size: 2.5rem;
  color: var(--ocular-ink);
  margin-bottom: 1.25rem;
}

.opti-lead-p {
  font-size: 1.15rem;
  color: var(--ocular-ink-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.opti-action-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.opti-action-trigger {
  display: inline-block;
  background: var(--ocular-gradient-gold);
  color: #ffffff !important;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: var(--ocular-radius-pill);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.opti-action-trigger:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(217, 119, 6, 0.4);
}

.opti-sec-trigger {
  display: inline-block;
  background: var(--ocular-mint);
  color: var(--ocular-tone);
  font-weight: 700;
  padding: 0.9rem 1.8rem;
  border-radius: var(--ocular-radius-pill);
}

.opti-sec-trigger:hover {
  background: var(--ocular-mint-dark);
}

/* Preset K: Content with floating-frame img left & raised panel right */
.nutrient-panel-layout {
  padding: 10dvh 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.nutrient-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.lutein-media-frame {
  position: relative;
  border-radius: var(--ocular-radius-soft);
  overflow: hidden;
  box-shadow: var(--ocular-shadow-heavy);
  transform: perspective(1000px) rotateY(4deg);
}

.lutein-media-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.lutein-media-caption {
  position: absolute;
  bottom: 0;
  inset-x: 0;
  background: rgba(15, 76, 58, 0.85);
  color: #ffffff;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  backdrop-filter: blur(4px);
}

.vision-article-box {
  background: var(--ocular-surface);
  box-shadow: var(--ocular-shadow-heavy);
  padding: 2.5rem;
  border-radius: var(--ocular-radius-soft);
  border: 1px solid var(--ocular-mint);
}

.opti-heading-sub {
  font-size: 2rem;
  color: var(--ocular-ink);
  margin-bottom: 1rem;
}

.opti-body-p {
  color: var(--ocular-ink-muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.vision-highlight-chip {
  background: var(--ocular-amber-soft);
  border-left: 4px solid var(--ocular-amber);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: #92400e;
  font-size: 0.95rem;
  margin-top: 1.5rem;
}

/* Preset K: Features 3 col levitating cards */
.eye-habit-deck {
  padding: 10dvh 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

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

.eye-habit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.focus-pillar-item {
  background: var(--ocular-surface);
  padding: 2.2rem 1.8rem;
  border-radius: var(--ocular-radius-soft);
  box-shadow: var(--ocular-shadow-heavy);
  transition: all 0.35s ease;
  border: 1px solid rgba(15, 76, 58, 0.05);
}

.focus-pillar-item:hover {
  transform: translateY(-12px);
  box-shadow: var(--ocular-shadow-deep);
}

.focus-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--ocular-mint);
  color: var(--ocular-tone);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.focus-pillar-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.focus-pillar-desc {
  color: var(--ocular-ink-muted);
  font-size: 0.95rem;
}

/* Preset K: "How it works" - Elevated Pill Cards */
.sight-path-sequence {
  padding: 10dvh 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}

.sight-path-head {
  text-align: center;
  margin-bottom: 3rem;
}

.sight-step-flex {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.sight-pill-step {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--ocular-surface);
  border-radius: var(--ocular-radius-pill);
  padding: 1.5rem 2.5rem;
  box-shadow: var(--ocular-shadow-soft);
  border: 1px solid var(--ocular-mint);
  transition: transform 0.3s ease;
}

.sight-pill-step:hover {
  transform: scale(1.02);
  box-shadow: var(--ocular-shadow-heavy);
}

.sight-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--ocular-amber);
  background: var(--ocular-amber-soft);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sight-step-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.sight-step-content p {
  color: var(--ocular-ink-muted);
  font-size: 0.95rem;
}

/* Preset K: CTA Strip Heavy Overlay + Floating Panel */
.vision-banner-strip {
  position: relative;
  background-image: url('img/bg.webp');
  background-size: cover;
  background-position: center;
  padding: 12dvh 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vision-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 40, 30, 0.85);
}

.vision-floating-core {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 750px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--ocular-radius-soft);
  padding: 3.5rem 2.5rem;
  text-align: center;
  box-shadow: var(--ocular-shadow-deep);
}

/* Expert Page Specifics */
.expert-hero-stage {
  padding: 8dvh 1.5rem 4dvh;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.expert-showcase-zone {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4dvh 1.5rem 8dvh;
}

.expert-frame-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.expert-media-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--ocular-shadow-deep);
}

.expert-media-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.expert-text-card {
  background: var(--ocular-surface);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--ocular-shadow-heavy);
}

.expert-stats-strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 8dvh;
  padding: 0 1.5rem;
}

.expert-stat-pill {
  background: var(--ocular-surface);
  padding: 1.5rem 2.5rem;
  border-radius: var(--ocular-radius-pill);
  box-shadow: var(--ocular-shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 200px;
  border: 1px solid var(--ocular-mint);
}

.expert-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ocular-tone);
}

.expert-lbl {
  font-size: 0.85rem;
  color: var(--ocular-ink-muted);
  font-weight: 600;
}

.expert-bullets {
  margin-top: 1rem;
  padding-left: 1.25rem;
  color: var(--ocular-ink-muted);
}

.expert-bullets li {
  margin-bottom: 0.5rem;
}

/* Reserve Page & Forms */
.reserve-content-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4dvh 1.5rem 8dvh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.reserve-info-card {
  background: var(--ocular-surface);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--ocular-shadow-soft);
  margin-bottom: 2rem;
}

.reserve-card-icon {
  width: 40px;
  height: 40px;
  background: var(--ocular-tone);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1rem;
}

.reserve-bullet-list {
  list-style: none;
  margin-top: 1rem;
}

.reserve-bullet-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--ocular-ink-muted);
  margin-bottom: 0.5rem;
}

.reserve-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.reserve-dot.red { background: #ef4444; }
.reserve-dot.green { background: #10b981; }
.reserve-dot.blue { background: #3b82f6; }
.reserve-dot.amber { background: #f59e0b; }

.reserve-form-card {
  background: var(--ocular-surface);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--ocular-shadow-deep);
  border: 1px solid var(--ocular-mint-dark);
}

.reserve-input-group {
  margin-bottom: 1.5rem;
}

.reserve-input-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--ocular-ink);
}

.reserve-input-group input,
.reserve-input-group textarea {
  width: 100%;
  padding: 0.85rem 1.2rem;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease;
}

.reserve-input-group input:focus,
.reserve-input-group textarea:focus {
  outline: none;
  border-color: var(--ocular-tone);
  box-shadow: 0 0 0 3px rgba(15, 76, 58, 0.15);
}

.reserve-check-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.reserve-check-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--ocular-tone);
}

.reserve-check-label {
  font-size: 0.85rem;
  color: var(--ocular-ink-muted);
}

.reserve-submit-btn {
  width: 100%;
}

.reserve-contact-direct {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ocular-mint);
  text-align: center;
  font-size: 0.9rem;
  color: var(--ocular-ink-muted);
}

.reserve-email-link {
  font-weight: 700;
  color: var(--ocular-tone);
}

/* FAQ Accordion Section */
.opti-faq-zone {
  max-width: 900px;
  margin: 0 auto;
  padding: 6dvh 1.5rem 10dvh;
}

.opti-faq-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.opti-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.opti-faq-item {
  background: var(--ocular-surface);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: var(--ocular-shadow-soft);
  border: 1px solid var(--ocular-mint);
}

.opti-faq-title {
  font-size: 1.15rem;
  color: var(--ocular-tone);
  margin-bottom: 0.5rem;
}

.opti-faq-answer {
  color: var(--ocular-ink-muted);
  font-size: 0.95rem;
}

/* Thank You Page */
.thank-page-main {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4dvh 1.5rem;
}

.thank-card-wrapper {
  background: var(--ocular-surface);
  max-width: 900px;
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--ocular-shadow-deep);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.thank-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}

.thank-text-content {
  padding: 3rem 2.5rem;
}

.thank-check-icon {
  width: 64px;
  height: 64px;
  background: var(--ocular-mint);
  color: var(--ocular-tone);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* Legal Pages */
.legal-page-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 8dvh 1.5rem;
}

.legal-content-card {
  background: var(--ocular-surface);
  padding: 3.5rem;
  border-radius: 24px;
  box-shadow: var(--ocular-shadow-heavy);
}

.legal-meta-time {
  font-size: 0.85rem;
  color: var(--ocular-ink-muted);
  margin-bottom: 2rem;
}

.legal-section-block p {
  margin-bottom: 1.25rem;
  color: var(--ocular-ink-muted);
  font-size: 1rem;
}

/* Footer Section */
.sight-foot-area {
  background-color: #0d1e17;
  color: #e2e8f0;
  padding: 5rem 1.5rem 2rem;
  margin-top: auto;
}

.sight-foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sight-foot-brand .sight-brand-mark {
  color: #ffffff;

}

.sight-foot-tagline {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  max-width: 320px;
}

.sight-foot-links {
  display: flex;
  gap: 1.8rem;
  flex-wrap: wrap;
}

.sight-foot-links a {
  color: #cbd5e1;
  font-size: 0.95rem;
}

.sight-foot-links a:hover {
  color: var(--ocular-amber);
}

.sight-foot-bottom {
  max-width: 1240px;
  margin: 2rem auto 0;
  text-align: center;
}

.sight-disclaimer-note {
  font-size: 0.825rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 950px;
  margin: 0 auto 1.5rem;
}

.sight-copy-line {
  font-size: 0.85rem;
  color: #64748b;
}

/* Cookie Banner Component */
.cookie-banner-box {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(13, 30, 23, 0.96);
  backdrop-filter: blur(12px);
  color: #ffffff;
  padding: 1.25rem 1.5rem;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner-content {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner-content p {
  font-size: 0.9rem;
  color: #e2e8f0;
  max-width: 800px;
}

.cookie-btn-group {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: var(--ocular-radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

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

.cookie-decline {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .nutrient-panel-inner,
  .expert-frame-wrapper,
  .reserve-content-layout,
  .thank-card-wrapper {
    grid-template-columns: 1fr;
  }
  
  .lutein-media-frame {
    transform: none;
  }
  
  .opti-heading-main {
    font-size: 2rem;
  }
  
  .opti-heading-sub {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .sight-hamburger-toggle {
    display: flex;
  }
  
  .sight-link-group {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
  }
  
  .sight-nav-checkbox:checked ~ .sight-link-group {
    display: flex;
  }
  
  .stack-bg-back, .stack-bg-mid {
    display: none;
  }
  
  .retina-stack-item {
    padding: 1.8rem 1.25rem;
  }
  
  .sight-pill-step {
    flex-direction: column;
    text-align: center;
    border-radius: var(--ocular-radius-soft);
    padding: 1.5rem;
  }
  
  .expert-stat-pill {
    width: 100%;
  }
  
  .legal-content-card {
    padding: 2rem 1.5rem;
  }
}

/* Viewport Scroll Animations */
@supports (animation-timeline: view()) {
  .focus-pillar-item,
  .sight-pill-step,
  .opti-faq-item {
    animation: fade-in-up linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
  }

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