:root {
      --orange: #f47920;
      --orange-dk: #d96010;
      --orange-lt: #fff5ec;
      --dark: #12121e;
      --mid: #232338;
      --text: #1e1e30;
      --muted: #6b6b80;
      --border: #e8e8f0;
      --white: #fff;
      --bg: #f7f7fb;
      --green: #17a34a;
      --blue: #1d6fd8;
      --radius: 16px;
      --radius-sm: 10px;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'DM Sans', sans-serif; color: var(--text); background: #fff; -webkit-font-smoothing: antialiased; }
    h1,h2,h3,h4 { font-family: 'Syne', sans-serif; }

    /* ── HERO ── */
    .hero {
      background: var(--dark);
      position: relative;
      overflow: hidden;
      padding: 90px 0 80px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 900px 600px at 70% 50%, rgba(244,121,32,.18) 0%, transparent 70%),
                  radial-gradient(ellipse 500px 400px at 10% 80%, rgba(244,121,32,.10) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero-grid-bg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .hero-inner { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 2; }
    .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,121,32,.15); border: 1px solid rgba(244,121,32,.3); border-radius: 100px; padding: 5px 16px; font-size: 12px; font-weight: 600; color: var(--orange); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 22px; }
    .hero-eyebrow i { font-size: 11px; }
    .hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 22px; }
    .hero h1 em { color: var(--orange); font-style: normal; }
    .hero-desc { font-size: 17px; color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 36px; max-width: 520px; }
    .hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary { background: var(--orange); color: #fff; border: none; border-radius: var(--radius-sm); padding: 14px 28px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: 'DM Sans',sans-serif; transition: background .2s, transform .15s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
    .btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); color:#fff; }
    .btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.3); border-radius: var(--radius-sm); padding: 14px 28px; font-size: 15px; font-weight: 500; cursor: pointer; font-family: 'DM Sans',sans-serif; transition: border-color .2s, background .2s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
    .btn-outline:hover { border-color: var(--orange); background: rgba(244,121,32,.08); }
    .hero-trust { margin-top: 36px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,.55); }
    .trust-item i { color: var(--orange); font-size: 14px; }

    /* Hero card */
    .hero-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 28px; backdrop-filter: blur(12px); }
    .hc-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.4); margin-bottom: 18px; }
    .hc-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 20px; }
    .hc-stat { background: rgba(255,255,255,.06); border-radius: var(--radius-sm); padding: 16px 18px; }
    .hc-stat .num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
    .hc-stat .lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 5px; }
    .hc-stat .num em { color: var(--orange); font-style: normal; }
    .hc-activity { display: flex; flex-direction: column; gap: 10px; }
    .hc-act-item { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.05); border-radius: 10px; padding: 11px 14px; }
    .hc-act-icon { width: 34px; height: 34px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
    .hc-act-icon.orange { background: rgba(244,121,32,.2); color: var(--orange); }
    .hc-act-icon.green { background: rgba(23,163,74,.2); color: #22c55e; }
    .hc-act-icon.blue { background: rgba(29,111,216,.2); color: #60a5fa; }
    .hc-act-text .title { font-size: 13px; color: #fff; font-weight: 500; }
    .hc-act-text .sub { font-size: 11px; color: rgba(255,255,255,.45); margin-top: 1px; }
    .hc-act-badge { margin-left: auto; font-size: 11px; font-weight: 700; background: rgba(23,163,74,.2); color: #22c55e; border-radius: 20px; padding: 3px 10px; }

    /* ── WHO SECTION ── */
    .who-section { padding: 80px 0; background: var(--bg); }
    .section-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 12px; }
    .section-tag::before { content: ''; display: block; width: 20px; height: 2px; background: var(--orange); border-radius: 2px; }
    .section-title { font-family: 'Syne', sans-serif; font-size: clamp(28px, 3.5vw, 38px); font-weight: 800; color: var(--dark); line-height: 1.2; margin-bottom: 14px; }
    .section-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 580px; }
    .who-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
    .who-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; cursor: pointer; transition: border-color .2s, transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
    .who-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
    .who-card:hover { border-color: var(--orange); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(244,121,32,.12); }
    .who-card:hover::after { transform: scaleX(1); }
    .wc-icon { width: 56px; height: 56px; border-radius: 14px; background: var(--orange-lt); color: var(--orange); font-size: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .2s; }
    .who-card:hover .wc-icon { background: var(--orange); color: #fff; }
    .who-card h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .who-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
    .wc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
    .wc-tag { font-size: 11px; font-weight: 600; background: var(--bg); color: var(--muted); border-radius: 20px; padding: 3px 10px; border: 1px solid var(--border); }
    .wc-link { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--orange); margin-top: 20px; text-decoration: none; }
    .wc-link i { font-size: 12px; transition: transform .2s; }
    .who-card:hover .wc-link i { transform: translateX(4px); }

    /* ── STATS BAND ── */
    .stats-band { background: var(--dark); padding: 60px 0; }
    .stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
    .stat-item { padding: 30px 28px; border-right: 1px solid rgba(255,255,255,.08); text-align: center; }
    .stat-item:last-child { border-right: none; }
    .stat-num { font-family: 'Syne', sans-serif; font-size: 42px; font-weight: 800; color: var(--orange); line-height: 1; }
    .stat-lbl { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 8px; }

    /* ── HOW IT WORKS ── */
    .how-section { padding: 90px 0; background: #fff; }
    .how-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 60px; flex-wrap: wrap; }
    .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .steps-grid::before { content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--orange), var(--orange-dk)); z-index: 0; }
    .step-item { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
    .step-num { width: 72px; height: 72px; border-radius: 50%; border: 3px solid var(--orange); background: #fff; color: var(--orange); font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; position: relative; }
    .step-num::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; background: rgba(244,121,32,.08); }
    .step-item h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .step-item p { font-size: 13px; color: var(--muted); line-height: 1.65; }

    /* ── BENEFITS ── */
    .benefits-section { padding: 90px 0; background: var(--bg); }
    .benefits-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .benefits-list { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
    .benefit-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border); transition: border-color .2s, box-shadow .2s; }
    .benefit-item:hover { border-color: rgba(244,121,32,.4); box-shadow: 0 4px 16px rgba(244,121,32,.08); }
    .bi-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--orange-lt); color: var(--orange); font-size: 19px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .bi-content h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
    .bi-content p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    /* Visual side */
    .benefits-visual { display: flex; flex-direction: column; gap: 16px; }
    .bv-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
    .bv-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
    .bv-card-head h4 { font-size: 14px; font-weight: 700; color: var(--dark); }
    .bv-badge { font-size: 11px; font-weight: 700; background: rgba(23,163,74,.1); color: var(--green); border-radius: 20px; padding: 3px 10px; }
    .bv-badge.orange { background: var(--orange-lt); color: var(--orange); }
    .bv-badge.blue { background: rgba(29,111,216,.1); color: var(--blue); }
    .earnings-bar { display: flex; flex-direction: column; gap: 8px; }
    .ebar-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
    .ebar-label { min-width: 80px; color: var(--muted); }
    .ebar-track { flex: 1; height: 8px; background: var(--bg); border-radius: 4px; overflow: hidden; }
    .ebar-fill { height: 100%; border-radius: 4px; background: var(--orange); }
    .ebar-val { min-width: 52px; text-align: right; font-weight: 600; color: var(--dark); }
    .leads-list { display: flex; flex-direction: column; gap: 10px; }
    .lead-row { display: flex; align-items: center; gap: 10px; padding: 10px; border: 1px solid var(--border); border-radius: 8px; }
    .lead-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
    .lead-info .name { font-size: 13px; font-weight: 600; color: var(--dark); }
    .lead-info .req { font-size: 11px; color: var(--muted); }
    .lead-time { margin-left: auto; font-size: 11px; color: var(--muted); }
    .lead-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

    /* ── PLANS ── */
    .plans-section { padding: 90px 0; background: #fff; }
    .plans-header { text-align: center; margin-bottom: 50px; }
    .plans-header .section-sub { margin: 0 auto; }
    .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .plan-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px 28px; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
    .plan-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,.08); }
    .plan-card.featured { border-color: var(--orange); position: relative; }
    .plan-card.featured::before { content: 'Most Popular'; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 20px; letter-spacing: .5px; white-space: nowrap; }
    .plan-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--orange-lt); color: var(--orange); font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
    .plan-card.featured .plan-icon { background: var(--orange); color: #fff; }
    .plan-name { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 6px; }
    .plan-price { font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 4px; }
    .plan-price span { font-size: 15px; color: var(--muted); font-weight: 400; }
    .plan-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
    .plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
    .plan-features li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--text); }
    .plan-features li i.fa-check { color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 3px; }
    .plan-features li i.fa-xmark { color: #ccc; font-size: 13px; flex-shrink: 0; margin-top: 3px; }
    .plan-features li.dim { color: var(--muted); }
    .plan-btn { border-radius: var(--radius-sm); padding: 13px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; font-family: 'DM Sans', sans-serif; border: none; width: 100%; }
    .plan-btn.outline { background: transparent; border: 1.5px solid var(--border); color: var(--dark); }
    .plan-btn.outline:hover { border-color: var(--orange); color: var(--orange); }
    .plan-btn.fill { background: var(--orange); color: #fff; }
    .plan-btn.fill:hover { background: var(--orange-dk); }

    /* ── TESTIMONIALS ── */
    .testimonials-section { padding: 80px 0; background: var(--bg); }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
    .testi-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
    .testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
    .testi-stars i { color: #f59e0b; font-size: 14px; }
    .testi-quote { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .ta-avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
    .ta-name { font-size: 14px; font-weight: 700; color: var(--dark); }
    .ta-role { font-size: 12px; color: var(--muted); }
    .testi-tag { margin-left: auto; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; background: var(--orange-lt); color: var(--orange); border-radius: 20px; padding: 3px 10px; }

    /* ── FAQ ── */
    .faq-section { padding: 80px 0; background: #fff; }
    .faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--dark); }
    .faq-q i { color: var(--orange); font-size: 14px; transition: transform .25s; flex-shrink: 0; }
    .faq-a { font-size: 14px; color: var(--muted); line-height: 1.75; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
    .faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }
    .faq-item.open .faq-q i { transform: rotate(45deg); }

    /* ── CTA BANNER ── */
    .cta-banner { background: var(--dark); padding: 80px 0; position: relative; overflow: hidden; }
    .cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 700px 500px at 80% 50%, rgba(244,121,32,.2) 0%, transparent 60%); pointer-events: none; }
    .cta-inner { position: relative; z-index: 2; text-align: center; }
    .cta-inner h2 { font-family: 'Syne', sans-serif; font-size: clamp(30px, 4vw, 48px); font-weight: 800; color: #fff; margin-bottom: 16px; }
    .cta-inner h2 em { color: var(--orange); font-style: normal; }
    .cta-inner p { font-size: 16px; color: rgba(255,255,255,.6); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
    .cta-btn-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
    .cta-stats { display: flex; justify-content: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
    .cta-stat { text-align: center; }
    .cta-stat .num { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: var(--orange); }
    .cta-stat .lbl { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }

    /* ── PARTNER LOGOS ── */
    .partners-strip { padding: 40px 0; background: var(--bg); border-top: 1px solid var(--border); }
    .partners-label { text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 24px; }
    .logos-row { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .logo-pill { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 10px 22px; font-family: 'Syne', sans-serif; font-size: 15px; font-weight: 700; color: var(--muted); }

    /* FADE IN */
    .fade-in { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── FOOTER ── */
    footer { background: var(--dark); color: rgba(255,255,255,.75); }
    footer .brand-text { color: var(--orange); font-size: 20px; }
    footer .brand-text span { color: #fff; }
    footer p { font-size: 12px; line-height: 1.7; color: #fff; }
    footer h6 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; }
    footer ul { list-style: none; padding: 0; margin: 0; }
    footer ul li { margin-bottom: 7px; }
    footer ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: 12px; transition: .2s; }
    footer ul li a:hover { color: var(--orange); }
    .footer-bottom { background: rgba(0,0,0,.3); font-size: 11px; color: rgba(255,255,255,.5); }
    .social-icons a { color: rgba(255,255,255,.6); font-size: 16px; margin-right: 12px; transition: .2s; }
    .social-icons a:hover { color: var(--orange); }
    .contact-info { font-size: 12px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 8px; }
    .contact-info i { color: var(--orange); }


    @media (max-width: 900px) {
      .hero-inner, .benefits-inner, .faq-inner { grid-template-columns: 1fr; }
      .who-cards, .testi-grid, .plans-grid { grid-template-columns: 1fr; }
      .stats-inner, .steps-grid { grid-template-columns: 1fr 1fr; }
      .steps-grid::before { display: none; }
      .hero-card { display: none; }
    }