﻿    /* ════════════════════════════════════════
       DESIGN TOKENS
    ════════════════════════════════════════ */
    :root {
      --sp-green:   #09cd91;
      --sp-green-d: #07b07c;
      --sp-blue:    #4fc3f7;
      --sp-purple:  #7c6dfa;
      --sp-amber:   #ffb74d;
      --sp-rose:    #f06292;
      --sp-teal:    #26c6da;
      --card-bg:    rgba(255,255,255,0.035);
      --card-border:rgba(255,255,255,0.07);
      --muted:      rgba(200,208,220,0.65);
      --rx:         20px;
      --tr:         0.25s ease;
    }

    /* ════════════════════════════════════════
       GLOBAL HELPERS
    ════════════════════════════════════════ */
    .sp-grad {background:linear-gradient(135deg,var(--sp-green) 0%,var(--sp-blue) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
    .sp-grad-purple {background:linear-gradient(135deg,var(--sp-purple) 0%,var(--sp-teal) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
    .sp-divider {border:none;border-top:1px solid rgba(255,255,255,.06);margin:0}
    .sp-label {display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:700;color:var(--sp-green);letter-spacing:.1em;text-transform:uppercase;margin-bottom:14px}
    .sp-section-title {font-size:clamp(1.75rem,3.5vw,2.6rem);font-weight:800;color:#f0f4f8;line-height:1.2;letter-spacing:-.02em;margin-bottom:16px}
    .sp-section-sub {font-size:.98rem;color:var(--muted);line-height:1.75;max-width:580px;margin:0 auto}
    .sp-section {padding:96px 20px}
    .sp-section-alt {padding:96px 20px;background:rgba(255,255,255,.018);border-top:1px solid rgba(255,255,255,.06);border-bottom:1px solid rgba(255,255,255,.06)}

    /* ════════════════════════════════════════
       1. HERO
    ════════════════════════════════════════ */
    .sp-hero {
      position: relative;
      padding: 110px 20px 80px;
      overflow: hidden;
      text-align: center;
    }
    .sp-hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 60% at 50% -10%, rgba(9,205,145,.13) 0%, transparent 65%),
        radial-gradient(ellipse 50% 50% at 80% 60%, rgba(79,195,247,.08) 0%, transparent 60%);
    }
    .sp-hero-grid {
      position: absolute; inset: 0; opacity: .4;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .sp-hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
    .sp-hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(9,205,145,.1); border: 1px solid rgba(9,205,145,.22);
      color: var(--sp-green); border-radius: 50px; padding: 6px 18px;
      font-size: .78rem; font-weight: 700; letter-spacing: .06em;
      text-transform: uppercase; margin-bottom: 24px;
    }
    .sp-hero-badge-dot {width:7px;height:7px;border-radius:50%;background:var(--sp-green);animation:sp-pulse 2s infinite}
    @keyframes sp-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.5;transform:scale(.8)}}
    .sp-hero-title {font-size:clamp(2.4rem,5.5vw,4rem);font-weight:900;color:#fff;line-height:1.08;letter-spacing:-.03em;margin-bottom:20px}
    .sp-hero-sub {font-size:1.08rem;color:var(--muted);line-height:1.75;max-width:560px;margin:0 auto 40px}

    /* Search bar */
    .sp-search-wrap {position:relative;max-width:580px;margin:0 auto 36px}
    .sp-search-input {
      width: 100%; padding: 16px 56px 16px 52px;
      background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
      border-radius: 14px; color: #fff; font-size: .97rem;
      outline: none; transition: border-color var(--tr), box-shadow var(--tr);
    }
    .sp-search-input::placeholder {color:rgba(255,255,255,.35)}
    .sp-search-input:focus {border-color:rgba(9,205,145,.45);box-shadow:0 0 0 3px rgba(9,205,145,.12)}
    .sp-search-icon {position:absolute;left:18px;top:50%;transform:translateY(-50%);opacity:.4;pointer-events:none}
    .sp-search-shortcut {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.35); font-size: .7rem; font-weight: 600;
      padding: 3px 8px; border-radius: 6px; pointer-events: none;
    }

    /* Popular quick-links */
    .sp-quick-links {display:flex;flex-wrap:wrap;justify-content:center;gap:10px}
    .sp-quick-link {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09);
      color: rgba(200,208,220,.75); border-radius: 50px;
      padding: 7px 14px; font-size: .8rem; font-weight: 500;
      text-decoration: none; transition: var(--tr);
    }
    .sp-quick-link:hover {border-color:rgba(9,205,145,.3);color:var(--sp-green);text-decoration:none;transform:translateY(-2px)}

    /* ════════════════════════════════════════
       2. STATS STRIP
    ════════════════════════════════════════ */
    .sp-stats {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 1px; background: var(--card-border);
      border-radius: var(--rx); overflow: hidden; margin: 0 auto;
    }
    .sp-stat {background:#0b0e14;padding:28px 20px;text-align:center}
    .sp-stat-val {font-size:1.9rem;font-weight:800;line-height:1}
    .sp-stat-label {font-size:.77rem;color:var(--muted);margin-top:6px;font-weight:500}

    /* ════════════════════════════════════════
       3. CATEGORY CARDS
    ════════════════════════════════════════ */
    .sp-cat-card {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: var(--rx); padding: 28px; height: 100%;
      text-decoration: none; display: block;
      transition: transform var(--tr), border-color var(--tr), background var(--tr);
    }
    .sp-cat-card:hover {transform:translateY(-5px);text-decoration:none}
    .sp-cat-icon {width:52px;height:52px;border-radius:15px;display:flex;align-items:center;justify-content:center;margin-bottom:18px;font-size:1.4rem}
    .sp-cat-title {font-size:1.05rem;font-weight:700;color:#f0f4f8;margin-bottom:8px}
    .sp-cat-desc {font-size:.85rem;color:var(--muted);line-height:1.65;margin-bottom:18px}
    .sp-cat-count {font-size:.75rem;font-weight:600;color:var(--muted)}
    .sp-cat-arrow {display:flex;align-items:center;justify-content:space-between;margin-top:14px;padding-top:14px;border-top:1px solid rgba(255,255,255,.06)}
    .sp-cat-arrow-label {font-size:.8rem;font-weight:600}
    /* per-card accent */
    .sp-cat-green  {border-color:rgba(9,205,145,.12)} .sp-cat-green:hover  {border-color:rgba(9,205,145,.3);background:rgba(9,205,145,.04)}
    .sp-cat-blue   {border-color:rgba(79,195,247,.12)} .sp-cat-blue:hover   {border-color:rgba(79,195,247,.3);background:rgba(79,195,247,.04)}
    .sp-cat-purple {border-color:rgba(124,109,250,.12)} .sp-cat-purple:hover {border-color:rgba(124,109,250,.3);background:rgba(124,109,250,.04)}
    .sp-cat-amber  {border-color:rgba(255,183,77,.12)} .sp-cat-amber:hover  {border-color:rgba(255,183,77,.3);background:rgba(255,183,77,.04)}
    .sp-cat-rose   {border-color:rgba(240,98,146,.12)} .sp-cat-rose:hover   {border-color:rgba(240,98,146,.3);background:rgba(240,98,146,.04)}
    .sp-cat-teal   {border-color:rgba(38,198,218,.12)} .sp-cat-teal:hover   {border-color:rgba(38,198,218,.3);background:rgba(38,198,218,.04)}

    /* ════════════════════════════════════════
       4. POPULAR ARTICLES
    ════════════════════════════════════════ */
    .sp-article-row {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.05);
      text-decoration: none; transition: var(--tr);
    }
    .sp-article-row:last-child {border-bottom:none}
    .sp-article-row:hover {text-decoration:none}
    .sp-article-row:hover .sp-article-title {color:var(--sp-green)}
    .sp-article-num {font-size:.8rem;font-weight:700;color:rgba(255,255,255,.2);width:24px;flex-shrink:0;padding-top:2px}
    .sp-article-body {flex:1;min-width:0}
    .sp-article-tag {display:inline-block;font-size:.68rem;font-weight:700;padding:2px 8px;border-radius:20px;margin-bottom:6px;letter-spacing:.04em}
    .sp-article-title {font-size:.9rem;font-weight:600;color:#ecf0f8;line-height:1.45;margin-bottom:4px;transition:color var(--tr)}
    .sp-article-meta {font-size:.75rem;color:var(--muted)}
    .sp-article-icon {width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}

    /* ════════════════════════════════════════
       5. CONTACT CHANNELS
    ════════════════════════════════════════ */
    .sp-channel-card {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: var(--rx); padding: 30px 28px; height: 100%;
      transition: transform var(--tr), border-color var(--tr);
    }
    .sp-channel-card:hover {transform:translateY(-4px)}
    .sp-channel-icon {width:52px;height:52px;border-radius:15px;display:flex;align-items:center;justify-content:center;margin-bottom:18px}
    .sp-channel-title {font-size:1rem;font-weight:700;color:#f0f4f8;margin-bottom:8px}
    .sp-channel-desc {font-size:.85rem;color:var(--muted);line-height:1.65;margin-bottom:20px}
    .sp-channel-badge {display:inline-flex;align-items:center;gap:5px;font-size:.75rem;font-weight:600;padding:4px 10px;border-radius:20px;margin-bottom:18px}
    .sp-channel-btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 11px 22px; border-radius: 10px; font-size: .85rem; font-weight: 600;
      text-decoration: none; transition: var(--tr); width: 100%; justify-content: center;
    }
    .sp-channel-btn:hover {transform:translateY(-2px);text-decoration:none;opacity:.88}

    /* ════════════════════════════════════════
       6. ONBOARDING STEPS
    ════════════════════════════════════════ */
    .sp-step {display:flex;gap:20px;margin-bottom:32px}
    .sp-step:last-child {margin-bottom:0}
    .sp-step-num {
      width: 40px; height: 40px; border-radius: 12px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem; font-weight: 800;
      background: linear-gradient(135deg,var(--sp-green),var(--sp-green-d));
      color: #050e1c;
    }
    .sp-step-title {font-size:.95rem;font-weight:700;color:#ecf0f8;margin-bottom:6px}
    .sp-step-desc {font-size:.85rem;color:var(--muted);line-height:1.65}

    /* ════════════════════════════════════════
       7. STATUS BANNER
    ════════════════════════════════════════ */
    .sp-status-bar {
      background: rgba(9,205,145,.07); border: 1px solid rgba(9,205,145,.18);
      border-radius: 14px; padding: 16px 24px;
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; flex-wrap: wrap; margin-bottom: 48px;
    }
    .sp-status-left {display:flex;align-items:center;gap:12px}
    .sp-status-dot {width:10px;height:10px;border-radius:50%;background:var(--sp-green);box-shadow:0 0 0 3px rgba(9,205,145,.2);animation:sp-pulse 2s infinite;flex-shrink:0}
    .sp-status-text {font-size:.88rem;font-weight:600;color:#ecf0f8}
    .sp-status-sub {font-size:.78rem;color:var(--muted);margin-top:1px}
    .sp-status-link {font-size:.8rem;font-weight:600;color:var(--sp-green);text-decoration:none;white-space:nowrap}
    .sp-status-link:hover {text-decoration:underline;color:var(--sp-green)}

    /* ════════════════════════════════════════
       8. FAQ ACCORDION
    ════════════════════════════════════════ */
    .sp-faq-item {
      background: var(--card-bg); border: 1px solid var(--card-border);
      border-radius: 14px; margin-bottom: 10px; overflow: hidden;
      transition: border-color var(--tr);
    }
    .sp-faq-item.open {border-color:rgba(9,205,145,.25)}
    .sp-faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 22px; cursor: pointer; gap: 12px;
    }
    .sp-faq-q-text {font-size:.92rem;font-weight:600;color:#ecf0f8;flex:1}
    .sp-faq-chevron {width:20px;height:20px;flex-shrink:0;transition:transform var(--tr);color:var(--muted)}
    .sp-faq-item.open .sp-faq-chevron {transform:rotate(180deg);color:var(--sp-green)}
    .sp-faq-a {max-height:0;overflow:hidden;transition:max-height .35s ease}
    .sp-faq-a-inner {padding:0 22px 18px;font-size:.87rem;color:var(--muted);line-height:1.75}
    .sp-faq-item.open .sp-faq-a {max-height:400px}

    /* ════════════════════════════════════════
       9. CTA
    ════════════════════════════════════════ */
    .sp-cta-section {padding:96px 20px;position:relative;overflow:hidden}
    .sp-cta-bg {
      position:absolute;inset:0;
      background:
        radial-gradient(ellipse 60% 80% at 20% 50%,rgba(9,205,145,.12) 0%,transparent 65%),
        radial-gradient(ellipse 50% 70% at 80% 50%,rgba(79,195,247,.1) 0%,transparent 65%),
        rgba(255,255,255,.022);
      border-top:1px solid rgba(255,255,255,.07);
      border-bottom:1px solid rgba(255,255,255,.07);
    }
    .sp-cta-inner {position:relative;z-index:1;text-align:center}
    .sp-cta-title {font-size:clamp(2rem,4vw,3.2rem);font-weight:800;color:#f0f4f8;line-height:1.15;letter-spacing:-.02em;margin-bottom:18px}
    .sp-cta-sub {font-size:1rem;color:var(--muted);line-height:1.7;max-width:460px;margin:0 auto 40px}
    .sp-btn-primary {
      display:inline-flex;align-items:center;gap:8px;
      background:linear-gradient(135deg,var(--sp-green) 0%,var(--sp-green-d) 100%);
      color:#050e1c;font-weight:700;font-size:.92rem;padding:14px 32px;
      border-radius:11px;text-decoration:none;transition:opacity var(--tr),transform var(--tr);
    }
    .sp-btn-primary:hover {opacity:.88;transform:translateY(-2px);color:#050e1c;text-decoration:none}
    .sp-btn-ghost {
      display:inline-flex;align-items:center;gap:8px;
      background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);
      color:#ecf0f8;font-weight:600;font-size:.92rem;padding:14px 32px;
      border-radius:11px;text-decoration:none;transition:var(--tr);
    }
    .sp-btn-ghost:hover {border-color:rgba(9,205,145,.35);color:var(--sp-green);transform:translateY(-2px);text-decoration:none}

    @media(max-width:768px){
      .sp-stats{grid-template-columns:repeat(2,1fr)}
      .sp-hero {padding:90px 20px 60px}
    }
    /* ════ FAQ ACCORDION ════ */
    .sp-faq-accordion .accordion-item{background:var(--card-bg);border:1px solid var(--card-border);border-radius:12px!important;margin-bottom:10px;overflow:hidden}
    .sp-faq-accordion .accordion-button{background:transparent;color:#f0f4f8;font-weight:600;font-size:.97rem;box-shadow:none;padding:18px 22px}
    .sp-faq-accordion .accordion-button:not(.collapsed){color:var(--sp-green);background:rgba(9,205,145,.05)}
    .sp-faq-accordion .accordion-button::after{filter:invert(1) brightness(0.7)}
    .sp-faq-accordion .accordion-button:not(.collapsed)::after{filter:invert(0) sepia(1) saturate(3) hue-rotate(120deg)}
    .sp-faq-accordion .accordion-body{color:var(--muted);font-size:.92rem;line-height:1.75;padding:0 22px 20px}
