/* privacy.css — extracted verbatim from pages/privacy.php */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
        --dark:        #0A0A0A;
        --dark-2:      #0D0D0D;
        --dark-3:      #111111;
        --light:       #FFFFFF;
        --amber:       #D97706;
        --amber-hover: #B45309;
        --muted:       #666666;
        --border:      rgba(255,255,255,0.08);
        --max-w:       1200px;
        --gutter:      2.5rem;
    }

    html { scroll-behavior: smooth; }

    body {
        font-family: 'DM Sans', sans-serif;
        background: var(--dark);
        color: #fff;
        line-height: 1.75;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    .wrap {
        width: 100%;
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 0 var(--gutter);
    }

    h1, h2, h3, h4 {
        font-family: 'Sora', sans-serif;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.08;
    }

    .eyebrow {
        display: block;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--amber);
        margin-bottom: 1.25rem;
    }

    /* ── NAV ── */
    #nav {
        position: fixed;
        top: 0; left: 0; right: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.5rem var(--gutter);
        background: rgba(10,10,10,0.6);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid var(--border);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #F9FAFB; }
        .logo-rect { fill: #ffffff; transition: fill 0.3s ease, stroke 0.3s ease; stroke: none; stroke-width: 2; }
        .logo-text { fill: #0A0A0A; transition: fill 0.3s ease; }
        .logo-wordmark { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: -0.02em; color: #ffffff; }
        .nav-scrolled .logo-rect { fill: #ffffff; stroke: none; }
        .nav-scrolled .logo-text { fill: #0A0A0A; }
        .nav-scrolled .logo-wordmark { color: #ffffff; }
        .nav-light .logo-rect { fill: #0A0A0A; }
        .nav-light .logo-text { fill: #ffffff; }
        .nav-light .logo-wordmark { color: #0A0A0A; }
    
    .nav-links {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        list-style: none;
    }
    .nav-links a {
        font-size: 0.85rem;
        font-weight: 500;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
        padding: 0.4rem 0.8rem;
        font-family: 'DM Sans', sans-serif;
        transition: color 0.2s;
    }
    .nav-links a:hover { color: #fff; }
    .nav-pill {
        display: inline-flex;
        align-items: center;
        padding: 0.5rem 1.25rem;
        border: none;
        border-radius: 100px;
        font-size: 0.82rem;
        font-weight: 600;
        color: #0A0A0A;
        cursor: pointer;
        background: white;
        font-family: 'DM Sans', sans-serif;
        transition: all 0.2s;
    }
    .nav-pill:hover { background: #f0f0f0; transform: translateY(-1px); }

    /* ── HERO ── */
    #legal-hero {
        padding: 10rem var(--gutter) 5rem;
        background: var(--dark);
        border-bottom: 1px solid var(--border);
    }
    #legal-hero .hero-inner { max-width: 700px; }
    #legal-hero h1 {
        font-size: clamp(2.5rem, 5vw, 4.5rem);
        margin-bottom: 1rem;
        letter-spacing: -0.04em;
    }
    #legal-hero .hero-sub {
        font-size: 1rem;
        color: var(--muted);
        line-height: 1.7;
    }

    /* ── CONTENT ── */
    #legal-content {
        background: #ffffff;
        padding: 6rem var(--gutter);
    }
    .legal-inner {
        max-width: 760px;
        margin: 0 auto;
    }
    .legal-inner h2 {
        font-size: 1.5rem;
        color: #0A0A0A;
        margin-top: 3rem;
        margin-bottom: 1rem;
        letter-spacing: -0.02em;
    }
    .legal-inner h2:first-child { margin-top: 0; }
    .legal-inner h3 {
        font-size: 1.1rem;
        color: #0A0A0A;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
        font-weight: 700;
        letter-spacing: -0.01em;
    }
    .legal-inner p {
        font-size: 0.95rem;
        color: #444444;
        line-height: 1.85;
        margin-bottom: 1.25rem;
    }
    .legal-inner ul {
        margin: 0.75rem 0 1.25rem 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .legal-inner ul li {
        font-size: 0.95rem;
        color: #444444;
        line-height: 1.75;
    }
    .legal-inner a { color: var(--amber); text-decoration: none; }
    .legal-inner a:hover { text-decoration: underline; }
    .legal-effective {
        font-size: 0.82rem;
        color: #888888;
        margin-bottom: 3rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(0,0,0,0.08);
    }

    /* ── FOOTER ── */
    #footer {
        background: #0A0A0A;
        border-top: 1px solid rgba(255,255,255,0.05);
        padding: 5.5rem var(--gutter) 2.5rem;
    }
    .footer-inner { max-width: var(--max-w); margin: 0 auto; }
    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: end;
        padding-bottom: 4rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        margin-bottom: 3.5rem;
    }
    .footer-talk {
        font-family: 'Sora', sans-serif;
        font-size: clamp(2rem, 4vw, 3.5rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1.1;
        color: white;
    }
    .footer-form-label {
        font-size: 0.7rem;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #555;
        display: block;
        margin-bottom: 1rem;
    }
    .footer-form {
        display: flex;
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 2px;
        overflow: hidden;
    }
    .footer-form input[type="email"] {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: white;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.9rem;
        padding: 0.9rem 1.25rem;
    }
    .footer-form input::placeholder { color: #444; }
    .footer-form button {
        background: var(--amber);
        color: white;
        border: none;
        padding: 0.9rem 1.5rem;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
        white-space: nowrap;
    }
    .footer-form button:hover { background: var(--amber-hover); }
    .footer-links-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-bottom: 3.5rem;
    }
    .footer-col h4 {
        font-family: 'Sora', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: #444;
        margin-bottom: 1.25rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col a {
        font-size: 0.87rem;
        color: #555;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-col a:hover { color: white; }
    .footer-col button {
        background: none; border: none; padding: 0;
        font-size: 0.87rem; color: #555;
        font-family: 'DM Sans', sans-serif;
        cursor: pointer; transition: color 0.2s;
    }
    .footer-col button:hover { color: white; }
    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.04);
    }
    .footer-copy { font-size: 0.8rem; color: #333; }
    .footer-legal { display: flex; gap: 1.5rem; }
    .footer-legal a { font-size: 0.8rem; color: #333; text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: #666; }

    @media (max-width: 900px) {
        :root { --gutter: 1.75rem; }
        .nav-links { display: none; }
        .footer-top { grid-template-columns: 1fr; }
        .footer-links-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        :root { --gutter: 1.25rem; }
        .footer-links-grid { grid-template-columns: 1fr; }
        .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    }
    
        /* ── Services mega menu ── */
        .nav-links .has-dropdown { position: relative; }
        .nav-links .has-dropdown > button {
            display: flex; align-items: center; gap: 0.3rem;
            padding: 0.4rem 0.8rem;
            color: rgba(255,255,255,0.65);
            font-size: 0.85rem; font-weight: 500;
            font-family: 'DM Sans', sans-serif;
            background: none; border: none; cursor: pointer;
            transition: color 0.2s; white-space: nowrap;
        }
        .nav-links .has-dropdown > button:hover { color: white; }
        .nav-links .has-dropdown > button svg { transition: transform 0.2s; }
        .nav-links .has-dropdown.open > button svg { transform: rotate(180deg); }
        .chevron-icon { width: 12px; height: 12px; opacity: 0.5; }
        .nav-dropdown {
            display: none; position: absolute;
            top: calc(100% + 1rem); left: 50%; transform: translateX(-50%);
            background: rgba(13,13,13,0.95);
            backdrop-filter: blur(24px) saturate(160%);
            -webkit-backdrop-filter: blur(24px) saturate(160%);
            border: 1px solid rgba(255,255,255,0.08); border-radius: 4px;
            padding: 1.5rem; z-index: 100;
            box-shadow: 0 24px 60px rgba(0,0,0,0.5);
            animation: ddSlideDown 0.2s ease;
        }
        .nav-links .has-dropdown.open .nav-dropdown { display: block; }
        @keyframes ddSlideDown {
            from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
            to   { opacity: 1; transform: translateX(-50%) translateY(0); }
        }
        .mega-menu { width: 1060px; }
        .mega-groups { display: grid; grid-template-columns: repeat(6, 1fr); }
        .mega-group { padding: 0.25rem 1.25rem 0.25rem 0; }
        .mega-group + .mega-group { padding-left: 1.25rem; border-left: 1px solid rgba(255,255,255,0.07); }
        .mega-group-label {
            font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
            text-transform: uppercase; color: #D97706;
            margin-bottom: 0.65rem; display: block;
        }
        .mega-link { display: block; padding: 0.45rem 0.5rem; border-radius: 4px; text-decoration: none; transition: background 0.15s; margin: 0 -0.5rem; }
        .mega-link:hover { background: rgba(255,255,255,0.06); }
        .mega-link-name { display: block; font-family: 'Sora', sans-serif; font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.85); }
        .mega-link:hover .mega-link-name { color: white; }
        .mega-link-desc { display: block; font-size: 0.7rem; color: #555; margin-top: 0.1rem; line-height: 1.35; }
        .mega-link:hover .mega-link-desc { color: #777; }
        .mega-badge { display: inline-block; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: #D97706; color: white; padding: 0.1rem 0.35rem; border-radius: 2px; margin-top: 0.2rem; width: fit-content; }
