 /* ─── TOKENS ──────────────────────────────────────────────── */
    :root {
      --primary:   #212a63;
      --primary-dark: #161d47;
      --primary-light: #2e3b80;
      --secondary: #6c757d;
      --gold:      #c9a84c;
      --gold-light: #f0d080;
      --surface:   #f4f6fb;
      --border:    #dce1f0;
      --text:      #1a1f3a;
      --text-muted: #6c757d;
      --white:     #ffffff;
    }

    /* ─── BASE ────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      overflow-x: clip; /* clip doesn't create a scroll container, so sticky still works */
    }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: clip;
    }

    /* ─── BOOTSTRAP OVERRIDES / CUSTOM CLASSES ─────────────────── */
    .bg-primary-custom        { background-color: var(--primary) !important; }
    .text-primary-custom      { color: var(--primary) !important; }
    .border-primary-custom    { border-color: var(--primary) !important; }
    .btn-primary-custom {
      background-color: var(--primary);
      border-color: var(--primary);
      color: var(--white);
      font-weight: 600;
      letter-spacing: .3px;
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-primary-custom:hover {
      background-color: var(--primary-light);
      border-color: var(--primary-light);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(33,42,99,.28);
    }
    .btn-outline-primary-custom {
      border: 2px solid var(--primary);
      color: var(--primary);
      font-weight: 600;
      background: transparent;
      transition: all .2s;
    }
    .btn-outline-primary-custom:hover {
      background: var(--primary);
      color: var(--white);
    }

    /* ─── NAVBAR ──────────────────────────────────────────────── */
    .site-nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 16px rgba(33,42,99,.07);
    }
    .nav-logo-img {
      width: 38px; height: 38px;
      border-radius: 8px;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-weight: 800; color: var(--gold);
      letter-spacing: -1px;
      flex-shrink: 0;
    }
    .nav-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--primary); line-height: 1.2; }
    .nav-logo-sub  { font-size: .65rem; font-weight: 400; color: var(--secondary); display: block; }
    .site-nav .nav-link {
      font-weight: 500; font-size: .9rem; color: var(--text);
      padding: .5rem .9rem;
      transition: color .2s;
    }
    .site-nav .nav-link:hover { color: var(--primary); }

    /* ─── HERO ────────────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
      position: relative;
      overflow: hidden;
      padding: 96px 0 80px;
      color: var(--white);
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(circle at 80% 20%, rgba(201,168,76,.12) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(255,255,255,.04) 0%, transparent 40%);
    }
    /* geometric pattern */
    .hero-pattern {
      position: absolute; right: -60px; top: -60px;
      width: 520px; height: 520px; opacity: .06;
      background-image: repeating-conic-gradient(var(--gold) 0deg 10deg, transparent 10deg 20deg);
      border-radius: 50%;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(201,168,76,.18);
      border: 1px solid rgba(201,168,76,.4);
      border-radius: 50px; padding: 6px 14px;
      font-size: .78rem; font-weight: 600; color: var(--gold-light);
      letter-spacing: .4px; margin-bottom: 20px;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.6rem);
      font-weight: 800; line-height: 1.12;
      letter-spacing: -1px;
      margin-bottom: 18px;
    }
    .hero h1 span { color: var(--gold-light); }
    .hero p.lead {
      font-size: 1.1rem; font-weight: 400;
      color: rgba(255,255,255,.78);
      max-width: 520px; line-height: 1.7;
      margin-bottom: 32px;
    }
    .hero-mockup {
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 16px;
      aspect-ratio: 16/10;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(8px);
      box-shadow: 0 32px 64px rgba(0,0,0,.28);
      flex-direction: column; gap: 10px;
      color: rgba(255,255,255,.55);
      font-size: .85rem; font-weight: 500;
      position: relative; overflow: hidden;
    }
    .hero-mockup::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 36px;
      background: rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .hero-mockup i { font-size: 2.8rem; color: rgba(255,255,255,.25); }
    .hero-stats {
      display: flex; gap: 28px; flex-wrap: wrap;
      margin-top: 36px;
    }
    .hero-stat { text-align: left; }
    .hero-stat .num { font-size: 1.7rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
    .hero-stat .lbl { font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .6px; margin-top: 2px; }

    /* ─── SECTION LABELS ──────────────────────────────────────── */
    .section-eyebrow {
      display: inline-block;
      font-size: .72rem; font-weight: 700; letter-spacing: 1.2px;
      text-transform: uppercase; color: var(--primary);
      background: rgba(33,42,99,.08);
      padding: 5px 12px; border-radius: 50px;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.7rem, 3vw, 2.4rem);
      font-weight: 800; color: var(--text); line-height: 1.2;
      letter-spacing: -.5px;
    }
    .section-sub {
      font-size: 1rem; color: var(--text-muted); line-height: 1.7;
      max-width: 580px;
    }

    /* ─── FEATURE CARDS ───────────────────────────────────────── */
    .feature-section { padding: 88px 0; background: var(--white); }
    .feature-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      height: 100%;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      cursor: default;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(33,42,99,.12);
      border-color: rgba(33,42,99,.25);
    }
    .feature-icon-wrap {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(33,42,99,.08);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      font-size: 1.4rem; color: var(--primary);
      transition: background .2s;
    }
    .feature-card:hover .feature-icon-wrap { background: var(--primary); color: var(--white); }
    .feature-card h5 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
    .feature-card p  { font-size: .88rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
    .feature-tag {
      display: inline-block;
      background: var(--surface);
      color: var(--primary);
      font-size: .7rem; font-weight: 600;
      border-radius: 50px; padding: 3px 10px;
      margin: 2px;
    }

    /* ─── HOW IT WORKS ────────────────────────────────────────── */
    .how-section { padding: 80px 0; background: var(--surface); }
    .step-circle {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--primary); color: var(--white);
      font-weight: 800; font-size: 1.05rem;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .step-line { flex: 1; height: 2px; background: var(--border); }
    .step-item { padding: 22px; background: var(--white); border-radius: 14px; border: 1px solid var(--border); }

    /* ─── TUTORIALS ───────────────────────────────────────────── */
    .tutorials-section { padding: 88px 0; background: var(--white); }
    .tutorial-list { display: flex; flex-direction: column; gap: 0; }
    .tutorial-item {
      display: flex; gap: 24px; align-items: flex-start;
      padding: 28px 0;
      border-bottom: 1px solid var(--border);
      transition: background .15s;
      min-width: 0; /* prevents flex children from overflowing */
    }
    .tutorial-item:first-child { border-top: 1px solid var(--border); }
    .tutorial-thumb {
      position: relative; flex-shrink: 0;
      width: 200px; border-radius: 10px; overflow: hidden;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      aspect-ratio: 16/9;
      display: flex; align-items: center; justify-content: center;
    }
    /* Video embed wrapper — maintains 16:9 inside the thumbnail */
    .tutorial-thumb .video-wrapper {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
    }
    .tutorial-thumb .video-wrapper iframe {
      width: 100%; height: 100%;
      border: none;
    }
    .tutorial-play {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,.9);
      display: flex; align-items: center; justify-content: center;
      color: var(--primary); font-size: 1rem;
      box-shadow: 0 4px 16px rgba(0,0,0,.2);
      transition: transform .2s, box-shadow .2s;
      cursor: pointer;
    }
    .tutorial-thumb:hover .tutorial-play { transform: scale(1.12); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
    .tutorial-thumb .t-label {
      position: absolute; bottom: 6px; right: 8px;
      font-size: .65rem; font-weight: 700;
      background: rgba(0,0,0,.55); color: rgba(255,255,255,.9);
      padding: 2px 7px; border-radius: 4px;
    }
    .tutorial-meta { flex: 1; min-width: 0; overflow: hidden; }
    .tutorial-cat {
      font-size: .68rem; font-weight: 700; letter-spacing: .8px;
      text-transform: uppercase; color: var(--primary);
      margin-bottom: 6px;
    }
    .tutorial-meta h5 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; line-height: 1.35; }
    .tutorial-meta p  { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 10px; }
    .tutorial-pills { display: flex; flex-wrap: wrap; gap: 5px; }
    .tutorial-pill {
      font-size: .68rem; font-weight: 600;
      padding: 3px 10px; border-radius: 50px;
      background: var(--surface); color: var(--text-muted);
    }
    .tutorial-pill.active { background: rgba(33,42,99,.1); color: var(--primary); }
    .tutorial-num {
      width: 32px; height: 32px; border-radius: 50%;
      border: 2px solid var(--border);
      color: var(--text-muted);
      font-size: .8rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 4px;
    }

    /* ─── REPORTS ─────────────────────────────────────────────── */
    .reports-section { padding: 88px 0; background: var(--surface); }
    .report-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 26px 24px;
      height: 100%;
      transition: transform .2s, box-shadow .2s;
    }
    .report-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(33,42,99,.1); }
    .report-icon {
      font-size: 1.8rem; color: var(--primary);
      margin-bottom: 14px; display: block;
    }
    .report-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .report-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

    /* ─── CTA SECTION ─────────────────────────────────────────── */
    .cta-section {
      padding: 88px 0;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      color: var(--white);
      position: relative;
      overflow: hidden; /* contains the decorative ::after circle */
    }
    .cta-section::after {
      content: '';
      position: absolute; right: -80px; bottom: -80px;
      width: 360px; height: 360px; border-radius: 50%;
      border: 60px solid rgba(255,255,255,.04);
    }
    .cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -.5px; }
    .cta-section p   { color: rgba(255,255,255,.72); font-size: 1.05rem; }

    /* ─── FOOTER ──────────────────────────────────────────────── */
    footer {
      background: var(--primary-dark);
      color: rgba(255,255,255,.55);
      padding: 48px 0 28px;
      font-size: .85rem;
    }
    footer .footer-brand { font-size: 1rem; font-weight: 700; color: var(--white); }
    footer a { color: rgba(255,255,255,.5); text-decoration: none; transition: color .2s; }
    footer a:hover { color: var(--gold-light); }
    .footer-divider { border-color: rgba(255,255,255,.08); margin: 28px 0 20px; }

    /* ─── COMPANY SECTION ─────────────────────────────────────── */
    .company-section { padding: 64px 0; border-top: 1px solid var(--border); }
    .company-logo-placeholder {
      width: 80px; height: 80px; border-radius: 16px;
      /* background: var(--surface); border: 2px solid var(--border); */
      display: flex; align-items: center; justify-content: center;
      font-size: .6rem; font-weight: 700; color: var(--text-muted);
      text-align: center; line-height: 1.3;
    }

    /* ─── ANIMATIONS ──────────────────────────────────────────── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .fade-up { animation: fadeUp .55s ease both; }
    .delay-1 { animation-delay: .1s; }
    .delay-2 { animation-delay: .2s; }
    .delay-3 { animation-delay: .3s; }
    .delay-4 { animation-delay: .4s; }

    /* ─── UTILITY ─────────────────────────────────────────────── */
    .divider-gold { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 14px 0 20px; }
    .gold-text { color: var(--gold); }
    @media (max-width: 767px) {
      .tutorial-item { flex-direction: column; gap: 14px; }
      .tutorial-thumb { width: 100%; max-width: 100%; }
      .tutorial-num { display: none; }
      .hero-stats { gap: 18px; }
      .hero { padding: 64px 0 56px; }
    }
