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

  :root {
    /* ── Brand Palette (from brochure) ── */
    --navy:         #0b1524;
    --navy-2:       #111f35;
    --navy-3:       #17293f;
    --navy-4:       #1d3452;
    --gold:         #c89a2e;
    --gold-hi:      #dbb04a;
    --gold-pale:    #e8c97a;
    --gold-dim:     rgba(200,154,46,0.15);
    --gold-border:  rgba(200,154,46,0.3);
    --cream:        #f5f0e8;
    --white:        #ffffff;
    --text:         #ffffff;
    --text-2:       #aab8cc;
    --text-3:       #5a6b80;
    --green:        #22c55e;
    --border:       rgba(255,255,255,0.07);
    --border-gold:  rgba(200,154,46,0.25);
    /* ── Radii ── */
    --r-sm:   6px;
    --r-md:   10px;
    --r-lg:   16px;
    --r-xl:   22px;
    --r-pill: 999px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--navy);
    color: var(--text);
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* ── TYPOGRAPHY ── */
  .serif { font-family: 'Playfair Display', Georgia, serif; }
  .f-display {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
  }
  .f-h2 {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
  }
  .f-h3 { font-size: 1.15rem; font-weight: 800; letter-spacing: -0.01em; }
  .gold-italic { font-family: 'Playfair Display', serif; font-style: italic; color: var(--gold-hi); }

  /* ── LAYOUT ── */
  .container        { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
  .container-narrow { max-width: 740px;  margin: 0 auto; padding: 0 28px; }

  /* ── GOLD DIVIDER ── */
  .gold-rule {
    display: block; width: 40px; height: 2px;
    background: var(--gold); border-radius: 2px;
    margin: 0 auto 20px;
  }
  .gold-rule.left { margin-left: 0; }

  /* ── EYEBROW ── */
  .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold-hi);
    margin-bottom: 16px;
  }
  .eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

  /* ══════════════════════════════════════
     NAV
  ══════════════════════════════════════ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(11,21,36,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200,154,46,0.15);
  }
  .nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    max-width: 1100px; margin: 0 auto; padding: 0 28px; height: 62px;
  }
  .nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; }
  .logo-svg { height: 30px; width: auto; flex-shrink: 0; display: block; }
  .logo-text-wrap { display: flex; flex-direction: column; line-height: 1; }
  .logo-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--white); letter-spacing: 0.04em; }
  .logo-name .accent-n { color: var(--gold); }
  .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
  .nav-links a { font-size: 14px; font-weight: 500; color: var(--text-2); text-decoration: none; transition: color 0.15s; }
  .nav-links a:hover { color: var(--white); }
  .nav-links a.active { color: var(--gold-hi); }
  .nav-right { display: flex; align-items: center; gap: 10px; }
  .btn-nav {
    background: var(--gold); color: var(--navy);
    border: none; border-radius: var(--r-pill);
    padding: 9px 20px; font-size: 14px; font-weight: 700;
    cursor: pointer; text-decoration: none; transition: background 0.15s;
    letter-spacing: 0.01em;
  }
  .btn-nav:hover { background: var(--gold-hi); }
  .nav-mob { display: none; background: none; border: none; color: var(--text-2); cursor: pointer; padding: 4px; }

  /* ══════════════════════════════════════
     HERO
  ══════════════════════════════════════ */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 110px 0 80px;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 60% 30%, rgba(200,154,46,0.06) 0%, transparent 60%),
      radial-gradient(ellipse 50% 70% at 10% 80%, rgba(17,31,53,0.8) 0%, transparent 50%);
    pointer-events: none;
  }
  /* animated gold grid lines */
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(200,154,46,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(200,154,46,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  .hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center; position: relative; z-index: 1;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    border-radius: var(--r-pill); padding: 5px 14px;
    font-size: 12px; font-weight: 600; color: var(--gold-pale);
    margin-bottom: 24px;
  }
  .hero-tag-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: glow 2s ease-in-out infinite; }
  @keyframes glow {
    0%,100% { box-shadow: 0 0 0 0 rgba(200,154,46,0.6); }
    50%      { box-shadow: 0 0 0 5px rgba(200,154,46,0); }
  }
  .hero h1 { margin-bottom: 20px; }
  .hero-sub {
    font-size: 1.05rem; color: var(--text-2); line-height: 1.75;
    margin-bottom: 36px; max-width: 460px;
  }
  .hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
  .btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold); color: var(--navy);
    border: none; border-radius: var(--r-pill);
    padding: 14px 28px; font-size: 15px; font-weight: 800;
    cursor: pointer; text-decoration: none; transition: all 0.15s;
    letter-spacing: 0.01em;
  }
  .btn-gold:hover { background: var(--gold-hi); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,154,46,0.3); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--text);
    border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-pill);
    padding: 14px 28px; font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all 0.15s;
  }
  .btn-ghost:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.04); }
  .hero-trust {
    display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
    border-top: 1px solid var(--border); padding-top: 28px;
  }
  .trust-pill {
    display: flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 600; color: var(--text-2);
  }
  .trust-check {
    width: 18px; height: 18px; border-radius: 50%;
    background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3);
    display: grid; place-items: center; flex-shrink: 0;
  }
  .trust-check svg { color: var(--green); }

  /* Dashboard mockup */
  .hero-dash-wrap { position: relative; }
  .hero-dash {
    background: var(--navy-2);
    border: 1px solid rgba(200,154,46,0.2);
    border-radius: 14px; overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,154,46,0.08);
  }
  .dash-topbar {
    background: var(--navy-3); border-bottom: 1px solid var(--border);
    padding: 10px 14px; display: flex; align-items: center; gap: 7px;
  }
  .d-dot { width: 9px; height: 9px; border-radius: 50%; }
  .dash-brand { margin-left: 6px; font-size: 11px; font-weight: 800; color: var(--gold); letter-spacing: 0.06em; flex:1; }
  .dash-layout { display: grid; grid-template-columns: 140px 1fr; }
  .dash-sidebar {
    background: var(--navy-3); border-right: 1px solid var(--border);
    padding: 12px 10px; display: flex; flex-direction: column; gap: 3px;
  }
  .d-nav-item {
    font-size: 10px; font-weight: 600; color: var(--text-3);
    padding: 7px 10px; border-radius: 6px; cursor: default;
    transition: background 0.15s;
  }
  .d-nav-item.active { background: var(--gold-dim); color: var(--gold-pale); }
  .dash-main { padding: 14px; }
  .d-stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
  .d-stat {
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px 10px 8px;
  }
  .d-stat-label { font-size: 9px; color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
  .d-stat-val { font-size: 18px; font-weight: 900; letter-spacing: -0.03em; margin-top: 3px; }
  .d-stat-val.gold { color: var(--gold-hi); }
  .d-stat-val.green { color: var(--green); }
  .d-stat-change { font-size: 9px; color: var(--green); font-weight: 700; margin-top: 1px; }
  .d-mid-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
  .d-panel {
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: 8px; padding: 10px;
  }
  .d-panel-title { font-size: 9px; font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
  .d-bars { display: flex; align-items: flex-end; gap: 3px; height: 40px; }
  .d-bar {
    flex:1; border-radius: 2px 2px 0 0;
    background: linear-gradient(to top, var(--gold-dim), rgba(200,154,46,0.4));
    transition: opacity 0.2s;
  }
  .d-bar.hi { background: linear-gradient(to top, var(--gold), var(--gold-hi)); }
  .d-queue { display: flex; flex-direction: column; gap: 5px; }
  .d-queue-row {
    display: flex; align-items: center; gap: 7px;
    background: var(--navy-4); border-radius: 5px; padding: 5px 7px;
  }
  .d-avatar {
    width: 20px; height: 20px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-hi));
    display: grid; place-items: center;
    font-size: 8px; font-weight: 800; color: var(--navy); flex-shrink: 0;
  }
  .d-queue-name { font-size: 9px; font-weight: 700; flex: 1; }
  .d-queue-tag { font-size: 8px; color: var(--text-3); }
  .d-badge {
    font-size: 8px; font-weight: 700; border-radius: 3px; padding: 2px 5px;
  }
  .d-badge.seen { background: rgba(34,197,94,0.12); color: var(--green); }
  .d-badge.waiting { background: var(--gold-dim); color: var(--gold-pale); }
  .d-nhia-row { display: flex; flex-direction: column; gap: 5px; }
  .d-claim {
    display: flex; align-items: center; justify-content: space-between;
    font-size: 9px; padding: 3px 0; border-bottom: 1px solid var(--border);
  }
  .d-claim:last-child { border-bottom: none; }
  .d-claim-name { color: var(--text-2); }
  .d-claim-status { font-weight: 700; }
  .d-claim-status.a { color: var(--green); }
  .d-claim-status.p { color: var(--gold-pale); }
  .d-claim-amt { color: var(--text-3); font-weight: 700; }
  /* floating cards */
  .dash-float-1 {
    position: absolute; top: -14px; right: -18px;
    background: var(--navy-3); border: 1px solid var(--gold-border);
    border-radius: 10px; padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: floaty 4s ease-in-out infinite;
  }
  .dash-float-2 {
    position: absolute; bottom: 24px; left: -18px;
    background: var(--navy-3); border: 1px solid rgba(34,197,94,0.3);
    border-radius: 10px; padding: 10px 14px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    animation: floaty 4s ease-in-out infinite 1.8s;
  }
  @keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
  .float-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
  .float-label.gold { color: var(--gold); }
  .float-label.green { color: var(--green); }
  .float-val { font-size: 16px; font-weight: 900; color: var(--white); }

  /* ══════════════════════════════════════
     METRICS
  ══════════════════════════════════════ */
  .metrics-bar {
    background: var(--navy-2);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
  }
  .metrics-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
  .metric-cell {
    padding: 32px 28px;
    border-right: 1px solid var(--border);
    position: relative; overflow: hidden;
    transition: background 0.2s;
  }
  .metric-cell:last-child { border-right: none; }
  .metric-cell:hover { background: rgba(200,154,46,0.04); }
  .metric-cell::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-hi));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease; border-radius: 2px 2px 0 0;
  }
  .metric-cell:hover::after { transform: scaleX(1); }
  .metric-val {
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    font-weight: 900; letter-spacing: -0.04em;
    line-height: 1; margin-bottom: 7px;
  }
  .metric-val .gold { color: var(--gold-hi); }
  .metric-desc { font-size: 13px; color: var(--text-2); line-height: 1.5; }

  /* ══════════════════════════════════════
     PROBLEM
  ══════════════════════════════════════ */
  .problem-section { padding: 100px 0; }
  .section-header { text-align: center; margin-bottom: 56px; }
  .problem-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border-gold);
    border: 1px solid var(--border-gold); border-radius: var(--r-lg); overflow: hidden;
  }
  .prob-cell {
    background: var(--navy-2); padding: 34px 28px; transition: background 0.2s;
  }
  .prob-cell:hover { background: var(--navy-3); }
  .prob-icon {
    width: 42px; height: 42px; border-radius: 9px;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    display: grid; place-items: center; margin-bottom: 18px;
  }
  .prob-icon svg { color: var(--gold-hi); }
  .prob-cell h3 { font-size: 15px; font-weight: 800; margin-bottom: 9px; }
  .prob-cell p { font-size: 13px; color: var(--text-2); line-height: 1.65; }
  .prob-cost { margin-top: 13px; font-size: 12px; font-weight: 700; color: #f87171; }

  /* ══════════════════════════════════════
     PRODUCTS (tabbed)
  ══════════════════════════════════════ */
  .products-section { padding: 100px 0; }
  .tabs-row {
    display: flex; align-items: center; justify-content: center; gap: 4px; flex-wrap: wrap;
    background: var(--navy-2); border: 1px solid var(--border-gold);
    border-radius: var(--r-pill); padding: 5px;
    width: fit-content; max-width: 100%; margin: 0 auto 44px;
  }
  .tab {
    padding: 9px 24px; border-radius: var(--r-pill);
    font-size: 13.5px; font-weight: 700; cursor: pointer;
    border: none; background: transparent; color: var(--text-2);
    transition: all 0.2s; letter-spacing: 0.01em; white-space: nowrap;
    flex-shrink: 0;
  }
  .tab.on { background: var(--gold); color: var(--navy); }
  .tab:not(.on):hover { color: var(--text); }

  .prod-panel { display: none; }
  .prod-panel.on { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }

  .prod-tag-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .prod-name { font-size: clamp(2.4rem, 4vw, 3rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 14px; }
  .prod-tagline { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 26px; max-width: 420px; }
  .benefit-rows { list-style: none; margin-bottom: 28px; }
  .benefit-row {
    display: flex; align-items: flex-start; gap: 13px;
    padding: 13px 0; border-bottom: 1px solid var(--border);
  }
  .benefit-row:last-child { border-bottom: none; }
  .b-icon {
    width: 28px; height: 28px; border-radius: 7px;
    background: var(--gold-dim); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px;
  }
  .b-icon svg { color: var(--gold-hi); }
  .b-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
  .b-desc  { font-size: 13px; color: var(--text-2); }

  .prod-outcome {
    background: var(--navy-2); border: 1px solid var(--border-gold);
    border-radius: var(--r-lg); overflow: hidden;
  }
  .outcome-top {
    background: linear-gradient(135deg, #1a1200, #261900);
    border-bottom: 1px solid var(--gold-border);
    padding: 20px 22px;
  }
  .outcome-top-eyebrow { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 5px; }
  .outcome-top-text { font-size: 1.05rem; font-weight: 700; line-height: 1.3; }
  .outcome-body { padding: 20px 22px; }
  .outcome-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
  .o-stat {
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: 9px; padding: 14px; text-align: center;
  }
  .o-stat-val { font-size: 1.9rem; font-weight: 900; letter-spacing: -0.03em; color: var(--gold-hi); }
  .o-stat-label { font-size: 11px; color: var(--text-2); margin-top: 2px; }
  .feature-tags { display: flex; flex-wrap: wrap; gap: 7px; }
  .ftag {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 600; color: var(--text-2);
    background: var(--navy-3); border: 1px solid var(--border);
    border-radius: var(--r-pill); padding: 4px 11px;
  }
  .ftag svg { color: var(--gold); }

  /* ══════════════════════════════════════
     INTEGRATION
  ══════════════════════════════════════ */
  .integration-section { padding: 20px 0 80px; }
  .int-card {
    background: linear-gradient(135deg, #130e00, #1a1400, #0b1524);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-xl); padding: 56px 60px;
    display: grid; grid-template-columns: 1fr auto; gap: 52px; align-items: center;
    position: relative; overflow: hidden;
  }
  .int-card::before {
    content:''; position:absolute; top:-60px; right:-60px;
    width:240px; height:240px;
    background: radial-gradient(circle, rgba(200,154,46,0.1) 0%, transparent 65%);
    pointer-events: none;
  }
  .int-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 12px; }
  .int-card h2 { margin-bottom: 14px; }
  .int-card p { color: var(--text-2); font-size: 15px; max-width: 480px; line-height: 1.7; }
  .int-flow { display: flex; flex-direction: column; gap: 6px; min-width: 210px; }
  .int-step {
    background: rgba(255,255,255,0.04); border: 1px solid var(--border);
    border-radius: 9px; padding: 11px 14px;
    display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600;
  }
  .int-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .int-dot.g { background: var(--green); }
  .int-arrow { text-align: center; color: var(--gold); font-size: 14px; margin: -1px 0; }

  /* ══════════════════════════════════════
     HOW IT WORKS
  ══════════════════════════════════════ */
  .how-section { padding: 100px 0; }
  .steps-wrap { max-width: 680px; margin: 0 auto; position: relative; }
  .steps-line {
    position: absolute; left: 18px; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(to bottom, var(--gold), transparent);
  }
  .step-row { display: flex; gap: 28px; margin-bottom: 38px; position: relative; }
  .step-row:last-child { margin-bottom: 0; }
  .step-num-ring {
    flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
    background: var(--navy-2); border: 1px solid var(--gold-border);
    display: grid; place-items: center; position: relative; z-index: 1;
  }
  .step-num-ring span { font-size: 12px; font-weight: 900; color: var(--gold-hi); }
  .step-content { padding-top: 7px; }
  .step-title { font-size: 16px; font-weight: 800; margin-bottom: 5px; }
  .step-desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

  /* ══════════════════════════════════════
     WHY SELENIC
  ══════════════════════════════════════ */
  .why-section { padding: 100px 0; }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border-gold);
    border: 1px solid var(--border-gold); border-radius: var(--r-lg); overflow: hidden;
  }
  .why-cell {
    background: var(--navy-2); padding: 30px 26px; transition: background 0.2s;
  }
  .why-cell:hover { background: var(--navy-3); }
  .why-num { font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: 0.06em; margin-bottom: 14px; }
  .why-icon {
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    display: grid; place-items: center; margin-bottom: 14px;
  }
  .why-icon svg { color: var(--gold-hi); }
  .why-cell h4 { font-size: 14.5px; font-weight: 800; margin-bottom: 7px; }
  .why-cell p  { font-size: 13px; color: var(--text-2); line-height: 1.65; }

  /* ══════════════════════════════════════
     SERVE
  ══════════════════════════════════════ */
  .serve-section { padding: 80px 0; text-align: center; }
  .serve-chips {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
    max-width: 680px; margin: 0 auto;
  }
  .serve-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--navy-2); border: 1px solid var(--border-gold);
    border-radius: var(--r-pill); padding: 9px 18px;
    font-size: 13.5px; font-weight: 600; color: var(--text-2);
    transition: all 0.15s; cursor: default;
  }
  .serve-chip:hover { background: var(--gold-dim); color: var(--gold-pale); border-color: var(--gold); }
  .serve-chip-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

  /* ══════════════════════════════════════
     PRICING
  ══════════════════════════════════════ */
  .pricing-section { padding: 100px 0; }
  .pricing-sub {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; color: var(--text-2); margin-top: 10px;
  }
  .pricing-sub svg { color: var(--green); }
  .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
  .p-card {
    background: var(--navy-2); border: 1px solid var(--border);
    border-radius: var(--r-lg); padding: 26px 20px;
    display: flex; flex-direction: column;
    transition: border-color 0.2s, transform 0.2s;
    position: relative;
  }
  .p-card:hover { border-color: var(--gold-border); transform: translateY(-3px); }
  .p-card.featured { border-color: var(--gold); background: var(--navy-3); }
  .pop-label {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--navy); border-radius: var(--r-pill);
    padding: 4px 14px; font-size: 10px; font-weight: 900;
    letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
  }
  .pc-from  { font-size: 10px; color: var(--text-3); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
  .pc-name  { font-size: 16px; font-weight: 900; margin-bottom: 4px; }
  .pc-price { font-size: 2.1rem; font-weight: 900; letter-spacing: -0.04em; color: var(--gold-hi); line-height: 1; margin-bottom: 2px; }
  .p-card.featured .pc-price { color: var(--white); }
  .pc-period { font-size: 11px; color: var(--text-3); margin-bottom: 20px; }
  .pc-feats { list-style: none; flex: 1; }
  .pc-feats li {
    display: flex; align-items: flex-start; gap: 7px;
    font-size: 12.5px; color: var(--text-2);
    padding: 5px 0; border-bottom: 1px solid var(--border);
  }
  .pc-feats li:last-child { border-bottom: none; }
  .pc-feats li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
  .pc-btn {
    display: block; width: 100%; text-align: center;
    background: var(--navy-3); border: 1px solid var(--border-gold);
    color: var(--text); border-radius: var(--r-pill);
    padding: 11px; font-size: 13px; font-weight: 800;
    cursor: pointer; text-decoration: none; margin-top: 18px;
    transition: all 0.15s; letter-spacing: 0.01em;
  }
  .pc-btn:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-pale); }
  .pc-btn.feat { background: var(--gold); border-color: var(--gold); color: var(--navy); }
  .pc-btn.feat:hover { background: var(--gold-hi); }
  .promo-bar {
    margin-top: 16px;
    background: linear-gradient(135deg, #1a1200, #261900);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-lg); padding: 20px 28px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  }
  .promo-bar-text h4 { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-pale); margin-bottom: 3px; }
  .promo-bar-text p  { font-size: 13px; color: var(--text-2); }

  /* ══════════════════════════════════════
     TESTIMONIAL
  ══════════════════════════════════════ */
  .testi-section { padding: 80px 0; }
  .testi-inner {
    background: var(--navy-2);
    border: 1px solid var(--gold-border);
    border-radius: var(--r-xl); padding: 52px 56px;
    max-width: 760px; margin: 0 auto;
    text-align: center; position: relative;
  }
  .testi-quote { font-size: 3rem; color: var(--gold); font-family: Georgia, serif; line-height: 1; margin-bottom: 16px; }
  .testi-text {
    font-size: 1.2rem; line-height: 1.7; color: var(--text);
    font-style: italic; font-family: 'Playfair Display', serif;
    margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto;
  }
  .testi-author { font-size: 13px; font-weight: 700; color: var(--gold-hi); }
  .testi-role   { font-size: 12px; color: var(--text-3); margin-top: 2px; }
  .testi-stars  { display: flex; justify-content: center; gap: 4px; margin-top: 14px; }
  .testi-stars svg { color: var(--gold); }

  /* ══════════════════════════════════════
     CTA
  ══════════════════════════════════════ */
  .cta-section {
    background: linear-gradient(135deg, #0b1524, #131800, #1a1200, #0b1524);
    padding: 100px 0; text-align: center;
    border-top: 1px solid var(--gold-border);
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content:''; position:absolute; top:0; left:0; right:0; bottom:0;
    background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(200,154,46,0.08) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold-dim); border: 1px solid var(--gold-border);
    border-radius: var(--r-pill); padding: 5px 14px;
    font-size: 12px; font-weight: 700; color: var(--gold-pale);
    margin-bottom: 20px; letter-spacing: 0.02em;
  }
  .cta-section h2 { margin-bottom: 14px; }
  .cta-section > .container-narrow > p {
    font-size: 1.05rem; color: var(--text-2);
    max-width: 460px; margin: 0 auto 40px; line-height: 1.7;
  }
  .cta-btns { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
  .btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25d366; color: #fff;
    border: none; border-radius: var(--r-pill);
    padding: 15px 30px; font-size: 15px; font-weight: 800;
    cursor: pointer; text-decoration: none; transition: all 0.15s;
  }
  .btn-wa:hover { background: #1db954; transform: translateY(-1px); }
  .btn-email {
    display: inline-flex; align-items: center; gap: 9px;
    background: rgba(255,255,255,0.08); color: var(--text);
    border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-pill);
    padding: 15px 30px; font-size: 15px; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all 0.15s;
  }
  .btn-email:hover { background: rgba(255,255,255,0.13); }
  .cta-hours { font-size: 12px; color: var(--text-3); }
  .cta-tagline { font-size: 16px; font-weight: 700; color: var(--gold-pale); margin-top: 32px; font-style: italic; font-family: 'Playfair Display', serif; }

  /* ══════════════════════════════════════
     FOOTER
  ══════════════════════════════════════ */
  footer {
    background: #060d16;
    border-top: 1px solid rgba(200,154,46,0.12);
    padding: 52px 0 28px;
  }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
  .footer-desc { font-size: 13px; color: var(--text-3); margin: 10px 0 18px; max-width: 220px; line-height: 1.65; }
  .footer-tagline { font-size: 12px; color: var(--gold); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
  .soc-row { display: flex; gap: 8px; margin-top: 14px; }
  .soc-a {
    width: 32px; height: 32px; border-radius: 7px;
    background: var(--navy-2); border: 1px solid var(--border);
    display: grid; place-items: center; color: var(--text-3);
    text-decoration: none; transition: all 0.15s;
  }
  .soc-a:hover { border-color: var(--gold-border); color: var(--gold-hi); }
  .footer-col h5 { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 15px; }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }
  .footer-col a   { font-size: 13px; color: var(--text-2); text-decoration: none; transition: color 0.15s; }
  .footer-col a:hover { color: var(--gold-hi); }
  .footer-col span { display: block; font-size: 13px; color: var(--text-2); margin-bottom: 8px; }
  .footer-bottom {
    border-top: 1px solid var(--border); padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  }
  .footer-bottom p { font-size: 12px; color: var(--text-3); }

  /* ══════════════════════════════════════
     ANIMATIONS
  ══════════════════════════════════════ */
  .reveal { opacity:0; transform:translateY(18px); transition:opacity 0.55s ease, transform 0.55s ease; }
  .reveal.in { opacity:1; transform:translateY(0); }

  /* ══════════════════════════════════════
     RESPONSIVE
  ══════════════════════════════════════ */
  @media (max-width: 960px) {
    .nav-links, .btn-nav { display: none; }
    .nav-mob { display: block; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-dash-wrap { display: none; }
    .metrics-inner { grid-template-columns: 1fr 1fr; }
    .metrics-inner .metric-cell:nth-child(2) { border-right: none; }
    .problem-grid, .why-grid { grid-template-columns: 1fr 1fr; }
    .prod-panel.on { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr 1fr; }
    .int-card { grid-template-columns: 1fr; padding: 36px 28px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .tabs-row { gap: 6px; }
  }
  @media (max-width: 640px) {
    .container, .container-narrow { padding: 0 20px; }
    .problem-grid, .why-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .metrics-inner { grid-template-columns: 1fr 1fr; }
    .metrics-inner .metric-cell:nth-child(odd) { border-right: 1px solid var(--border); }
    .metrics-inner .metric-cell:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas a { justify-content: center; text-align: center; }
    .cta-btns  { flex-direction: column; align-items: stretch; }
    .cta-btns a { justify-content: center; }
    .testi-inner { padding: 28px 20px; }
    .int-card { padding: 24px 18px; }
    .promo-bar { flex-direction: column; align-items: flex-start; gap: 16px; }
    .promo-bar a { width: 100%; text-align: center; justify-content: center; }

    /* Product tabs: tighten so 4 pills wrap cleanly without overflow */
    .tabs-row { width: 100%; max-width: 360px; gap: 6px; padding: 6px; }
    .tab { padding: 8px 16px; font-size: 12.5px; flex: 1 1 auto; text-align: center; }

    /* Hero & section type scale down to avoid edge clipping */
    .hero { padding: 100px 0 60px; }
    .hero-tag { font-size: 11px; padding: 5px 12px; }
    .hero-trust { gap: 14px 18px; }
    .f-display { font-size: clamp(2.3rem, 9vw, 3rem); }
    .f-h2 { font-size: clamp(1.6rem, 7vw, 2.2rem); }

    /* Dashboard floating badges (if ever shown) must not overflow card edges */
    .dash-float-1, .dash-float-2 { display: none; }

    /* Integration card flow stacks cleanly */
    .int-flow { min-width: 0; width: 100%; }
    .int-card { gap: 28px; }

    /* Outcome stat grid: keep 2-col but shrink padding so numbers don't wrap awkwardly */
    .outcome-stats { gap: 8px; }
  }
  @media (max-width: 400px) {
    .container, .container-narrow { padding: 0 16px; }
    .tabs-row { max-width: 100%; }
    .tab { padding: 8px 12px; font-size: 11.5px; }
    .pc-price { font-size: 1.8rem; }
  }
