/* =========================================================
   Olimp Casino KZ — V2: Emerald & Brass premium edition
   Author: Olimp.kz Editorial
   Palette: dark forest + emerald + warm brass + ivory
   Approach: Mobile-first, CSS variables, semantic-friendly
   ========================================================= */

:root {
    /* surfaces */
    --bg:           #0a1310;
    --bg-2:         #0f1c17;
    --bg-3:         #14241c;
    --surface:      #1a2922;
    --surface-2:    #21342a;

    /* primary accent: emerald (gambling-table felt) */
    --emerald:      #15a06b;
    --emerald-2:    #2bcc8c;
    --emerald-deep: #0c6643;

    /* secondary metallic: warm brass */
    --brass:        #b08960;
    --brass-2:      #d4ab7f;
    --brass-deep:   #8a6b48;
    --brass-grad:   linear-gradient(135deg,#d4ab7f 0%,#b08960 50%,#8a6b48 100%);
    --emerald-grad: linear-gradient(135deg,#2bcc8c 0%,#15a06b 50%,#0c6643 100%);
    --brass-soft:   linear-gradient(135deg, rgba(212,171,127,.14), rgba(138,107,72,.06));

    /* accent: muted crimson */
    --crimson:      #c2333d;

    /* text */
    --text:         #f0e8d6;
    --text-soft:    #c4bda9;
    --text-muted:   #8e8772;

    /* borders */
    --border:       rgba(176,137,96,.20);
    --border-2:     rgba(255,255,255,.05);

    --radius:       12px;
    --radius-sm:    8px;
    --radius-lg:    18px;

    --shadow-sm:    0 2px 6px rgba(0,0,0,.3);
    --shadow-md:    0 12px 30px rgba(0,0,0,.5);
    --shadow-emerald:0 8px 28px rgba(21,160,107,.25);
    --shadow-brass:  0 6px 22px rgba(176,137,96,.22);

    --container:    1180px;
    --gutter:       20px;

    --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Cormorant Garamond', 'Playfair Display', 'Georgia', serif;

    --t-fast:       150ms ease;
    --t-base:       250ms ease;
    --t-slow:       420ms cubic-bezier(.2,.8,.2,1);
}

/* base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--brass-2); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--emerald-2); }
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--emerald);
    outline-offset: 3px;
    border-radius: 4px;
}
button { font: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
    margin: 0 0 .6em;
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0;
}
h1 { font-weight: 500; }
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--brass-2); }

.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* layout */
.container {
    width: 100%;
    max-width: var(--container);
    padding: 0 var(--gutter);
    margin: 0 auto;
}
.section { padding: 56px 0; position: relative; }
.section--dark {
    background: var(--bg-2);
    background-image:
        radial-gradient(circle at 0% 0%, rgba(21,160,107,.06), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(176,137,96,.05), transparent 50%);
}
.section__head { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.section__title { font-size: clamp(1.7rem, 4.2vw, 2.5rem); color: var(--text); }
.section__lead { color: var(--text-soft); font-size: 1.05rem; }
.eyebrow {
    display: inline-block;
    color: var(--emerald-2);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: .6em;
}
.muted { color: var(--text-muted); }
.small { font-size: .85rem; }
.text-brass { color: var(--brass-2); }

.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .95rem;
    line-height: 1;
    text-align: center;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
    border: 1px solid transparent;
    white-space: nowrap;
    font-family: var(--font-body);
}
.btn--emerald {
    background: var(--emerald-grad);
    color: #08231a;
    box-shadow: var(--shadow-emerald);
}
.btn--emerald:hover {
    transform: translateY(-1px);
    color: #08231a;
    filter: brightness(1.06);
}
.btn--outline {
    background: transparent;
    border-color: var(--brass);
    color: var(--brass-2);
}
.btn--outline:hover {
    background: rgba(176,137,96,.10);
    color: var(--brass-2);
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-2);
}
.btn--ghost:hover { background: var(--surface); color: var(--brass-2); }
.btn--block { width: 100%; }
.btn--lg  { padding: 14px 28px; font-size: 1rem; }
.btn--xl  { padding: 18px 36px; font-size: 1.1rem; }

/* header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(10,19,16,.88);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid var(--border-2);
}
.header__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 70px;
}
.logo { display: inline-flex; align-items: center; flex: 0 0 auto; }
.logo img { height: 36px; width: auto; }
.nav--primary { display: none; flex: 1; justify-content: center; }
.nav__list { display: flex; gap: 24px; flex-wrap: wrap; }
.nav__link {
    color: var(--text-soft);
    font-weight: 500;
    font-size: .95rem;
    padding: 6px 0;
    position: relative;
}
.nav__link:hover { color: var(--brass-2); }
.nav__link::after {
    content: "";
    position: absolute;
    bottom: -2px; left: 50%;
    width: 0; height: 2px;
    background: var(--emerald-grad);
    transition: width var(--t-base), left var(--t-base);
}
.nav__link:hover::after { width: 100%; left: 0; }
.header__cta { margin-left: auto; display: flex; gap: 10px; align-items: center; }
.header__cta .btn--ghost { display: none; }

.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    padding: 0 9px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--brass-2);
    border-radius: 2px;
    transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav--mobile {
    background: var(--bg-2);
    border-top: 1px solid var(--border-2);
    padding: 12px 20px 20px;
}
.nav--mobile .nav__list { flex-direction: column; gap: 0; }
.nav--mobile a {
    display: block;
    padding: 12px 0;
    color: var(--text-soft);
    border-bottom: 1px solid var(--border-2);
    font-weight: 500;
}
.nav--mobile a:hover { color: var(--brass-2); }
.nav--mobile li:last-child a { border-bottom: 0; }

/* hero */
.hero {
    position: relative;
    padding: 60px 0 70px;
    overflow: hidden;
    background: var(--bg);
}
.hero__bg {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(900px 450px at 15% -5%,  rgba(21,160,107,.18), transparent 60%),
        radial-gradient(800px 600px at 95% 95%,  rgba(176,137,96,.13),  transparent 60%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><circle cx='16' cy='16' r='1' fill='%23b08960' fill-opacity='0.06'/></svg>");
    background-size: cover, cover, 32px 32px;
    pointer-events: none;
}
.hero__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.hero__title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: .35em;
}
.hero__lead {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 58ch;
}
.hero__list { margin: 18px 0 26px; display: grid; gap: 8px; }
.hero__list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-soft);
}
.hero__list li::before {
    content: "";
    position: absolute;
    left: 0; top: 9px;
    width: 12px; height: 12px;
    background: var(--emerald-grad);
    transform: rotate(45deg);
    box-shadow: 0 0 0 4px rgba(21,160,107,.10);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__note { margin-top: 16px; color: var(--text-muted); font-size: .85rem; }
.hero__card {
    background: linear-gradient(160deg, rgba(33,52,42,.85), rgba(20,36,28,.92));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(6px);
}
.hero__card-title {
    font-size: 1.15rem;
    color: var(--brass-2);
    margin-bottom: 14px;
    letter-spacing: .01em;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.badge--emerald {
    background: rgba(21,160,107,.10);
    color: var(--emerald-2);
    border: 1px solid rgba(21,160,107,.3);
}

.kv {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 6px 14px;
    margin: 0;
    font-size: .92rem;
}
.kv dt { color: var(--text-muted); }
.kv dd { margin: 0; color: var(--text); font-weight: 500; }
.kv--lg { grid-template-columns: 1fr auto; font-size: 1rem; padding-top: 8px; }
.kv--lg dt { color: var(--text-soft); }
.kv--lg dd { color: var(--emerald-2); font-weight: 700; }

/* trust */
.trust {
    background: var(--bg-3);
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    padding: 24px 0;
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    text-align: center;
}
.trust__item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust__num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--emerald-2);
}
.trust__label { color: var(--text-muted); font-size: .85rem; letter-spacing: .03em; }

/* cards grid */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
.cards--3 { grid-template-columns: 1fr; }
.cards--4 { grid-template-columns: 1fr; }

/* bonus cards */
.bonus-card {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 24px;
    position: relative;
    transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
    display: flex;
    flex-direction: column;
}
.bonus-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--brass-grad);
    opacity: 0;
    transition: opacity var(--t-base);
}
.bonus-card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}
.bonus-card:hover::before { opacity: 1; }
.bonus-card__tag {
    align-self: flex-start;
    background: rgba(21,160,107,.10);
    border: 1px solid rgba(21,160,107,.3);
    color: var(--emerald-2);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.bonus-card__title {
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 600;
}
.bonus-card__terms {
    margin: 16px 0 18px;
    padding-left: 0;
    border-top: 1px dashed var(--border-2);
    padding-top: 14px;
    font-size: .9rem;
    color: var(--text-soft);
}
.bonus-card__terms li { padding: 3px 0; }
.bonus-card__terms li::before {
    content: "›";
    color: var(--emerald);
    margin-right: 10px;
    font-weight: 700;
}
.bonus-card code {
    font-family: 'Menlo', 'Consolas', monospace;
    background: rgba(176,137,96,.18);
    color: var(--brass-2);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: .85rem;
}
.bonus-card .btn { margin-top: auto; }
.bonus-card--featured {
    background: linear-gradient(180deg, rgba(21,160,107,.10) 0%, var(--surface) 60%);
    border-color: var(--emerald);
    box-shadow: var(--shadow-emerald);
}
.bonus-card--featured::before { opacity: 1; background: var(--emerald-grad); }

/* about / callout */
.callout {
    background: linear-gradient(160deg, rgba(176,137,96,.08), rgba(21,160,107,.04));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.callout__title {
    color: var(--brass-2);
    font-size: 1.15rem;
    margin-bottom: 14px;
}
.check-list { display: grid; gap: 10px; }
.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--text-soft);
}
.check-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 4px;
    width: 18px; height: 18px;
    border-radius: 4px;
    background: var(--emerald-grad);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3.5 3.5L13 5' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
            mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8l3.5 3.5L13 5' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}
.signature {
    color: var(--brass-2);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.05rem;
}

/* sport / cat / info cards */
.sport-card, .cat-card, .info-card {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 22px;
    transition: transform var(--t-base), border-color var(--t-base);
}
.sport-card:hover, .cat-card:hover, .info-card:hover {
    transform: translateY(-3px);
    border-color: var(--border);
}
.sport-card h3, .cat-card h3, .info-card h3 {
    font-size: 1.15rem;
    color: var(--brass-2);
    margin-bottom: 6px;
}
.sport-card .muted, .cat-card .muted { font-size: .85rem; margin-bottom: 8px; }

.providers {
    margin-top: 32px;
    background: var(--bg-3);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 22px 26px;
}
.providers__title {
    font-size: 1rem;
    color: var(--brass-2);
    margin-bottom: 14px;
}
.providers__list { display: flex; flex-wrap: wrap; gap: 8px 10px; }
.providers__list li {
    font-size: .85rem;
    padding: 5px 12px;
    border: 1px solid var(--border-2);
    border-radius: 4px;
    color: var(--text-soft);
    background: var(--surface);
    transition: border-color var(--t-fast), color var(--t-fast);
}
.providers__list li:hover { border-color: var(--emerald); color: var(--emerald-2); }

/* live stats */
.live-stats {
    background: linear-gradient(160deg, var(--surface), var(--bg-3));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}
.live-stats h3 { color: var(--brass-2); font-size: 1.15rem; margin-bottom: 12px; }

/* app mock */
.app-mock { margin: 0; display: flex; justify-content: center; }
.app-mock__phone {
    width: 280px;
    aspect-ratio: 9 / 19;
    background: linear-gradient(160deg, #2a3a32, #15201a);
    border-radius: 36px;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,.05);
    position: relative;
}
.app-mock__screen {
    background: linear-gradient(180deg, #0a1310 0%, #15201a 100%);
    border-radius: 26px;
    height: 100%;
    padding: 24px 18px 20px;
    overflow: hidden;
    position: relative;
}
.app-mock__notch {
    position: absolute; top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 70px; height: 8px;
    background: #000;
    border-radius: 999px;
}
.app-mock__bar {
    height: 50px;
    border-radius: var(--radius-sm);
    background: var(--emerald-grad);
    margin: 12px 0 16px;
    box-shadow: var(--shadow-emerald);
}
.app-mock__row {
    height: 30px;
    background: var(--surface-2);
    border-radius: 6px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}
.app-mock__row::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(176,137,96,.18), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.6s infinite;
}
.app-mock__row--wide { height: 80px; }
.app-mock__cta {
    height: 44px;
    border-radius: 8px;
    background: var(--brass-grad);
    margin-bottom: 0;
    position: absolute;
    bottom: 18px; left: 18px; right: 18px;
}
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.app-cta { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0 8px; }

/* payments table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.payments-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 640px;
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-2);
}
.payments-table th, .payments-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-2);
    font-size: .92rem;
}
.payments-table thead th {
    background: var(--bg-3);
    color: var(--emerald-2);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.payments-table tbody th { color: var(--text); font-weight: 600; }
.payments-table tbody tr:hover { background: rgba(21,160,107,.04); }
.payments-table tbody tr:last-child th,
.payments-table tbody tr:last-child td { border-bottom: 0; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 880px; margin: 0 auto; }
.faq__item {
    background: var(--surface);
    border: 1px solid var(--border-2);
    border-radius: var(--radius);
    padding: 0;
    overflow: hidden;
    transition: border-color var(--t-fast);
}
.faq__item[open] { border-color: var(--border); }
.faq__item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 600;
    color: var(--text);
    position: relative;
    padding-right: 56px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    position: absolute;
    right: 22px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--emerald-grad);
    color: #08231a;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform var(--t-base);
}
.faq__item[open] summary::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq__body {
    padding: 0 22px 18px;
    color: var(--text-soft);
}
.faq__body p { margin: 0; }
.faq__body code {
    background: rgba(176,137,96,.18);
    color: var(--brass-2);
    padding: 1px 6px;
    border-radius: 3px;
    font-family: 'Menlo','Consolas',monospace;
    font-size: .9rem;
}

/* CTA final */
.cta-final {
    background:
        radial-gradient(700px 350px at 50% 0%, rgba(21,160,107,.16), transparent 70%),
        linear-gradient(180deg, var(--bg-2), var(--bg));
    text-align: center;
    padding: 70px 0;
}
.cta-final__inner { max-width: 720px; margin: 0 auto; }
.cta-final__lead { color: var(--text-soft); font-size: 1.1rem; margin-bottom: 26px; }

/* footer */
.site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border-2);
    padding: 50px 0 24px;
    color: var(--text-soft);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 30px;
}
.footer__title {
    font-family: var(--font-body);
    font-size: .85rem;
    color: var(--brass-2);
    text-transform: uppercase;
    letter-spacing: .14em;
    margin-bottom: 14px;
}
.footer__col ul li { padding: 5px 0; }
.footer__col ul a { color: var(--text-soft); font-size: .92rem; }
.footer__col ul a:hover { color: var(--brass-2); }
.logo--footer img { height: 32px; margin-bottom: 12px; }

.age-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px 6px 6px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: rgba(176,137,96,.10);
    color: var(--brass-2);
    font-size: .8rem;
    margin-top: 14px;
}
.age-badge span {
    background: var(--crimson);
    color: #fff;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: .8rem;
}

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid var(--border-2);
    border-bottom: 1px solid var(--border-2);
    color: var(--text-muted);
    font-size: .85rem;
}
.pay-pill {
    background: var(--surface);
    border: 1px solid var(--border-2);
    color: var(--text-soft);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.footer__bottom { padding-top: 18px; }

/* responsive */
@media (min-width: 600px) {
    .trust__grid { grid-template-columns: repeat(3, 1fr); }
    .cards--3 { grid-template-columns: repeat(2, 1fr); }
    .cards--4 { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .header__cta .btn--ghost { display: inline-flex; }
}
@media (min-width: 900px) {
    :root { --gutter: 28px; }
    .section { padding: 80px 0; }
    .hero { padding: 80px 0 100px; }
    .hero__inner { grid-template-columns: 1.4fr 1fr; gap: 48px; }
    .two-col { grid-template-columns: 1.3fr 1fr; gap: 48px; }
    .two-col--reverse > div:first-child { order: 2; }
    .two-col--reverse > .app-mock { order: 1; }
    .trust__grid { grid-template-columns: repeat(5, 1fr); }
    .cards--3 { grid-template-columns: repeat(3, 1fr); }
    .cards--4 { grid-template-columns: repeat(4, 1fr); }
    .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
    .nav--primary { display: flex; }
    .nav-toggle { display: none; }
    .trust__num { font-size: 2.1rem; }
    .hero__title { font-size: 3.3rem; }
}
@media (min-width: 1200px) {
    body { font-size: 17px; }
    .section__title { font-size: 2.7rem; }
}
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}
@media print {
    .site-header, .nav, .header__cta, .cta-final, .site-footer { display: none; }
    body { background: #fff; color: #000; }
}
