/* =========================================================
   Olimp Casino KZ — Premium Casino Landing
   Author: Olimp.kz Editorial
   Style:  Premium dark + gold accent
   Approach: Mobile-first, CSS variables, semantic-friendly
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
    --bg:           #0b0b0d;
    --bg-2:         #111114;
    --bg-3:         #16161a;
    --surface:      #1c1c21;
    --surface-2:    #23232a;
    --border:       rgba(201, 161, 74, .18);
    --border-2:     rgba(255,255,255,.06);
    --text:         #efeae0;
    --text-muted:   #a8a39a;
    --text-soft:    #c9c5bd;

    --gold:         #c9a14a;
    --gold-2:       #e6c074;
    --gold-deep:    #8c6a26;
    --gold-grad:    linear-gradient(135deg,#e6c074 0%,#c9a14a 50%,#8c6a26 100%);
    --gold-grad-soft: linear-gradient(135deg, rgba(230,192,116,.14), rgba(140,106,38,.06));

    --red:          #d6232b;
    --red-2:        #ff3b44;

    --green:        #1f9d55;

    --radius:       14px;
    --radius-sm:    8px;
    --radius-lg:    20px;

    --shadow-sm:    0 2px 6px rgba(0,0,0,.3);
    --shadow-md:    0 10px 30px rgba(0,0,0,.45);
    --shadow-gold:  0 8px 28px rgba(201,161,74,.25);

    --container:    1200px;
    --gutter:       20px;

    --font-body:    'Inter', 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    --font-display: '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.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--gold);
    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: 700; line-height: 1.2; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.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(201,161,74,.05), transparent 40%),
        radial-gradient(circle at 100% 100%, rgba(214,35,43,.04), transparent 50%);
}
.section__head {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}
.section__title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--text);
}
.section__lead {
    color: var(--text-soft);
    font-size: 1.05rem;
}
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .6em;
}
.muted { color: var(--text-muted); }
.small { font-size: .85rem; }
.text-gold { color: var(--gold-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;
}
.btn--gold {
    background: var(--gold-grad);
    color: #1a130a;
    box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
    transform: translateY(-1px);
    color: #1a130a;
    filter: brightness(1.06);
}
.btn--outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold-2);
}
.btn--outline:hover {
    background: rgba(201,161,74,.1);
    color: var(--gold-2);
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-2);
}
.btn--ghost:hover { background: var(--surface); color: var(--text); }
.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(11,11,13,.85);
    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: 22px; 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(--gold-2); }
.nav__link::after {
    content: "";
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gold-grad);
    transition: width var(--t-base);
}
.nav__link:hover::after { width: 100%; }
.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(--gold-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(--gold-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(800px 400px at 20% 0%,  rgba(201,161,74,.18), transparent 60%),
        radial-gradient(700px 500px at 90% 90%, rgba(214,35,43,.15),  transparent 60%),
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><path d='M0 39.5h40M39.5 0v40' stroke='%23ffffff' stroke-opacity='0.04' fill='none'/></svg>");
    background-size: cover, cover, 40px 40px;
    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.4rem);
    margin-bottom: .35em;
}
.hero__lead {
    font-size: 1.05rem;
    color: var(--text-soft);
    max-width: 56ch;
}
.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: 14px; height: 14px;
    background: var(--gold-grad);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201,161,74,.12);
}
.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(35,35,42,.85), rgba(20,20,24,.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.1rem;
    color: var(--gold-2);
    margin-bottom: 14px;
    letter-spacing: .02em;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 18px;
}
.badge--gold {
    background: var(--gold-grad-soft);
    color: var(--gold-2);
    border: 1px solid var(--border);
}

/* Key-value list */
.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(--gold-2); font-weight: 700; }

/* ---------- Trust strip ---------- */
.trust { background: var(--bg-3); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); padding: 22px 0; }
.trust__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    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.6rem;
    font-weight: 700;
    background: var(--gold-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.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:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-md);
}
.bonus-card__tag {
    align-self: flex-start;
    background: var(--gold-grad-soft);
    border: 1px solid var(--border);
    color: var(--gold-2);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.bonus-card__title {
    font-size: 1.2rem;
    font-family: var(--font-display);
    color: var(--text);
}
.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;
    display: flex; justify-content: space-between; gap: 12px;
}
.bonus-card__terms li::before {
    content: "•";
    color: var(--gold);
    margin-right: 8px;
}
.bonus-card code {
    font-family: 'Menlo', 'Consolas', monospace;
    background: rgba(201,161,74,.15);
    color: var(--gold-2);
    padding: 1px 6px;
    border-radius: 4px;
    font-size: .85rem;
}
.bonus-card .btn { margin-top: auto; }
.bonus-card--featured {
    background: linear-gradient(180deg, rgba(201,161,74,.10) 0%, var(--surface) 60%);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

/* About / Callout */
.callout {
    background: linear-gradient(160deg, rgba(201,161,74,.08), rgba(214,35,43,.04));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 26px;
}
.callout__title {
    color: var(--gold-2);
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.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: 50%;
    background: var(--gold-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(--gold-2);
    font-style: italic;
    font-family: var(--font-display);
}

/* 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.1rem;
    color: var(--gold-2);
    margin-bottom: 6px;
}
.sport-card .muted, .cat-card .muted { font-size: .85rem; margin-bottom: 8px; }

/* Providers */
.providers {
    margin-top: 32px;
    background: var(--bg-3);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.providers__title {
    font-size: 1rem;
    color: var(--gold-2);
    margin-bottom: 12px;
}
.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: 999px;
    color: var(--text-soft);
    background: var(--surface);
    transition: border-color var(--t-fast), color var(--t-fast);
}
.providers__list li:hover { border-color: var(--gold); color: var(--gold-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: 26px;
}
.live-stats h3 {
    color: var(--gold-2);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* App mock (CSS-only phone) */
.app-mock {
    margin: 0;
    display: flex;
    justify-content: center;
}
.app-mock__phone {
    width: 280px;
    aspect-ratio: 9 / 19;
    background: linear-gradient(160deg, #2a2a32, #15151a);
    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, #0e0e12 0%, #15151a 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(--gold-grad);
    margin: 12px 0 16px;
    box-shadow: var(--shadow-gold);
}
.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(201,161,74,.15), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.4s infinite;
}
.app-mock__row--wide { height: 80px; }
.app-mock__cta {
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red-2), var(--red));
    margin-top: auto;
    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(--gold-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(201,161,74,.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: 50px;
}
.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(--gold-grad);
    color: #1a130a;
    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: "−"; }
.faq__body {
    padding: 0 22px 18px;
    color: var(--text-soft);
}
.faq__body p { margin: 0; }
.faq__body code {
    background: rgba(201,161,74,.15);
    color: var(--gold-2);
    padding: 1px 6px;
    border-radius: 4px;
    font-family: 'Menlo','Consolas',monospace;
    font-size: .9rem;
}

/* CTA final */
.cta-final {
    background:
        radial-gradient(700px 350px at 50% 0%, rgba(201,161,74,.18), 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: .9rem;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .12em;
    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(--gold-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: 999px;
    background: var(--gold-grad-soft);
    color: var(--gold-2);
    font-size: .8rem;
    margin-top: 14px;
}
.age-badge span {
    background: var(--red);
    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: 6px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
}

.footer__bottom { padding-top: 18px; }

/* =====================================================
   RESPONSIVE BREAKPOINTS — mobile-first
   ===================================================== */

/* tablet */
@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; }
}

/* small desktop */
@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: 2rem; }
    .hero__title { font-size: 3.2rem; }
}

/* large desktop */
@media (min-width: 1200px) {
    body { font-size: 17px; }
    .section__title { font-size: 2.6rem; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
    html { scroll-behavior: auto; }
}

/* print */
@media print {
    .site-header, .nav, .header__cta, .cta-final, .site-footer { display: none; }
    body { background: #fff; color: #000; }
}
