  :root {
    --hero:      #0f1c2d;
    --hero-mid:  #172336;
    --page:      #f4f3f0;
    --card:      #ffffff;
    --amber:     #e07c1e;
    --amber-lt:  #f5a84d;
    --amber-bg:  #fef3e2;
    --ink:       #0d1825;
    --muted:     #5a6b7c;
    --line:      #dde3ea;
    --ok:        #16a34a;
    --blue:      #1e50a2;
  }

  html, body { max-width: 100%; overflow-x: hidden; }
  * { box-sizing: border-box; }

  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--page);
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.6;
  }

  h1, h2, h3, h4, .display {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.1;
  }

  /* ─── NAV ─── */
  .site-nav {
    background: var(--card);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .nav-logo .mark {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--amber);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
  }
  .nav-link-item {
    color: var(--muted);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 500;
    transition: color .15s;
  }
  .nav-link-item:hover { color: var(--ink); }
  .btn-nav {
    background: var(--amber);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .5rem 1.1rem;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: background .15s;
  }
  .btn-nav:hover { background: #c96d16; color: #fff; }

  /* ─── HERO ─── */
  .hero {
    background: var(--hero);
    color: #fff;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -120px; right: -120px;
    width: 480px; height: 480px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(224,124,30,.12), transparent);
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -80px; left: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(30,80,162,.15), transparent);
  }
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    font-size: .85rem;
    font-weight: 500;
    padding: .35rem .75rem;
    border-radius: 50rem;
    margin-bottom: 1.25rem;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -.02em;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--amber-lt);
  }
  .hero-sub {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: rgba(255,255,255,.7);
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.65;
  }
  .btn-primary-amber {
    background: var(--amber);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: .85rem 1.6rem;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background .15s;
  }
  .btn-primary-amber:hover { background: #c96d16; color: #fff; }
  .btn-ghost-white {
    background: transparent;
    color: rgba(255,255,255,.85);
    border: 1.5px solid rgba(255,255,255,.25);
    border-radius: 10px;
    padding: .85rem 1.6rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: border-color .15s, color .15s;
  }
  .btn-ghost-white:hover { border-color: rgba(255,255,255,.55); color: #fff; }

  .hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-top: 2rem;
  }
  .hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
  }
  .hero-pill i { color: var(--amber-lt); font-size: .9rem; }

  .hero-preview {
    position: relative;
    z-index: 1;
  }
  .preview-card {
    background: var(--card);
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 24px 64px rgba(0,0,0,.35);
    border: 1px solid rgba(255,255,255,.08);
  }
  .preview-card .p-mark {
    width: 40px; height: 40px; border-radius: 10px;
    background: #1e3a8a;
    display: grid; place-items: center;
    color: #fff; font-weight: 800; font-size: 1rem;
    margin-bottom: 10px;
  }
  .preview-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0 0 2px;
  }
  .preview-card .sub { font-size: .85rem; color: var(--muted); margin-bottom: 12px; }
  .preview-call {
    background: #1e3a8a;
    color: #fff;
    border-radius: 9px;
    padding: .6rem 1rem;
    font-weight: 700;
    font-size: .9rem;
    text-align: center;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .preview-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
  }
  .preview-action {
    border: 1.5px solid #1e3a8a;
    color: #1e3a8a;
    border-radius: 9px;
    padding: .5rem;
    text-align: center;
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
  .preview-services { font-size: .8rem; color: var(--muted); }
  .preview-services span {
    display: inline-flex; align-items: center; gap: 4px;
    margin-right: 8px; margin-bottom: 4px;
  }
  .preview-services i { color: var(--ok); font-size: .8rem; }
  .preview-foot {
    font-size: .78rem;
    color: #9aabb8;
    border-top: 1px solid var(--line);
    padding-top: 8px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
  }
  .badge-cert {
    background: rgba(245,158,11,.12);
    color: #92610a;
    font-size: .72rem;
    font-weight: 700;
    padding: .2rem .55rem;
    border-radius: 50rem;
  }

  /* ─── SECTION SHARED ─── */
  .section { padding: 72px 0; }
  .section-light { background: var(--page); }
  .section-white { background: var(--card); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .section-amber { background: var(--amber); }
  .section-dark { background: var(--hero); }

  .section-label {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: .5rem;
  }
  .section-label-dark {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--amber-lt);
    margin-bottom: .5rem;
  }
  .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
  }
  .section-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin-bottom: 0;
  }

  /* ─── HOW IT WORKS ─── */
  .step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--amber-bg);
    color: var(--amber);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    display: grid;
    place-items: center;
    margin-bottom: 14px;
  }
  .step-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  .step-body { font-size: .95rem; color: var(--muted); }
  .step-connector {
    width: 48px;
    height: 2px;
    background: var(--line);
    position: absolute;
    top: 22px;
    right: -24px;
  }

  /* ─── FEATURES ─── */
  .feature-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 28px 24px;
    height: 100%;
  }
  .feature-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--amber-bg);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    color: var(--amber);
    margin-bottom: 16px;
  }
  .feature-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .feature-body { font-size: .95rem; color: var(--muted); line-height: 1.6; }

  /* ─── EXAMPLES ─── */
  .example-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 22px;
  }
  .ex-mark {
    width: 40px; height: 40px; border-radius: 10px;
    display: grid; place-items: center;
    color: #fff; font-weight: 800; font-size: 1rem;
  }
  .ex-call {
    border-radius: 9px;
    padding: .55rem;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
  }
  .ex-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 12px; }
  .ex-action {
    border-radius: 9px;
    padding: .45rem;
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    display: flex; align-items: center; justify-content: center; gap: 4px;
  }
  .ex-service-list {
    list-style: none; padding: 0; margin: 0;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .25rem .5rem;
    font-size: .82rem;
    color: var(--muted);
  }
  .ex-service-list li { display: flex; gap: 5px; align-items: flex-start; }
  .ex-service-list i { color: var(--ok); margin-top: 2px; font-size: .8rem; }
  .ex-foot {
    font-size: .78rem;
    color: #9aabb8;
    border-top: 1px solid var(--line);
    padding-top: 8px;
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* ─── PRICING ─── */
  .pricing-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
  }
  .pricing-card.featured {
    border-color: var(--amber);
    border-width: 2px;
    position: relative;
  }
  .pricing-badge {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--amber);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    padding: .25rem .7rem;
    border-radius: 50rem;
    letter-spacing: .04em;
  }
  .price-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .4rem;
  }
  .price-amount {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    margin-bottom: .25rem;
  }
  .price-amount sup { font-size: 1.5rem; vertical-align: .5rem; }
  .price-desc { font-size: .9rem; color: var(--muted); margin-bottom: 1.5rem; }
  .price-list {
    list-style: none; padding: 0; margin: 0 0 1.5rem;
  }
  .price-list li {
    display: flex; gap: 8px; align-items: flex-start;
    font-size: .95rem; margin-bottom: .6rem; color: var(--ink);
  }
  .price-list i { color: var(--ok); margin-top: 2px; flex-shrink: 0; }

  /* ─── CTA STRIP ─── */
  .cta-strip {
    background: var(--ink);
    color: #fff;
    padding: 64px 0;
    text-align: center;
  }
  .cta-strip h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: .75rem;
    letter-spacing: -.02em;
  }
  .cta-strip p { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 2rem; }

  /* ─── FOOTER ─── */
  .site-footer {
    background: var(--card);
    border-top: 1px solid var(--line);
    padding: 28px 0;
    font-size: .875rem;
    color: var(--muted);
  }
  .footer-logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    color: var(--ink);
    font-size: 1rem;
  }

  /* ─── UTILS ─── */
  .boxed { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
  .text-amber { color: var(--amber); }
  .bg-amber-soft { background: var(--amber-bg); }

  @media (max-width: 768px) {
    .hero { padding: 48px 0 56px; }
    .hero-preview { margin-top: 2rem; }
    .step-connector { display: none; }
  }

/* Ghost amber button (used on pricing page) */
.btn-ghost-amber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .65rem 1.4rem;
    border: 2px solid var(--amber);
    border-radius: 8px;
    color: var(--amber);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: background .15s, color .15s;
    cursor: pointer;
    background: transparent;
    font-family: inherit;
}
.btn-ghost-amber:hover {
    background: var(--amber);
    color: #fff;
}
