    :root, [data-theme="dark"] {
      --bg: #0d0e11;
      --surface: #15171c;
      --card: #1c1f27;
      --accent: #e8c96a;
      --accent2: #5be5c5;
      --text: #f0eeea;
      --muted: #7a7e8a;
      --border: rgba(255,255,255,0.07);
    }
    [data-theme="light"] {
      --bg: #f0ede8;
      --surface: #e8e4de;
      --card: #ffffff;
      --accent: #c9a030;
      --accent2: #2aab8e;
      --text: #1a1a1a;
      --muted: #888888;
      --border: rgba(0,0,0,0.08);
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
    body::before {
      content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    }

    nav {
      position: sticky; top: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 2.5rem;
      background: rgba(13,14,17,.9); backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }
    .logo { text-decoration: none; display: flex; align-items: center; }
    .logo-img { height: 40px; width: auto; display: block; }
    .nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
    .nav-links a { text-decoration: none; color: var(--muted); font-size: .88rem; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--text); }
    .nav-cta { background: var(--accent); color: #0d0e11 !important; padding: .5rem 1.2rem; border-radius: 6px; font-weight: 600 !important; }
    .nav-theme-btn {
      width: 36px; height: 36px; border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; border: none; background: rgba(255,255,255,.06);
      font-size: 1rem; flex-shrink: 0; transition: transform .3s; color: var(--text);
    }
    [data-theme="light"] .nav-theme-btn { background: rgba(0,0,0,.06); }
    .nav-theme-btn:hover { transform: rotate(22deg); }

    /* HERO + SEARCH */
    .hero {
      position: relative; padding: 7rem 2.5rem 5rem; text-align: center;
      overflow: hidden; border-bottom: 1px solid var(--border);
    }
    .hero-glow { position: absolute; width: 700px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(232,201,106,.09) 0%, transparent 65%); top: -150px; left: 50%; transform: translateX(-50%); pointer-events: none; }
    .hero-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(232,201,106,.1); border: 1px solid rgba(232,201,106,.2); border-radius: 99px; padding: .35rem 1rem; font-size: .72rem; color: var(--accent); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 1.2rem; }
    h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.05; margin-bottom: 1rem; }
    h1 em { font-style: normal; background: linear-gradient(135deg, var(--accent), var(--accent2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
    .hero-sub { color: var(--muted); font-size: 1rem; font-weight: 300; max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.8; }

    /* SEARCH */
    .search-wrap { position: relative; max-width: 560px; margin: 0 auto; }
    .search-input {
      width: 100%;
      background: var(--card); border: 1.5px solid var(--border);
      border-radius: 14px; padding: 1rem 1.2rem 1rem 3.2rem;
      color: var(--text); font-family: 'DM Sans', sans-serif;
      font-size: 1rem; font-weight: 300; outline: none;
      transition: border-color .25s, box-shadow .25s;
    }
    .search-input::placeholder { color: var(--muted); }
    .search-input:focus { border-color: rgba(232,201,106,.4); box-shadow: 0 0 0 4px rgba(232,201,106,.07); }
    .search-icon { position: absolute; left: 1.1rem; top: 50%; transform: translateY(-50%); font-size: 1.1rem; pointer-events: none; opacity: .5; }
    .search-results {
      position: absolute; top: calc(100% + .5rem); left: 0; right: 0;
      background: var(--card); border: 1px solid var(--border); border-radius: 12px;
      overflow: hidden; display: none; box-shadow: 0 16px 40px rgba(0,0,0,.4); z-index: 50;
    }
    .search-results.show { display: block; }
    .search-result-item { padding: .85rem 1.2rem; cursor: pointer; display: flex; align-items: center; gap: .8rem; border-bottom: 1px solid var(--border); transition: background .2s; }
    .search-result-item:last-child { border-bottom: none; }
    .search-result-item:hover { background: rgba(255,255,255,.04); }
    .sri-icon { font-size: 1rem; flex-shrink: 0; }
    .sri-text { font-size: .88rem; color: var(--muted); font-weight: 300; }
    .sri-text strong { color: var(--text); font-weight: 500; }

    /* QUICK TOPICS */
    .quick-topics { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem; }
    .qt-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.3px; }
    .qt-sub { color: var(--muted); font-size: .88rem; font-weight: 300; margin-bottom: 2.5rem; }
    .topics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
    .topic-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 16px;
      padding: 1.8rem; cursor: pointer; text-decoration: none; color: var(--text);
      transition: transform .3s, border-color .3s;
      display: block;
    }
    .topic-card:hover { transform: translateY(-4px); border-color: rgba(232,201,106,.25); }
    .topic-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
    .topic-title { font-weight: 600; margin-bottom: .35rem; font-size: .95rem; }
    .topic-count { font-size: .78rem; color: var(--muted); font-weight: 300; }
    .topic-arrow { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
    .topic-arrow span { font-size: .8rem; color: var(--accent); font-weight: 500; }

    /* LAYOUT */
    .help-layout {
      position: relative; z-index: 1;
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 240px 1fr; gap: 2.5rem;
      padding: 0 2.5rem 5rem;
    }
    .help-sidebar { align-self: start; position: sticky; top: 90px; }
    .sidebar-title { font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: .8rem; }
    .sidebar-list { list-style: none; }
    .sidebar-list li { margin-bottom: .1rem; }
    .sidebar-list a { display: block; text-decoration: none; color: var(--muted); font-size: .86rem; padding: .4rem .8rem; border-radius: 6px; border-left: 2px solid transparent; transition: all .2s; }
    .sidebar-list a:hover { color: var(--text); background: rgba(255,255,255,.04); }
    .sidebar-list a.active { color: var(--accent); border-left-color: var(--accent); background: rgba(232,201,106,.06); }
    .sidebar-divider { height: 1px; background: var(--border); margin: 1rem 0; }

    /* FAQ SECTIONS */
    .faq-section { margin-bottom: 3rem; scroll-margin-top: 90px; }
    .faq-section-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; letter-spacing: -.3px; padding-bottom: .8rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem; display: flex; align-items: center; gap: .7rem; }
    .faq-section-icon { font-size: 1.2rem; }

    /* ACCORDION */
    .accordion { display: flex; flex-direction: column; gap: .6rem; }
    .acc-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color .25s; }
    .acc-item.open { border-color: rgba(232,201,106,.2); }
    .acc-trigger {
      width: 100%; display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 1.4rem; background: none; border: none; cursor: pointer;
      text-align: left; gap: 1rem;
    }
    .acc-question { font-size: .9rem; font-weight: 500; color: var(--text); line-height: 1.5; }
    .acc-chevron { font-size: .8rem; color: var(--muted); flex-shrink: 0; transition: transform .3s; }
    .acc-item.open .acc-chevron { transform: rotate(180deg); }
    .acc-body { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
    .acc-item.open .acc-body { max-height: 500px; }
    .acc-content { padding: 0 1.4rem 1.2rem; font-size: .88rem; color: var(--muted); font-weight: 300; line-height: 1.8; }
    .acc-content a { color: var(--accent); text-decoration: none; }
    .acc-content a:hover { text-decoration: underline; }
    .acc-content strong { color: var(--text); font-weight: 500; }
    .acc-content ul { margin: .7rem 0 .7rem 1.2rem; display: flex; flex-direction: column; gap: .3rem; }

    /* CONTACT SECTION */
    .contact-section { background: var(--surface); border-top: 1px solid var(--border); position: relative; z-index: 1; }
    .contact-inner { max-width: 1100px; margin: 0 auto; padding: 5rem 2.5rem; }
    .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
    .contact-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; text-decoration: none; color: var(--text); transition: transform .3s, border-color .3s; display: block; }
    .contact-card:hover { transform: translateY(-4px); border-color: rgba(232,201,106,.25); }
    .cc-icon { font-size: 2.2rem; display: block; margin-bottom: 1rem; }
    .cc-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: .4rem; }
    .cc-desc { color: var(--muted); font-size: .84rem; font-weight: 300; line-height: 1.65; margin-bottom: 1rem; }
    .cc-action { font-size: .82rem; color: var(--accent); font-weight: 500; }

    footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 2.5rem; }
    .footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
    .footer-logo { font-family: 'Playfair Display', serif; font-weight: 900; font-size: 1.15rem; color: var(--accent); }
    .footer-logo span { color: var(--text); }
    .footer-links { display: flex; gap: 1.8rem; flex-wrap: wrap; }
    .footer-links a { text-decoration: none; color: var(--muted); font-size: .83rem; transition: color .2s; }
    .footer-links a:hover { color: var(--text); }
    .footer-copy { color: var(--muted); font-size: .78rem; }

    .eyebrow-label { font-size: .72rem; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 600; color: var(--accent); margin-bottom: .7rem; }
    h2.block-title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 900; letter-spacing: -.5px; margin-bottom: .5rem; }
    .block-sub { color: var(--muted); font-size: .92rem; font-weight: 300; line-height: 1.8; }

    @media (max-width: 1024px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } .contact-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; } .nav-links { display: none; }
      .hero { padding: 5rem 1.5rem 4rem; }
      .quick-topics { padding: 3rem 1.5rem; }
      .help-layout { grid-template-columns: 1fr; padding: 0 1.5rem 4rem; }
      .help-sidebar { display: none; }
      .contact-inner { padding: 3.5rem 1.5rem; }
      .contact-grid { grid-template-columns: 1fr; }
      .topics-grid { grid-template-columns: 1fr; }
      .footer-inner { flex-direction: column; text-align: center; }
      .footer-links { justify-content: center; }
    }
  
    @media (max-width: 480px) {
      h1 { letter-spacing: -1px; }
      .hero-sub { font-size: .88rem; }
      .search-input { font-size: .88rem; padding: .78rem 1rem .78rem 2.6rem; }
      .qt-title { font-size: 1.2rem; }
      .faq-section-title { font-size: 1.1rem; }
      .acc-question { font-size: .85rem; }
      .acc-content { font-size: .83rem; }
    }
    @media (max-width: 380px) {
      .help-layout { padding: 0 1rem 3rem; }
      .quick-topics { padding: 2rem 1rem; }
      .contact-inner { padding: 2.5rem 1rem; }
    }
