    :root{
        --brand-soft:rgba(31,182,213,.16);
      /*--brand:#1FB6D5;
      --brand-dark:#1593AC;
      --brand-deep:#0C8FB0;
      --brand-soft:rgba(31,182,213,.16);
      --brand-soft-2:rgba(31,182,213,.22);
      --brand-glow: rgba(31, 182, 213, 0.4);
      --bg:#071821;
      --bg-2:#071C26;
      --surface:#0B2230;
      --surface-light: rgba(15, 45, 64, 0.6);
      --text:#EAF4FA;
      --muted:#B9D0DD;
      --muted-light:#8FA3B0;
      --border:rgba(234,244,250,.12);
      --border-light:rgba(234,244,250,.08);
      --shadow-sm:0 12px 30px rgba(0,0,0,.35);
      --shadow-md:0 20px 60px rgba(0,0,0,.45);
      --shadow-lg:0 30px 80px rgba(0,0,0,.55);
      --radius:20px;
      --radius-lg:28px;
      --radius-xl:34px;
      --nav-h:76px;
      --ring:0 0 0 4px rgba(31,182,213,.18);*/


      --silver-1:#F2F5F8;
      --silver-2:#C9D3DD;
      --silver-3:#9AA6B2;
      --silver-text:#071821;
      --silver-shadow:0 12px 26px rgba(0,0,0,.22);
    }

    /* HERO SECTION - FAQ */
    .faq-hero{
      padding-top:calc(var(--nav-h) + 40px);
      padding-bottom: 80px;
      background: linear-gradient(180deg, var(--bg) 0%, rgba(7,24,33,0.95) 100%);
      position: relative;
      overflow: hidden;
    }
    /* ✅ Fix hero readability in light mode (matches other pages) */
    html[data-theme="light"] .faq-hero{
      background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    }

    .faq-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(900px 520px at 70% 16%, rgba(31,182,213,.10), transparent 58%),
        radial-gradient(700px 440px at 20% 70%, rgba(31,182,213,.08), transparent 60%);
      pointer-events:none;
      z-index:0;
    }
    html[data-theme="light"] .faq-hero::before{
      background:
        radial-gradient(900px 520px at 70% 16%, rgba(31,182,213,.14), transparent 60%),
        radial-gradient(700px 440px at 20% 70%, rgba(31,182,213,.10), transparent 62%);
    }
    .faq-hero::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(180deg, transparent 0%, rgba(7,24,33,.32) 100%);
      pointer-events:none;
      z-index:0;
    }
    html[data-theme="light"] .faq-hero::after{
      background: linear-gradient(180deg, transparent 0%, rgba(11,31,42,.06) 100%);
    }

    .faq-hero-content{
      position:relative;
      z-index:1;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 16px;
      border-radius:999px;
      background: rgba(31,182,213,.12);
      border: 1px solid rgba(31,182,213,.22);
      color: var(--brand);
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-size: .74rem;
      line-height: 1;
      margin-bottom: 20px;
      user-select: none;
    }
    html[data-theme="light"] .hero-kicker{
      background: rgba(31,182,213,.10);
      border: 1px solid rgba(31,182,213,.18);
    }

    .hero-title{
      color: var(--text);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 900;
      letter-spacing: -0.04em;
      line-height: 1.05;
      margin-bottom: 16px;
      text-shadow: 0 1px 0 rgba(0,0,0,.08);
    }
    html[data-theme="light"] .hero-title{ text-shadow:none; }

    .hero-sub{
      color: var(--muted);
      margin-bottom: 32px;
      font-size: 1.15rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }
    html[data-theme="light"] .hero-sub{ color:#3E4C56; }

    /* SEARCH BAR */
    .search-container{
      max-width: 600px;
      margin: 0 auto 40px;
      position: relative;
    }

    .search-bar{
      width: 100%;
      padding: 18px 24px;
      padding-left: 60px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      color: var(--text);
      font-size: 1rem;
      font-weight: 500;
      transition: all 0.25s ease;
      box-shadow: var(--shadow-sm);
    }

    .search-bar:focus{
      outline: none;
      border-color: var(--brand);
      box-shadow: 0 0 0 4px var(--brand-soft), var(--shadow-md);
    }

    .search-icon{
      position: absolute;
      left: 24px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 1.2rem;
    }

    /* FAQ CATEGORIES */
    .faq-categories{
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
      margin-bottom: 60px;
    }

    .category-card{
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 28px;
      text-align: center;
      transition: all 0.3s ease;
      cursor: pointer;
      box-shadow: var(--shadow-sm);
    }

    .category-card:hover{
      transform: translateY(-5px);
      border-color: var(--brand);
      box-shadow: 0 20px 40px rgba(31,182,213,.15), var(--shadow-md);
    }

    .category-icon{
      width: 64px;
      height: 64px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: white;
      font-size: 1.8rem;
      box-shadow: 0 10px 20px rgba(31,182,213,.25);
    }

    /* ✅ Silver badge icon style (matches your bubble-check idea, but clean + SaaS) */
    .category-icon--silver{
      background: linear-gradient(135deg, var(--silver-1) 0%, var(--silver-2) 50%, var(--silver-3) 100%);
      color: var(--silver-text);
      box-shadow: var(--silver-shadow);
      border: 1px solid rgba(255,255,255,.45);
    }
    html[data-theme="dark"] .category-icon--silver{
      border-color: rgba(255,255,255,.22);
    }
    .category-icon--silver i{
      filter: drop-shadow(0 10px 16px rgba(0,0,0,.16));
    }

    .category-title{
      font-weight: 800;
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: var(--text);
    }

    .category-count{
      color: var(--muted);
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* FAQ ACCORDION */
    .faq-section{ margin-bottom: 50px; }

    .section-header{
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 25px;
      padding-bottom: 15px;
      border-bottom: 1px solid var(--border);
    }

    .section-icon{
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: var(--brand-soft);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--brand);
      font-size: 1.3rem;
    }
    .section-icon--silver{
      background: linear-gradient(135deg, rgba(242,245,248,.40) 0%, rgba(201,211,221,.34) 50%, rgba(154,166,178,.28) 100%);
      color: var(--text);
      border: 1px solid rgba(255,255,255,.12);
    }
    html[data-theme="light"] .section-icon--silver{
      color: #0B1F2A;
      border-color: rgba(11,31,42,.10);
      background: linear-gradient(135deg, rgba(242,245,248,.75) 0%, rgba(201,211,221,.55) 50%, rgba(154,166,178,.42) 100%);
    }

    .section-title{
      font-weight: 900;
      font-size: 1.8rem;
      color: var(--text);
      margin: 0;
    }

    .faq-accordion{
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    .faq-item{ border-bottom: 1px solid var(--border); }
    .faq-item:last-child{ border-bottom: none; }

    .faq-question{
      padding: 24px 28px;
      background: transparent;
      border: none;
      width: 100%;
      text-align: left;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: var(--text);
      font-weight: 700;
      font-size: 1.05rem;
      transition: background 0.2s ease;
      gap: 14px;
    }

    .faq-question:hover{ background: rgba(31,182,213,.08); }
    .faq-question.active{ background: var(--brand-soft); }

    .faq-question i{
      color: var(--brand);
      transition: transform 0.3s ease;
      font-size: 1.2rem;
      flex: 0 0 auto;
    }
    .faq-question.active i{ transform: rotate(180deg); }

    .faq-answer{
      padding: 0px 28px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      color: var(--muted);
      line-height: 1.7;
    }
    .faq-answer.show{ padding:28px 28px; max-height: none; }

    .faq-answer p{ margin-bottom: 15px; }
    .faq-answer p:last-child{ margin-bottom: 0; }

    mark.racf-mark{
      background: rgba(31,182,213,.24);
      color: var(--text);
      border-radius: 8px;
      padding: 0 .25em;
    }

    /* Video tutorial block */
    .faq-video{
      margin-top: 16px;
      border: 1px solid rgba(31,182,213,.22);
      background: rgba(31,182,213,.06);
      border-radius: 18px;
      padding: 14px;
    }
    html[data-theme="light"] .faq-video{
      background: rgba(31,182,213,.07);
      border-color: rgba(31,182,213,.20);
    }
    .video-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom: 12px;
      flex-wrap:wrap;
    }
    .video-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background: rgba(31,182,213,.14);
      border: 1px solid rgba(31,182,213,.22);
      color: var(--text);
      font-weight: 900;
      font-size: .86rem;
      line-height:1;
    }
    html[data-theme="light"] .video-pill{
      color: var(--text);
      background: rgba(31,182,213,.12);
      border-color: rgba(31,182,213,.18);
    }
    .video-link{
      font-weight: 800;
      color: var(--brand);
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }
    .video-link:hover{opacity:.92; text-decoration:underline;}

    .video-wrap{
      border-radius: 14px;
      overflow:hidden;
      border: 1px solid var(--border);
      background: rgba(0,0,0,.18);
      aspect-ratio: 16 / 9;
      width: 100%;
    }
    html[data-theme="light"] .video-wrap{ background: rgba(11,31,42,.04); }
    .video-wrap iframe{
      width:100%;
      height:100%;
      border:0;
      display:block;
    }

    /* QUICK LINKS */
    .quick-links-section{
      background: var(--surface);
      border-radius: 28px;
      padding: 40px;
      margin: 60px 0;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .quick-links-title{
      font-weight: 900;
      font-size: 1.5rem;
      margin-bottom: 25px;
      text-align: center;
      color: var(--text);
    }

    .quick-links-grid{
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .quick-link{
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 18px 20px;
      background: rgba(31,182,213,.08);
      border: 1px solid rgba(31,182,213,.15);
      border-radius: 16px;
      transition: all 0.25s ease;
      text-decoration: none;
      color: var(--text);
    }
    .quick-link:hover{
      background: rgba(31,182,213,.15);
      transform: translateX(5px);
    }
    .quick-link i{ color: var(--brand); font-size: 1.3rem; }

    /* ✅ Silver icon in quick links */
    .quick-link .silver-i{
      color: var(--text);
      background: linear-gradient(135deg, rgba(242,245,248,.30) 0%, rgba(201,211,221,.26) 50%, rgba(154,166,178,.22) 100%);
      border: 1px solid rgba(255,255,255,.10);
      width: 34px; height: 34px;
      border-radius: 12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex: 0 0 auto;
      box-shadow: var(--silver-shadow);
    }
    html[data-theme="light"] .quick-link .silver-i{
      color:#0B1F2A;
      border-color: rgba(11,31,42,.10);
      background: linear-gradient(135deg, rgba(242,245,248,.70) 0%, rgba(201,211,221,.52) 50%, rgba(154,166,178,.40) 100%);
      box-shadow: 0 10px 24px rgba(11,31,42,.08);
    }

    /* CTA SECTION */
    .faq-cta{
      text-align: center;
      padding: 60px 0;
      background: linear-gradient(135deg, rgba(31,182,213,.1) 0%, rgba(31,182,213,0) 100%);
      border-radius: 32px;
      margin: 60px 0;
      border: 1px solid var(--border);
    }

    .cta-title{
      font-weight: 900;
      font-size: 2.2rem;
      margin-bottom: 20px;
      color: var(--text);
    }

    .cta-text{
      color: var(--muted);
      max-width: 600px;
      margin: 0 auto 30px;
      font-size: 1.1rem;
      line-height: 1.7;
    }
