
    /* ============================================================
       CSS VARIABLES — APILOX DESIGN SYSTEM
    ============================================================ */
    :root {
        --green:        #1DE548;
        --green-dark:   #00ab41;
        --green-deep:   #00d250;
        --green-soft:   rgba(29,229,72,0.08);
        --green-border: rgba(29,229,72,0.18);
        --black:        #000000;
        --ink:          #0d0d0d;
        --ink-2:        #1a1a1a;
        --gray-900:     #272727;
        --gray-700:     #4a4a4a;
        --gray-500:     #6b6b6b;
        --gray-300:     #c4c4c4;
        --gray-100:     #f0f0f0;
        --white:        #ffffff;
        --off-white:    #f7f8f6;
        --border:       rgba(0,0,0,0.08);
        --border-md:    rgba(0,0,0,0.12);
        --font-display: 'Montserrat', sans-serif;
        --font-body:    'Schibsted Grotesk', sans-serif;
        --r-sm:  8px;
        --r-md:  14px;
        --r-lg:  22px;
        --r-xl:  32px;
        --r-xxl: 100px;
        --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
        --shadow-md:    0 8px 32px rgba(0,0,0,0.10);
        --shadow-lg:    0 20px 60px rgba(0,0,0,0.12);
        --shadow-green: 0 8px 32px rgba(29,229,72,0.22);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); background: var(--white); color: var(--gray-900); line-height: 1.6; overflow-x: hidden; }
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--ink); }
    p { color: var(--gray-700); }
    ul { list-style: none; }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; height: auto; }
    button { cursor: pointer; font-family: var(--font-body); border: none; outline: none; }

    .container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }

    /* ── Buttons ── */
    .btn-green {
        display: inline-flex; align-items: center; gap: 8px;
        background: var(--green); color: var(--black);
        font-family: var(--font-display); font-weight: 700; font-size: 0.88rem;
        letter-spacing: 0.02em; padding: 13px 26px;
        border-radius: var(--r-xxl); border: none;
        transition: all 0.25s ease; white-space: nowrap;
    }
    .btn-green:hover { background: #2dfb55; box-shadow: var(--shadow-green); transform: translateY(-2px); }

    .btn-outline-light {
        display: inline-flex; align-items: center; gap: 8px;
        background: transparent; color: rgba(255,255,255,0.7);
        font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
        padding: 12px 26px; border-radius: var(--r-xxl);
        border: 1.5px solid rgba(255,255,255,0.15); transition: all 0.25s ease;
    }
    .btn-outline-light:hover { border-color: var(--green); color: var(--green); }

    /* ── Chips ── */
    .chip-dark {
        display: inline-flex; align-items: center; gap: 8px;
        background: rgba(29,229,72,0.10); border: 1px solid rgba(29,229,72,0.25);
        color: var(--green); font-family: var(--font-display);
        font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
        text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-xxl);
    }
    .chip-dark::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
    .chip {
        display: inline-flex; align-items: center; gap: 8px;
        background: var(--green-soft); border: 1px solid var(--green-border);
        color: var(--green-dark); font-family: var(--font-display);
        font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
        text-transform: uppercase; padding: 6px 14px; border-radius: var(--r-xxl);
    }
    .chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: blink 2s infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

    .gradient-text {
        background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-deep) 60%, var(--green) 100%);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* ============================================================
       PRELOADER
    ============================================================ */
    #preloader {
        position: fixed; inset: 0; z-index: 10000;
        background: var(--ink);
        display: flex; align-items: center; justify-content: center;
        transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    #preloader.hidden { opacity: 0; visibility: hidden; }
    .preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .preloader-logo { font-family: var(--font-display); font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
    .preloader-logo span { color: var(--green); }
    .preloader-bar { width: 160px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; }
    .preloader-bar::after { content: ''; display: block; height: 100%; width: 0; background: var(--green); border-radius: 10px; animation: load 1.8s ease forwards; }
    @keyframes load { to { width: 100%; } }

    /* ============================================================
       HEADER
    ============================================================ */
    .header {
        position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
        transition: background 0.35s ease, box-shadow 0.35s ease;
    }
    .header.scrolled {
        background: rgba(255,255,255,0.94);
        backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
        box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
    }
    .nav {
        display: flex; align-items: center; justify-content: space-between;
        height: 72px; padding: 0 40px; max-width: 1400px; margin: 0 auto;
    }
    .nav__logo img { height: 36px; width: auto; }
    .nav__logo-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); }
    .nav__logo-text span { color: var(--green-dark); }
    .nav__list { display: flex; flex-direction: row; align-items: center; gap: 36px; }
    .nav__link {
        font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
        letter-spacing: 0.04em; color: var(--gray-700); transition: color 0.2s; position: relative;
    }
    .nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green); border-radius: 2px; transition: width 0.25s ease; }
    .nav__link:hover { color: var(--green-dark); }
    .nav__link:hover::after, .nav__link.active::after { width: 100%; }
    .nav__link.active { color: var(--green-dark); }
    .nav__actions { display: flex; align-items: center; gap: 12px; }
    .nav__toggle, .nav__close { display: none; font-size: 1.5rem; color: var(--ink); cursor: pointer; border: none; background: none; padding: 4px; }
    @media (max-width: 900px) {
        .nav__menu { position: fixed; top: -100%; left: 0; width: 100%; background: var(--white); padding: 88px 40px 48px; transition: top 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--border); }
        .nav__menu.show-menu { top: 0; }
        .nav__list { flex-direction: column; align-items: flex-start; gap: 28px; }
        .nav__link { font-size: 1.1rem; }
        .nav__toggle, .nav__close { display: flex; }
        .nav__actions .btn-green { display: none; }
        .nav__close { position: absolute; top: 24px; right: 24px; }
    }

    /* ============================================================
       HERO — DARK with search bar
    ============================================================ */
    .help-hero {
        min-height: 72vh;
        background: var(--ink);
        padding-top: 72px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }
    .help-hero::before {
        content: '';
        position: absolute; inset: 0;
        background-image:
            linear-gradient(rgba(29,229,72,0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(29,229,72,0.04) 1px, transparent 1px);
        background-size: 64px 64px;
        z-index: 0;
        animation: gridDrift 28s linear infinite;
    }
    @keyframes gridDrift { 0%{background-position:0 0} 100%{background-position:64px 64px} }
    .help-hero::after {
        content: '';
        position: absolute; top: -200px; right: -100px;
        width: 900px; height: 900px;
        background: radial-gradient(ellipse, rgba(29,229,72,0.07) 0%, transparent 65%);
        z-index: 0; pointer-events: none;
    }
    .hero-orb-bottom {
        position: absolute; bottom: -100px; left: -80px;
        width: 500px; height: 500px;
        background: radial-gradient(ellipse, rgba(0,171,65,0.06) 0%, transparent 70%);
        z-index: 0; pointer-events: none; border-radius: 50%;
    }
    .help-hero__inner {
        position: relative; z-index: 1;
        max-width: 860px; margin: 0 auto;
        padding: 80px 40px;
        text-align: center;
        display: flex; flex-direction: column; align-items: center; gap: 32px;
        width: 100%;
    }
    .help-hero__inner h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; color: var(--white); }
    .help-hero__inner p { font-size: 1.05rem; color: rgba(255,255,255,0.48); max-width: 500px; line-height: 1.75; }

    /* Search bar */
    .help-search {
        width: 100%; max-width: 620px;
        background: rgba(255,255,255,0.08);
        border: 1.5px solid rgba(255,255,255,0.12);
        border-radius: var(--r-xxl);
        padding: 6px 6px 6px 22px;
        display: flex; align-items: center; gap: 12px;
        transition: border-color 0.25s, background 0.25s;
    }
    .help-search:focus-within {
        border-color: rgba(29,229,72,0.45);
        background: rgba(255,255,255,0.10);
    }
    .help-search i { color: rgba(255,255,255,0.3); font-size: 1.1rem; flex-shrink: 0; transition: color 0.2s; }
    .help-search:focus-within i { color: var(--green); }
    .help-search input {
        flex: 1; background: transparent; border: none; outline: none;
        font-family: var(--font-body); font-size: 0.95rem;
        color: var(--white);
    }
    .help-search input::placeholder { color: rgba(255,255,255,0.28); }
    .help-search-btn {
        background: var(--green); color: var(--black);
        font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
        padding: 11px 22px; border-radius: var(--r-xxl); border: none;
        cursor: pointer; white-space: nowrap;
        transition: all 0.22s ease;
    }
    .help-search-btn:hover { background: #2dfb55; box-shadow: var(--shadow-green); }

    /* Popular searches */
    .help-popular { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .help-popular span { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.28); letter-spacing: 0.08em; text-transform: uppercase; }
    .help-popular a {
        padding: 5px 14px; border-radius: var(--r-xxl);
        background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
        font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
        color: rgba(255,255,255,0.5);
        transition: all 0.2s;
    }
    .help-popular a:hover { background: var(--green-soft); border-color: var(--green-border); color: var(--green); }

    /* ============================================================
       CATEGORIES GRID
    ============================================================ */
    .categories-section {
        padding: 100px 40px;
        background: var(--white);
        position: relative;
    }
    .categories-section::before {
        content: '';
        position: absolute; top: 0; left: 0; right: 0; height: 3px;
        background: linear-gradient(90deg, transparent 0%, var(--green) 30%, var(--green-dark) 70%, transparent 100%);
    }
    .categories-inner { max-width: 1280px; margin: 0 auto; }
    .categories-header { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .categories-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; letter-spacing: -0.03em; }
    .categories-header p { color: var(--gray-500); max-width: 440px; line-height: 1.75; }
    .categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .cat-card {
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-xl);
        padding: 32px 28px;
        background: var(--white);
        display: flex; flex-direction: column; gap: 16px;
        cursor: pointer; transition: all 0.3s ease;
        text-decoration: none;
        position: relative; overflow: hidden;
    }
    .cat-card::after {
        content: '';
        position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
        background: transparent; transition: background 0.3s;
    }
    .cat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--green-border); }
    .cat-card:hover::after { background: linear-gradient(90deg, var(--green), var(--green-dark)); }
    .cat-card__icon {
        width: 52px; height: 52px; border-radius: var(--r-md);
        background: var(--green-soft); border: 1.5px solid var(--green-border);
        display: flex; align-items: center; justify-content: center;
        color: var(--green-dark); font-size: 1.4rem;
        transition: all 0.25s;
    }
    .cat-card:hover .cat-card__icon { background: var(--green); color: var(--black); border-color: var(--green); }
    .cat-card h3 { font-size: 1rem; font-weight: 800; color: var(--ink); }
    .cat-card p { font-size: 0.84rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
    .cat-card__count {
        display: inline-flex; align-items: center; gap: 6px;
        font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
        color: var(--green-dark); letter-spacing: 0.04em;
    }
    .cat-card__count i { font-size: 0.75rem; }

    /* ============================================================
       FAQ — by category, tabbed
    ============================================================ */
    .faq-section {
        padding: 100px 40px;
        background: var(--off-white);
        border-top: 1px solid var(--border);
    }
    .faq-inner { max-width: 1280px; margin: 0 auto; }
    .faq-header { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
    .faq-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; letter-spacing: -0.03em; }
    .faq-header p { color: var(--gray-500); max-width: 440px; }

    /* Tab bar */
    .faq-tabs {
        display: flex; align-items: center; justify-content: center;
        gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
    }
    .faq-tab {
        padding: 8px 20px; border-radius: var(--r-xxl);
        background: var(--white); border: 1.5px solid var(--border-md);
        font-family: var(--font-display); font-size: 0.78rem; font-weight: 700;
        color: var(--gray-700); cursor: pointer;
        transition: all 0.22s ease;
        display: flex; align-items: center; gap: 7px;
    }
    .faq-tab:hover { border-color: var(--green-border); color: var(--green-dark); }
    .faq-tab.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
    .faq-tab i { font-size: 0.85rem; }

    /* FAQ panels */
    .faq-panel { display: none; }
    .faq-panel.active { display: block; }
    .faq-list {
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-xl);
        overflow: hidden;
        background: var(--white);
        max-width: 860px; margin: 0 auto;
    }
    .faq-item { border-bottom: 1px solid var(--border); background: var(--white); transition: background 0.2s; }
    .faq-item:last-child { border-bottom: none; }
    .faq-item.open { background: var(--off-white); }
    .faq-q {
        display: flex; align-items: center; justify-content: space-between;
        gap: 16px; padding: 22px 28px; cursor: pointer; user-select: none;
    }
    .faq-q-text { font-family: var(--font-display); font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.5; transition: color 0.2s; }
    .faq-item.open .faq-q-text { color: var(--green-dark); }
    .faq-ico {
        width: 30px; height: 30px; border-radius: 50%;
        background: var(--gray-100); border: 1.5px solid var(--border-md);
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0; color: var(--gray-700); transition: all 0.3s;
    }
    .faq-item.open .faq-ico { background: var(--green-soft); border-color: var(--green-border); color: var(--green-dark); transform: rotate(45deg); }
    .faq-ico i { font-size: 0.85rem; }
    .faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
    .faq-item.open .faq-ans { max-height: 400px; }
    .faq-ans-inner { padding: 0 28px 22px; border-top: 1px solid var(--border); padding-top: 16px; font-size: 0.88rem; color: var(--gray-500); line-height: 1.8; }
    .faq-ans-inner a { color: var(--green-dark); border-bottom: 1px solid var(--green-border); transition: color 0.2s; }
    .faq-ans-inner a:hover { color: var(--green); }

    /* ============================================================
       POPULAR ARTICLES
    ============================================================ */
    .articles-section {
        padding: 100px 40px;
        background: var(--white);
        border-top: 1px solid var(--border);
    }
    .articles-inner { max-width: 1280px; margin: 0 auto; }
    .articles-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 48px; }
    .articles-header-left { display: flex; flex-direction: column; gap: 12px; }
    .articles-header h2 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); font-weight: 900; letter-spacing: -0.03em; }
    .articles-header p { color: var(--gray-500); max-width: 400px; }
    .articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .article-card {
        border: 1.5px solid var(--border-md);
        border-radius: var(--r-lg);
        padding: 28px;
        background: var(--white);
        display: flex; flex-direction: column; gap: 14px;
        transition: all 0.25s;
        cursor: pointer; text-decoration: none;
        position: relative; overflow: hidden;
    }
    .article-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: transparent; transition: background 0.25s; }
    .article-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); border-color: var(--green-border); }
    .article-card:hover::before { background: var(--green); }
    .article-card__cat {
        display: inline-flex; align-items: center; gap: 6px;
        font-family: var(--font-display); font-size: 0.65rem; font-weight: 800;
        letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-dark);
    }
    .article-card h4 { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; color: var(--ink); line-height: 1.45; }
    .article-card p { font-size: 0.83rem; color: var(--gray-500); line-height: 1.65; flex: 1; }
    .article-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
    .article-card__time { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; color: var(--gray-300); }
    .article-card__arrow { font-size: 1rem; color: var(--gray-300); transition: color 0.2s, transform 0.2s; }
    .article-card:hover .article-card__arrow { color: var(--green-dark); transform: translateX(4px); }

    /* ============================================================
       CONTACT SECTION — dark
    ============================================================ */
    .contact-section {
        padding: 100px 40px;
        background: var(--ink);
        border-top: 1px solid rgba(255,255,255,0.05);
        position: relative; overflow: hidden;
    }
    .contact-section::before {
        content: '';
        position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
        width: 800px; height: 500px;
        background: radial-gradient(ellipse, rgba(29,229,72,0.07) 0%, transparent 70%);
        pointer-events: none;
    }
    .contact-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
    .contact-header { text-align: center; margin-bottom: 64px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .contact-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 900; letter-spacing: -0.04em; color: var(--white); }
    .contact-header p { color: rgba(255,255,255,0.45); max-width: 480px; line-height: 1.75; }
    .contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .contact-card {
        background: rgba(255,255,255,0.04);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: var(--r-xl);
        padding: 36px 28px;
        display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
        transition: all 0.3s ease; text-decoration: none;
    }
    .contact-card:hover { background: rgba(29,229,72,0.07); border-color: rgba(29,229,72,0.22); transform: translateY(-4px); }
    .contact-card__icon {
        width: 52px; height: 52px; border-radius: var(--r-md);
        background: rgba(29,229,72,0.1); border: 1px solid rgba(29,229,72,0.2);
        display: flex; align-items: center; justify-content: center;
        color: var(--green); font-size: 1.3rem;
    }
    .contact-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--white); }
    .contact-card p { font-size: 0.84rem; color: rgba(255,255,255,0.38); line-height: 1.7; flex: 1; }
    .contact-card__action {
        display: inline-flex; align-items: center; gap: 7px;
        font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
        color: var(--green); transition: gap 0.2s;
    }
    .contact-card:hover .contact-card__action { gap: 12px; }
    .contact-card__badge {
        display: inline-flex; align-items: center; gap: 6px;
        padding: 4px 12px; border-radius: var(--r-xxl);
        background: rgba(29,229,72,0.1); border: 1px solid rgba(29,229,72,0.2);
        font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
        color: var(--green); letter-spacing: 0.08em; text-transform: uppercase;
    }

    /* ============================================================
       CTA SECTION
    ============================================================ */
    .cta-section {
        padding: 60px 40px;
        background: var(--off-white);
        border-top: 1px solid var(--border);
    }
    .cta-inner { max-width: 1280px; margin: 0 auto; }
    .cta-box {
        background: var(--ink); border-radius: var(--r-xl);
        padding: 80px 64px;
        display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center;
        position: relative; overflow: hidden;
    }
    .cta-box::before {
        content: '';
        position: absolute; top: -150px; left: 50%; transform: translateX(-50%);
        width: 700px; height: 400px;
        background: radial-gradient(ellipse, rgba(29,229,72,0.12) 0%, transparent 70%);
        pointer-events: none;
    }
    .cta-stars { display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; z-index: 1; }
    .cta-stars__icons { display: flex; gap: 4px; }
    .cta-stars__icons i { color: var(--green); font-size: 1rem; }
    .cta-stars span { font-size: 0.78rem; color: rgba(255,255,255,0.4); font-family: var(--font-display); font-weight: 600; }
    .cta-box h2 { font-size: clamp(1.8rem, 3.2vw, 3rem); font-weight: 800; color: var(--white); max-width: 680px; letter-spacing: -0.03em; line-height: 1.2; position: relative; z-index: 1; }
    .cta-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
    .cta-trust { font-size: 0.8rem; color: rgba(255,255,255,0.25); position: relative; z-index: 1; }

    /* ============================================================
       FOOTER
    ============================================================ */
    .footer { background: var(--off-white); border-top: 1px solid var(--border); padding-top: 72px; }
    .footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; flex-direction: column; gap: 56px; }
    .footer__top { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: start; }
    .footer__brand { display: flex; flex-direction: column; gap: 18px; }
    .footer__brand img { height: 36px; width: auto; }
    .footer__brand-text { font-family: var(--font-display); font-size: 1.2rem; font-weight: 900; letter-spacing: -0.04em; color: var(--ink); }
    .footer__brand-text span { color: var(--green-dark); }
    .footer__brand p { font-size: 0.88rem; color: var(--gray-500); max-width: 380px; line-height: 1.7; }
    .footer__social { display: flex; gap: 10px; }
    .footer__social a { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--gray-100); border: 1px solid var(--border-md); display: flex; align-items: center; justify-content: center; color: var(--gray-700); font-size: 1rem; transition: all 0.2s; }
    .footer__social a:hover { background: var(--green-soft); border-color: var(--green-border); color: var(--green-dark); }
    .footer__newsletter { display: flex; flex-direction: column; gap: 14px; }
    .footer__newsletter h4 { font-size: 1rem; font-weight: 700; color: var(--ink); }
    .footer__newsletter p { font-size: 0.82rem; color: var(--gray-500); }
    .newsletter-form { display: flex; align-items: center; background: var(--white); border: 1.5px solid var(--border-md); border-radius: var(--r-xxl); padding: 5px 5px 5px 18px; gap: 8px; transition: border-color 0.2s; }
    .newsletter-form:focus-within { border-color: var(--green); }
    .newsletter-form input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 0.85rem; color: var(--gray-900); background: transparent; }
    .newsletter-form input::placeholder { color: var(--gray-300); }
    .newsletter-form button { width: 38px; height: 38px; border-radius: 50%; background: var(--green); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--black); font-size: 1.1rem; transition: all 0.2s; flex-shrink: 0; }
    .newsletter-form button:hover { background: #2dfb55; }
    .footer__mid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .footer__col h5 { font-family: var(--font-display); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-900); margin-bottom: 16px; }
    .footer__col a { display: block; font-size: 0.85rem; color: var(--gray-500); margin-bottom: 10px; transition: color 0.2s; }
    .footer__col a:hover { color: var(--green-dark); }
    .footer__col p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 8px; line-height: 1.6; }
    .footer__legal { display: flex; flex-direction: column; gap: 20px; padding-bottom: 40px; }
    .footer__legal-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
    .footer__legal-links a { font-size: 0.78rem; color: var(--gray-500); transition: color 0.2s; }
    .footer__legal-links a:hover { color: var(--green-dark); }
    .footer__legal-text { font-size: 0.75rem; color: var(--gray-300); line-height: 1.7; max-width: 900px; }
    .footer__legal-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer__copy { font-size: 0.78rem; color: var(--gray-300); font-family: var(--font-display); }
    .footer__stores { display: flex; gap: 10px; align-items: center; }
    .footer__stores img { height: 30px; width: auto; }

    /* ============================================================
       REVEAL ANIMATION
    ============================================================ */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }
    .reveal.delay-1 { transition-delay: 0.1s; }
    .reveal.delay-2 { transition-delay: 0.2s; }
    .reveal.delay-3 { transition-delay: 0.3s; }
    .reveal.delay-4 { transition-delay: 0.4s; }
    .reveal.delay-5 { transition-delay: 0.5s; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
        .categories-grid { grid-template-columns: repeat(2, 1fr); }
        .articles-grid { grid-template-columns: repeat(2, 1fr); }
        .contact-grid { grid-template-columns: repeat(2, 1fr); }
        .footer__top { grid-template-columns: 1fr; gap: 40px; }
        .footer__mid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
        .nav { padding: 0 24px; }
        .help-hero__inner { padding: 60px 24px; }
        .categories-section, .faq-section, .articles-section, .contact-section, .cta-section { padding: 72px 24px; }
        .categories-grid { grid-template-columns: 1fr; }
        .articles-grid { grid-template-columns: 1fr; }
        .contact-grid { grid-template-columns: 1fr; }
        .articles-header { flex-direction: column; align-items: flex-start; }
        .cta-box { padding: 48px 28px; }
        .footer__inner { padding: 0 24px; }
        .footer__mid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 480px) {
        .faq-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
        .footer__mid { grid-template-columns: 1fr 1fr; }
    }
