/* ============================================
   SECTIONS — Dark theme
   ============================================ */
.section {
  padding: 64px 24px;
  position: relative;
}
.section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}
.section--no-border::after { display: none; }
.section--alt { background: #F5F5F7; }

.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-d);
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1E1919;
}
.section__body {
  font-size: 15px; line-height: 1.7;
  color: rgba(82,74,62,0.82);
  margin-top: 14px;
}

.see-demo-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-d);
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 10px;
  letter-spacing: 0.02em;
  transition: opacity 0.2s;
}
.see-demo-btn:hover {
  opacity: 0.85;
}

/* ============================================
   HOW IT WORKS — STEPS
   ============================================ */
.step {
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.step:last-child { border-bottom: none; }
.step__label {
  font-size: 11px; font-weight: 700;
  color: var(--blue); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 8px;
}
.step__title {
  font-family: var(--font-d); font-size: 20px;
  font-weight: 700; color: #1E1919;
  line-height: 1.25; margin-bottom: 6px;
}
.step__body {
  font-size: 14px; line-height: 1.55; color: rgba(82,74,62,0.82);
}

/* ============================================
   PRICING
   ============================================ */
.pricing-hero {
  text-align: center;
  padding: 64px 24px;
}
.pricing-hero__amount {
  font-family: var(--font-d);
  font-size: clamp(64px, 18vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1E1919;
  line-height: 1;
}
.pricing-hero__label {
  font-size: 16px; color: rgba(82,74,62,0.82);
  margin-top: 8px;
}
.pricing-hero__sub {
  font-size: 14px; color: rgba(82,74,62,0.6);
  margin-top: 4px;
}

.pricing-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 0 24px 48px;
}
.pricing-card {
  background: #FFFFFF;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px; padding: 20px; text-align: center;
}
.pricing-card--featured {
  border-color: var(--blue);
  background: rgba(0,97,254,0.04);
}
.pricing-card__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(82,74,62,0.6); margin-bottom: 8px;
}
.pricing-card--featured .pricing-card__label { color: var(--blue); }
.pricing-card__price {
  font-family: var(--font-d); font-size: 32px;
  font-weight: 700; color: #1E1919;
}
.pricing-card__unit {
  font-size: 12px; color: rgba(82,74,62,0.6); margin-top: 2px;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(0,97,254,0.15), rgba(79,70,229,0.15));
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  margin-top: 20px;
}
.video-placeholder__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder__text {
  font-size: 13px; color: rgba(82,74,62,0.6);
}

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.faq-q {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  padding: 18px 0; background: none; border: none;
  cursor: pointer; text-align: left;
  font-family: var(--font-d); font-size: 16px;
  font-weight: 600; color: #1E1919;
  line-height: 1.35; min-height: 56px;
}
.faq-q:hover { color: var(--blue); }
.faq-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.25s ease;
  stroke: rgba(82,74,62,0.6);
}
.faq-item.is-open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a__text {
  padding: 0 0 20px;
  font-size: 15px; line-height: 1.7;
  color: rgba(82,74,62,0.82);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1C1D21;
  border-top: 1px solid rgba(247,245,242,0.12);
  padding: 40px 24px 32px;
}
.footer__logo {
  font-family: var(--font-d); font-size: 18px;
  font-weight: 700; color: var(--text); margin-bottom: 10px;
}
.footer__logo span { color: var(--blue); }
.footer__tagline {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
  margin-bottom: 20px; max-width: 300px;
}
.footer__nav-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.footer__nav-row-right {
  display: flex; align-items: center; gap: 16px;
}
.footer__links {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 20px;
}
.footer__link {
  font-size: 14px; color: var(--text-sec); text-decoration: none;
}
.footer__link:hover { color: var(--text); }
.footer__disclaimer {
  font-size: 11px; line-height: 1.7;
  color: var(--text-muted); margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(247,245,242,0.12);
}
.footer__disclaimer strong { color: var(--text-sec); }
.footer__bottom {
  margin-top: 20px; font-size: 12px; color: var(--text-muted);
}

/* ============================================
   STICKY CTA BAR
   ============================================ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 98;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; background: var(--blue); color: #FFFFFF;
  border: none; border-radius: 12px;
  padding: 14px 24px; font-family: var(--font-b);
  font-size: 15px; font-weight: 700;
  text-decoration: none; min-height: 48px;
}
.sticky-cta__btn:hover { background: var(--blue-hover); }
.sticky-cta__btn svg { width: 14px; height: 14px; }

/* Bottom padding for sticky bar */
.footer { padding-bottom: 100px; }

/* ============================================
   3-PANEL ANIMATED GRAPHIC CSS
   ============================================ */
.gfx-box {
  width: 100%;
  max-width: 100%;
  height: 480px;
  background: #FFFFFF;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid #EEE9E2;
  position: relative;
}

/* --- Lab card header --- */
.lc-hdr {
  padding: 10px 16px 8px;
  background: #F7F5F2;
  border-bottom: 1px solid #EEE9E2;
  transition: background 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.lc-hdr.hl { background: #DEEBFF; }
.lc-hdr .ring {
  position: absolute; inset: 0;
  border: 2px solid #0061FE;
  border-radius: 16px 16px 0 0;
  pointer-events: none;
  animation: lc-pulse 1s ease-in-out infinite;
  display: none;
}
.lc-hdr.hl .ring { display: block; }
.lc-hdr__top { display: flex; justify-content: space-between; align-items: center; }
.lc-hdr__label { font-size: 10px; color: rgba(82,74,62,0.78); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.lc-hdr__name { font-family: "Inter Tight", -apple-system, system-ui, sans-serif; font-size: 15px; font-weight: 700; color: #1E1919; margin-top: 1px; }
.lc-hdr__icon { width: 26px; height: 26px; border-radius: 6px; background: linear-gradient(135deg, #0061FE, #4F46E5); display: flex; align-items: center; justify-content: center; }
.lc-hdr__meta { display: flex; gap: 10px; margin-top: 3px; font-size: 11px; color: rgba(82,74,62,0.78); }

/* --- Table --- */
.lc-tbl { flex-shrink: 0; }
.lc-tbl__h {
  display: grid; grid-template-columns: 1.4fr 0.7fr 0.5fr 1fr 0.35fr;
  padding: 4px 14px; font-size: 10px; font-weight: 700;
  color: rgba(82,74,62,0.78); letter-spacing: 0.05em; text-transform: uppercase;
  border-bottom: 1px solid #EDEDED;
}
.lc-tbl__r {
  display: grid; grid-template-columns: 1.4fr 0.7fr 0.5fr 1fr 0.35fr;
  padding: 3px 14px; font-size: 13px; color: rgba(82,74,62,0.82);
  transition: background 0.25s ease; position: relative;
  border-bottom: 1px solid #F5F5F3;
}
.lc-tbl__r:nth-child(even) { background: #FAFBFC; }
.lc-tbl__r.hl { background: linear-gradient(90deg, #FFF8EB, #FEF3C7) !important; }
.lc-tbl__r.hl::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: #F59E0B; border-radius: 0 2px 2px 0;
}
.lc-v { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.lc-v.fl { color: #DC2626; }
.lc-u, .lc-rf { text-align: right; color: rgba(82,74,62,0.78); font-size: 11px; }
.lc-fg { text-align: center; }
.lc-badge { display: inline-block; padding: 0px 5px; border-radius: 3px; font-size: 10px; font-weight: 700; }
.lc-badge--H { background: #FEE2E2; color: #DC2626; }
.lc-badge--L { background: #DEEBFF; color: #0061FE; }

/* --- Accordion zone --- */
.lc-acc-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  gap: 0;
  overflow: hidden;
}
.lc-acc-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(82,74,62,0.78);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lc-acc-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #EEE9E2;
}

.lc-acc-item {
  border-radius: 9px;
  overflow: hidden;
  opacity: 0;
  max-height: 0;
  margin: 0;
  transition:
    max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease,
    margin 0.4s ease;
}
.lc-acc-item.show {
  opacity: 1;
  max-height: 140px;
  margin-bottom: 10px;
}
.lc-acc-item__inner {
  padding: 12px 16px;
}
.lc-acc-item__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lc-acc-item__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.lc-acc-item__body {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(82,74,62,0.82);
}
.lc-acc-item__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  background: linear-gradient(135deg, #059669, #10B981);
  border-radius: 50%;
  font-size: 8px;
  font-weight: 800;
  color: white;
  margin-left: 4px;
  flex-shrink: 0;
}

.lc-acc-item--result {
  background: #FFFBEB;
  border: 1.5px solid #FDE68A;
}
.lc-acc-item--result .lc-acc-item__title { color: #D97706; }
.lc-acc-item--result .lc-acc-item__dot { background: #D97706; }

.lc-acc-item--evidence {
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5);
  border: 1.5px solid #6EE7B7;
}
.lc-acc-item--evidence .lc-acc-item__title { color: #059669; }
.lc-acc-item--evidence .lc-acc-item__dot { background: #059669; }

/* --- Footer (shared by both graphics) --- */
.lc-foot {
  padding: 4px 14px;
  background: #F7F5F2;
  border-top: 1px solid #EEE9E2;
  font-size: 10px;
  color: rgba(82,74,62,0.78);
  display: flex;
  justify-content: space-between;
  flex-shrink: 0;
  align-items: center;
}
.lc-foot-badge {
  background: linear-gradient(135deg, #059669, #10B981);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: .03em;
}

/* --- Graphic panels: show/hide --- */
.g-panel { display: flex; flex-direction: column; flex: 1; overflow: hidden; }
.g-panel.hidden { display: none; }

/* Crossfade wrapper */
.gfx-box {
  position: relative;
}

/* --- Animation controls (Grammarly-style) --- */
.anim-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0 10px;
}
.anim-btn {
  width: 36px; height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(30,25,25,0.06);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, transform .1s ease;
  padding: 0;
}
.anim-btn:hover { background: rgba(30,25,25,0.12); }
.anim-btn:active { transform: scale(0.93); }
.anim-btn svg {
  width: 14px; height: 14px;
  stroke: rgba(82,74,62,0.82);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.anim-btn--pause svg { fill: rgba(82,74,62,0.82); stroke: none; }
.anim-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 4px;
}
.anim-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(30,25,25,0.15);
  transition: background .2s ease, transform .2s ease;
}
.anim-dot.active {
  background: #0061FE;
  transform: scale(1.25);
}

/* ============================================
   GRAPHIC 2 — Doctor/AI Chat (Variation A)
   ============================================ */
.g2-header {
  padding: 12px 16px 10px;
  background: #F7F5F2;
  border-bottom: 1px solid #EEE9E2;
  flex-shrink: 0;
}
.g2-header-row { display: flex; justify-content: space-between; align-items: center; }
.g2-header-label { font-size: 10px; color: rgba(82,74,62,0.78); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.g2-header-name { font-family: "Inter Tight", -apple-system, system-ui, sans-serif; font-size: 15px; font-weight: 700; color: #1E1919; margin-top: 1px; }
.g2-header-meta { display: flex; gap: 10px; margin-top: 3px; font-size: 11px; color: rgba(82,74,62,0.78); }
.g2-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #0061FE, #4F46E5);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 11px; font-weight: 700; flex-shrink: 0;
}

.g2-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  gap: 0;
  overflow: hidden;
}

/* Patient bubble — right */
.g2-patient {
  align-self: flex-end;
  background: #0061FE;
  color: #fff;
  border-radius: 14px 14px 4px 14px;
  padding: 8px 12px;
  max-width: 78%;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.g2-patient.show { opacity: 1; transform: translateY(0); }
.g2-patient-label {
  font-size: 9px; font-weight: 600; opacity: 0.7;
  margin-bottom: 2px; text-transform: uppercase; letter-spacing: .04em;
}

/* AI response bubble — left */
.g2-ai {
  align-self: flex-start;
  border-radius: 14px 14px 14px 4px;
  padding: 9px 12px;
  max-width: 88%;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.g2-ai.show { opacity: 1; transform: translateY(0); }
.g2-ai-title {
  font-size: 13px; font-weight: 700; margin-bottom: 2px;
  display: flex; align-items: center; gap: 5px;
}
.g2-ai-body { font-size: 13px; line-height: 1.4; color: rgba(82,74,62,0.82); }
.g2-ai-cite { font-size: 10px; color: rgba(82,74,62,0.78); margin-top: 3px; font-style: italic; }

.g2-ai--amber { background: #FFFBEB; border: 1.5px solid #FDE68A; }
.g2-ai--amber .g2-ai-title { color: #D97706; }
.g2-ai--green { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); border: 1.5px solid #6EE7B7; }
.g2-ai--green .g2-ai-title { color: #059669; }
.g2-ai--blue { background: #DEEBFF; border: 1.5px solid #A3CDFF; }
.g2-ai--blue .g2-ai-title { color: #0061FE; }

/* Typing dots */
.g2-typing {
  align-self: flex-start;
  padding: 8px 16px;
  background: #f0f0f0;
  border-radius: 14px;
  font-size: 20px;
  letter-spacing: 4px;
  color: rgba(82,74,62,0.78);
  margin-bottom: 5px;
}
.g2-typing span { display: inline-block; animation: g2-blink .9s infinite; }
.g2-typing span:nth-child(2) { animation-delay: .15s; }
.g2-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes g2-blink { 0%,100%{opacity:1;} 50%{opacity:.2;} }

/* G2 loading status row */
.g2-status {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 5px;
  opacity: 0;
  transition: opacity .4s ease;
}
.g2-status.show { opacity: 1; }
.g2-status.fade-out { opacity: 0; }
.g2-spinner {
  width: 18px; height: 18px; flex-shrink: 0;
  border: 2.5px solid #EEE9E2;
  border-top-color: #0061FE;
  border-radius: 50%;
  animation: g2-spin .8s linear infinite;
}
@keyframes g2-spin { to { transform: rotate(360deg); } }
.g2-check {
  width: 18px; height: 18px; flex-shrink: 0;
  background: #17A34A;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  animation: g2-pop .3s ease both;
}
.g2-check svg { width: 11px; height: 11px; }
@keyframes g2-pop { 0%{transform:scale(0);} 60%{transform:scale(1.15);} 100%{transform:scale(1);} }
.g2-status-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(82,74,62,0.82);
  line-height: 1.35;
}

/* ============================================
   GRAPHIC 3 — Clinical Trials Card Stack
   ============================================ */
.g3-hdr {
  padding: 12px 16px 10px;
  background: #F7F5F2;
  border-bottom: 1px solid #EEE9E2;
  flex-shrink: 0;
}
.g3-hdr-row { display: flex; justify-content: space-between; align-items: center; }
.g3-hdr-label { font-size: 10px; color: rgba(82,74,62,0.78); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.g3-hdr-name { font-family: "Inter Tight", -apple-system, system-ui, sans-serif; font-size: 15px; font-weight: 700; color: #1E1919; margin-top: 1px; }
.g3-hdr-meta { font-size: 11px; color: rgba(82,74,62,0.78); margin-top: 3px; display: flex; gap: 10px; }
.g3-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, #7C3AED, #9333EA);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.g3-match-banner {
  padding: 10px 14px; border-bottom: 1px solid #EEE9E2;
  background: linear-gradient(135deg, #F3F0FF, #EDE9FE);
  flex-shrink: 0; display: flex; align-items: center; gap: 10px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity .4s, transform .4s;
}
.g3-match-banner.show { opacity: 1; transform: translateY(0); }
.g3-match-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #9333EA);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 15px; flex-shrink: 0;
}
.g3-match-text { font-size: 13px; font-weight: 600; color: #7C3AED; line-height: 1.3; }
.g3-match-sub { font-size: 11px; color: rgba(82,74,62,0.78); font-weight: 400; }

.g3-trials { flex: 1; padding: 8px 12px; overflow: hidden; display: flex; flex-direction: column; gap: 0; }
.g3-trial {
  border-radius: 10px; padding: 10px 13px; margin-bottom: 7px;
  border: 1.5px solid #EEE9E2; background: #fff;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s ease, transform .35s ease;
}
.g3-trial.show { opacity: 1; transform: translateY(0); }
.g3-trial-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; }
.g3-trial-name { font-family: "Inter Tight", -apple-system, system-ui, sans-serif; font-size: 13px; font-weight: 700; color: #1E1919; line-height: 1.25; }
.g3-trial-phase { font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px; flex-shrink: 0; margin-left: 8px; background: #DBEAFE; color: #1D4ED8; }
.g3-trial-body { font-size: 12px; line-height: 1.4; color: rgba(82,74,62,0.82); margin-bottom: 5px; }
.g3-trial-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.g3-trial-tag { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 8px; background: #F7F5F2; color: rgba(82,74,62,0.78); }
.g3-trial-tag--match { background: #ECFDF5; color: #059669; border: 1px solid #A7F3D0; }
.g3-trial-tag--loc { background: #DEEBFF; color: #0061FE; }
.g3-match-pct {
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; flex-shrink: 0; margin-left: 6px;
  background: linear-gradient(135deg, #ECFDF5, #D1FAE5); color: #059669; border: 1px solid #6EE7B7;
}
.g3-foot-badge {
  background: linear-gradient(135deg, #7C3AED, #9333EA);
  color: #fff; font-size: 9px; font-weight: 700;
  padding: 2px 8px; border-radius: 10px; letter-spacing: .03em;
}

@keyframes lc-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
@keyframes g2-fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .gfx-box { height: 480px; min-height: 380px; }
  .lc-tbl__h, .lc-tbl__r { grid-template-columns: 1.5fr 0.7fr 0.5fr; }
  .lc-tbl__h div:nth-child(3), .lc-tbl__h div:nth-child(4) { display: none; }
  .lc-tbl__r .lc-u, .lc-tbl__r .lc-rf { display: none; }
}

/* ============================================
   LIGHT ZONE — white bg for content sections
   ============================================ */
.light-zone {
  background: #FFFFFF;
}
.light-zone .section {
  background: #FFFFFF;
}
.light-zone .section::after {
  background: linear-gradient(90deg, transparent, var(--warm-med), transparent);
}
.light-zone .section--alt {
  background: var(--warm-light);
}
.light-zone .eyebrow {
  color: var(--blue);
}
.light-zone .section__title {
  color: var(--black);
}
.light-zone .section__body {
  color: rgba(82,74,62,0.82);
}

/* Steps in light zone */
.light-zone .step {
  border-color: var(--warm-med);
}
.light-zone .step__title {
  color: var(--black);
}
.light-zone .step__body {
  color: rgba(82,74,62,0.82);
}

/* Video in light zone */
.light-zone .video-placeholder {
  background: linear-gradient(135deg, rgba(0,97,254,0.08), rgba(79,70,229,0.08));
  border-color: var(--warm-med);
}
.light-zone .video-placeholder__text { color: rgba(82,74,62,0.5); }

/* Pricing in light zone */
.light-zone .pricing-hero__amount { color: var(--black); }
.light-zone .pricing-hero__label { color: rgba(82,74,62,0.82); }
.light-zone .pricing-hero__sub { color: rgba(82,74,62,0.78); }
.light-zone .pricing-card {
  background: var(--warm-light);
  border-color: var(--warm-med);
}
.light-zone .pricing-card--featured {
  background: var(--blue-light);
  border-color: var(--blue);
}
.light-zone .pricing-card__label { color: rgba(82,74,62,0.78); }
.light-zone .pricing-card--featured .pricing-card__label { color: var(--blue); }
.light-zone .pricing-card__price { color: var(--black); }
.light-zone .pricing-card__unit { color: rgba(82,74,62,0.78); }

/* FAQ in light zone */
.light-zone .faq-item { border-color: var(--warm-med); }
.light-zone .faq-q { color: var(--black); }
.light-zone .faq-q:hover { color: var(--blue); }
.light-zone .faq-icon { stroke: rgba(82,74,62,0.5); }
.light-zone .faq-a__text { color: rgba(82,74,62,0.82); }
