@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

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

  :root {
    --navy:        #0D1F35;
    --navy-mid:    #122840;
    --navy-card:   #1A2F4A;
    --navy-card2:  #1E3558;
    --navy-deep:   #091828;
    --gold:        #C49A3C;
    --gold-light:  #E8C46A;
    --gold-pale:   rgba(196,154,60,0.12);
    --gold-border: rgba(196,154,60,0.28);
    --white:       #FFFFFF;
    --text:        rgba(255,255,255,0.85);
    --text-soft:   rgba(255,255,255,0.65);
    --text-muted:  rgba(255,255,255,0.42);
    --border:      rgba(255,255,255,0.08);
    --border-md:   rgba(255,255,255,0.13);
    --teal:        #2EA87A;
    --teal-light:  rgba(46,168,122,0.15);
    --teal-text:   #5FC99E;
    --green:       #3DBA6F;
    --green-light: rgba(61,186,111,0.12);
    --green-border:rgba(61,186,111,0.25);
    --green-text:  #7DDBA4;
    --red:         #E05050;
    --red-border:  rgba(224,80,80,0.3);
    --red-bg:      rgba(224,80,80,0.08);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--text);
    background-color: var(--navy);
    background-image:
      /* top-right gold accent glow */
      radial-gradient(ellipse 700px 500px at 88% 6%,  rgba(196,154,60,0.055) 0%, transparent 65%),
      /* mid-left deep blue ambient */
      radial-gradient(ellipse 600px 700px at 8%  42%, rgba(4,50,100,0.20)   0%, transparent 65%),
      /* mid-right deep blue ambient */
      radial-gradient(ellipse 500px 600px at 96% 58%, rgba(4,40,90,0.18)    0%, transparent 65%),
      /* lower gold pulse */
      radial-gradient(ellipse 900px 400px at 50% 82%, rgba(196,154,60,0.038) 0%, transparent 65%),
      /* subtle dot grid */
      radial-gradient(circle, rgba(255,255,255,0.030) 1px, transparent 0);
    background-size: auto, auto, auto, auto, 30px 30px;
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  .serif { font-family: 'Cormorant Garamond', serif; }
  a { color: inherit; text-decoration: none; }
  strong { font-weight: 500; }

  /* ─── HEADER ─────────────────────────────────── */
  header {
    background: var(--navy-deep);
    border-bottom: 1px solid var(--border);
    padding: 22px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .logo {
    display: block;
    text-decoration: none;
    line-height: 0;
  }

  .logo img {
    height: 46px;
    width: auto;
    max-width: 200px;
    display: block;
    object-fit: contain;
  }

  nav {
    display: flex;
    align-items: center;
  }

  /* direct nav links */
  nav .nav-plain {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-left: 28px;
    transition: color 0.2s;
  }
  nav .nav-plain:hover { color: var(--gold-light); }

  /* dropdown trigger wrapper */
  .nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 28px;
  }

  .nav-trigger {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s;
    user-select: none;
  }

  .nav-dropdown:hover .nav-trigger { color: var(--gold-light); }

  .nav-arrow {
    font-size: 8px;
    opacity: 0.6;
    transition: transform 0.22s;
    display: inline-block;
    margin-top: 1px;
  }

  .nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }

  /* dropdown panel */
  .nav-drop {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(15, 32, 52, 0.97);
    border: 1px solid var(--border-md);
    border-radius: 10px;
    padding: 6px;
    min-width: 190px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.18s, visibility 0.18s, transform 0.18s;
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-dropdown:hover .nav-drop {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nav-drop a {
    display: block;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-soft);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    margin: 0;
    transition: background 0.14s, color 0.14s;
    white-space: nowrap;
  }

  .nav-drop a:hover {
    background: var(--gold-pale);
    color: var(--gold-light);
  }

  /* nav CTA button */
  nav .nav-cta {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy-deep);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-left: 28px;
    transition: filter 0.2s, transform 0.15s;
    display: inline-block;
  }

  nav .nav-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: var(--navy-deep);
  }

  /* ─── URGENCY BAR ────────────────────────────── */
  .urgency-bar {
    background: var(--gold-pale);
    border-bottom: 1px solid var(--gold-border);
    padding: 13px 40px;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.01em;
  }

  .urgency-bar strong { color: var(--gold-light); }

  .spots {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 14px;
    vertical-align: middle;
  }

  .spot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--gold);
    opacity: 0.9;
  }

  .spot.open {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
  }

  /* ─── HERO ───────────────────────────────────── */
  .hero {
    background:
      /* warm gold crown glow */
      radial-gradient(ellipse 80% 55% at 50% -5%,  rgba(196,154,60,0.11) 0%, transparent 60%),
      /* cool blue depth bottom-left */
      radial-gradient(ellipse 55% 45% at 10% 95%,  rgba(4,55,110,0.40)   0%, transparent 60%),
      /* cool blue depth bottom-right */
      radial-gradient(ellipse 55% 45% at 90% 95%,  rgba(4,55,110,0.40)   0%, transparent 60%),
      var(--navy);
    padding: 88px 40px 108px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  /* Large soft gold radial glow replacing hard border ring */
  .hero::before {
    content: '';
    position: absolute;
    top: -160px; left: 50%;
    transform: translateX(-50%);
    width: 860px; height: 860px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196,154,60,0.06) 0%, transparent 65%);
    animation: hero-glow-breathe 10s ease-in-out infinite;
    pointer-events: none;
  }

  /* Inner accent ring — kept subtle */
  .hero::after {
    content: '';
    position: absolute;
    top: -30px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(196,154,60,0.12);
    animation: hero-ring-drift 18s linear infinite;
    pointer-events: none;
  }

  .hero-badge {
    display: inline-block;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.5vw, 60px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.15;
    max-width: 800px;
    margin: 0 auto 26px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-light);
  }

  .hero-sub {
    font-size: 17px;
    color: var(--text-soft);
    max-width: 560px;
    margin: 0 auto 48px;
    font-weight: 300;
    position: relative;
    z-index: 1;
    line-height: 1.7;
  }

  .hero-sub strong { color: var(--white); font-weight: 500; }

  .cta-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-weight: 500;
    font-size: 15px;
    padding: 16px 42px;
    border-radius: 4px;
    letter-spacing: 0.03em;
    position: relative;
    z-index: 1;
    transition: background 0.2s, transform 0.15s;
    animation: glow-pulse-cta 3.5s ease-in-out infinite;
  }
  .cta-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ─── PROOF STATS ────────────────────────────── */
  .proof-row {
    display: flex;
    max-width: 860px;
    margin: 0 auto;
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--navy-card);
    margin-top: 52px;
    position: relative;
    z-index: 1;
  }

  .proof-cell {
    flex: 1;
    padding: 22px 24px;
    text-align: center;
    border-right: 1px solid var(--gold-border);
  }

  .proof-cell:last-child { border-right: none; flex: 2; text-align: left; padding: 22px 32px; }

  .proof-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
  }

  .proof-denom {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 5px;
  }

  .proof-text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.65;
  }

  .proof-text strong { color: var(--white); font-weight: 500; }

  /* ─── SECTIONS ───────────────────────────────── */
  section { max-width: 860px; margin: 0 auto; padding: 72px 40px; }
  section + section { padding-top: 0; }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
  }

  h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.22;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }

  h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
  }

  p { margin-bottom: 16px; color: var(--text-soft); }
  p:last-child { margin-bottom: 0; }

  /* ─── PAIN SECTION ───────────────────────────── */
  .pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
  }

  .pain-card {
    background: var(--navy-card);
    border: 1px solid var(--border-md);
    border-left: 3px solid var(--red);
    border-radius: 6px;
    padding: 20px 22px;
  }

  .pain-card .pain-title {
    font-weight: 500;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 6px;
  }

  .pain-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.55; }

  .cost-callout {
    background: var(--navy-deep);
    border: 1px solid var(--gold-border);
    border-radius: 10px;
    padding: 32px 36px;
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .cost-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 500;
    color: var(--gold-light);
    line-height: 1;
    white-space: nowrap;
  }

  .cost-text { color: var(--text-soft); font-size: 15px; line-height: 1.65; }
  .cost-text strong { color: var(--white); }

  /* ─── INCLUDES GRID ──────────────────────────── */
  .includes-grid {
    margin-top: 40px;
    border: 1px solid var(--border-md);
    border-radius: 10px;
    overflow: hidden;
  }

  .include-item {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: start;
    gap: 20px;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    background: var(--navy-card);
    transition: background 0.15s;
  }

  .include-item:last-child { border-bottom: none; }
  .include-item:hover { background: var(--navy-card2); }

  .item-num {
    width: 38px; height: 38px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
  }

  .item-body .item-title {
    font-weight: 500;
    color: var(--white);
    font-size: 16px;
    margin-bottom: 5px;
  }

  .item-body p { font-size: 14px; color: var(--text-soft); margin: 0; line-height: 1.55; }

  .item-tag {
    text-align: right;
    white-space: nowrap;
    padding-top: 4px;
  }

  .item-tag-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 9px;
    border-radius: 4px;
    background: var(--green-light);
    color: var(--green-text);
    border: 1px solid var(--green-border);
    white-space: normal;
    text-align: right;
    max-width: 160px;
    line-height: 1.4;
  }

  .fast-action-item {
    background: var(--gold-pale);
    border-top: 1px solid var(--gold-border);
    padding: 20px 28px;
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .fa-dot {
    width: 38px; height: 38px;
    background: var(--gold-pale);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .fa-body { font-size: 14px; color: var(--text-soft); line-height: 1.55; }
  .fa-body strong { color: var(--white); font-weight: 500; }
  .fa-label {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 4px;
  }

  /* ─── TIMELINE ───────────────────────────────── */
  .timeline { margin-top: 40px; position: relative; }

  .timeline::before {
    content: '';
    position: absolute;
    left: 28px; top: 36px; bottom: 36px;
    width: 1px;
    background: var(--border-md);
  }

  .timeline-item {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
  }

  .timeline-item:last-child { margin-bottom: 0; }

  .tl-marker {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--navy-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    z-index: 1;
    position: relative;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.2;
  }

  .tl-body {
    background: var(--navy-card);
    border: 1px solid var(--border-md);
    border-radius: 8px;
    padding: 20px 24px;
    flex: 1;
  }

  .tl-body h3 { font-size: 18px; margin-bottom: 8px; }
  .tl-body p { font-size: 14px; color: var(--text-soft); margin: 0 0 8px; line-height: 1.6; }
  .tl-body p:last-child { margin-bottom: 0; }
  .tl-body ul { margin: 6px 0 0 0; list-style: none; }
  .tl-body ul li { font-size: 14px; color: var(--text-soft); margin-bottom: 4px; padding-left: 14px; position: relative; }
  .tl-body ul li::before { content: '·'; color: var(--gold); position: absolute; left: 0; font-weight: 700; }

  .breakeven-box {
    background: var(--green-light);
    border: 1px solid var(--green-border);
    border-radius: 10px;
    padding: 22px 28px;
    margin-top: 32px;
  }

  .be-label {
    font-size: 10px; font-weight: 500;
    letter-spacing: 0.13em; text-transform: uppercase;
    color: var(--green-text); margin-bottom: 8px;
  }

  .be-headline { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 6px; }
  .be-body { font-size: 14px; color: var(--text-soft); line-height: 1.6; }
  .be-body strong { color: var(--green-text); font-weight: 500; }

  /* ─── PRICING ────────────────────────────────── */
  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .pricing-card {
    background: var(--navy-card);
    border: 1px solid var(--border-md);
    border-radius: 10px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
  }

  .pricing-card.featured {
    border: 2px solid var(--gold);
    padding-top: 54px;
    box-shadow: 0 0 50px rgba(196,154,60,0.13), 0 24px 64px rgba(0,0,0,0.35);
  }

  .pricing-card.featured::before {
    content: '★ Most Popular';
    position: absolute;
    top: 0; left: 0; right: 0;
    background: var(--gold);
    color: var(--navy);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 0;
    text-align: center;
    display: block;
  }

  .price-tier { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .price-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
  .price-name-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

  .price-amount {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 5px;
  }

  .price-amount .dollar { font-size: 18px; font-weight: 500; color: var(--white); }
  .price-amount .num { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 500; color: var(--white); line-height: 1; }
  .price-amount .per { font-size: 14px; color: var(--text-muted); }
  .price-equiv { font-size: 12px; color: var(--teal-text); font-weight: 500; margin-bottom: 24px; }
  .price-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

  .price-features { list-style: none; }
  .price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-soft);
    margin-bottom: 11px;
    line-height: 1.45;
  }

  .check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .check::after {
    content: '';
    width: 5px; height: 8px;
    border: 1.5px solid var(--teal-text);
    border-top: none; border-left: none;
    transform: rotate(40deg) translateY(-1px);
  }

  .pricing-cta {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    margin-top: 24px;
    transition: all 0.2s;
    letter-spacing: 0.01em;
  }

  .pricing-cta.outline {
    border: 1.5px solid var(--gold-border);
    color: var(--gold-light);
    background: transparent;
  }
  .pricing-cta.outline:hover { background: var(--gold-pale); }

  .pricing-cta.fill {
    background: var(--gold);
    color: var(--navy);
    border: 1.5px solid var(--gold);
  }
  .pricing-cta.fill:hover { background: var(--gold-light); }

  /* Pricing option rows */
  .option-row {
    background: var(--navy-card);
    border: 1px solid var(--border-md);
    border-radius: 10px;
    padding: 20px 26px;
    margin-top: 14px;
  }

  .option-row-header {
    display: flex; align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px; gap: 12px;
  }

  .option-row-title { font-size: 15px; font-weight: 500; color: var(--white); }
  .option-row-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }

  .option-badge {
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
    padding: 6px 16px; border-radius: 6px; white-space: nowrap;
  }

  .badge-save { background: var(--green); color: var(--navy); border: 1px solid var(--green); }
  .badge-best { background: var(--gold); color: var(--navy); border: 1px solid var(--gold); }

  .pricing-duo {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px;
  }

  .pd-item {
    background: var(--navy-mid);
    border-radius: 8px; padding: 12px 14px;
    border: 1px solid var(--border);
  }

  .pd-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
  .pd-price { font-size: 20px; font-weight: 500; color: var(--white); line-height: 1; }
  .pd-price span { font-size: 12px; font-weight: 400; color: var(--text-muted); }
  .pd-save { font-size: 11px; color: var(--green-text); font-weight: 500; margin-top: 4px; }

  .option-checks { display: flex; flex-wrap: wrap; gap: 10px; }
  .option-check { font-size: 13px; color: var(--text-soft); display: flex; align-items: center; gap: 6px; }
  .option-check::before { content: '✔'; color: var(--green); font-size: 11px; }

  /* Founding Partner */
  .founder-block {
    background: var(--navy-deep);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 32px 36px;
    margin-top: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(196,154,60,0.09), 0 24px 60px rgba(0,0,0,0.3);
  }

  .founder-block::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .fp-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
  .fp-title { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 500; color: var(--white); margin-bottom: 4px; }
  .fp-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 22px; }
  .fp-sub strong { color: var(--gold-light); font-weight: 500; }

  .fp-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 20px; }

  .fp-col-label { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }

  .fp-list { list-style: none; }
  .fp-list li { font-size: 14px; color: var(--text-soft); display: flex; gap: 9px; align-items: flex-start; margin-bottom: 7px; line-height: 1.4; }
  .fp-list li::before { content: '✓'; color: var(--gold); font-weight: 500; flex-shrink: 0; }

  .fp-referral { font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 14px; }
  .fp-cta-note { font-size: 13px; color: var(--text-soft); font-style: italic; margin-top: 6px; }

  /* Add-on */
  .addon-wrap { margin-top: 14px; }
  .addon-label-outer { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }

  .addon-card {
    background: var(--navy-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
  }

  .addon-name { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
  .addon-desc { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
  .addon-price { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; color: var(--white); white-space: nowrap; }
  .addon-price span { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400; color: var(--text-muted); }

  .pricing-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* ─── GUARANTEE ──────────────────────────────── */
  .guarantee-box {
    background: var(--navy-card);
    border: 1px solid rgba(46,168,122,0.3);
    border-left: 4px solid var(--teal);
    border-radius: 8px;
    padding: 36px 40px;
    margin-top: 40px;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    box-shadow: 0 0 40px rgba(46,168,122,0.07), 0 16px 48px rgba(0,0,0,0.22);
  }

  .guar-icon {
    width: 56px; height: 56px;
    background: var(--teal-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
  }

  .guar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .guar-body { font-size: 15px; color: var(--text-soft); line-height: 1.7; }
  .guar-conditions {
    font-size: 14px; color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 14px; margin-top: 14px;
    line-height: 1.6;
  }

  /* ─── FINAL POSITIONING ──────────────────────── */
  .final-block {
    background: var(--navy-deep);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 52px 48px;
    text-align: center;
    margin-top: 0;
    position: relative; overflow: hidden;
  }

  .final-block::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .final-label { font-size: 10px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }

  .final-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3.5vw, 32px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.38;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
  }

  .final-main em { font-style: italic; color: var(--gold-light); }

  .final-sub { font-size: 15px; color: var(--text-soft); line-height: 1.7; max-width: 520px; margin: 0 auto; }

  /* ─── SCARCITY ───────────────────────────────── */
  .scarcity-section {
    background: var(--navy-deep);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 52px 48px;
    margin-top: 40px;
    text-align: center;
    position: relative; overflow: hidden;
  }

  .scarcity-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .scarcity-section .section-label { color: var(--gold-light); }
  .scarcity-section h2 { margin-bottom: 16px; }
  .scarcity-section p { color: var(--text-soft); max-width: 520px; margin: 0 auto 32px; }

  .spots-display {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }

  .spot-pill {
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--gold-border);
  }

  .spot-pill.open {
    background: var(--gold-pale);
    color: var(--gold-light);
  }

  .spot-pill.open.yours {
    background: rgba(196,154,60,0.18);
    color: var(--gold-light);
    border-color: var(--gold);
  }

  .availability-note {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-md);
    border-radius: 8px;
    padding: 18px 24px;
    display: inline-block;
    margin-bottom: 32px;
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.65;
    text-align: left;
    max-width: 560px;
  }

  .availability-note strong { color: var(--white); font-weight: 500; }

  /* ─── ORNAMENT ───────────────────────────────── */
  .ornament {
    text-align: center;
    color: var(--gold);
    font-size: 18px;
    margin: 0;
    letter-spacing: 10px;
    opacity: 0.35;
  }

  /* ─── FOOTER ─────────────────────────────────── */
  footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--border);
    padding: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 0;
  }

  footer .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--gold-light);
    display: block;
    margin-bottom: 8px;
  }

  footer a { color: var(--gold-light); }

  /* ─── DIVIDER ────────────────────────────────── */
  .section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,154,60,0.28), transparent);
    max-width: 860px;
    margin: 0 auto;
  }

  /* ─── RESPONSIVE ─────────────────────────────── */
  @media (max-width: 640px) {
    header { padding: 18px 20px; flex-wrap: wrap; gap: 10px; }
    nav { display: none; }
    section { padding: 48px 20px; }
    .hero { padding: 64px 20px 80px; }
    .urgency-bar { padding: 12px 20px; font-size: 12px; }
    .pain-grid, .pricing-grid, .pricing-duo, .fp-cols { grid-template-columns: 1fr; }
    .cost-callout { flex-direction: column; gap: 16px; text-align: center; }
    .guarantee-box { flex-direction: column; padding: 24px; }
    .scarcity-section { padding: 36px 24px; }
    .final-block { padding: 36px 24px; }
    .founder-block { padding: 24px 22px; }
    .proof-row { flex-direction: column; }
    .proof-cell { border-right: none; border-bottom: 1px solid var(--gold-border); }
    .proof-cell:last-child { border-bottom: none; }
    .include-item { grid-template-columns: 44px 1fr; }
    .item-tag { display: none; }
    .addon-card { flex-direction: column; align-items: flex-start; }
    .spots-display { gap: 7px; }
  }

  /* ─── CONTACT FORM ───────────────────────────── */
  .form-section {
    background: var(--navy-deep);
    border: 1px solid var(--gold-border);
    border-radius: 12px;
    padding: 52px 48px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
  }

  .form-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .form-section .section-label { color: var(--gold-light); text-align: center; margin-bottom: 8px; }
  .form-section h2 { text-align: center; margin-bottom: 10px; }
  .form-section > p { text-align: center; max-width: 500px; margin: 0 auto 40px; }

  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .form-field.full { grid-column: 1 / -1; }

  .form-field label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    background: var(--navy-card);
    border: 1px solid var(--border-md);
    border-radius: 5px;
    padding: 12px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
  }

  .form-field input::placeholder,
  .form-field textarea::placeholder { color: var(--text-muted); }

  .form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C49A3C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
  }

  .form-field select option { background: var(--navy-card); color: var(--white); }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus { border-color: var(--gold); }

  .form-field textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

  .form-submit-wrap { text-align: center; margin-top: 32px; }

  .form-trust {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
    font-style: italic;
    text-align: center;
  }

  @media (max-width: 640px) {
    .form-grid { grid-template-columns: 1fr; }
    .form-section { padding: 36px 24px; }
  }


  /* ─── TRUST STRIP ────────────────────────────── */
  .trust-strip {
    background: var(--navy-card);
    border-bottom: 1px solid var(--border);
    padding: 12px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .trust-icon {
    font-size: 15px;
    opacity: 0.9;
  }

  .trust-item strong { color: var(--gold-light); font-weight: 600; }

  @media (max-width: 640px) {
    .trust-strip { gap: 16px; padding: 12px 20px; }
    .trust-item { font-size: 11px; }
  }


  /* ─── MODAL ───────────────────────────────── */
  .modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 1000;
    background: rgba(6,14,26,0.88); backdrop-filter: blur(6px);
    align-items: center; justify-content: center; padding: 20px;
  }
  .modal-overlay.active { display: flex; }
  .modal-box {
    background: var(--navy-card); border: 1px solid var(--gold-border);
    border-radius: 14px; padding: 44px 48px; max-width: 580px; width: 100%;
    position: relative; overflow: hidden; max-height: 90vh; overflow-y: auto;
    animation: modalIn 0.25s ease;
  }
  @keyframes modalIn { from { opacity:0; transform:translateY(-16px) scale(0.97); } to { opacity:1; transform:none; } }
  .modal-box::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .modal-close {
    position:absolute; top:14px; right:18px; background:none; border:none;
    color:var(--text-muted); font-size:26px; cursor:pointer; line-height:1;
    transition:color 0.2s;
  }
  .modal-close:hover { color:var(--white); }
  .modal-box h2 { font-size:clamp(22px,3vw,28px); margin-bottom:5px; }
  .modal-sub { font-size:13px; color:var(--text-muted); margin-bottom:24px; }

  /* ─── FEATURE STRIP ─────────────────────── */
  .feature-strip {
    background: var(--navy-card); border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
  }
  .feature-strip-inner {
    max-width:860px; margin:0 auto;
    display:grid; grid-template-columns:repeat(4,1fr);
  }
  .fsi {
    padding:26px 20px; text-align:center; border-right:1px solid var(--border);
    transition:background 0.2s; cursor:default;
  }
  .fsi:last-child { border-right:none; }
  .fsi:hover { background:var(--navy-card2); }
  .fsi-icon {
    width:44px; height:44px; border-radius:50%;
    background:var(--gold-pale); border:1px solid var(--gold-border);
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 12px; font-size:18px; transition:background 0.2s;
  }
  .fsi:hover .fsi-icon { background:rgba(196,154,60,0.22); }
  .fsi-title { font-size:13px; font-weight:500; color:var(--white); margin-bottom:4px; }
  .fsi-desc { font-size:11px; color:var(--text-muted); line-height:1.5; }

  /* ─── HOW IT WORKS TABS ──────────────────── */
  .hiw-tab-row {
    display:flex; border:1px solid var(--border-md); border-radius:8px;
    overflow:hidden; margin-top:32px; margin-bottom:0;
  }
  .hiw-tab {
    flex:1; background:var(--navy-card); border:none; padding:13px 16px;
    font-family:'DM Sans',sans-serif; font-size:12px; font-weight:500;
    color:var(--text-muted); cursor:pointer; letter-spacing:0.07em;
    text-transform:uppercase; transition:all 0.2s; border-right:1px solid var(--border-md);
  }
  .hiw-tab:last-child { border-right:none; }
  .hiw-tab.active { background:var(--gold-pale); color:var(--gold-light); }
  .hiw-tab:hover:not(.active) { background:var(--navy-card2); color:var(--text); }
  .hiw-panel { display:none; }
  .hiw-panel.active {
    display:grid; grid-template-columns:1fr 1fr; gap:32px; align-items:start;
    margin-top:24px;
  }
  .hiw-kicker {
    font-size:10px; font-weight:500; letter-spacing:0.13em;
    text-transform:uppercase; color:var(--gold); margin-bottom:8px;
  }
  .hiw-copy h3 { font-size:22px; margin-bottom:10px; }
  .hiw-copy p { font-size:14px; color:var(--text-soft); }
  .hiw-list { list-style:none; margin-top:14px; }
  .hiw-list li {
    font-size:13px; color:var(--text-soft); padding:8px 0 8px 18px;
    position:relative; border-bottom:1px solid var(--border);
  }
  .hiw-list li:last-child { border-bottom:none; }
  .hiw-list li::before { content:'→'; color:var(--gold); position:absolute; left:0; font-weight:500; }
  .hiw-visual {
    background:var(--navy-deep); border:1px solid var(--gold-border);
    border-radius:10px; padding:22px; position:relative; overflow:hidden;
  }
  .hiw-visual::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
  }
  .hiw-card {
    background:var(--navy-card); border:1px solid var(--border-md);
    border-radius:8px; padding:16px;
  }
  .hiw-card-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:14px; }
  .win-dots { display:flex; gap:5px; }
  .win-dots span { width:7px; height:7px; border-radius:50%; background:var(--border-md); }
  .live-badge {
    font-size:10px; font-weight:500; letter-spacing:0.08em; text-transform:uppercase;
    color:var(--teal-text); background:var(--teal-light); padding:3px 9px;
    border-radius:20px; border:1px solid rgba(46,168,122,0.25);
  }
  .mini-kpis { display:grid; grid-template-columns:repeat(3,1fr); gap:9px; }
  .mkpi {
    background:var(--navy-mid); border-radius:6px; padding:10px; text-align:center;
    border:1px solid var(--border);
  }
  .mkpi small { display:block; font-size:9px; color:var(--text-muted); text-transform:uppercase; letter-spacing:0.06em; margin-bottom:3px; }
  .mkpi strong { display:block; font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--gold-light); font-weight:500; line-height:1; }
  .mkpi span { font-size:9px; color:var(--text-muted); }
  .notif-bar {
    display:flex; align-items:center; gap:9px; background:var(--green-light);
    border:1px solid var(--green-border); border-radius:6px; padding:9px 12px; margin-top:10px;
  }
  .pulse { width:7px; height:7px; border-radius:50%; background:var(--green); flex-shrink:0; animation:pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
  .notif-bar span { font-size:11px; color:var(--green-text); line-height:1.4; }
  .pms-tags { display:flex; flex-wrap:wrap; gap:6px; margin-top:10px; }
  .pms-tag {
    font-size:10px; color:var(--text-soft); background:var(--navy-card2);
    border:1px solid var(--border-md); border-radius:20px; padding:3px 10px;
    display:flex; align-items:center; gap:4px;
  }
  .pms-tag::before { content:'✓'; color:var(--teal-text); font-size:9px; }

  /* ─── VIDEO SECTION ──────────────────────── */
  .video-wrap {
    background:var(--navy-deep); border:1px solid var(--border-md);
    border-radius:12px; padding:36px; text-align:center;
  }
  .video-embed {
    position:relative; padding-bottom:56.25%; border-radius:8px; overflow:hidden;
    background:var(--navy-card); border:1px solid var(--border-md); margin-top:24px;
  }
  .video-embed iframe { position:absolute; inset:0; width:100%; height:100%; border:none; }
  .video-ph {
    position:absolute; inset:0; display:flex; flex-direction:column;
    align-items:center; justify-content:center; cursor:pointer; transition:background 0.2s;
  }
  .video-ph:hover { background:rgba(255,255,255,0.03); }
  .play-circle {
    width:68px; height:68px; border-radius:50%; background:var(--gold);
    display:flex; align-items:center; justify-content:center; font-size:22px; color:var(--navy);
    margin-bottom:14px; transition:transform 0.2s, background 0.2s;
  }
  .video-ph:hover .play-circle { transform:scale(1.08); background:var(--gold-light); }
  .video-ph p { font-size:13px; color:var(--text-soft); line-height:1.5; }

  /* ─── REVENUE CALCULATOR ─────────────────── */
  .calc-wrap {
    background:var(--navy-deep); border:1px solid var(--border-md);
    border-radius:12px; padding:36px;
  }
  .calc-fields { display:flex; flex-direction:column; gap:26px; margin-bottom:28px; }
  .cf-label {
    display:flex; justify-content:space-between; align-items:center;
    font-size:13px; font-weight:500; color:var(--text-soft); margin-bottom:10px;
  }
  .cf-label span {
    font-family:'Cormorant Garamond',serif; font-size:22px; color:var(--gold-light); font-weight:500;
  }
  input[type="range"].gold-range {
    width:100%; appearance:none; -webkit-appearance:none;
    height:3px; background:var(--border-md); border-radius:2px; outline:none; cursor:pointer;
  }
  input[type="range"].gold-range::-webkit-slider-thumb {
    -webkit-appearance:none; width:18px; height:18px; border-radius:50%;
    background:var(--gold); cursor:pointer; border:2.5px solid var(--navy-deep);
    transition:transform 0.15s;
  }
  input[type="range"].gold-range::-webkit-slider-thumb:hover { transform:scale(1.15); }
  .calc-out { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-bottom:22px; }
  .cr {
    background:var(--navy-card); border:1px solid var(--border-md);
    border-radius:8px; padding:20px 22px; text-align:center;
  }
  .cr-label { font-size:10px; font-weight:500; letter-spacing:0.09em; text-transform:uppercase; color:var(--text-muted); margin-bottom:7px; }
  .cr-val { font-family:'Cormorant Garamond',serif; font-size:40px; font-weight:500; color:var(--gold-light); line-height:1; }
  .calc-note { text-align:center; font-size:13px; color:var(--text-soft); line-height:1.6; border-top:1px solid var(--border); padding-top:16px; }

  /* ─── TRUST / HIPAA ──────────────────────── */
  .trust-hipaa {
    background:var(--navy-card); border:1px solid var(--border-md);
    border-left:3px solid var(--teal); border-radius:10px; padding:32px 36px;
  }
  .th-head { display:flex; align-items:center; gap:14px; margin-bottom:16px; }
  .th-icon {
    width:46px; height:46px; border-radius:50%; background:var(--teal-light);
    display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0;
  }
  .th-eyebrow { font-size:10px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--teal-text); margin-bottom:3px; }
  .th-head h3 { font-size:19px; color:var(--white); }
  .th-body { font-size:14px; color:var(--text-soft); line-height:1.7; margin-bottom:16px; }
  .th-checks { display:flex; flex-direction:column; gap:7px; }
  .th-check { display:flex; align-items:flex-start; gap:9px; font-size:13px; color:var(--text-soft); }
  .th-check::before { content:'✔'; color:var(--teal-text); font-size:11px; margin-top:1px; flex-shrink:0; }

  /* ─── WHY OPTIQ COMPARISON ───────────────── */
  .compare-row { display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:32px; }
  .cmp {
    border-radius:10px; padding:26px 28px;
  }
  .cmp.bad { background:var(--red-bg); border:1px solid var(--red-border); }
  .cmp.good { background:var(--green-light); border:1px solid var(--green-border); }
  .cmp h3 { font-size:19px; margin-bottom:14px; }
  .cmp.bad h3 { color:var(--red); }
  .cmp.good h3 { color:var(--green-text); }
  .cmp ul { list-style:none; }
  .cmp ul li {
    font-size:13px; color:var(--text-soft); padding:8px 0 8px 20px;
    position:relative; border-bottom:1px solid rgba(255,255,255,0.05);
    line-height:1.4;
  }
  .cmp ul li:last-child { border-bottom:none; }
  .cmp.bad ul li::before { content:'✗'; color:var(--red); position:absolute; left:0; font-weight:700; }
  .cmp.good ul li::before { content:'✓'; color:var(--green-text); position:absolute; left:0; font-weight:700; }

  /* ─── TESTIMONIALS ───────────────────────── */
  .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:32px; }
  .testi {
    background:var(--navy-card); border:1px solid var(--border-md); border-radius:10px;
    padding:26px; transition:border-color 0.2s, transform 0.2s;
  }
  .testi:hover { border-color:var(--gold-border); transform:translateY(-2px); }
  .testi-stars { display:flex; gap:2px; margin-bottom:12px; }
  .testi-stars span { color:var(--gold); font-size:13px; }
  .testi-quote { font-size:13px; color:var(--text-soft); line-height:1.7; margin-bottom:18px; font-style:italic; }
  .testi-author { display:flex; align-items:center; gap:11px; }
  .testi-avatar {
    width:52px; height:52px; border-radius:50%;
    background: linear-gradient(135deg, #1a3a5c, #2d78a4);
    border:2px solid rgba(99,179,237,0.35); display:flex; align-items:center; justify-content:center;
    font-family:'Cormorant Garamond',serif; font-size:20px; font-weight:700; color:#e2f0fb;
    flex-shrink:0; box-shadow: 0 0 0 3px rgba(99,179,237,0.10), 0 4px 16px rgba(0,0,0,0.30);
  }
  .testi-avatar.av-m {
    background: linear-gradient(135deg, #2e1a5c, #6d3aed);
    border-color: rgba(167,139,250,0.35); color:#ede9fe;
    box-shadow: 0 0 0 3px rgba(167,139,250,0.10), 0 4px 16px rgba(0,0,0,0.30);
  }
  .testi-avatar.av-n {
    background: linear-gradient(135deg, #7c4a0e, #c49a3c);
    border-color: rgba(232,201,109,0.40); color:#fef3c7;
    box-shadow: 0 0 0 3px rgba(196,154,60,0.12), 0 4px 16px rgba(0,0,0,0.30);
  }
  .testi-name { font-size:13px; font-weight:500; color:var(--white); margin-bottom:2px; }
  .testi-role { font-size:11px; color:var(--text-muted); }

  /* ─── PMS INTEGRATION BADGE STRIP ──────────── */
  .pms-badge-strip {
    margin: 36px 0 0;
    display: flex; flex-direction: column; align-items: center; gap: 14px;
  }
  .pms-strip-label {
    font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(220,231,243,0.30);
  }
  .pms-strip-badges {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  }
  .pms-strip-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px; padding: 7px 14px;
    font-size: 12px; font-weight: 500; color: rgba(220,231,243,0.62);
    transition: border-color 0.25s, color 0.25s;
  }
  .pms-strip-badge:hover { border-color: rgba(196,154,60,0.35); color: rgba(220,231,243,0.85); }
  .pms-strip-badge .psb-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(61,186,111,0.65); flex-shrink: 0;
  }
  .pms-strip-badge.psb-soon .psb-dot { background: rgba(255,255,255,0.22); }
  .pms-strip-badge.psb-soon { opacity: 0.55; }

  /* ─── ABOUT DASHBOARD VISUAL ─────────────── */
  .about-dash {
    margin: 32px auto 36px;
    max-width: 620px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  }
  .about-dash-bar {
    display: flex; align-items: center; gap: 6px;
    padding: 9px 14px; background: rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .adb-dot { width: 8px; height: 8px; border-radius: 50%; }
  .adb-dot:nth-child(1) { background: rgba(255,95,87,0.60); }
  .adb-dot:nth-child(2) { background: rgba(255,189,46,0.60); }
  .adb-dot:nth-child(3) { background: rgba(40,200,64,0.60); }
  .adb-title { margin-left: 6px; font-size: 10px; color: rgba(220,231,243,0.28); letter-spacing: 0.06em; }
  .about-dash-kpis {
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .adk { padding: 16px 18px; text-align: center; }
  .adk + .adk { border-left: 1px solid rgba(255,255,255,0.06); }
  .adk-val { font-size: 1.55rem; font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 5px; }
  .adk-val.v-gold { color: #E8C96D; }
  .adk-val.v-green { color: #4ade80; }
  .adk-val.v-blue  { color: #93c5fd; }
  .adk-lbl { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(220,231,243,0.32); line-height: 1.3; }
  .about-dash-chart {
    padding: 16px 18px 14px; display: flex; align-items: flex-end; gap: 7px; height: 72px;
  }
  .adc-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; }
  .adc-bar { width: 100%; border-radius: 3px 3px 0 0; transition: opacity 0.2s; }
  .adc-bar:hover { opacity: 0.85; }
  .adc-lbl { font-size: 8.5px; color: rgba(220,231,243,0.25); text-transform: uppercase; letter-spacing: 0.04em; }
  @media (max-width: 600px) {
    .about-dash-kpis { grid-template-columns: repeat(3,1fr); }
    .adk-val { font-size: 1.2rem; }
    .pms-strip-badges { gap: 8px; }
  }

  /* ─── BOOK DEMO CTA ──────────────────────── */
  .book-demo-cta {
    background:var(--navy-deep); border:1px solid var(--gold-border); border-radius:12px;
    padding:52px 48px; text-align:center; position:relative; overflow:hidden;
  }
  .book-demo-cta::before {
    content:''; position:absolute; top:0; left:0; right:0; height:2px;
    background:linear-gradient(90deg,transparent,var(--gold),transparent);
  }
  .bdc-label { font-size:10px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--gold); margin-bottom:14px; }
  .bdc-h { font-family:'Cormorant Garamond',serif; font-size:clamp(24px,3.5vw,32px); font-weight:500; color:var(--white); margin-bottom:14px; line-height:1.3; }
  .bdc-sub { font-size:15px; color:var(--text-soft); max-width:480px; margin:0 auto 28px; line-height:1.7; }
  .bdc-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }
  .cta-outline-btn {
    display:inline-block; background:transparent; color:var(--gold-light);
    font-weight:500; font-size:15px; padding:15px 36px; border-radius:4px;
    border:1.5px solid var(--gold-border); letter-spacing:0.03em;
    transition:all 0.2s; text-decoration:none; cursor:pointer;
    font-family:'DM Sans',sans-serif;
  }
  .cta-outline-btn:hover { background:var(--gold-pale); border-color:var(--gold); }
  .cta-btn-bare {
    display:inline-block; background:var(--gold); color:var(--navy); font-weight:500;
    font-size:15px; padding:16px 42px; border-radius:4px; letter-spacing:0.03em;
    transition:background 0.2s, transform 0.15s; border:none; cursor:pointer;
    font-family:'DM Sans',sans-serif; text-decoration:none;
  }
  .cta-btn-bare:hover { background:var(--gold-light); transform:translateY(-1px); }

  /* ─── SCROLL REVEAL ──────────────────────── */
  .sr { opacity:0; transform:translateY(18px); transition:opacity 0.55s ease, transform 0.55s ease; }
  .sr.visible { opacity:1; transform:none; }

  /* ─── RESPONSIVE EXTRAS ──────────────────── */
  @media (max-width: 640px) {
    .feature-strip-inner { grid-template-columns:repeat(2,1fr); }
    .fsi { border-bottom:1px solid var(--border); }
    .hiw-panel.active { grid-template-columns:1fr; }
    .calc-out { grid-template-columns:1fr; }
    .compare-row { grid-template-columns:1fr; }
    .testi-grid { grid-template-columns:1fr; }
    .bdc-btns { flex-direction:column; align-items:center; }
    .modal-box { padding:28px 22px; }
    .video-wrap, .calc-wrap, .trust-hipaa, .book-demo-cta { padding:24px 20px; }
  }section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}section + section {
  margin-top: 40px;
}button, .btn {
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
} 

form input, 
form select, 
form textarea {
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 6px;
}

.contact-card {
  margin-top: 40px;
  background: rgba(20, 40, 70, 0.6);
  padding: 24px;
  border-radius: 14px;
  color: #fff;
  backdrop-filter: blur(10px);
}

.social-links {
  margin-top: 12px;
  display: flex;
  gap: 12px;
}

.contact-card a {
  color: #4da3ff;
  text-decoration: none;
}

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


html {
  scroll-behavior: smooth;
}

#contact {
  transition: all 0.6s ease;
}

.highlight {
  box-shadow: 0 0 0 3px rgba(245,185,66,0.6), 0 0 25px rgba(245,185,66,0.4);
  border-radius: 12px;
}

/* ── NAV ANCHOR SCROLL OFFSET ──────────────────────────
   Header is ~91px tall (46px logo + 22px padding top + 22px bottom + 1px border).
   Section padding-top is 72px (desktop) / 48px (mobile).
   scroll-margin-top = header_height - section_padding_top + 20px breathing room
   Desktop: 91 - 72 + 20 = ~39px → using 40px
   Mobile:  83 - 48 + 16 = ~51px → using 52px
   ──────────────────────────────────────────────────── */
#system,
#roadmap,
#pricing,
#guarantee,
#included,
#calc,
#video-section,
#testimonials,
#book-demo,
#get-started,
#contact-form {
  scroll-margin-top: 40px;
}

@media (max-width: 640px) {
  #system,
  #roadmap,
  #pricing,
  #guarantee,
  #included,
  #calc,
  #video-section,
  #testimonials,
  #book-demo,
  #get-started,
  #contact-form {
    scroll-margin-top: 52px;
  }
}

/* ── SECTION BACKGROUND VARIATION ──────────────── */
#problem {
  background:
    radial-gradient(ellipse 75% 55% at 100% 40%, rgba(4,45,95,0.22) 0%, transparent 65%),
    var(--navy-mid);
}

#system {
  background:
    radial-gradient(ellipse 65% 50% at 0% 65%, rgba(46,168,122,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 100% 20%, rgba(4,50,105,0.18) 0%, transparent 60%),
    var(--navy);
}

#roadmap {
  background:
    radial-gradient(ellipse 55% 45% at 80% 25%, rgba(196,154,60,0.08) 0%, transparent 60%),
    var(--navy-mid);
}

#pricing {
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(4,40,82,0.32) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 50% 0%, rgba(196,154,60,0.06) 0%, transparent 60%),
    var(--navy-deep);
}

#guarantee {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(196,154,60,0.10) 0%, transparent 60%),
    var(--navy);
}

#testimonials {
  background:
    radial-gradient(ellipse 80% 50% at 0% 55%, rgba(4,50,105,0.22) 0%, transparent 60%),
    var(--navy-mid);
}

#calc {
  background:
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(46,168,122,0.06) 0%, transparent 60%),
    var(--navy);
}

#contact-form {
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(196,154,60,0.07) 0%, transparent 60%),
    var(--navy-deep);
}

/* ── ANIMATIONS ──────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

@keyframes glow-pulse-cta {
  0%, 100% { box-shadow: 0 4px 22px rgba(196,154,60,0.22); }
  50%       { box-shadow: 0 4px 42px rgba(196,154,60,0.40); }
}

/* stagger delays for scroll-reveal children */
.sr-d1 { transition-delay: 0s; }
.sr-d2 { transition-delay: 0.09s; }
.sr-d3 { transition-delay: 0.18s; }
.sr-d4 { transition-delay: 0.27s; }
.sr-d1.visible, .sr-d2.visible, .sr-d3.visible, .sr-d4.visible { opacity:1; transform:none; }

/* ── HERO MOCKUP DASHBOARD ─────────────────────── */
.hero-mockup {
  background: rgba(8,24,39,0.92);
  border: 1px solid rgba(196,154,60,0.35);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(196,154,60,0.1);
  animation: float 5s ease-in-out infinite;
}
.hm-bar {
  background: #0a1e30;
  border-bottom: 1px solid rgba(196,154,60,0.2);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hm-dots { display:flex; gap:5px; }
.hm-dots span { width:10px; height:10px; border-radius:50%; background:rgba(196,154,60,0.25); }
.hm-dots span:first-child { background:#e74c3c; opacity:0.7; }
.hm-dots span:nth-child(2) { background:#f39c12; opacity:0.7; }
.hm-dots span:last-child { background:#2ecc71; opacity:0.7; }
.hm-title { flex:1; font-size:11px; color:rgba(159,176,194,0.8); letter-spacing:0.06em; text-align:center; }
.hm-status { font-size:11px; color:#2ecc71; display:flex; align-items:center; gap:5px; }
.hm-dot-live { width:6px; height:6px; border-radius:50%; background:#2ecc71; animation:hm-blink 1.6s ease-in-out infinite; }
@keyframes hm-blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hm-body { padding: 20px 24px; }
.hm-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.hm-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,60,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  min-width: 130px;
  transition: border-color 0.2s;
}
.hm-step-active {
  border-color: var(--gold);
  background: rgba(196,154,60,0.07);
}
.hm-step-icon { font-size: 20px; margin-bottom: 6px; }
.hm-step-label { font-size: 12px; font-weight: 500; color: var(--white); margin-bottom: 3px; }
.hm-step-time { font-size: 10px; color: var(--text-muted); }
.hm-arrow { font-size: 18px; color: var(--gold); opacity: 0.6; flex-shrink: 0; }
.hm-kpis {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.hm-kpi {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
}
.hm-kpi-val { font-size: 18px; font-weight: 600; color: var(--gold); font-family:'Cormorant Garamond',serif; }
.hm-kpi-lbl { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.hm-notif {
  background: rgba(46,204,113,0.07);
  border: 1px solid rgba(46,204,113,0.2);
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(159,176,194,0.9);
}
.hm-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2ecc71; flex-shrink: 0;
  animation: hm-blink 1.6s ease-in-out infinite;
}
@media (max-width: 640px) {
  .hero-mockup { margin: 32px 0 0; }
  .hm-kpis { grid-template-columns: repeat(2,1fr); }
  .hm-flow { gap: 8px; }
  .hm-step { min-width: 90px; padding: 10px 10px; }
  .hm-arrow { font-size: 14px; }
}

/* ── PILLAR CARDS (Three Interconnected Pillars) ── */
.pillar-cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin: 32px 0 36px;
}
.pillar-card {
  background: var(--navy-card);
  border: 1px solid var(--border-md);
  border-radius: 10px;
  padding: 24px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
.pillar-card-mid {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, rgba(196,154,60,0.06) 0%, var(--navy-card) 100%);
}
.pillar-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(196,154,60,0.1);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin: 0 auto 12px;
}
.pillar-num { font-size: 10px; letter-spacing: 0.15em; color: var(--text-muted); text-transform: uppercase; margin-bottom: 4px; }
.pillar-name { font-family: 'Cormorant Garamond',serif; font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.pillar-desc { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 640px) {
  .pillar-cards { grid-template-columns: 1fr; }
}

/* ── VIDEO PREVIEW OVERLAY ──────────────────────── */
.vid-preview-overlay {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(8,24,39,0.88);
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: left;
  z-index: 2;
}
.vid-preview-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(220,231,243,0.85);
  margin-bottom: 6px;
}
.vid-preview-row:last-child { margin-bottom: 0; }
.vid-preview-dot {
  width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
}
.vid-preview-dot.green { background: #2ecc71; }
.vid-preview-dot.gold { background: var(--gold); }

/* ═══════════════════════════════════════════════
   PREMIUM BACKGROUND VISUAL LAYER
   Section dividers, card depth, ambient shadows
   ═══════════════════════════════════════════════ */

/* Section divider: faint gold line glow */
.section-divider {
  box-shadow: 0 1px 0 rgba(196,154,60,0.06);
}

/* Pain cards: depth lift */
.pain-card {
  box-shadow: 0 4px 20px rgba(0,0,0,0.22);
}

/* Timeline body cards: subtle depth */
.tl-body {
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

/* Testimonial cards: depth lift */
.testi {
  box-shadow: 0 4px 24px rgba(0,0,0,0.20);
}

/* Feature strip: top blue ambient */
.feature-strip {
  box-shadow: inset 0 1px 0 rgba(196,154,60,0.08), inset 0 -1px 0 rgba(196,154,60,0.06);
}

/* Breakeven box: green inner glow */
.breakeven-box {
  box-shadow: 0 0 28px rgba(61,186,111,0.07), inset 0 1px 0 rgba(61,186,111,0.1);
}

/* Hero mockup card: deepen ambient */
.hero-mockup {
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(196,154,60,0.12), 0 0 60px rgba(196,154,60,0.07);
}

/* Header: faint gold bottom glow */
header {
  box-shadow: 0 1px 0 rgba(196,154,60,0.08), 0 4px 32px rgba(0,0,0,0.3);
}

/* Cost callout: gold ambient */
.cost-callout {
  box-shadow: 0 0 40px rgba(196,154,60,0.07), inset 0 1px 0 rgba(196,154,60,0.12);
}

/* ── HERO ROTATING TEXT ─────────────────────────── */
.hero-rotate-wrap {
  margin: 22px auto 30px;
  font-size: clamp(14px, 1.7vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-soft);
  text-align: center;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hrt-static {
  color: var(--text-soft);
}

/* Grid trick: all words stack in the same cell,
   container width = widest word, no layout shift */
/* Single rotating span — JS swaps text content directly */
#heroRotate {
  color: var(--gold-light);
  font-weight: 600;
  display: inline-block;
  vertical-align: middle;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.32s ease, transform 0.32s ease;
  position: relative;
  text-shadow: 0 0 32px rgba(196,154,60,0.55), 0 0 72px rgba(196,154,60,0.22);
}

/* Subtle gold underline */
#heroRotate::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

@media (max-width: 640px) {
  .hero-rotate-wrap {
    font-size: 14px;
    margin: 18px auto 26px;
    letter-spacing: 0.01em;
  }
}

/* ═══════════════════════════════════════════════════════
   LIGHT SECTION RHYTHM
   Selected mid-page sections break the all-dark layout.
   Background: #EBF0F8 — soft cool navy-tinted white.
   Top/bottom edges fade from dark → light via CSS gradients.
   ═══════════════════════════════════════════════════════ */

/* ── Light section backgrounds ───────────────────────── */
#problem,
#included,
#testimonials,
#compare {
  background:
    linear-gradient(to bottom, var(--navy-mid) 0%, transparent 80px),
    linear-gradient(to top, var(--navy-deep) 0%, transparent 80px),
    #EBF0F8;
}

/* ── Direct section text → dark navy ─────────────────── */
#problem > h2,
#problem > p:not(.section-label),
#included > h2,
#included > p:not(.section-label),
#testimonials > h2,
#testimonials > p:not(.section-label),
#compare > h2,
#compare > p:not(.section-label) {
  color: #0D1F35;
}

/* section-label keeps its gold color — looks great on light */

/* ─────────────────────────────────────────────────────
   PROBLEM — pain cards on white
   ───────────────────────────────────────────────────── */
#problem .pain-card {
  background: #FFFFFF;
  border: 1px solid rgba(13, 31, 53, 0.09);
  border-left: 3px solid var(--red);
  box-shadow: 0 2px 18px rgba(13, 31, 53, 0.07);
}
#problem .pain-card .pain-title { color: #0D1F35; }
#problem .pain-card p { color: rgba(13, 31, 53, 0.68); }

/* cost callout stays dark — a premium dark anchor inside the light section */
#problem .cost-callout {
  background: var(--navy-deep);
  border-color: var(--gold-border);
}
#problem .cost-callout .cost-text { color: rgba(255, 255, 255, 0.80); }
#problem .cost-callout .cost-text strong { color: #FFFFFF; }

/* ─────────────────────────────────────────────────────
   INCLUDED — feature items as white card
   ───────────────────────────────────────────────────── */
#included .includes-grid {
  background: #FFFFFF;
  border: 1px solid rgba(13, 31, 53, 0.08);
  box-shadow: 0 4px 36px rgba(13, 31, 53, 0.10);
}
#included .include-item {
  background: transparent;
  border-bottom: 1px solid rgba(13, 31, 53, 0.07);
}
#included .include-item:hover { background: rgba(13, 31, 53, 0.025); }
#included .item-body .item-title { color: #0D1F35; }
#included .item-body p { color: rgba(13, 31, 53, 0.68); }
#included .fast-action-item {
  background: rgba(196, 154, 60, 0.08);
  border-top-color: var(--gold-border);
}
#included .fa-body { color: rgba(13, 31, 53, 0.70); }
#included .fa-body strong { color: #0D1F35; }

/* ─────────────────────────────────────────────────────
   TESTIMONIALS — white cards on light bg
   ───────────────────────────────────────────────────── */
#testimonials .testi {
  background: #FFFFFF;
  border: 1px solid rgba(13, 31, 53, 0.08);
  box-shadow: 0 4px 22px rgba(13, 31, 53, 0.09);
}
#testimonials .testi:hover {
  border-color: var(--gold-border);
  box-shadow: 0 8px 38px rgba(13, 31, 53, 0.15);
  transform: translateY(-3px);
}
#testimonials .testi-quote { color: rgba(13, 31, 53, 0.70); }
#testimonials .testi-name  { color: #0D1F35; }
#testimonials .testi-role  { color: rgba(13, 31, 53, 0.50); }

/* ─────────────────────────────────────────────────────
   COMPARE — comparison columns on light bg
   ───────────────────────────────────────────────────── */
#compare .cmp ul li {
  color: rgba(13, 31, 53, 0.76);
  border-bottom-color: rgba(13, 31, 53, 0.06);
}
#compare .cmp.bad  {
  background: rgba(224, 80, 80, 0.06);
  border-color: rgba(224, 80, 80, 0.22);
}
#compare .cmp.good {
  background: rgba(61, 186, 111, 0.07);
  border-color: rgba(61, 186, 111, 0.22);
}

/* ── Mobile ──────────────────────────────────────────── */
@media (max-width: 640px) {
  #problem, #included, #testimonials, #compare {
    background:
      linear-gradient(to bottom, var(--navy-mid) 0%, transparent 56px),
      linear-gradient(to top, var(--navy-deep) 0%, transparent 56px),
      #EBF0F8;
  }
}
/* =========================================== */
/* PREMIUM VISUAL POLISH                       */
/* =========================================== */

/* Hero ambient glow — breathes slowly */
@keyframes hero-glow-breathe {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.5; transform: translateX(-50%) scale(1.12); }
}

/* Hero ring — slow orbital drift */
@keyframes hero-ring-drift {
  0%   { transform: translateX(-50%) rotate(0deg)   scale(1); }
  50%  { transform: translateX(-50%) rotate(180deg) scale(1.06); }
  100% { transform: translateX(-50%) rotate(360deg) scale(1); }
}

/* Notification card slide-in */
@keyframes hlc-float-in {
  0%   { opacity: 0; transform: translateX(28px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Status dot pulse */
@keyframes hlc-dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.8); }
}

/* ── Live activity notification strip ─────── */
.hero-live {
  position: absolute;
  right: 28px;
  bottom: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  z-index: 2;
}

.hlc {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,154,60,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 10px;
  padding: 9px 14px;
  min-width: 210px;
  opacity: 0;
  animation: hlc-float-in 0.55s ease forwards;
}

.hlc-d1 { animation-delay: 0.15s; }
.hlc-d2 { animation-delay: 0.30s; }
.hlc-d3 { animation-delay: 0.45s; }
.hlc-d4 { animation-delay: 0.60s; }

.hlc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hlc-dot-pulse 2s ease-in-out infinite;
}
.hlc-green { background: #22c55e; }
.hlc-gold  { background: var(--gold); animation-delay: 0.4s; }
.hlc-red   { background: #ef4444; animation-delay: 0.2s; }

.hlc-label {
  flex: 1;
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
}

.hlc-time {
  font-size: 10px;
  font-weight: 600;
  color: rgba(196,154,60,0.75);
  white-space: nowrap;
}

/* ── Card hover depth improvements ─────────── */
.pillar-card:hover {
  box-shadow: 0 8px 32px rgba(196,154,60,0.1), 0 2px 8px rgba(0,0,0,0.3);
}

.pain-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  border-color: rgba(196,154,60,0.2);
}

.testi {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.testi:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

/* ── Ambient orbs: pricing and guarantee ───── */
#pricing {
  isolation: isolate;
  position: relative;
}
#pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 600px 400px at 15% 50%, rgba(196,154,60,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 500px 400px at 85% 50%, rgba(56,189,248,0.04) 0%, transparent 70%);
  pointer-events: none;
}

#guarantee {
  isolation: isolate;
  position: relative;
}
#guarantee::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 700px 500px at 50% 0%, rgba(196,154,60,0.06) 0%, transparent 65%);
  pointer-events: none;
}

/* ── Scroll-reveal stagger ─────────────────── */
.sr:nth-child(2) { transition-delay: 0.08s; }
.sr:nth-child(3) { transition-delay: 0.16s; }
.sr:nth-child(4) { transition-delay: 0.24s; }
.sr:nth-child(5) { transition-delay: 0.32s; }

/* ── Hide notification cards on narrow viewports */
@media (max-width: 1100px) {
  .hero-live { display: none; }
}

/* ── Reduce motion: respect system preference ─ */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .hero-mockup,
  .hlc,
  .hlc-dot,
  #heroRotate {
    animation: none !important;
    transition: none !important;
  }
  .hero-live { display: none; }
}

/* =========================================== */
/* PREMIUM MOTION — HOVER & TRANSITIONS        */
/* =========================================== */

/* Pricing cards */
.pricing-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 52px rgba(0,0,0,0.38);
}
.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 58px rgba(196,154,60,0.2), 0 10px 32px rgba(0,0,0,0.38);
}

/* Include items: subtle slide-right */
.include-item {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.include-item:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
}

/* Timeline body: slide-right on row hover */
.tl-body {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.timeline-item:hover .tl-body {
  transform: translateX(4px);
  border-color: rgba(196,154,60,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.16);
}

/* Breakeven box */
.breakeven-box {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.breakeven-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(61,186,111,0.14), 0 4px 16px rgba(0,0,0,0.2);
}

/* Cost callout */
.cost-callout {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.cost-callout:hover {
  transform: translateY(-3px);
  border-color: rgba(196,154,60,0.35);
  box-shadow: 0 0 48px rgba(196,154,60,0.1), 0 6px 24px rgba(0,0,0,0.22);
}

/* Guarantee box */
.guarantee-box {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.guarantee-box:hover {
  transform: translateY(-3px);
  border-color: rgba(46,168,122,0.5);
  box-shadow: 0 0 40px rgba(46,168,122,0.1), 0 12px 40px rgba(0,0,0,0.25);
}

/* Option rows */
.option-row {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.option-row:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

/* Fast-action bonus item */
.fast-action-item {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fast-action-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,154,60,0.08), 0 4px 12px rgba(0,0,0,0.15);
}

/* Pillar card: add depth shadow on hover */
.pillar-card:hover {
  box-shadow: 0 10px 36px rgba(196,154,60,0.1), 0 4px 16px rgba(0,0,0,0.3);
}

/* Calc result pop on slider change */
@keyframes cr-val-pop {
  0%   { transform: scale(1); }
  45%  { transform: scale(1.06); color: var(--gold-light); }
  100% { transform: scale(1); }
}
.cr-val {
  transition: color 0.2s ease;
}
.cr-val.pop {
  animation: cr-val-pop 0.38s ease;
}

/* Button hover lift — bump up existing -1px to -2px */
.cta-primary:hover  { transform: translateY(-2px) !important; }
.cta-btn-bare:hover { transform: translateY(-2px) !important; }
.cta-outline-btn:hover { transform: translateY(-1px); }

/* Nav CTA button */
.nav-cta {
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.18s !important;
}
.nav-cta:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(196,154,60,0.25) !important;
}

/* Reduced motion: disable all new hover transforms */
@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .include-item,
  .tl-body,
  .breakeven-box,
  .cost-callout,
  .guarantee-box,
  .option-row,
  .fast-action-item {
    transition: none !important;
  }
  .pricing-card:hover,
  .include-item:hover,
  .timeline-item:hover .tl-body,
  .breakeven-box:hover,
  .cost-callout:hover,
  .guarantee-box:hover,
  .option-row:hover,
  .fast-action-item:hover {
    transform: none !important;
  }
}

/* =========================================== */
/* 3-STEP ONBOARDING SECTION                   */
/* =========================================== */

#onboarding {
  isolation: isolate;
  position: relative;
}
#onboarding::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 700px 400px at 50% 30%, rgba(196,154,60,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ob-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}

/* Connector line between steps */
.ob-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.7% + 8px);
  right: calc(16.7% + 8px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.3), var(--gold), rgba(196,154,60,0.3), transparent);
  z-index: 0;
  pointer-events: none;
}

.ob-step {
  background: var(--navy-card);
  border: 1px solid var(--border-md);
  border-radius: 14px;
  padding: 28px 24px 32px;
  position: relative;
  text-align: center;
  z-index: 1;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.ob-step:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 16px 48px rgba(196,154,60,0.1), 0 6px 20px rgba(0,0,0,0.3);
}

.ob-step-mid {
  border-color: var(--gold-border);
  background: linear-gradient(160deg, var(--navy-card) 0%, rgba(196,154,60,0.06) 100%);
  box-shadow: 0 0 40px rgba(196,154,60,0.08);
}

.ob-step-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.ob-step-tag-gold {
  color: var(--gold);
  background: var(--gold-pale);
  border-color: var(--gold-border);
}

.ob-step-icon {
  width: 52px;
  height: 52px;
  background: rgba(196,154,60,0.06);
  border: 1px solid var(--border-md);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--text-muted);
  transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
}

.ob-icon-gold {
  background: rgba(196,154,60,0.1);
  border-color: var(--gold-border);
  color: var(--gold);
}

.ob-step:hover .ob-step-icon {
  background: rgba(196,154,60,0.1);
  border-color: var(--gold-border);
  color: var(--gold);
}

.ob-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 500;
  color: rgba(196,154,60,0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.ob-step-mid .ob-step-num {
  color: rgba(196,154,60,0.28);
}

.ob-step-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.4;
}

.ob-step-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Stagger animation for ob-steps */
.ob-d0 { transition-delay: 0s; }
.ob-d1 { transition-delay: 0.1s; }
.ob-d2 { transition-delay: 0.2s; }

@media (max-width: 768px) {
  .ob-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .ob-steps::before {
    display: none;
  }
  .ob-step {
    text-align: left;
  }
  .ob-step-icon {
    margin: 0 0 14px;
  }
}

/* =====================================================
   CINEMATIC SCROLL & IMMERSIVE MOTION — v16
   ===================================================== */

/* ── Scroll progress bar ─────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, rgba(196,154,60,0.5), var(--gold-light), rgba(196,154,60,0.5));
  background-size: 200% 100%;
  z-index: 10000;
  pointer-events: none;
  animation: progress-shimmer 2.5s linear infinite;
  will-change: width;
}
@keyframes progress-shimmer {
  0%   { background-position: 0%   0%; }
  100% { background-position: 200% 0%; }
}

/* ── Upgrade scroll-reveal to cinematic spring ─── */
.sr {
  opacity: 0;
  transform: translateY(26px) scale(0.976);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.sr.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.sr-d1.visible, .sr-d2.visible, .sr-d3.visible, .sr-d4.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Hero: cinematic presence ────────────────────── */
.hero {
  min-height: 88vh;
}

/* ── Hero parallax targets (CSS custom props from JS) ── */
.hero-badge,
.hero h1,
.hero-rotate-wrap,
.hero-sub,
.hero .cta-primary,
.hero .proof-row {
  will-change: opacity, transform;
  transform: translateY(var(--hero-lift, 0px));
  opacity:   var(--hero-fade, 1);
}

/* ── Ambient drift keyframes ─────────────────────── */
@keyframes orb-drift-a {
  0%, 100% { transform: translate(0,    0)   scale(1);    }
  33%       { transform: translate(28px, -18px) scale(1.06); }
  66%       { transform: translate(-18px, 14px) scale(0.94); }
}
@keyframes orb-drift-b {
  0%, 100% { transform: translate(0,    0)   scale(1);    }
  40%       { transform: translate(-22px, 18px) scale(1.08); }
  70%       { transform: translate(18px, -12px) scale(0.92); }
}
@keyframes orb-drift-c {
  0%, 100% { transform: translateX(-50%) scale(1);    }
  50%       { transform: translateX(-50%) scale(1.12); }
}

/* ── Section depth orbs ──────────────────────────── */
#system { isolation: isolate; position: relative; }
#system::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 480px 280px at 82% 18%, rgba(56,189,248,0.04)  0%, transparent 65%),
    radial-gradient(ellipse 360px 280px at 18% 82%, rgba(196,154,60,0.04) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-drift-a 22s ease-in-out infinite;
}

#testimonials { isolation: isolate; position: relative; }
#testimonials::after {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 260px;
  background: radial-gradient(ellipse, rgba(196,154,60,0.055) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: orb-drift-c 20s ease-in-out infinite;
}

#onboarding { isolation: isolate; position: relative; }
#onboarding::after {
  content: '';
  position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 700px 400px at 50% 20%, rgba(196,154,60,0.05) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-drift-b 28s ease-in-out infinite;
}

/* ── Scarcity section depth ──────────────────────── */
.scarcity-section { position: relative; isolation: isolate; }
.scarcity-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%;
  width: 680px; height: 300px;
  background: radial-gradient(ellipse, rgba(196,154,60,0.07) 0%, transparent 70%);
  z-index: -1;
  pointer-events: none;
  animation: orb-drift-c 18s ease-in-out infinite;
}

/* ── Enhanced section divider with bloom ─────────── */
.section-divider {
  border: none !important;
  height: 1px;
  margin: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,154,60,0.12) 20%,
    rgba(196,154,60,0.38) 50%,
    rgba(196,154,60,0.12) 80%,
    transparent 100%) !important;
  position: relative;
  overflow: visible;
}
.section-divider::after {
  content: '';
  display: block;
  height: 48px;
  margin-top: -1px;
  background: linear-gradient(to bottom, rgba(196,154,60,0.04) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Video section: floating cards ─────────────── */
#video-section {
  position: relative;
  overflow: visible;
}

/* Extra breathing room around the video headline */
#video-section h2 {
  margin-bottom: 18px;
  margin-top: 8px;
}
#video-section .video-wrap {
  position: relative;
  overflow: visible;
  padding: 44px 36px 36px;
}

.vid-live-cards {
  position: absolute;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  z-index: 4;
}

.vlc {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  /* More glass: lower bg opacity, higher blur */
  background: rgba(5, 15, 28, 0.68);
  border: 1px solid rgba(196,154,60,0.14);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
  border-radius: 10px;
  padding: 9px 13px;
  min-width: 168px;
  opacity: 0;
  /* Softer, subtler shadow */
  box-shadow: 0 4px 20px rgba(0,0,0,0.2), 0 1px 0 rgba(255,255,255,0.04) inset;
  /* Standalone translate property — used for the idle float */
  translate: 0 0;
}

/* Entry: slow spring slide-in + settle at 85% opacity */
.vlc-ready .vlc-1 {
  animation:
    vlc-slide-l 1.1s 0.35s cubic-bezier(0.16,1,0.3,1) both,
    vlc-idle-y  10s  1.6s ease-in-out infinite;
}
.vlc-ready .vlc-2 {
  animation:
    vlc-slide-r 1.1s 0.65s cubic-bezier(0.16,1,0.3,1) both,
    vlc-idle-y  10s  3.2s ease-in-out infinite;
}

@keyframes vlc-slide-l {
  0%   { opacity: 0; transform: translateX(-20px); }
  100% { opacity: 0.85; transform: translateX(0); }
}
@keyframes vlc-slide-r {
  0%   { opacity: 0; transform: translateX(20px); }
  100% { opacity: 0.85; transform: translateX(0); }
}

/* Idle float on separate CSS property — no conflict with transform above */
@keyframes vlc-idle-y {
  0%, 100% { translate: 0 0px; }
  50%       { translate: 0 -6px; }
}

/* Two cards orbit outside the video-wrap box — left: -200px places right
   edge 32px clear of the video-wrap's left border on a 1440px viewport */
.vlc-1 { top: 30%; left:  -200px; }
.vlc-2 { top: 48%; right: -200px; }

.vlc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: vlc-dot-blink 3s ease-in-out infinite;
}
.vlc-dot.green { background: #22c55e; }
.vlc-dot.gold  { background: var(--gold); animation-delay: 1s; }

@keyframes vlc-dot-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.68); }
}

.vlc-content .vlc-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.vlc-content .vlc-sub {
  font-size: 9.5px;
  color: rgba(196,154,60,0.68);
  margin-top: 2px;
  font-weight: 500;
}

/* Hidden unless there's enough room to show cards cleanly beside video */
@media (max-width: 1320px) {
  .vlc { display: none; }
}

/* ── CTA buttons: cinematic glow bloom ──────────── */
.cta-primary,
.cta-btn-bare {
  position: relative;
  isolation: isolate;
}
.cta-primary::before,
.cta-btn-bare::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 8px;
  background: var(--gold);
  opacity: 0;
  z-index: -1;
  filter: blur(16px);
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.cta-primary:hover::before,
.cta-btn-bare:hover::before {
  opacity: 0.38;
}

/* ── Feature strip hover ─────────────────────────── */
.fsi {
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.fsi:hover {
  transform: translateY(-4px);
}

/* ── Pillar card icon glow on hover ─────────────── */
.pillar-icon {
  transition: color 0.25s ease, background 0.25s ease;
}
.pillar-card:hover .pillar-icon {
  color: var(--gold);
}

/* ── Guarantee box teal glow bloom ──────────────── */
.guarantee-box {
  position: relative;
  isolation: isolate;
}
.guarantee-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 9px;
  background: var(--teal);
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.guarantee-box:hover::before {
  opacity: 0.06;
}

/* ── Smooth section spacing rhythm ─────────────── */
section {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* ── Reduced motion compliance ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sr {
    transition: opacity 0.35s ease !important;
    transform: none !important;
  }
  .sr.visible { opacity: 1; }
  #scroll-progress { animation: none; }
  .section-divider::after { display: none; }
  #system::after,
  #testimonials::after,
  #onboarding::after,
  .scarcity-section::after { animation: none; }
  .vlc { animation: none !important; opacity: 0.85 !important; translate: 0 0 !important; }
  .hero-badge,
  .hero h1,
  .hero-rotate-wrap,
  .hero-sub,
  .hero .cta-primary,
  .hero .proof-row {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM SaaS VISUAL ENHANCEMENT — v20
   Goals: animated grid, cinematic glow, section depth,
          light #calc section, improved micro-interactions,
          dashboard SaaS feel, premium dividers
   ═══════════════════════════════════════════════════════════ */

/* ── 1. Body: slow-drifting dot grid ─────────────────────── */
body {
  background-size: auto, auto, auto, auto, 30px 30px;
}
@keyframes grid-drift {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 0, 0 0, 0 0, 30px 30px; }
}
body {
  animation: grid-drift 60s linear infinite;
}

/* ── 2. Noise texture overlay on body ───────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.018;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Ensure main content layers above noise — header excluded (keeps z-index:100) */
main, section, footer, .hero, .urgency-bar, .trust-strip, .feature-strip {
  position: relative;
  z-index: 1;
}

/* ── 3. Hero: extra cinematic depth layer ───────────────── */
.hero {
  isolation: isolate;
}
.hero-bg-extra {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Animated teal accent low-left */
.hero-bg-extra::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -60px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,168,122,0.045) 0%, transparent 65%);
  animation: orb-drift-b 32s ease-in-out infinite;
}
/* Animated blue accent mid-right */
.hero-bg-extra::after {
  content: '';
  position: absolute;
  top: 20%; right: -80px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.04) 0%, transparent 65%);
  animation: orb-drift-a 26s ease-in-out infinite;
}

/* ── 4. #calc gets light section treatment ──────────────── */
#calc {
  background:
    linear-gradient(to bottom, var(--navy) 0%, transparent 80px),
    linear-gradient(to top,   var(--navy) 0%, transparent 80px),
    #EBF0F8;
}

#calc > h2,
#calc > p:not(.section-label) {
  color: #0D1F35;
}

#calc .calc-wrap {
  background: #FFFFFF;
  border: 1px solid rgba(13,31,53,0.09);
  box-shadow: 0 4px 36px rgba(13,31,53,0.10);
}

#calc .cf-label {
  color: rgba(13,31,53,0.72);
}

#calc input[type="range"].gold-range {
  background: rgba(13,31,53,0.12);
}

#calc .cr {
  background: rgba(13,31,53,0.04);
  border: 1px solid rgba(13,31,53,0.09);
}

#calc .calc-note {
  color: rgba(13,31,53,0.65);
  border-top-color: rgba(13,31,53,0.08);
}

#calc .cr-val {
  color: #8B6B1F;
}

#calc .cr-label {
  color: rgba(13,31,53,0.55);
}

#calc .cf-label span {
  color: #8B6B1F;
}

@media (max-width: 640px) {
  #calc {
    background:
      linear-gradient(to bottom, var(--navy) 0%, transparent 56px),
      linear-gradient(to top,   var(--navy) 0%, transparent 56px),
      #EBF0F8;
  }
}

/* ── 5. Section label: animated gold underline entry ──────── */
.section-label {
  position: relative;
  display: inline-block;
}
.section-label::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.6s cubic-bezier(0.16,1,0.3,1);
}
/* Trigger when section enters viewport via .section-label-animate class (JS) */
.sr-label-visible .section-label::after,
section.visible .section-label::after,
.section-label.animated::after {
  width: 100%;
}

/* ── 6. Premium gradient section transitions ─────────────── */
@keyframes divider-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
/* Shimmer animation on the existing divider lines */
.section-divider {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,154,60,0.08) 15%,
    rgba(196,154,60,0.40) 50%,
    rgba(196,154,60,0.08) 85%,
    transparent 100%) !important;
  background-size: 200% 100% !important;
  animation: divider-shimmer 4s ease-in-out infinite !important;
}

/* ── 7. HiW panel card: hover glow ──────────────────────── */
.hiw-visual {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.hiw-visual:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(196,154,60,0.12), 0 6px 24px rgba(0,0,0,0.28);
}

/* ── 8. Testimonial card: shimmer border on hover ─────────── */
@keyframes border-shimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.testi {
  position: relative;
}
.testi::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(196,154,60,0.3), transparent, rgba(196,154,60,0.15));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: border-shimmer 3s ease infinite;
  pointer-events: none;
}
.testi:hover::after {
  opacity: 1;
}

/* ── 9. Pricing card: featured gold shimmer ─────────────── */
.pricing-card.featured {
  position: relative;
  isolation: isolate;
}
.pricing-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 11px;
  background: linear-gradient(135deg,
    rgba(196,154,60,0.6) 0%,
    transparent 40%,
    transparent 60%,
    rgba(232,196,106,0.4) 100%);
  background-size: 300% 300%;
  animation: border-shimmer 4s ease infinite;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
}

/* ── 10. Scarcity spot pills: stagger pulse ─────────────── */
@keyframes spot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,154,60,0); }
  50%       { box-shadow: 0 0 0 4px rgba(196,154,60,0.15); }
}
.spot-pill.open {
  animation: spot-pulse 3s ease-in-out infinite;
}
.spot-pill.open:nth-child(2) { animation-delay: 0.3s; }
.spot-pill.open:nth-child(3) { animation-delay: 0.6s; }
.spot-pill.open:nth-child(4) { animation-delay: 0.9s; }
.spot-pill.open:nth-child(5) { animation-delay: 1.2s; }

/* ── 11. Onboarding connector line: animated shimmer ─────── */
@keyframes connector-shimmer {
  0%   { background-position: -300% center; }
  100% { background-position: 300% center; }
}
.ob-steps::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,154,60,0.15) 20%,
    rgba(196,154,60,0.7) 50%,
    rgba(196,154,60,0.15) 80%,
    transparent 100%) !important;
  background-size: 300% 100% !important;
  animation: connector-shimmer 3.5s ease-in-out infinite !important;
}

/* ── 12. KPI count-up number: flash on update ───────────── */
@keyframes kpi-flash {
  0%   { color: var(--gold-light); text-shadow: 0 0 16px rgba(196,154,60,0.5); }
  100% { color: var(--gold-light); text-shadow: none; }
}
.hm-kpi-val.flash {
  animation: kpi-flash 0.6s ease forwards;
}

/* ── 13. Proof row cell: count-up pop ───────────────────── */
@keyframes proof-pop {
  0%   { transform: scale(1.05); color: var(--gold-light); }
  100% { transform: scale(1); }
}
.proof-num.pop {
  animation: proof-pop 0.4s ease forwards;
}

/* ── 14. Feature strip items: animated icon glow ───────── */
.fsi-icon {
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.fsi:hover .fsi-icon {
  background: rgba(196,154,60,0.22);
  box-shadow: 0 0 16px rgba(196,154,60,0.18);
}
.fsi:hover .fsi-icon span {
  animation: fsi-bounce 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes fsi-bounce {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* ── 15. Video section: depth background ────────────────── */
#video-section {
  isolation: isolate;
  position: relative;
}
#video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(196,154,60,0.04) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 15% 30%, rgba(56,189,248,0.03) 0%, transparent 65%);
  pointer-events: none;
  animation: orb-drift-b 30s ease-in-out infinite;
}

/* ── 16. Founder block: animated top bar ────────────────── */
.founder-block::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,154,60,0.4) 30%,
    var(--gold) 50%,
    rgba(196,154,60,0.4) 70%,
    transparent 100%) !important;
  background-size: 200% 100% !important;
  animation: divider-shimmer 3s ease-in-out infinite !important;
}

/* ── 17. Contact form section: glow on focus ────────────── */
.form-section {
  transition: box-shadow 0.3s ease;
}
.form-section:focus-within {
  box-shadow: 0 0 0 1px rgba(196,154,60,0.15), 0 20px 60px rgba(196,154,60,0.07);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  box-shadow: 0 0 0 3px rgba(196,154,60,0.08);
}

/* ── 18. Pillar card mid: glow animation ───────────────── */
@keyframes pillar-glow {
  0%, 100% { box-shadow: 0 0 24px rgba(196,154,60,0.06); }
  50%       { box-shadow: 0 0 42px rgba(196,154,60,0.12); }
}
.pillar-card-mid {
  animation: pillar-glow 4s ease-in-out infinite;
}

/* ── 19. Guarantee/book-demo block top bar shimmer ───────── */
.book-demo-cta::before,
.scarcity-section::before,
.form-section::before,
.final-block::before {
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,154,60,0.25) 30%,
    var(--gold) 50%,
    rgba(196,154,60,0.25) 70%,
    transparent 100%) !important;
  background-size: 200% 100% !important;
  animation: divider-shimmer 4s ease-in-out infinite !important;
}

/* ── 20. Compare section: column header glow ────────────── */
.cmp.good {
  position: relative;
  overflow: hidden;
}
.cmp.good::before {
  content: '';
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 140px;
  background: radial-gradient(ellipse, rgba(61,186,111,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── 21. Hero section label: count-up on scroll ─────────── */
.proof-num {
  transition: color 0.3s ease;
}

/* ── 22. Urgency bar: subtle pulse on spots ─────────────── */
.urgency-bar .spot:not(.open) {
  animation: spot-gold-pulse 2.5s ease-in-out infinite;
}
@keyframes spot-gold-pulse {
  0%, 100% { opacity: 0.9; box-shadow: 0 0 0 0 rgba(196,154,60,0); }
  50%       { opacity: 1; box-shadow: 0 0 0 3px rgba(196,154,60,0.2); }
}

/* ── 23. Include items: left accent shimmer on hover ──────── */
.include-item {
  border-left: 3px solid transparent;
  transition: transform 0.22s ease, box-shadow 0.22s ease,
              background 0.22s ease, border-left-color 0.22s ease;
}
.include-item:hover {
  border-left-color: rgba(196,154,60,0.4);
}
#included .include-item:hover {
  border-left-color: rgba(196,154,60,0.3);
}

/* ── 24. Nav: glassmorphism + layering fix ────────────────────
   - header must sit above every page element, including urgency bar,
     trust strip, sections, and hero.
   - nav-drop must appear above all of them as well.
   - backdrop-filter on the dropdown can cause it to look transparent
     if the parent stacking context has a low z-index; fix with a
     fully opaque background + explicit high z-index on both elements.
   ─────────────────────────────────────────────────────────────── */
header {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  /* Solid enough to read through; still feels premium */
  background: rgba(9, 24, 40, 0.97) !important;
  /* Must beat every section/urgency-bar z-index */
  z-index: 1000 !important;
  /* Ensure header itself forms a clean stacking context */
  isolation: isolate;
}

/* Dropdown: fully opaque, above everything */
.nav-drop {
  background: #0B1D2E !important;           /* solid dark navy — no transparency bleed */
  border: 1px solid rgba(196,154,60,0.22) !important;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.60),
    0 24px 64px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.05) !important;
  backdrop-filter: none !important;          /* remove blur — solid bg makes it redundant */
  -webkit-backdrop-filter: none !important;
  z-index: 9999 !important;
}

/* Dropdown items: clear legible text */
.nav-drop a {
  color: rgba(220, 231, 243, 0.88) !important;
  font-size: 13px !important;
}

.nav-drop a:hover {
  background: rgba(196,154,60,0.12) !important;
  color: var(--gold-light) !important;
}

/* Urgency bar / trust strip stay BELOW the header */
.urgency-bar,
.trust-strip {
  position: relative;
  z-index: 2;            /* header is 1000, dropdown is 9999 — these stay under both */
}

/* ── 25. Scroll-reveal: directional variants ──────────────── */
.sr-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.sr-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.sr-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.sr-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.sr-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1),
              transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
.sr-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── 26. Calc result display: bigger number energy ────────── */
.cr-val {
  font-size: 44px;
}

/* ── 27. Guarantee icon: breathe animation ────────────────── */
@keyframes shield-breathe {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.06); }
}
.guar-icon {
  animation: shield-breathe 4s ease-in-out infinite;
}

/* ── 28. Section-level ambient: #problem gets orb ──────────── */
#problem {
  isolation: isolate;
  position: relative;
}
#problem::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(224,80,80,0.04) 0%, transparent 65%);
  z-index: 0;
  pointer-events: none;
  animation: orb-drift-a 25s ease-in-out infinite;
}

/* ── 29. Mobile: reduce all animations ────────────────────── */
@media (max-width: 640px) {
  .hero-bg-extra::before,
  .hero-bg-extra::after,
  #problem::after,
  #video-section::before {
    display: none;
  }
  .testi::after,
  .pricing-card.featured::after {
    display: none;
  }
  .spot-pill.open {
    animation: none;
  }
  .guar-icon {
    animation: none;
  }
  .pillar-card-mid {
    animation: none;
  }
  .urgency-bar .spot:not(.open) {
    animation: none;
  }
}

/* ── 30. Reduced motion: comprehensive disable ────────────── */
@media (prefers-reduced-motion: reduce) {
  body { animation: none !important; }
  .founder-block::before,
  .book-demo-cta::before,
  .scarcity-section::before,
  .form-section::before,
  .final-block::before,
  .section-divider { animation: none !important; }
  .ob-steps::before { animation: none !important; }
  .spot-pill.open { animation: none !important; }
  .guar-icon { animation: none !important; }
  .pillar-card-mid { animation: none !important; }
  .testi::after { display: none; }
  .pricing-card.featured::after { display: none; }
}

/* ═══════════════════════════════════════════════════════
   NAV ARCHITECTURE REFINEMENT — v21
   New structure: 4 dropdowns + 1 plain link + CTA
   ═══════════════════════════════════════════════════════ */

/* Investment dropdown: wider to fit "Founding Partner Program" */
.nav-drop-wide {
  min-width: 220px;
}

/* Nav item divider: subtle separator between dropdown items */
.nav-drop a + a {
  border-top: 1px solid rgba(255,255,255,0.045);
}

/* Dropdown item: icon-like left accent on hover */
.nav-drop a {
  padding-left: 16px;
  border-left: 2px solid transparent;
  transition: background 0.14s, color 0.14s, border-left-color 0.14s, padding-left 0.14s;
}
.nav-drop a:hover {
  border-left-color: var(--gold);
  padding-left: 20px;
}

/* Tighter nav spacing at mid-range widths (4 dropdowns need room) */
@media (max-width: 1160px) {
  nav .nav-plain,
  nav .nav-cta {
    margin-left: 18px;
  }
  .nav-dropdown {
    margin-left: 18px;
  }
  nav .nav-trigger {
    font-size: 11px;
  }
  nav .nav-plain {
    font-size: 11px;
  }
}

@media (max-width: 900px) {
  nav .nav-plain,
  nav .nav-cta {
    margin-left: 12px;
  }
  .nav-dropdown {
    margin-left: 12px;
  }
  nav .nav-trigger {
    font-size: 10.5px;
    letter-spacing: 0.04em;
  }
  nav .nav-cta {
    padding: 7px 13px;
    font-size: 11px;
  }
}

/* ============================================================
   ABOUT THEOPTIQ SECTION
   ============================================================ */
.about-section {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 20px 110px;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(196,154,60,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(61,186,111,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-headline {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
  margin: 16px 0 28px;
  letter-spacing: -0.02em;
}

.about-headline em {
  font-style: normal;
  color: var(--gold-light);
}

.about-body {
  font-size: 1.05rem;
  line-height: 1.78;
  color: rgba(220, 231, 243, 0.72);
  max-width: 720px;
  margin: 0 0 60px;
}

/* ---- Pillars ---- */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,154,60,0.15);
  border-radius: 14px;
  padding: 24px 22px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.about-pillar:hover {
  border-color: rgba(196,154,60,0.38);
  box-shadow: 0 8px 36px rgba(0,0,0,0.28), 0 0 0 1px rgba(196,154,60,0.10);
  transform: translateY(-3px);
}

.about-pillar-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(196,154,60,0.10);
  border: 1px solid rgba(196,154,60,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}

.about-pillar-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 7px;
}

.about-pillar-desc {
  font-size: 0.83rem;
  line-height: 1.65;
  color: rgba(220, 231, 243, 0.60);
}

@media (max-width: 820px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .about-pillar {
    padding: 20px 18px;
  }
  .about-section {
    padding: 72px 20px 80px;
  }
}

/* ============================================================
   RESOURCES PREVIEW SECTION
   ============================================================ */
.resources-section {
  position: relative;
  background: linear-gradient(180deg, var(--navy) 0%, #081422 100%);
  padding: 100px 20px 110px;
  overflow: hidden;
}

.resources-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 75% 20%, rgba(61,186,111,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 15% 80%, rgba(196,154,60,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.resources-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.resources-headline {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
}

.resources-sub {
  font-size: 1.02rem;
  line-height: 1.72;
  color: rgba(220, 231, 243, 0.62);
  max-width: 640px;
  margin: 0 0 56px;
}

/* ---- Grid ---- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

/* ---- Card ---- */
.res-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.038);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}

.res-card:hover {
  border-color: rgba(196,154,60,0.30);
  box-shadow: 0 12px 44px rgba(0,0,0,0.32), 0 0 0 1px rgba(196,154,60,0.08);
  transform: translateY(-4px);
}

/* ---- Thumbnail area ---- */
.res-card-thumb {
  position: relative;
  height: 154px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}

/* Per-card backgrounds — gradient on top of optional image layer */
.rct-revenue {
  background:
    linear-gradient(145deg, rgba(12,19,34,0.90) 0%, rgba(19,15,4,0.94) 100%),
    url(images/dental-revenue.jpg) center/cover no-repeat;
}
.rct-ai {
  background:
    linear-gradient(145deg, rgba(8,20,32,0.90) 0%, rgba(6,21,16,0.94) 100%),
    url(images/dental-ai.jpg) center 40%/cover no-repeat;
}
.rct-pms {
  background:
    linear-gradient(145deg, rgba(8,20,32,0.90) 0%, rgba(6,12,28,0.94) 100%),
    url(images/dental-pms.jpg) center/cover no-repeat;
}

/* Scalable scene layer */
.res-thumb-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px 22px;
  z-index: 2;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.res-card:hover .res-thumb-scene { transform: scale(1.045); }

/* Bottom fade overlay blending into card body */
.res-thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  z-index: 3;
  pointer-events: none;
}
.rto-gold  { background: linear-gradient(to bottom, transparent, #130f04); }
.rto-green { background: linear-gradient(to bottom, transparent, #061510); }
.rto-blue  { background: linear-gradient(to bottom, transparent, #060c1c); }

/* Glow blob */
.res-thumb-glow {
  position: absolute;
  inset: -30%;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.28;
  transition: opacity 0.4s;
  z-index: 1;
}
.res-card:hover .res-thumb-glow { opacity: 0.50; }

.res-glow-gold  { background: radial-gradient(circle, rgba(196,154,60,0.8) 0%, transparent 65%); }
.res-glow-green { background: radial-gradient(circle, rgba(61,186,111,0.8) 0%, transparent 65%); }
.res-glow-blue  { background: radial-gradient(circle, rgba(99,179,237,0.7) 0%, transparent 65%); }

/* ------------------------------------------------
   CARD 1 — Revenue chart
   ------------------------------------------------ */
.rts-chart {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.rts-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 3px 9px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rts-badge-red {
  background: rgba(220,60,60,0.18);
  color: #f87171;
  border: 1px solid rgba(220,60,60,0.28);
}
.rts-badge-sub {
  font-weight: 400;
  font-size: 10px;
  opacity: 0.75;
}

.rts-label {
  font-size: 9.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(220,231,243,0.35);
}

/* ------------------------------------------------
   CARD 2 — Chat scene
   ------------------------------------------------ */
.rts-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
  max-width: 210px;
}

.rts-bubble {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  padding: 6px 11px;
  border-radius: 8px;
  line-height: 1.4;
}

.rts-bubble-in {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(220,231,243,0.70);
  align-self: flex-start;
}

.rts-bubble-out {
  background: rgba(61,186,111,0.12);
  border: 1px solid rgba(61,186,111,0.22);
  color: rgba(150,240,180,0.90);
  align-self: flex-end;
}

.rts-bubble strong { color: #4ade80; font-weight: 700; }

.rts-bdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.rts-bdot-grey  { background: rgba(200,210,220,0.45); }
.rts-bdot-green {
  background: #4ade80;
  box-shadow: 0 0 5px rgba(74,222,128,0.7);
  animation: rts-pulse 1.8s ease-in-out infinite;
}

@keyframes rts-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(74,222,128,0.6); }
  50%       { box-shadow: 0 0 10px rgba(74,222,128,0.95); }
}

.rts-booked {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(74,222,128,0.80);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* ------------------------------------------------
   CARD 3 — Pipeline
   ------------------------------------------------ */
.rts-pipeline {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 220px;
  justify-content: center;
}

.rts-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 8px 10px;
  border-radius: 8px;
  flex-shrink: 0;
}
.rts-node span {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rts-node-blue {
  background: rgba(99,179,237,0.10);
  border: 1px solid rgba(99,179,237,0.22);
  color: #93c5fd;
}
.rts-node-green {
  background: rgba(61,186,111,0.10);
  border: 1px solid rgba(61,186,111,0.22);
  color: #4ade80;
}

.rts-pipe {
  position: relative;
  width: 28px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
  flex-shrink: 0;
}

.rts-pipe-dot {
  position: absolute;
  top: -2px;
  left: -8px;
  width: 8px;
  height: 6px;
  border-radius: 3px;
  background: #93c5fd;
  box-shadow: 0 0 6px rgba(99,179,237,0.8);
  animation: rts-flow 2.2s linear infinite;
}
.rts-pd2 {
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74,222,128,0.8);
  animation: rts-flow 2.2s linear 1.1s infinite;
}

@keyframes rts-flow {
  0%   { left: -10px; opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { left: 30px; opacity: 0; }
}

.rts-sync {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(147,197,253,0.75);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.rts-sync-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #93c5fd;
  box-shadow: 0 0 6px rgba(99,179,237,0.8);
  animation: rts-pulse 2s ease-in-out infinite;
}

/* ---- Card body ---- */
.res-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 20px 20px;
  gap: 10px;
}

/* ---- Category badge ---- */
.res-category {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  width: fit-content;
}

.res-cat-gold  { background: rgba(196,154,60,0.14); color: var(--gold-light); border: 1px solid rgba(196,154,60,0.28); }
.res-cat-green { background: rgba(61,186,111,0.12); color: #4ade80; border: 1px solid rgba(61,186,111,0.28); }
.res-cat-blue  { background: rgba(99,179,237,0.10); color: #93c5fd; border: 1px solid rgba(99,179,237,0.26); }

/* ---- Title & excerpt ---- */
.res-title {
  font-size: 0.93rem;
  font-weight: 700;
  line-height: 1.42;
  color: var(--white);
  margin: 0;
}

.res-excerpt {
  font-size: 0.81rem;
  line-height: 1.68;
  color: rgba(220,231,243,0.55);
  margin: 0;
  flex: 1;
}

/* card title link — inherits card's white color, no underline */
.res-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.res-title a:hover { color: var(--gold-light); }

/* ---- Read more link ---- */
.res-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.01em;
  margin-top: 4px;
  transition: gap 0.2s, opacity 0.2s;
  opacity: 0.75;
}

.res-card:hover .res-read-more {
  gap: 8px;
  opacity: 1;
}

.res-arrow {
  display: inline-block;
  transition: transform 0.2s;
}

.res-card:hover .res-arrow { transform: translateX(3px); }

/* ---- Bottom CTA ---- */
.resources-cta-row {
  display: flex;
  justify-content: center;
}

.resources-cta {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  border: 1px solid rgba(196,154,60,0.35);
  border-radius: 8px;
  padding: 11px 28px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}

.resources-cta:hover {
  background: rgba(196,154,60,0.10);
  border-color: rgba(196,154,60,0.60);
  box-shadow: 0 4px 20px rgba(196,154,60,0.18);
  transform: translateY(-1px);
}

/* ---- Responsive ---- */
@media (max-width: 820px) {
  .resources-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .res-card-thumb {
    height: 130px;
  }
  .rts-chart { max-width: 180px; }
  .rts-chat  { max-width: 180px; }
  .rts-pipeline { max-width: 180px; }
  .resources-section {
    padding: 72px 20px 80px;
  }
}

/* #included section: item-tag-pill on white bg — dark green for WCAG contrast */
#included .item-tag-pill {
  background: rgba(22, 101, 52, 0.08);
  color: #166534;
  border: 1px solid rgba(22, 101, 52, 0.28);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(22, 101, 52, 0.06) inset;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM VISUAL REFINEMENT PASS
   ═══════════════════════════════════════════════════════════ */

/* ── CTA idle glow pulse ─────────────────────────────────── */
@keyframes ctaIdlePulse {
  0%, 100% { box-shadow: 0 4px 22px rgba(196,154,60,0.28), 0 0 0 0 rgba(196,154,60,0); }
  50%       { box-shadow: 0 6px 32px rgba(196,154,60,0.50), 0 0 0 6px rgba(196,154,60,0.07); }
}
.cta-primary {
  animation: ctaIdlePulse 3.8s ease-in-out infinite;
}

/* ── Section divider: centre accent glow ────────────────── */
.section-divider {
  position: relative;
  overflow: visible;
}
.section-divider::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.38), transparent);
  border-radius: 2px;
}

/* ── About section: radial depth atmosphere ─────────────── */
.about-section {
  position: relative;
  isolation: isolate;
}
.about-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(196,154,60,0.045) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.about-inner { position: relative; z-index: 1; }

/* ── About dash: lift on hover ───────────────────────────── */
.about-dash {
  transition: box-shadow 0.32s ease, transform 0.32s ease;
}
.about-dash:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,0.44), 0 0 0 1px rgba(196,154,60,0.16);
  transform: translateY(-4px);
}

/* ── Testimonials: ambient depth ────────────────────────── */
#testimonials {
  position: relative;
  isolation: isolate;
}
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 85% 15%, rgba(196,154,60,0.055) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 10% 80%, rgba(99,179,237,0.040) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
#testimonials > * { position: relative; z-index: 1; }
.testi-grid        { position: relative; z-index: 1; }

/* ── Testi card: premium hover lift ─────────────────────── */
.testi {
  transition: transform 0.30s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.30s ease,
              border-color 0.30s ease;
}
.testi:hover {
  transform: translateY(-6px);
  border-color: rgba(196,154,60,0.28);
  box-shadow: 0 20px 56px rgba(0,0,0,0.38), 0 0 0 1px rgba(196,154,60,0.10);
}

/* ── Resources section: depth glow ──────────────────────── */
.resources-section {
  position: relative;
  isolation: isolate;
}
.resources-section::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -100px;
  width: 650px;
  height: 520px;
  background: radial-gradient(ellipse at center, rgba(99,179,237,0.044) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.resources-inner { position: relative; z-index: 1; }

/* ── Inline metric strip ─────────────────────────────────── */
.metric-strip {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 8px;
}
.mstrip-item {
  flex: 1;
  min-width: 130px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 13px 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.mstrip-val {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
}
.mstrip-val.mv-red   { color: rgba(248,113,113,0.88); }
.mstrip-val.mv-gold  { color: #E8C96D; }
.mstrip-val.mv-green { color: #4ade80; }
.mstrip-lbl {
  font-size: 0.74rem;
  color: rgba(220,231,243,0.40);
  line-height: 1.35;
}

/* ── Booking confirmation mini-card ──────────────────────── */
.booking-notif {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(61,186,111,0.07);
  border: 1px solid rgba(61,186,111,0.18);
  border-radius: 10px;
  padding: 11px 17px;
  font-size: 0.82rem;
  color: rgba(220,231,243,0.72);
  margin: 20px 0;
  max-width: 100%;
}
.booking-notif-icon { font-size: 1.1rem; flex-shrink: 0; }
.booking-notif-text strong { color: #4ade80; font-weight: 600; }

/* ── "Life of an inquiry" workflow strip ─────────────────── */
.workflow-strip {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 28px 0;
  overflow: hidden;
}
.ws-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 80px;
  text-align: center;
}
.ws-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.ws-step.ws-active .ws-icon {
  background: rgba(61,186,111,0.12);
  border-color: rgba(61,186,111,0.28);
}
.ws-label { font-size: 0.73rem; color: rgba(220,231,243,0.52); line-height: 1.3; }
.ws-time  { font-size: 0.68rem; color: rgba(220,231,243,0.30); font-variant-numeric: tabular-nums; }
.ws-arrow {
  color: rgba(220,231,243,0.18);
  font-size: 1rem;
  margin: 0 6px;
  align-self: flex-start;
  padding-top: 10px;
  flex-shrink: 0;
}

/* ── Typography hierarchy improvements ───────────────────── */
.about-headline {
  letter-spacing: -0.032em !important;
}
.resources-headline {
  letter-spacing: -0.028em !important;
}
#testimonials h2 {
  letter-spacing: -0.028em;
}

/* ── Pain cards: accent top border ──────────────────────── */
.pain-card {
  position: relative;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}
.pain-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(226,65,55,0.50), rgba(226,65,55,0.18), transparent);
  border-radius: 2px 2px 0 0;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
  border-color: rgba(226,65,55,0.22);
}

/* ── Pillar cards: richer depth on hover ─────────────────── */
.about-pillar {
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}
.about-pillar:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.36);
}

/* ── Mobile: metric strip stacks neatly ─────────────────── */
@media (max-width: 600px) {
  .metric-strip  { gap: 8px; }
  .mstrip-item   { flex: 1 1 calc(50% - 4px); min-width: 0; }
  .booking-notif { font-size: 0.77rem; }
  .workflow-strip { padding: 14px; gap: 0; }
  .ws-arrow      { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   CINEMATIC IMAGE SYSTEM
   Place photos in /images/ — falls back gracefully if absent.
   Target: Stripe + Linear + Healthcare SaaS aesthetic.
   Avoid bright stock photos; use dark, blurred, high-opacity-overlay images.
   ═══════════════════════════════════════════════════════════ */

/* ── Reusable class system ─────────────────────────────── */
.cinematic-section {
  position: relative;
  overflow: hidden;
}
.cinematic-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  filter: blur(1.5px) brightness(0.40) saturate(0.65);
  transform: scale(1.04);
  z-index: 0;
  pointer-events: none;
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,24,40,0.84), rgba(9,24,40,0.94));
  z-index: 1;
  pointer-events: none;
}
.cinematic-content {
  position: relative;
  z-index: 2;
}
.cinematic-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199,160,72,0.10), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

/* ── Visual card: image + glass + hover zoom ──────────── */
.visual-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(10,20,40,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.visual-card .v-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
  display: block;
}
.visual-card:hover .v-img { transform: scale(1.05); }
.visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04), rgba(9,24,40,0.55));
  pointer-events: none;
  z-index: 1;
}
.visual-card-content {
  position: relative;
  z-index: 2;
}

/* ── Testimonials: human dental presence ──────────────── */
/* ::before and ::after are reserved for the glow orbs.   */
/* Add a <div class="testi-cinematic-img" aria-hidden="true"> */
/* as the FIRST child of #testimonials, then place          */
/* images/dental-team.jpg (search: "dark dental office team") */
.testi-cinematic-img {
  position: absolute;
  inset: 0;
  background: url(images/dental-team.jpg) center top / cover no-repeat;
  opacity: 0.10;
  filter: blur(2px) brightness(0.30) saturate(0.55);
  z-index: 0;
  pointer-events: none;
}

/* ── Problem section: busy clinic front desk background ─ */
/* Place images/dental-frontdesk.jpg (search: "clinic receptionist dark") */
#problem {
  position: relative;
  isolation: isolate;
}
#problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(images/dental-frontdesk.jpg) center / cover no-repeat;
  opacity: 0.09;
  filter: blur(2px) brightness(0.28) saturate(0.50);
  z-index: 0;
  pointer-events: none;
}
#problem > * { position: relative; z-index: 1; }

/* ── Onboarding section: dental technology workspace ──── */
/* ::after is reserved for the glow orb. Use a helper div: */
/* Add a <div class="onb-cinematic-img" aria-hidden="true"> */
/* as the FIRST child of #onboarding, then place           */
/* images/dental-tech.jpg (search: "dentist computer monitor") */
.onb-cinematic-img {
  position: absolute;
  inset: 0;
  background: url(images/dental-tech.jpg) center / cover no-repeat;
  opacity: 0.08;
  filter: blur(2px) brightness(0.28) saturate(0.45);
  z-index: 0;
  pointer-events: none;
}

/* ── Resource card thumbnails: image layer behind CSS scenes */
/* Place images/dental-revenue.jpg, dental-ai.jpg, dental-pms.jpg */
/* (search: "dark dental office", "patient phone dark", "medical technology") */
/* CSS already updated above to reference these in background shorthand */

/* ── Scarcity / get-started: dark clinic silhouette ────── */
/* Place images/dental-silhouette.jpg (search: "healthcare silhouette dark") */
#get-started {
  position: relative;
  isolation: isolate;
}
#get-started::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url(images/dental-silhouette.jpg) center / cover no-repeat;
  opacity: 0.07;
  filter: blur(3px) brightness(0.25) saturate(0.40);
  z-index: 0;
  pointer-events: none;
}
#get-started > * { position: relative; z-index: 1; }

/* ── Image placement guide (for reference) ─────────────
   images/dental-team.jpg       → testimonials background
   images/dental-frontdesk.jpg  → problem section background
   images/dental-tech.jpg       → onboarding section background
   images/dental-revenue.jpg    → revenue resource card thumbnail
   images/dental-ai.jpg         → AI booking resource card thumbnail
   images/dental-pms.jpg        → PMS integration resource card thumbnail
   images/dental-silhouette.jpg → get-started / scarcity section

   All images: dark, moody, blur-tolerant, minimum 1200×800px
   Search: unsplash.com or pexels.com
   Terms: "dark dental office" "clinic receptionist" "dentist computer"
          "patient using phone" "healthcare technology" "modern clinic"
   ────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════
   CINEMATIC HERO VIDEO BACKGROUND
   Stripe / Linear / Apple level — dark SaaS hero
   ═══════════════════════════════════════════════════════════ */

/* Container — sits behind everything in the hero */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  border-radius: inherit;
}

/* The video itself — full width, natural aspect ratio, no side cropping */
.hero-video {
  position: absolute;
  top: 32%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  background-color: #060c1a;
  opacity: 0;
  will-change: opacity;
  animation: hero-video-fadein 2.8s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

/* Smooth page-load fade-in */
@keyframes hero-video-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Primary cinematic overlay — dark + directional gradient */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    /* deep center-top glow — preserves gold crown accent */
    radial-gradient(ellipse 75% 50% at 50% -8%, rgba(196,154,60,0.07) 0%, transparent 62%),
    /* strong dark base — keeps text readable */
    linear-gradient(
      170deg,
      rgba(6, 10, 24, 0.62) 0%,
      rgba(6, 10, 24, 0.48) 35%,
      rgba(6, 10, 24, 0.46) 60%,
      rgba(6, 10, 24, 0.64) 100%
    );
}

/* Vignette — burns in the edges for cinematic depth */
.hero-video-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 110% 100% at 50% 50%,
    transparent 30%,
    rgba(4, 8, 20, 0.55) 75%,
    rgba(4, 8, 20, 0.80) 100%
  );
  /* Bottom gradient — fades video into the next section cleanly */
  -webkit-mask-image: none;
}

/* Bottom fade — blends hero bottom edge into the body background */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, transparent 0%, var(--navy, #060c1a) 100%);
  pointer-events: none;
}

/* ── Glassmorphism on hero dashboard mockup ─────────────── */
.hero-mockup {
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  background: rgba(10, 16, 38, 0.62) !important;
  border: 1px solid rgba(196, 154, 60, 0.18) !important;
  box-shadow:
    0 0 0 1px rgba(196, 154, 60, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.4s ease;
}

/* ── Glassmorphism on hero badge ────────────────────────── */
.hero-badge {
  backdrop-filter: blur(10px) saturate(1.3);
  -webkit-backdrop-filter: blur(10px) saturate(1.3);
}

/* ── Live activity cards — subtle glass lift ────────────── */
.hlc {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ── Reduced motion: freeze video, skip fade-in ─────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
    opacity: 0.001; /* effectively hidden, avoids layout shift */
  }
}

/* ═══════════════════════════════════════════════════════════
   DARK GLASSMORPHISM UNIFICATION
   Converts all white/light-section cards to premium dark navy
   glass panels. Overrides the earlier #EBF0F8 light-section
   block without touching the original rules.
   ═══════════════════════════════════════════════════════════ */

/* ── Section backgrounds → deep navy ───────────────────── */
#problem,
#included,
#testimonials,
#compare {
  background:
    radial-gradient(ellipse 75% 50% at 50% 0%,   rgba(196,154,60,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 0%  100%, rgba(4,50,110,0.20)  0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 100% 100%, rgba(4,50,110,0.20) 0%, transparent 60%),
    var(--navy);
}

#calc {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,   rgba(196,154,60,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 15% 80%,  rgba(46,168,122,0.05) 0%, transparent 60%),
    var(--navy-deep);
}

/* ── Section headline + body text → light on dark ───────── */
#problem > h2,
#problem > p:not(.section-label),
#included > h2,
#included > p:not(.section-label),
#testimonials > h2,
#testimonials > p:not(.section-label),
#compare > h2,
#compare > p:not(.section-label),
#calc > h2,
#calc > p:not(.section-label) {
  color: var(--white);
}

/* ── Pain cards → glassmorphism ─────────────────────────── */
#problem .pain-card {
  background: rgba(10, 16, 40, 0.60);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(196,154,60,0.13);
  border-left: 3px solid var(--red);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.03);
}
#problem .pain-card .pain-title { color: var(--white); }
#problem .pain-card p            { color: var(--text-soft); }

/* ── What's Included grid → glassmorphism ───────────────── */
#included .includes-grid {
  background: rgba(10, 16, 40, 0.55);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(196,154,60,0.14);
  box-shadow: 0 12px 48px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.04);
}
#included .include-item {
  border-bottom-color: rgba(196,154,60,0.08);
}
#included .include-item:hover {
  background: rgba(196,154,60,0.04);
}
#included .item-body .item-title { color: var(--white); }
#included .item-body p            { color: var(--text-soft); }
#included .fast-action-item {
  background: rgba(196,154,60,0.07);
  border-top-color: rgba(196,154,60,0.18);
}
#included .fa-body         { color: var(--text-soft); }
#included .fa-body strong  { color: var(--white); }

/* ── Testimonial cards → glassmorphism ──────────────────── */
#testimonials .testi {
  background: rgba(10, 16, 40, 0.58);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(196,154,60,0.13);
  box-shadow: 0 8px 28px rgba(0,0,0,0.26), inset 0 1px 0 rgba(255,255,255,0.03);
}
#testimonials .testi:hover {
  border-color: rgba(196,154,60,0.30);
  box-shadow: 0 14px 44px rgba(0,0,0,0.36), 0 0 0 1px rgba(196,154,60,0.12);
}
#testimonials .testi-quote { color: var(--text-soft); }
#testimonials .testi-name  { color: var(--white); }
#testimonials .testi-role  { color: var(--text-muted); }

/* ── Revenue calculator → glassmorphism ─────────────────── */
#calc .calc-wrap {
  background: rgba(10, 16, 40, 0.62);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border: 1px solid rgba(196,154,60,0.15);
  box-shadow: 0 12px 48px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.04);
}
#calc .cf-label {
  color: var(--text-soft);
}
#calc input[type="range"].gold-range {
  background: rgba(255,255,255,0.10);
}
#calc .cr {
  background: rgba(196,154,60,0.05);
  border: 1px solid rgba(196,154,60,0.13);
}

/* ── Compare columns: keep tinted glass feel ────────────── */
#compare .cmp ul li {
  color: var(--text-soft);
  border-bottom-color: rgba(255,255,255,0.05);
}

/* ── Mobile: keep dark on narrow viewports ──────────────── */
@media (max-width: 640px) {
  #problem,
  #included,
  #testimonials,
  #compare {
    background: var(--navy);
  }
}

/* ═══════════════════════════════════════════════════════════
   CALCULATOR — READABILITY + PREMIUM GLOW POLISH
   ═══════════════════════════════════════════════════════════ */

/* Supporting note paragraph — was near-invisible on dark bg */
#calc .calc-note {
  color: rgba(255, 255, 255, 0.72);
  border-top-color: rgba(196, 154, 60, 0.14);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.40);
}

/* Slider labels */
#calc .cf-label {
  color: rgba(255, 255, 255, 0.78);
}

/* Slider live-value readout */
#calc .cf-label span {
  color: var(--gold-light);
}

/* Revenue output labels */
#calc .cr-label {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.10em;
}

/* Revenue output numbers — gold, legible */
#calc .cr-val {
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(196, 154, 60, 0.22);
}

/* Revenue boxes — soft ambient gold glow */
#calc .cr {
  background: rgba(196, 154, 60, 0.06);
  border: 1px solid rgba(196, 154, 60, 0.18);
  box-shadow:
    0 0 28px rgba(196, 154, 60, 0.10),
    0 4px 16px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: box-shadow 0.35s ease;
}
#calc .cr:hover {
  box-shadow:
    0 0 40px rgba(196, 154, 60, 0.16),
    0 6px 24px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* CTA button — resting glow, not just on hover */
#calc .cta-btn-bare::before {
  opacity: 0.14;
}
#calc .cta-btn-bare:hover::before {
  opacity: 0.42;
}

/* ═══════════════════════════════════════════════════════════
   PREMIUM REFINEMENT PHASE
   Part 1: Visual rhythm / spacing
   Part 2: Micro-animations & hover micro-interactions
   ═══════════════════════════════════════════════════════════ */

/* ── PART 1: RHYTHM & PACING ─────────────────────────────── */

/* About body: split paragraphs breathe more */
.about-body + .about-body {
  margin-top: 16px;
}

/* Calc intro: less visual weight */
#calc > p {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,0.68);
}


/* Tighten sections that felt padded */
#problem, #included, #onboarding, #compare, #guarantee {
  padding-top: 56px;
  padding-bottom: 56px;
}

/* Tighten the section label → heading gap slightly */
.section-label {
  margin-bottom: 10px;
}

/* Tighten h2 → body text gap */
section > h2 + p {
  margin-top: 14px;
}

/* Tighter pillar-cards gap */
.pillar-cards {
  gap: 16px;
}

/* ── PART 2: MICRO-ANIMATIONS ────────────────────────────── */

/* — Secondary CTAs: match primary idle glow pulse — */
.cta-btn-bare {
  animation: ctaIdlePulse 4.4s ease-in-out 1.2s infinite;
}

/* — Card hover: elevated lift + gold edge reveal — */
.pain-card {
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}
.pain-card:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 14px 44px rgba(0,0,0,0.42),
              0 0 0 1px rgba(196,154,60,0.20);
  border-color: rgba(196,154,60,0.28) !important;
}

.pillar-card {
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.28s ease,
              border-color 0.28s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.40),
              0 0 0 1px rgba(196,154,60,0.18);
  border-color: rgba(196,154,60,0.30) !important;
}

.about-pillar {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}
.about-pillar:hover {
  transform: translateX(5px);
  border-color: rgba(196,154,60,0.32) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.30),
              -3px 0 0 0 rgba(196,154,60,0.35);
}

.res-card {
  transition: transform 0.30s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.30s ease;
}
.res-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.44),
              0 0 0 1px rgba(196,154,60,0.14);
}

/* — Metric strip: hover glow on stat values — */
.mstrip-item {
  transition: transform 0.25s ease;
  cursor: default;
}
.mstrip-item:hover {
  transform: translateY(-3px);
}
.mstrip-item:hover .mstrip-val {
  text-shadow: 0 0 28px currentColor;
  transition: text-shadow 0.30s ease;
}

/* — Proof row: number glow on hover — */
.proof-cell {
  transition: background 0.25s ease;
}
.proof-cell:hover .proof-num {
  color: var(--gold-light);
  text-shadow: 0 0 24px rgba(196,154,60,0.35);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

/* — Cost callout: breathing border pulse — */
@keyframes cost-border-breathe {
  0%, 100% { box-shadow: 0 8px 36px rgba(0,0,0,0.28),
                          0 0 0 0   rgba(196,154,60,0.00); }
  50%       { box-shadow: 0 12px 44px rgba(0,0,0,0.34),
                          0 0 0 3px rgba(196,154,60,0.10); }
}
.cost-callout {
  animation: cost-border-breathe 5s ease-in-out infinite;
}

/* — Featured pricing card: ambient glow pulse — */
@keyframes featured-card-breathe {
  0%, 100% { box-shadow: 0 0  50px rgba(196,154,60,0.13), 0 24px 64px rgba(0,0,0,0.35); }
  50%       { box-shadow: 0 0  72px rgba(196,154,60,0.22), 0 28px 72px rgba(0,0,0,0.42); }
}
.pricing-card.featured {
  animation: featured-card-breathe 4.5s ease-in-out infinite;
}

/* — Dashboard mockup KPI tiles: hover lift — */
.hm-kpi {
  transition: transform 0.22s ease, background 0.22s ease;
  cursor: default;
}
.hm-kpi:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.06);
}

/* — Dashboard flow steps: hover glow — */
.hm-step {
  transition: transform 0.22s ease, border-color 0.22s ease;
}
.hm-step:hover {
  transform: translateY(-3px);
}
.hm-step-active {
  animation: hm-active-pulse 2.8s ease-in-out infinite;
}
@keyframes hm-active-pulse {
  0%, 100% { box-shadow: 0 0 0 0   rgba(196,154,60,0.00); }
  50%       { box-shadow: 0 0 14px 2px rgba(196,154,60,0.18); }
}

/* — About dashboard KPI values: counter glow — */
.adk-val {
  transition: text-shadow 0.30s ease;
}
.adk:hover .adk-val {
  text-shadow: 0 0 22px currentColor;
}

/* — Section divider: enhanced shimmer — */
.section-divider {
  opacity: 0.55;
  transition: opacity 0.4s ease;
}
.section-divider:hover {
  opacity: 0.85;
}

/* — Onboarding steps: tighter entrance feel — */
.ob-step {
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.28s ease;
}
.ob-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.36),
              0 0 0 1px rgba(196,154,60,0.15);
}

/* — Trust strip items: subtle hover lift — */
.trust-item {
  transition: color 0.2s ease, transform 0.2s ease;
}
.trust-item:hover {
  color: var(--white);
  transform: translateY(-1px);
}

/* — Feature strip: icon micro-rotate on hover — */
.fsi {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              opacity 0.25s ease;
}
.fsi:hover {
  transform: translateY(-3px);
  opacity: 1 !important;
}

/* — Guarantee boxes: hover scale — */
.guar-box {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}
.guar-box:hover {
  transform: translateY(-4px);
  border-color: rgba(196,154,60,0.28) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.32);
}

/* — Booking notification: subtle ambient bounce — */
@keyframes notif-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-3px); }
}
.booking-notif {
  animation: notif-float 5s ease-in-out 0.8s infinite;
}

/* — Stagger: extend nth-child delay to 6 cards — */
.sr:nth-child(5) { transition-delay: 0.30s; }
.sr:nth-child(6) { transition-delay: 0.38s; }

/* — Pricing card: non-featured hover — */
.pricing-card:not(.featured):hover {
  border-color: rgba(196,154,60,0.22) !important;
}

/* — Scroll progress bar: gold shimmer on fill — */
#scroll-progress {
  box-shadow: 0 0 10px rgba(196,154,60,0.40);
}

/* — Section h2 headings: subtle gold underline on viewport enter — */
section h2.visible,
section h2 {
  position: relative;
}

/* ── Reduced motion compliance ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cost-callout,
  .pricing-card.featured,
  .booking-notif,
  .cta-btn-bare,
  .hm-step-active {
    animation: none !important;
  }
  .pain-card,
  .pillar-card,
  .about-pillar,
  .res-card,
  .ob-step,
  .guar-box,
  .mstrip-item,
  .hm-kpi,
  .trust-item,
  .fsi {
    transition: none !important;
  }
}

/* ── Hero text: lift readability over video background ───── */
.hero h1 {
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.55),
    0 0  48px rgba(255, 255, 255, 0.06);
}

.hero .hero-sub {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.50);
}

/* ── Mobile: pause-on-scroll handled by JS; keep cover ──── */
@media (max-width: 768px) {
  .hero-video {
    top: 0;
    transform: none;
    height: 100%;
    width: auto;
    min-width: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero-video-wrap::after {
    height: 120px;
  }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM MOTION SYSTEM — PHASE 2
   ══════════════════════════════════════════════════════════════ */

/* ── Fix: section-label underline now fires on .visible ──────── */
.section-label.visible::after {
  width: 100%;
}

/* ── Section h2: centered gold accent line on reveal ─────────── */
section h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.75), transparent);
  border-radius: 1px;
  transition: width 0.75s cubic-bezier(0.22,1,0.36,1) 0.25s;
}
section h2.visible::after {
  width: 72px;
}

/* ── Metric strip items: JS-triggered stagger entrance ────────── */
.mstrip-item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.50s ease,
              transform 0.50s cubic-bezier(0.22,1,0.36,1);
}
.mstrip-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── About dashboard KPIs: scale entrance during count-up ─────── */
@keyframes adk-enter {
  from { opacity: 0; transform: scale(0.88) translateY(4px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);   }
}
.adk-val.entering {
  animation: adk-enter 0.5s cubic-bezier(0.22,1,0.36,1) both;
}
.adk:nth-child(1) .adk-val.entering { animation-delay: 0.00s; }
.adk:nth-child(2) .adk-val.entering { animation-delay: 0.18s; }
.adk:nth-child(3) .adk-val.entering { animation-delay: 0.36s; }

/* ── Testimonials: stagger entrance ──────────────────────────── */
.testi:nth-child(1) { transition-delay: 0.05s !important; }
.testi:nth-child(2) { transition-delay: 0.18s !important; }
.testi:nth-child(3) { transition-delay: 0.31s !important; }
.testi:hover        { transition-delay: 0s   !important; }

/* ── Fast-action items: hover elevation ──────────────────────── */
.fast-action-item {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              border-top-color 0.25s ease,
              box-shadow 0.25s ease;
}
.fast-action-item:hover {
  transform: translateY(-3px);
  border-top-color: rgba(196,154,60,0.35) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

/* ── Timeline items: hover slide ─────────────────────────────── */
.timeline-item {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1);
}
.timeline-item:hover {
  transform: translateX(4px);
}

/* ── Compare option rows: hover gold tint ─────────────────────── */
.option-row {
  transition: background 0.22s ease, border-color 0.22s ease;
}
.option-row:hover {
  background: rgba(196,154,60,0.04) !important;
  border-color: rgba(196,154,60,0.22) !important;
}

/* ── Included items: hover elevation ─────────────────────────── */
.include-item {
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1),
              border-color 0.25s ease,
              box-shadow 0.25s ease;
}
.include-item:hover {
  transform: translateY(-3px);
  border-color: rgba(196,154,60,0.20) !important;
  box-shadow: 0 10px 32px rgba(0,0,0,0.26);
}

/* ── Reduced motion compliance ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  section h2::after             { transition: none !important; width: 72px; }
  .section-label.visible::after { transition: none !important; }
  .mstrip-item                  { opacity: 1 !important; transform: none !important; transition: none !important; }
  .adk-val.entering             { animation: none !important; }
  .testi                        { transition-delay: 0s !important; }
  .fast-action-item,
  .timeline-item,
  .option-row,
  .include-item                 { transition: none !important; }
  .adc-bar                      { transition: none !important; }
  .mstrip-val                   { animation: none !important; }
  .hm-step                      { transition: none !important; }
  .hm-step:not(.hm-step-active) { opacity: 1 !important; }
}

/* ── Metric strip stat values: ambient soft glow pulse ────────── */
@keyframes stat-glow {
  0%, 100% { filter: brightness(1);   }
  50%       { filter: brightness(1.18); }
}
.mstrip-val {
  animation: stat-glow 4.5s ease-in-out infinite;
}
.mstrip-item:nth-child(1) .mstrip-val { animation-delay: 0.0s; }
.mstrip-item:nth-child(2) .mstrip-val { animation-delay: 1.1s; }
.mstrip-item:nth-child(3) .mstrip-val { animation-delay: 2.2s; }
.mstrip-item:nth-child(4) .mstrip-val { animation-delay: 3.3s; }

/* ── About dashboard chart bars: base transition for JS trigger ── */
.adc-bar {
  transition: height 0.55s cubic-bezier(0.22,1,0.36,1);
}

/* ── Hero flow steps: smooth active state transition ─────────── */
.hm-step {
  transition: background 0.4s ease, border-color 0.4s ease,
              box-shadow 0.4s ease, opacity 0.4s ease,
              transform 0.22s ease;
}
.hm-step:not(.hm-step-active) {
  opacity: 0.52;
}
.hm-step-active {
  opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC VISUAL PACING & RHYTHM
   ══════════════════════════════════════════════════════════════ */

/* ─── 1. SECTION WIDTH VARIATION ─────────────────────────────────
   Different widths create visual rhythm as you scroll.
   Wide → narrow → wide signals a change in density. */

#system    { max-width: 980px; }
#pricing   { max-width: 980px; }
#solution  { max-width: 660px; text-align: center; }
#trust     { max-width: 700px; }
#guarantee { max-width: 700px; }
#final-section { max-width: 720px; text-align: center; }

/* ─── 2. SECTION SPACING RHYTHM ──────────────────────────────────
   Not all sections are equal weight. Breathing room signals
   the user that something important is coming. */

/* Dramatic pause — the user is about to make a decision */
#get-started { padding-top: 140px; }

/* Guarantee stands alone with authority */
#guarantee { padding-top: 120px; padding-bottom: 120px; }

/* Solution is a bridge — tight, focused */
#solution { padding-top: 56px; padding-bottom: 56px; }

/* Final block flows directly into CTA — no break */
#final-section { padding-bottom: 40px; }

/* ─── 3. STAGGERED CARD DEPTH ────────────────────────────────────
   Vertical offset on alternating cards eliminates the
   "all cards on one flat plane" feeling. */

/* Pain cards: descending stagger */
.pain-grid   { align-items: start; }
.pain-card:nth-child(2) { margin-top: 30px; }

/* Pillar cards: subtle mid-card drop */
.pillar-cards { align-items: start; }
.pillar-card:nth-child(2) { margin-top: 18px; }

/* Testimonials: ascending wave (left high, center low, right mid) */
.testi:nth-child(2) { margin-top: 22px !important; }
.testi:nth-child(3) { margin-top: 10px !important; }

/* ─── 4. SECTION ATMOSPHERE BACKGROUNDS ─────────────────────────
   Subtle radial gradients per section — varied warm/cool tones
   to differentiate "chapters" without jarring color changes. */

/* System — warm gold accent rising from below */
#system { position: relative; isolation: isolate; }
#system::before {
  content: '';
  position: absolute;
  bottom: -60px; left: 50%; transform: translateX(-50%);
  width: 150%; max-width: 1300px; height: 420px;
  background: radial-gradient(ellipse 60% 80% at 50% 100%,
    rgba(196,154,60,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#system > * { position: relative; z-index: 1; }

/* Included — cool blue-indigo depth at top, warm at bottom */
#included { position: relative; isolation: isolate; }
#included::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 150%; max-width: 1200px; height: 380px;
  background: radial-gradient(ellipse 65% 80% at 50% 0%,
    rgba(56,99,200,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#included::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 150%; max-width: 1200px; height: 280px;
  background: radial-gradient(ellipse 60% 90% at 50% 100%,
    rgba(196,154,60,0.04) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#included > * { position: relative; z-index: 1; }

/* Compare — cool, analytical tone */
#compare { position: relative; isolation: isolate; }
#compare::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 50%,
    rgba(20,40,110,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#compare > * { position: relative; z-index: 1; }

/* Trust / HIPAA — neutral, credibility-focused */
#trust { position: relative; isolation: isolate; }
#trust::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%,
    rgba(61,186,111,0.03) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#trust > * { position: relative; z-index: 1; }

/* Get-started — ascending gold bloom, anticipation before CTA */
#get-started { position: relative; isolation: isolate; }
#get-started::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 150%; max-width: 1100px; height: 450px;
  background: radial-gradient(ellipse 70% 90% at 50% 0%,
    rgba(196,154,60,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#get-started > * { position: relative; z-index: 1; }

/* Final section — understated, lets copy breathe */
#final-section { position: relative; isolation: isolate; }
#final-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%,
    rgba(196,154,60,0.035) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
#final-section > * { position: relative; z-index: 1; }

/* ─── 5. FULL-VIEWPORT ACCENT EDGES ─────────────────────────────
   Gold gradient lines that bleed edge-to-edge create a sense
   of intentional framing at major section entries. */

/* Pricing: entry line — wider than the content column */
#pricing { position: relative; }
#pricing::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 160vw; height: 1px;
  background: linear-gradient(90deg,
    transparent 5%, rgba(196,154,60,0.12) 25%,
    rgba(196,154,60,0.45) 50%,
    rgba(196,154,60,0.12) 75%, transparent 95%);
  pointer-events: none;
}

/* Get-started: strong entry marker before the CTA */
#get-started::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 160vw; height: 1px;
  background: linear-gradient(90deg,
    transparent 5%, rgba(196,154,60,0.18) 20%,
    rgba(196,154,60,0.60) 50%,
    rgba(196,154,60,0.18) 80%, transparent 95%);
  pointer-events: none;
}

/* ─── 6. SECTION DIVIDER BREATHING ROOM ─────────────────────────
   The space around dividers is itself a design decision.
   More space = more "chapter" feel between sections. */

hr.section-divider { margin: 24px auto; }

/* Extended pause before key anchor sections */
#compare   + hr.section-divider,
#guarantee + hr.section-divider  { margin-top: 48px; margin-bottom: 48px; }
#testimonials + hr.section-divider { margin-top: 56px; margin-bottom: 56px; }

/* ─── 7. SOLUTION SECTION: BRIDGE MOMENT ────────────────────────
   Centered, narrow text between Problem and System creates
   a "breath" in the narrative — like a chapter title card. */

#solution h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  line-height: 1.28;
}
#solution p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── 8. FINAL BLOCK: CINEMATIC MANIFESTO ────────────────────────
   Center the closing statement for dramatic impact. */

.final-block  { text-align: center; }
.final-main   {
  font-size: clamp(1.85rem, 3.4vw, 2.6rem);
  line-height: 1.3;
}

/* ─── Mobile: reset all desktop-only layout shifts ────────────── */
@media (max-width: 768px) {
  #system, #pricing, #solution,
  #trust, #guarantee, #final-section { max-width: 860px; }

  #solution   { text-align: left; }
  #final-section { text-align: left; }
  .final-block { text-align: left; }

  .pain-card:nth-child(2)   { margin-top: 0; }
  .pillar-card:nth-child(2) { margin-top: 0; }
  .testi:nth-child(2),
  .testi:nth-child(3)       { margin-top: 0 !important; }

  #get-started { padding-top: 80px; }
  #guarantee   { padding-top: 72px; padding-bottom: 72px; }
  hr.section-divider { margin: 16px auto; }
  #compare + hr.section-divider,
  #guarantee + hr.section-divider,
  #testimonials + hr.section-divider { margin-top: 24px; margin-bottom: 24px; }
}

/* ══════════════════════════════════════════════════════════════
   NAV UX POLISH — Scroll compact, active states, hover glow
   ══════════════════════════════════════════════════════════════ */

/* 1. Header: smooth transition for scroll-compact effect */
header {
  transition: padding 0.38s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.38s ease,
              border-bottom-color 0.38s ease;
}
header.scrolled {
  padding-top: 13px !important;
  padding-bottom: 13px !important;
  border-bottom-color: rgba(196,154,60,0.18) !important;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35),
              0 1px 0 rgba(196,154,60,0.07) !important;
}

/* 2. Nav trigger: underline slide-in on hover + active */
.nav-trigger {
  position: relative;
}
.nav-trigger::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.28s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.nav-dropdown:hover .nav-trigger::after,
.nav-trigger.nav-active::after {
  width: 80%;
}

/* 3. Nav plain (Guarantee): same underline treatment */
nav .nav-plain {
  position: relative;
}
nav .nav-plain::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.28s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
nav .nav-plain:hover::after,
nav .nav-plain.nav-active::after {
  width: 80%;
}

/* 4. Active color states */
.nav-trigger.nav-active {
  color: var(--gold-light) !important;
}
nav .nav-plain.nav-active {
  color: var(--gold-light) !important;
}

/* 5. Nav CTA: enhanced ambient glow */
nav .nav-cta {
  box-shadow: 0 2px 14px rgba(196,154,60,0.20);
  transition: filter 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
nav .nav-cta:hover {
  box-shadow: 0 4px 24px rgba(196,154,60,0.38),
              0 0 0 1px rgba(196,154,60,0.22);
}

/* 6. Reduced motion compliance */
@media (prefers-reduced-motion: reduce) {
  header                     { transition: none !important; }
  .nav-trigger::after,
  nav .nav-plain::after      { transition: none !important; }
  nav .nav-cta               { transition: none !important; box-shadow: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO COMPOSITION REFINEMENT
   Fixes: live card alignment, background clutter, focal clarity
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Dashboard + cards: unified floating scene ─────────────
   Both elements share one flex row and float together as a unit.
   Cards are vertically centered on the dashboard automatically.   */
.hero-dash-scene {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 1060px;
  margin: 48px auto 0;
  position: relative;
  z-index: 1;
  /* Whole unit floats — dashboard and cards move as one */
  animation: float 5s ease-in-out infinite;
}

/* Dashboard: fills available width, stops double-animating */
.hero-dash-scene .hero-mockup {
  flex: 1 1 auto;
  max-width: 780px;
  min-width: 0;
  margin: 0 !important;
  animation: none !important;
  /* Reinforce as the primary focal element */
  box-shadow:
    0 0 0 1px rgba(196,154,60,0.16),
    0 32px 80px rgba(0,0,0,0.65),
    0 8px 24px rgba(0,0,0,0.45),
    0 0 90px rgba(196,154,60,0.07);
}

/* Cards: natural flex column, inherit vertical centering from parent */
.hero-dash-scene .hero-live {
  position: static;
  flex: 0 0 auto;
}

/* ── 2. Denser video overlay — video recedes, dashboard dominates */
.hero-video-overlay {
  background:
    radial-gradient(ellipse 75% 50% at 50% -8%, rgba(196,154,60,0.05) 0%, transparent 60%),
    linear-gradient(
      180deg,
      rgba(6, 10, 24, 0.55) 0%,
      rgba(6, 10, 24, 0.65) 38%,
      rgba(6, 10, 24, 0.80) 68%,
      rgba(6, 10, 24, 0.90) 100%
    );
}

/* ── 3. Reduce ambient orb intensity — depth without noise ─── */
.hero-bg-extra::before {
  background: radial-gradient(circle, rgba(46,168,122,0.022) 0%, transparent 65%);
}
.hero-bg-extra::after {
  background: radial-gradient(circle, rgba(56,189,248,0.018) 0%, transparent 65%);
}

/* ── 4. Subtler hero top glow — keeps eye on dashboard, not sky */
.hero::before {
  background: radial-gradient(circle, rgba(196,154,60,0.04) 0%, transparent 65%);
}

/* ── 5. Mobile: scene collapses to stacked dashboard only ───── */
@media (max-width: 900px) {
  .hero-dash-scene {
    flex-direction: column;
    max-width: 780px;
    gap: 0;
  }
  .hero-dash-scene .hero-mockup {
    max-width: 100%;
  }
}

/* ── 6. Reduced motion: freeze scene float ──────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-dash-scene { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   HERO BOTTOM TRANSITION — CLEAN CUTOFF
   Two causes of ghost-text bleed fixed here:
   1. The video-wrap bottom fade was 180px — too tall, creates a long
      hazy zone at the hero's bottom edge.
   2. The about-section::before had top:-80px, pushing its gold radial
      glow upward into the hero's space.
   ═══════════════════════════════════════════════════════════════ */

/* Shorten the hero video bottom fade — crisp cutoff, no long haze */
.hero-video-wrap::after {
  height: 60px;
}

/* Contain the about-section glow within its own section boundary */
.about-section::before {
  top: 0;
  /* Keep the radial glow but stop it from bleeding upward */
}

/* Mobile: keep in proportion */
@media (max-width: 760px) {
  .hero-video-wrap::after {
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO PROOF-ROW VISIBILITY FIX
   Root causes:
   1. Parallax fade (--hero-fade) was applied to .proof-row —
      scrolling even slightly drops its opacity below readable.
   2. Video overlay at 90% at the bottom made the surrounding
      area too dark to read text against.
   3. 52px gap + 108px bottom padding = large unlit void.
   ═══════════════════════════════════════════════════════════════ */

/* 1. Remove proof-row from the parallax fade entirely.
      It sits at the bottom of the hero and needs to stay legible
      while the user is still looking at it. */
.hero .proof-row {
  opacity: 1 !important;
  transform: none !important;
  will-change: auto;
}

/* 2. Tighten the gap between dashboard scene and proof-row */
.hero-dash-scene + .proof-row,
.hero .proof-row {
  margin-top: 28px;
}

/* 3. Cut the hero bottom padding — reduces the dark void below */
.hero {
  padding-bottom: 64px;
}

/* 4. Roll back the aggressive bottom darkening on the video overlay.
      0.90 was too dark for the proof-row zone — 0.78 is enough to
      keep the video receded without killing legibility around the row. */
.hero-video-overlay {
  background:
    radial-gradient(ellipse 75% 50% at 50% -8%, rgba(196,154,60,0.05) 0%, transparent 60%),
    linear-gradient(
      180deg,
      rgba(6, 10, 24, 0.55) 0%,
      rgba(6, 10, 24, 0.64) 38%,
      rgba(6, 10, 24, 0.72) 65%,
      rgba(6, 10, 24, 0.78) 100%
    );
}

/* Mobile padding adjustment */
@media (max-width: 640px) {
  .hero {
    padding-bottom: 48px;
  }
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC MOTION COMPONENTS
   AI chat demo · Booking flow · Live chart · Ops feed
   ══════════════════════════════════════════════════════════════ */

/* ── SHARED KEYFRAMES ─────────────────────────────────────── */
@keyframes hcd-appear {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hcd-bounce {
  0%, 60%, 100% { transform: translateY(0);   opacity: 0.45; }
  30%            { transform: translateY(-4px); opacity: 1;    }
}
@keyframes pulse-ring {
  0%    { box-shadow: 0 0 0 0   rgba(34,197,94,0.45); }
  70%   { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100%  { box-shadow: 0 0 0 0   rgba(34,197,94,0); }
}
@keyframes gold-ring {
  0%    { box-shadow: 0 0 0 0   rgba(196,154,60,0.4); }
  70%   { box-shadow: 0 0 0 6px rgba(196,154,60,0); }
  100%  { box-shadow: 0 0 0 0   rgba(196,154,60,0); }
}

/* ── AI CHAT DEMO (hiw-cap panel) ─────────────────────────── */
.hcd-thread {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
  overflow: hidden;
}
.hcd-source {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2px;
}
.hcd-msg { display: flex; }
.hcd-from { justify-content: flex-start; }
.hcd-to   { justify-content: flex-end; }
.hcd-bubble {
  max-width: 82%;
  padding: 7px 11px;
  border-radius: 10px;
  font-size: 11.5px;
  line-height: 1.45;
}
.hcd-from-bubble {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(220,231,243,0.82);
  border-bottom-left-radius: 3px;
}
.hcd-to-bubble {
  background: rgba(196,154,60,0.11);
  border: 1px solid rgba(196,154,60,0.22);
  color: rgba(232,196,106,0.92);
  border-bottom-right-radius: 3px;
}
.hcd-confirmed {
  background: rgba(46,168,122,0.12) !important;
  border-color: rgba(46,168,122,0.28) !important;
  color: #86efac !important;
}
.hcd-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(196,154,60,0.08);
  border: 1px solid rgba(196,154,60,0.15);
  border-radius: 10px 10px 10px 3px;
  width: fit-content;
  align-self: flex-end;
}
.hcd-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(196,154,60,0.7);
  animation: hcd-bounce 1.2s ease-in-out infinite;
}
.hcd-dot:nth-child(2) { animation-delay: 0.2s; }
.hcd-dot:nth-child(3) { animation-delay: 0.4s; }

.hcd-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  color: var(--text-muted);
  padding: 7px 0 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 2px;
}
.hcd-pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-ring 2.2s ease-in-out infinite;
}

/* All chat elements start invisible — JS triggers .hcd-playing on the card */
.hcd-card .hcd-source,
.hcd-card .hcd-msg,
.hcd-card .hcd-typing,
.hcd-card .hcd-status { opacity: 0; }

.hcd-playing .hcd-a0 { animation: hcd-appear 0.4s 0.4s ease both; }
.hcd-playing .hcd-a1 { animation: hcd-appear 0.4s 1.2s ease both; }
.hcd-playing .hcd-a2 { animation: hcd-appear 0.3s 2.8s ease both; }
.hcd-playing .hcd-a3 { animation: hcd-appear 0.4s 4.0s ease both; }
.hcd-playing .hcd-a4 { animation: hcd-appear 0.4s 5.6s ease both; }
.hcd-playing .hcd-a5 { animation: hcd-appear 0.4s 7.0s ease both; }
.hcd-playing .hcd-a6 { animation: hcd-appear 0.4s 8.2s ease both; }

/* ── BOOKING FLOW (hiw-cvt panel) ────────────────────────── */
.cvt-flow {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.cvt-step {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 7px;
}
.cvt-done {
  background: rgba(46,168,122,0.06);
  border: 1px solid rgba(46,168,122,0.16);
}
.cvt-active {
  background: rgba(196,154,60,0.07);
  border: 1px solid rgba(196,154,60,0.22);
  animation: cvt-border-breathe 2.5s ease-in-out infinite;
}
@keyframes cvt-border-breathe {
  0%, 100% { border-color: rgba(196,154,60,0.22); box-shadow: none; }
  50%       { border-color: rgba(196,154,60,0.5);  box-shadow: 0 0 12px rgba(196,154,60,0.1); }
}
.cvt-step-icon { font-size: 14px; flex-shrink: 0; line-height: 1; }
.cvt-step-text { flex: 1; min-width: 0; }
.cvt-step-text strong { display: block; font-size: 11px; color: var(--white); font-weight: 500; line-height: 1.3; }
.cvt-step-text span   { font-size: 9.5px; color: var(--text-muted); }
.cvt-check { font-size: 11px; color: #4ade80; flex-shrink: 0; font-weight: 700; }
.cvt-check-gold { color: var(--gold); animation: cvt-pop 0.5s 1.5s ease both; opacity: 0; }
@keyframes cvt-pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cvt-connector {
  width: 1px; height: 8px;
  background: linear-gradient(to bottom, rgba(46,168,122,0.25), rgba(196,154,60,0.15));
  margin-left: 19px;
}

/* ── TRACKING CHART (hiw-trk panel) ──────────────────────── */
.trk-chart { margin-bottom: 12px; }
.trk-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 64px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trk-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  height: 100%;
  justify-content: flex-end;
}
.trk-bar {
  width: 100%;
  background: linear-gradient(to top, rgba(196,154,60,0.45), rgba(196,154,60,0.18));
  border-radius: 3px 3px 0 0;
  min-height: 3px;
}
.trk-bar-live {
  background: linear-gradient(to top, rgba(196,154,60,0.85), rgba(196,154,60,0.38));
  animation: trk-glow-breathe 2.2s ease-in-out infinite;
}
@keyframes trk-glow-breathe {
  0%, 100% { box-shadow: 0 0 6px rgba(196,154,60,0.2); }
  50%       { box-shadow: 0 0 16px rgba(196,154,60,0.45); }
}
.trk-bl { font-size: 8px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.trk-legend {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 5px; font-size: 9px; color: var(--text-muted);
}
.trk-rev { color: rgba(196,154,60,0.55); }
.trk-live-dot { display: flex; align-items: center; gap: 4px; color: #4ade80; }
.trk-live-dot span {
  width: 5px; height: 5px; border-radius: 50%;
  background: #22c55e; display: inline-block;
  animation: pulse-ring 2.2s ease-in-out infinite;
}

/* ── LIVE OPERATIONS FEED (About section) ─────────────────── */
.live-ops-feed {
  background: rgba(255,255,255,0.022);
  border: 1px solid rgba(255,255,255,0.065);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.live-ops-feed::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.55), transparent);
  animation: lof-sweep 4s ease-in-out infinite;
}
@keyframes lof-sweep {
  0%   { left: -60%; }
  100% { left: 120%; }
}
.lof-header {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.lof-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e; flex-shrink: 0;
  animation: pulse-ring 2.2s ease-in-out infinite;
}
.lof-title {
  font-size: 10px; font-weight: 600;
  color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.1em; flex: 1;
}
.lof-time { font-size: 9px; color: var(--text-muted); }
.lof-events { display: flex; flex-direction: column; gap: 5px; }
.lof-event {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 7px; border-radius: 5px;
  background: rgba(255,255,255,0.018);
  font-size: 11px; opacity: 0;
}
.lof-event.lof-visible {
  animation: hcd-appear 0.45s ease both;
}
.lof-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.lof-green { background: #22c55e; }
.lof-gold  { background: var(--gold); }
.lof-msg { flex: 1; color: rgba(220,231,243,0.75); }
.lof-ts  { font-size: 9px; color: var(--text-muted); white-space: nowrap; }

/* ── WORKFLOW STRIP ANIMATION ──────────────────────────────── */
.ws-step.ws-active .ws-label { color: rgba(220,231,243,0.88); }
.ws-step.ws-active .ws-time  { color: rgba(196,154,60,0.68); }
.ws-step.ws-active .ws-icon  { animation: pulse-ring 2.2s ease-in-out infinite; }
.ws-arrow { transition: color 0.3s ease; }
.ws-step.ws-active + .ws-arrow { color: rgba(196,154,60,0.5); }

/* ── MOBILE ADJUSTMENTS ────────────────────────────────────── */
@media (max-width: 760px) {
  .hcd-thread { max-height: 150px; }
  .trk-bars   { height: 48px; }
  .live-ops-feed { display: none; }
}

/* ── HCD-CONFIRMED standalone (not a bubble, so needs its own box model) */
.hcd-confirmed {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid rgba(46,168,122,0.28);
  background: rgba(46,168,122,0.12);
  color: #86efac;
  font-size: 10.5px;
  font-weight: 500;
  flex: 1;
}
.hcd-confirmed svg { flex-shrink: 0; }

/* ── REDUCED MOTION ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .hcd-dot, .hcd-pulse, .cvt-active,
  .trk-bar-live, .lof-pulse, .trk-live-dot span,
  .ws-step.ws-active .ws-icon { animation: none !important; }
  .hcd-card .hcd-source, .hcd-card .hcd-msg,
  .hcd-card .hcd-typing, .hcd-card .hcd-status,
  .lof-event { opacity: 1 !important; animation: none !important; }
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC SPLIT SECTIONS — image + content, alternating rhythm
   ══════════════════════════════════════════════════════════════ */

@keyframes cs-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes cs-glow-pulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 0.85; }
}
@keyframes cs-border-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Layout container ─────────────────────────────────────── */
.cinematic-split {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.cinematic-split.cs-reverse { flex-direction: row-reverse; }

/* ── Content column ───────────────────────────────────────── */
.cs-content-col {
  flex: 1 1 0;
  min-width: 0;
}
.cs-content-col .section-label { margin-bottom: 12px; }
.cs-content-col h2 { margin-top: 0; margin-bottom: 20px; }
.cs-content-col p  { color: var(--text-soft); line-height: 1.72; margin-bottom: 0; }
.cs-content-col .final-main { font-size: clamp(1.55rem, 2.4vw, 2.1rem); font-weight: 700; line-height: 1.25; color: var(--white); }

/* ── Image column ─────────────────────────────────────────── */
.cs-img-col {
  flex: 0 0 480px;
  max-width: 480px;
  position: relative;
}

/* Ambient glow behind frame */
.cs-img-col::before {
  content: '';
  position: absolute;
  inset: 5% 5%;
  border-radius: 20px;
  background: radial-gradient(ellipse, rgba(196,154,60,0.14) 0%, transparent 70%);
  filter: blur(36px);
  z-index: 0;
  pointer-events: none;
  animation: cs-glow-pulse 4s ease-in-out infinite;
}

/* ── Image frame ─────────────────────────────────────────── */
.cs-img-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-card);
  box-shadow:
    0 0 0 1px rgba(196,154,60,0.18),
    0 32px 80px rgba(0,0,0,0.6),
    0 8px 24px rgba(0,0,0,0.4),
    0 0 60px rgba(196,154,60,0.06);
  z-index: 1;
  animation: cs-float 7s ease-in-out infinite;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.cs-img-frame:hover {
  box-shadow:
    0 0 0 1px rgba(196,154,60,0.30),
    0 40px 100px rgba(0,0,0,0.65),
    0 0 80px rgba(196,154,60,0.12);
  transform: translateY(-4px);
  animation-play-state: paused;
}

/* Top shimmer line */
.cs-img-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196,154,60,0.6) 30%,
    rgba(255,220,120,0.9) 50%,
    rgba(196,154,60,0.6) 70%,
    transparent 100%);
  background-size: 200% 100%;
  animation: cs-border-shimmer 3.5s linear infinite;
  z-index: 4;
}

.cs-img-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  filter: brightness(0.90) saturate(1.08);
  transition: filter 0.4s ease;
}
.cs-img-frame:hover img { filter: brightness(0.95) saturate(1.12); }

/* Dark vignette overlay */
.cs-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(6,10,24,0.25) 0%,
    transparent 45%,
    rgba(6,10,24,0.40) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* Floating caption badge */
.cs-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(6,10,24,0.72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 7px 14px;
  font-size: 11px;
  color: rgba(220,231,243,0.88);
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 3;
}
.cs-badge-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-ring 2.2s ease-in-out infinite;
}

/* Corner accent */
.cs-img-frame::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at 100% 100%, rgba(196,154,60,0.15), transparent 70%);
  z-index: 2;
  pointer-events: none;
}

/* ── COMPARE SECTION UPGRADE ──────────────────────────────── */
#compare { max-width: 1200px !important; margin-left: auto; margin-right: auto; }
#compare > .compare-row { margin-top: 0; }

/* ── GUARANTEE SECTION UPGRADE ────────────────────────────── */
#guarantee { max-width: 1200px !important; margin-left: auto; margin-right: auto; }
.guarantee-box { margin-top: 48px; }

/* ── FINAL SECTION UPGRADE ────────────────────────────────── */
#final-section {
  max-width: 1200px !important;
  text-align: left !important;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
#final-section .final-block { display: none !important; }
#final-section .cinematic-split { margin-bottom: 0; padding: 0; }
.cs-content-col .final-sub {
  margin-top: 20px;
  color: var(--text-soft);
  line-height: 1.72;
  font-size: 15px;
}
.cs-content-col .final-cta-row {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── ABOUT SECTION SPLIT ──────────────────────────────────── */

/* Widen the about-inner container */
.about-inner { max-width: 1280px !important; }

/* Reduce top-heavy section padding */
.about-section { padding-top: 72px !important; }

/* Re-constrain below-split content to original narrow rhythm */
.about-inner .metric-strip,
.about-inner .about-dash,
.about-inner .live-ops-feed,
.about-inner .about-pillars {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

/* ── About split: true 50/50 equal columns ────────────────
   Override the global cs-img-col fixed width (480px) so both
   columns share space equally at ~580px each on 1280px canvas. */
.about-inner .cinematic-split {
  max-width: 1280px;
  gap: 56px;
  padding: 0 24px;
  align-items: center;
}
.about-inner .cinematic-split .cs-img-col {
  flex: 1 1 0;           /* equal flex — grows same as content col */
  max-width: 580px;      /* cap so it never dwarfs content */
}
.about-inner .cinematic-split .cs-content-col {
  flex: 1 1 0;
  max-width: 580px;
  min-width: 0;
}

/* Heading: slightly smaller so the two desired lines fit ~560px */
.about-inner .cinematic-split .about-headline {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  line-height: 1.28;
  margin-top: 4px;
  margin-bottom: 20px;
}

/* Body margin inside split */
.about-inner .cinematic-split .about-body { margin-bottom: 14px; }
.about-inner .cinematic-split .about-body:last-child { margin-bottom: 0; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .cinematic-split {
    flex-direction: column !important;
    gap: 40px;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .cs-img-col,
  .about-inner .cinematic-split .cs-img-col,
  .about-inner .cinematic-split .cs-content-col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  .cs-img-frame { animation: none; }
  /* Restore full heading size on mobile (more room stacked) */
  .about-inner .cinematic-split .about-headline {
    font-size: clamp(1.65rem, 5vw, 2.2rem);
  }
}

@media (max-width: 640px) {
  .cs-img-frame::before { animation-duration: 6s; }
}

/* ── SECTION WIDTH UPGRADES (reduce dead side space) ─────── */
/* Individual section max-widths are handled by their specific rules above.
   The cinematic-split containers have their own max-width + padding. */

/* ── ADDITIONAL MICRO-ANIMATIONS ─────────────────────────── */
/* Hover lift on cards */
.include-item, .testi, .ob-step {
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease;
}
.include-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(196,154,60,0.12); }
.testi:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.ob-step:hover { transform: translateY(-3px); }

/* Gradient section dividers */
.section-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196,154,60,0.18) 30%, rgba(196,154,60,0.22) 50%, rgba(196,154,60,0.18) 70%, transparent 100%);
  margin: 0;
}

/* ── REDUCED MOTION ADDITIONS ─────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cs-img-frame,
  .cs-img-col::before,
  .cs-img-frame::before,
  .cs-badge-dot { animation: none !important; }
  .cs-img-frame:hover { transform: none; }
  .include-item:hover, .testi:hover, .ob-step:hover { transform: none; }
}

/* ══════════════════════════════════════════════════════════════
   VIMEO EMBED — premium SaaS video section
   ══════════════════════════════════════════════════════════════ */

@keyframes vimeo-glow-breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%       { opacity: 0.85; transform: scale(1.04); }
}

#video-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.vimeo-section-wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Outer container holds the glow + the frame */
.vimeo-frame-outer {
  position: relative;
  margin-top: 0;
}

/* Ambient blue-gold glow behind the video */
.vimeo-glow {
  position: absolute;
  inset: -18% -8%;
  border-radius: 32px;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(56, 131, 220, 0.18) 0%,
    rgba(196, 154, 60, 0.08) 50%,
    transparent 80%
  );
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
  animation: vimeo-glow-breathe 5s ease-in-out infinite;
}

/* Glass frame around the video player */
.vimeo-frame-inner {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  overflow: hidden;
  /* Subtle blue glow border */
  box-shadow:
    0 0 0 1px rgba(56, 131, 220, 0.28),
    0 0 0 3px rgba(56, 131, 220, 0.08),
    0 32px 80px rgba(0, 0, 0, 0.65),
    0 8px 24px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  background: #060A18;
  transition: box-shadow 0.4s ease;
}

.vimeo-frame-inner:hover {
  box-shadow:
    0 0 0 1px rgba(56, 131, 220, 0.42),
    0 0 0 4px rgba(56, 131, 220, 0.12),
    0 40px 100px rgba(0, 0, 0, 0.70),
    0 0 60px rgba(56, 131, 220, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Top shimmer line */
.vimeo-frame-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(56, 131, 220, 0.6) 25%,
    rgba(196, 154, 60, 0.7) 50%,
    rgba(56, 131, 220, 0.6) 75%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* 16:9 responsive ratio wrapper */
.vimeo-ratio {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  height: 0;
  overflow: hidden;
}

.vimeo-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 640px) {
  #video-section { padding-top: 72px; padding-bottom: 72px; }
  .vimeo-section-wrap { padding: 0 16px; }
  .vimeo-frame-inner { border-radius: 12px; }
  .vimeo-glow { filter: blur(24px); }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .vimeo-glow { animation: none !important; }
}

/* ── Unmute overlay button ────────────────────────────────── */
@keyframes vimeo-btn-appear {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 8px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}

.vimeo-unmute-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  /* Glassmorphism pill */
  background: rgba(6, 10, 24, 0.68);
  backdrop-filter: blur(16px) saturate(1.6);
  -webkit-backdrop-filter: blur(16px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 40px;
  padding: 10px 20px 10px 16px;

  color: rgba(220, 231, 243, 0.92);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;

  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(196, 154, 60, 0.12);

  transition: background 0.22s ease, border-color 0.22s ease,
              box-shadow 0.22s ease, transform 0.22s ease;

  animation: vimeo-btn-appear 0.5s 1.2s cubic-bezier(0.22,1,0.36,1) both;
}

.vimeo-unmute-btn:hover {
  background: rgba(10, 18, 40, 0.82);
  border-color: rgba(196, 154, 60, 0.35);
  box-shadow:
    0 6px 32px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(196, 154, 60, 0.28),
    0 0 20px rgba(196, 154, 60, 0.08);
  transform: translateX(-50%) translateY(-2px);
}

.vimeo-unmute-btn:active {
  transform: translateX(-50%) translateY(0);
}

.vimeo-unmute-icon {
  display: flex;
  align-items: center;
  color: rgba(196, 154, 60, 0.9);
  flex-shrink: 0;
}

/* X lines on the muted speaker — hidden after unmute */
.vimeo-muted-x { transition: opacity 0.2s ease; }

/* State: unmuted — swap icon lines, update label */
.vimeo-unmute-btn.is-unmuted .vimeo-muted-x { opacity: 0; }
.vimeo-unmute-btn.is-unmuted { border-color: rgba(34, 197, 94, 0.28); }
.vimeo-unmute-btn.is-unmuted .vimeo-unmute-icon { color: #4ade80; }

/* Dismissed (fades out) */
.vimeo-unmute-btn.dismissed {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

@media (max-width: 640px) {
  .vimeo-unmute-btn {
    font-size: 12px;
    padding: 9px 16px 9px 13px;
    bottom: 14px;
  }
}

/* ══════════════════════════════════════════════════════════════
   ENTERPRISE LAYOUT REFINEMENT
   Wider containers · Tighter vertical rhythm · Premium pacing
   All rules cascade over earlier definitions intentionally.
   ══════════════════════════════════════════════════════════════ */

/* ── 1. GLOBAL SECTION RHYTHM ──────────────────────────────
   Previous: 100px top/bottom. Target: 72px baseline.
   Reduces "presentation slide" feel, improves scroll pacing. */
section {
  padding-top:    72px !important;
  padding-bottom: 72px !important;
}

/* Hero stays tall and cinematic — never compress it */
.hero { padding-top: 88px !important; padding-bottom: 64px !important; }

/* ── 2. GLOBAL CONTENT WIDTH ───────────────────────────────
   The original base rule (line ~391) set max-width: 860px.
   Bump all sections to 1200px default, specific narrow ones below. */
section {
  max-width: 1200px !important;
  padding-left:  40px !important;
  padding-right: 40px !important;
  box-sizing: border-box;
}

/* ── 3. SECTIONS THAT STAY INTENTIONALLY NARROW ───────────
   (focused, conversion-oriented copy — keep compact) */
#solution  { max-width: 720px  !important; }
#trust     { max-width: 820px  !important; }
#book-demo { max-width: 860px  !important; }

/* ── 4. FULL-WIDTH FEATURE SECTIONS ───────────────────────
   Layout sections that use internal grids/splits benefit from
   more canvas width. */
#system        { max-width: 1280px !important; }
#pricing       { max-width: 1280px !important; }
#compare       { max-width: 1280px !important; }
#guarantee     { max-width: 1280px !important; }
#testimonials  { max-width: 1280px !important; }
#included      { max-width: 1280px !important; }
#onboarding    { max-width: 1280px !important; }
#calc          { max-width: 1100px !important; }
#contact-form  { max-width: 1100px !important; }
#get-started   { max-width: 1100px !important; }
#final-section { max-width: 1280px !important; text-align: left !important; }
#resources     { max-width: 1280px !important; }
#video-section { max-width: 1100px !important; }
#about         { max-width: 1280px !important; }

/* Resources inner container */
.resources-inner { max-width: 100% !important; }

/* ── 5. SPECIFIC SECTION VERTICAL SPACING OVERRIDES ───────
   Only the sections that were excessively padded. */

/* Guarantee: was 120px each — bring to 80px */
#guarantee {
  padding-top:    80px !important;
  padding-bottom: 80px !important;
}

/* Get-started: was 140px top — bring to 88px */
#get-started { padding-top: 88px !important; }

/* Final section: no need for a large bottom gap before CTA */
#final-section {
  padding-bottom: 52px !important;
}

/* Resources section */
.resources-section { padding: 72px 40px 80px !important; }

/* About section */
.about-section { padding-top: 72px !important; padding-bottom: 80px !important; }

/* Video section */
#video-section { padding-top: 72px !important; padding-bottom: 72px !important; }

/* ── 6. PRICING SECTION ────────────────────────────────────
   Two-column card grid was tightly constrained at 980px.
   Widen so cards breathe properly at 1280px canvas. */
.pricing-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card { padding: 44px 40px !important; }

/* Option rows: widen to match */
.option-row    { max-width: 900px; margin-left: auto; margin-right: auto; }
.founder-block { max-width: 900px; margin-left: auto; margin-right: auto; }
.addon-wrap    { max-width: 900px; margin-left: auto; margin-right: auto; }
.pricing-note  { max-width: 900px; margin-left: auto; margin-right: auto; }

/* ── 7. TESTIMONIALS ───────────────────────────────────────
   Widen grid so cards don't stack awkwardly with dead side space. */
.testi-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* Remove forced stagger margins on wider layout */
.testi:nth-child(2) { margin-top: 0 !important; }
.testi:nth-child(3) { margin-top: 0 !important; }

/* ── 8. CONTACT FORM ───────────────────────────────────────
   Centre and constrain form elegantly within wider section */
.form-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── 9. CINEMATIC SPLIT SECTIONS ───────────────────────────
   Bump split containers to 1280px to match section widths */
.cinematic-split { max-width: 1280px !important; }
#compare  > .cinematic-split,
#guarantee > .cinematic-split,
#final-section > .cinematic-split { padding: 0 !important; }

/* ── 10. INCLUDES GRID ─────────────────────────────────────
   At 1280px, 3 cards side-by-side is ideal */
.includes-grid { max-width: 1100px; margin-left: auto; margin-right: auto; }

/* ── 11. ONBOARDING STEPS ──────────────────────────────────
   3-step row looks good at full 1000px width */
.ob-steps { max-width: 1000px; margin-left: auto; margin-right: auto; }

/* ── 12. SCARCITY / CTA SECTION ────────────────────────────
   Keep conversion copy centred and focused */
.scarcity-section { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ── 13. SECTION HEADING WIDTHS ────────────────────────────
   Previously narrow headings caused awkward breaks on wide canvas */
#pricing   > h2,
#pricing   > p:not(.section-label),
#included  > h2,
#included  > p:not(.section-label),
#onboarding > h2,
#onboarding > p:not(.section-label),
#testimonials > h2,
#testimonials > p:not(.section-label),
#compare   > h2,
#compare   > p:not(.section-label),
#calc      > h2,
#calc      > p:not(.section-label) {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ── 14. COMPARE ROW ───────────────────────────────────────
   Let the two comparison cards use more horizontal space */
.compare-row {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── 15. GUARANTEE BOX ─────────────────────────────────────
   Centre within the wider section */
.guarantee-box {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ── 16. TRUST / HIPAA ─────────────────────────────────────
   Centre the trust card within wider section */
.trust-hipaa { max-width: 760px; margin-left: auto; margin-right: auto; }

/* ── 17. DEAD SPACE ABOVE/BELOW DIVIDERS ───────────────────
   hr.section-divider was accumulating padding from sections above/below */
hr.section-divider { margin: 0; }

/* ── MOBILE OVERRIDES ──────────────────────────────────────
   Restore compact mobile spacing — the !important globals above
   would over-expand on small screens without these. */
@media (max-width: 820px) {
  section {
    padding-top:    52px !important;
    padding-bottom: 52px !important;
    padding-left:   20px !important;
    padding-right:  20px !important;
    max-width: 100% !important;
  }
  .hero { padding-top: 64px !important; padding-bottom: 48px !important; }
  #guarantee { padding-top: 52px !important; padding-bottom: 52px !important; }
  #get-started { padding-top: 60px !important; }
  .resources-section { padding: 52px 20px 60px !important; }
  .about-section { padding-top: 52px !important; padding-bottom: 60px !important; }
  .pricing-grid { max-width: 100% !important; }
  .testi-grid { grid-template-columns: 1fr !important; }
  .compare-row { max-width: 100% !important; }
  .guarantee-box { max-width: 100% !important; }
  .trust-hipaa { max-width: 100% !important; }
  .scarcity-section { max-width: 100% !important; }
  .form-section { max-width: 100% !important; }
  .ob-steps { max-width: 100% !important; }
  .includes-grid { max-width: 100% !important; }
  .pricing-card { padding: 32px 24px !important; }
  #video-section { padding-top: 52px !important; padding-bottom: 52px !important; }
}

/* ══════════════════════════════════════════════════════════════
   PREMIUM SAAS UI/UX AUDIT REFINEMENTS
   Systematically applied after full site audit.
   ══════════════════════════════════════════════════════════════ */

/* ── TRUST STRIP: SVG icon treatment ──────────────────────── */
.trust-icon-svg {
  color: var(--gold);
  opacity: 0.85;
  flex-shrink: 0;
}
.trust-sep {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* ── URGENCY BAR: tighten and refine ──────────────────────── */
.urgency-bar {
  font-size: 12.5px !important;
  letter-spacing: 0.01em;
  padding: 9px 40px !important;
}

/* ── SECTION LABEL: slightly more presence ────────────────── */
.section-label {
  letter-spacing: 0.14em !important;
  font-size: 10.5px !important;
}

/* ── TESTIMONIALS: quote mark + card depth ────────────────── */
.testi {
  position: relative;
  padding: 32px 28px 28px !important;
}
.testi-quote-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 22px;
  pointer-events: none;
  user-select: none;
  font-style: normal;
}
.testi-stars {
  margin-bottom: 14px !important;
}
.testi-quote {
  font-size: 14.5px !important;
  line-height: 1.72 !important;
  color: rgba(220,231,243,0.84) !important;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testi-name { font-size: 13.5px !important; font-weight: 600 !important; }
.testi-role { font-size: 11.5px !important; opacity: 0.65; }
.testi-avatar {
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

/* ── PAIN CARDS: left accent + hover state ────────────────── */
.pain-card {
  border-left: 2px solid rgba(196,154,60,0.30) !important;
  transition: border-left-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}
.pain-card:hover {
  border-left-color: rgba(196,154,60,0.65) !important;
  box-shadow: 0 12px 36px rgba(0,0,0,0.28), 0 0 0 1px rgba(196,154,60,0.10) !important;
  transform: translateY(-3px);
}
.pain-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

/* ── WORKFLOW STRIP: icon sizing ──────────────────────────── */
.ws-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ws-icon svg { width: 15px; height: 15px; }

/* ── HM DASHBOARD: icon sizing ────────────────────────────── */
.hm-step-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hm-step-icon svg { width: 16px; height: 16px; }

/* ── BOOKING NOTIF ICON ────────────────────────────────────── */
.booking-notif-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.booking-notif-icon svg { width: 14px; height: 14px; }

/* ── COST CALLOUT: stronger visual anchor ─────────────────── */
.cost-callout {
  border-top: 1px solid rgba(196,154,60,0.18) !important;
  border-bottom: 1px solid rgba(196,154,60,0.18) !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  position: relative;
}
.cost-callout::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,154,60,0.5), transparent);
}
.cost-number {
  font-size: clamp(2.2rem, 4vw, 3rem) !important;
  letter-spacing: -0.03em !important;
}

/* ── SECTION DIVIDERS: full-width, very subtle ────────────── */
.section-divider {
  max-width: 100% !important;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(255,255,255,0.06) 70%, transparent 100%) !important;
  height: 1px !important;
  margin: 0 !important;
}

/* ── PRICING: featured card stronger glow ─────────────────── */
.pricing-card.featured {
  box-shadow:
    0 0 0 1px rgba(196,154,60,0.35),
    0 24px 64px rgba(0,0,0,0.45),
    0 0 60px rgba(196,154,60,0.08) !important;
}
.pricing-card.featured:hover {
  box-shadow:
    0 0 0 1px rgba(196,154,60,0.55),
    0 32px 80px rgba(0,0,0,0.55),
    0 0 80px rgba(196,154,60,0.14) !important;
}

/* ── INCLUDES: item number treatment ─────────────────────── */
.item-num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 2.2rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em !important;
  line-height: 1 !important;
  color: rgba(196,154,60,0.55) !important;
}
.item-title {
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

/* ── ONBOARDING STEPS: tighter, more premium ──────────────── */
.ob-step-name {
  font-size: 15px !important;
  font-weight: 600 !important;
}
.ob-step-desc { font-size: 13.5px !important; line-height: 1.65 !important; }

/* ── GUARANTEE BOX: tighter heading ──────────────────────── */
.guar-title {
  font-size: 20px !important;
  line-height: 1.3 !important;
}

/* ── BOOK-DEMO SECTION: more premium ─────────────────────── */
.bdc-h {
  font-size: clamp(1.4rem, 2.5vw, 1.85rem) !important;
  line-height: 1.3 !important;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--white);
}
.bdc-label {
  font-size: 10.5px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--gold) !important;
  font-weight: 500;
  margin-bottom: 14px;
}
.bdc-sub {
  font-size: 15px !important;
  line-height: 1.7 !important;
  max-width: 540px;
  margin: 18px auto 28px !important;
}

/* ── FORM TRUST LINE ──────────────────────────────────────── */
.form-trust {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px !important;
  color: var(--text-muted) !important;
  margin-top: 14px !important;
  line-height: 1.55 !important;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.form-trust::before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c49a3c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.7;
}

/* ── FOOTER: proper premium structure ─────────────────────── */
footer {
  background: var(--navy-deep) !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  padding: 48px 40px 32px !important;
  text-align: left !important;
}
footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}
footer .footer-brand-col {
  flex: 0 0 auto;
  max-width: 280px;
}
footer .footer-brand {
  font-size: 18px !important;
  margin-bottom: 10px !important;
  display: block;
}
footer .footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}
footer .footer-links-col {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
footer .footer-links-group { display: flex; flex-direction: column; gap: 10px; }
footer .footer-links-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
footer .footer-links-group a {
  font-size: 13px;
  color: rgba(220,231,243,0.55);
  transition: color 0.2s ease;
}
footer .footer-links-group a:hover { color: var(--gold-light); }
footer .footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--text-muted);
}
footer .footer-bottom a { color: var(--text-muted); }
footer .footer-bottom a:hover { color: var(--gold-light); }

/* ── FEATURE STRIP RESPONSIVE FIX ────────────────────────── */
.feature-strip-inner {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center;
}
.feature-strip-inner .fsi {
  flex: 0 0 auto;
  min-width: 0;
}

/* ── CTA BUTTON CONSISTENCY ───────────────────────────────── */
.cta-outline-btn {
  font-size: 14.5px !important;
  padding: 14px 36px !important;
  border-radius: 6px !important;
  letter-spacing: 0.01em;
}

/* ── GLOBAL BORDER-RADIUS HARMONISATION ───────────────────── */
/* Cards: standardise to 12px */
.pain-card, .include-item, .res-card, .ob-step,
.about-pillar, .hiw-card {
  border-radius: 12px !important;
}
/* Smaller elements: 8px */
.option-row, .addon-card, .pms-badge-strip, .breakeven-box,
.calc-wrap, .cost-callout {
  border-radius: 10px !important;
}
/* Pill elements stay at 40px+ */
.hero-badge, .live-badge, .urgency-bar .spot,
.pms-tag, .spot-pill { border-radius: 40px; }

/* ── REDUCED MOTION for audit additions ────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .pain-card:hover, .include-item:hover,
  .testi:hover, .ob-step:hover { transform: none !important; }
}

/* ── MOBILE AUDIT OVERRIDES ────────────────────────────────── */
@media (max-width: 820px) {
  .testi-quote-mark { font-size: 52px; top: 12px; left: 16px; }
  footer { padding: 36px 20px 24px !important; }
  footer .footer-inner { flex-direction: column; gap: 32px; }
  footer .footer-brand-col { max-width: 100%; }
  footer .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .bdc-h { text-align: center; }
  .bdc-sub { text-align: center; }
  .urgency-bar { font-size: 11px !important; padding: 9px 16px !important; }
  .cost-number { font-size: 2.2rem !important; }
}

/* ── FOOTER MULTI-COLUMN REFINEMENTS ──────────────────────── */
.footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin: 0 0 14px;
  opacity: 0.92;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.footer-social-link {
  font-size: 12px;
  color: rgba(220,231,243,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer-social-link:hover {
  color: var(--gold-light);
  border-color: rgba(196,154,60,0.35);
}
.footer-link {
  font-size: 13px;
  color: rgba(220,231,243,0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}
.footer-link:hover { color: var(--gold-light); }
.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: rgba(220,231,243,0.45);
}
.footer-trust-item svg {
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
.footer-bottom-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-link:hover { color: var(--gold-light); }
