:root {
    --bg: #f6f8fb;
    --bg-accent: #eef3f8;
    --surface: #ffffff;
    --surface-soft: #f8fafc;
    --line: #d9e1ea;
    --line-strong: #bcc8d6;
    --text: #243454;
    --muted: #607086;
    --brand: #95d11f;
    --brand-dark: #79af12;
    --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fa 56%, #eef2f7 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.container { width: min(calc(100% - 4rem), 1440px); margin: 0 auto; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(188, 200, 214, .55);
    backdrop-filter: blur(18px);
}
.nav-shell {
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.brand { display: inline-flex; align-items: center; flex: 0 1 auto; max-width: min(400px, 100%); }
.brand-logo { width: min(400px, 100%); height: auto; display: block; filter: drop-shadow(0 8px 20px rgba(36, 52, 84, .08)); }
.site-nav { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; justify-content: center; flex: 1; }
.site-nav a { color: var(--muted); font-size: 1rem; font-weight: 700; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .95rem 1.25rem;
    border-radius: 4px;
    font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-secondary { background: #fff; border: 1px solid var(--line-strong); color: var(--text); }
.btn-secondary:hover { background: #f8fbfd; }
main { min-height: 55vh; }
.legal-section { padding: 4.5rem 0 5rem; position: relative; }
.legal-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 340px;
    background: radial-gradient(circle at 12% 14%, rgba(149, 209, 31, .16), transparent 30%);
    pointer-events: none;
}
.legal-wrap { position: relative; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: #517207;
    background: rgba(149, 209, 31, .12);
    border: 1px solid rgba(149, 209, 31, .24);
    padding: .5rem .85rem;
    border-radius: 4px;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
h1, h2 { line-height: 1.08; margin: 0; }
h1 { margin-top: 1rem; font-size: clamp(2.3rem, 5vw, 4rem); letter-spacing: -.04em; }
.legal-lead { max-width: 70ch; color: var(--muted); font-size: 1.05rem; margin: 1rem 0 0; }
.legal-card {
    margin-top: 2rem;
    background: rgba(255,255,255,.98);
    border-top: 1px solid rgba(188, 200, 214, .75);
    border-bottom: 1px solid rgba(188, 200, 214, .75);
    padding: 2rem 0;
}
.legal-stack { display: grid; gap: 1rem; }
.legal-item { background: #ffffff; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.5rem; }
.legal-item h2 { font-size: 1.05rem; color: #4f7008; margin-bottom: .6rem; }
.legal-item p, .legal-item li { margin: 0; color: var(--muted); }
.legal-item ul { margin: 0; padding-left: 1.1rem; }
.back-link { display: inline-flex; align-items: center; gap: .45rem; margin-top: 1.5rem; color: var(--text); font-weight: 700; }
.site-footer {
    margin-top: 0;
    background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand) 100%);
    color: #eef4fa;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    top: -1px;
    left: -4%;
    width: 108%;
    height: 95px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23f3f6fa' d='M0,82 C150,42 320,122 500,92 C680,62 785,34 930,58 C1110,88 1290,128 1440,90 L1440,0 L0,0 Z'/%3E%3Cpath fill='none' stroke='%234b5568' stroke-opacity='.35' stroke-width='2' d='M0,84 C150,44 320,124 500,94 C680,64 785,36 930,60 C1110,90 1290,130 1440,92'/%3E%3C/svg%3E");
    pointer-events: none;
}
.footer-inner { display: grid; gap: 2rem; justify-items: center; text-align: center; }
.footer-logo { width: min(320px, 100%); }
.footer-copy, .footer-meta, .footer-nav a { color: #1f2d45; }
.footer-contact-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(31,45,69,.12);
    border-left: 1px solid rgba(31,45,69,.12);
    background: rgba(255,255,255,.14);
}
.footer-contact { border-right: 1px solid rgba(31,45,69,.12); border-bottom: 1px solid rgba(31,45,69,.12); padding: 1.35rem; }
.footer-contact strong { display: block; color: #1f2d45; margin-bottom: .35rem; }
.footer-nav { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a:hover, .footer-nav a:focus-visible { color: #fff; }
@media (max-width: 980px) {
    .nav-shell { min-height: auto; padding: 1rem 0; flex-direction: column; align-items: flex-start; }
    .site-nav { justify-content: flex-start; }
    .footer-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
    .brand-logo { width: min(290px, 100%); }
    .legal-card { padding: 1.35rem 0; }
    .container { width: min(calc(100% - 2rem), 1440px); }
}
