/* ─────────────────────────────────────────────
   EXORD · style.css
───────────────────────────────────────────── */

/* 1. Reset
   2. Custom properties
   3. Base
   4. Layout helpers
   5. Buttons
   6. Navbar
   7. Hero
   8. Section headers
   9. Problem cards
   10. Sector cards
   11. Steps
   12. Trust bar
   13. CTA block
   14. Footer
   15. Privacy page
   16. Keyframes
   17. Responsive
*/


/* ── 1. Reset ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
}
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


/* ── 2. Custom properties ─────────────────── */
:root {
    --c-dark:      #07101f;
    --c-dark-2:    #0b1a38;
    --c-light:     #f0f4ff;
    --c-white:     #ffffff;
    --c-accent:    #5b6cf2;
    --c-accent-hv: #4552e8;
    --c-accent-lt: #a8b2ff;
    --c-text:      #0a1628;
    --c-muted:     #5e7191;
    --c-on-dk:     #e8f0ff;
    --c-muted-dk:  #8199be;
    --c-border-lt: #dce5f5;
    --c-border-dk: rgba(255, 255, 255, .08);

    --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --r-s:  8px;
    --r-m:  16px;
    --r-l:  24px;
    --r-f:  9999px;

    --sh-s: 0 1px 4px rgba(0,0,0,.06);
    --sh-m: 0 4px 20px rgba(0,0,0,.09);
    --sh-a: 0 8px 28px rgba(91,108,242,.3);

    --max-w: 1120px;
    --px:    clamp(20px, 5vw, 48px);
    --py:    clamp(80px, 10vw, 140px);
}


/* ── 3. Base ──────────────────────────────── */
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-white);
}


/* ── 4. Layout helpers ────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--px);
}

.section         { padding: var(--py) 0; }
.section--light  { background: var(--c-light); }
.section--dark   { background: var(--c-dark); }
.section--dark2  { background: var(--c-dark-2); }
.section--white  { background: var(--c-white); }
.section--accent { background: var(--c-accent); }


/* ── 5. Buttons ───────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border-radius: var(--r-f);
    line-height: 1;
    transition: background .18s, transform .18s, box-shadow .18s;
}
.btn--primary {
    background: var(--c-accent);
    color: #fff;
    box-shadow: var(--sh-a);
}
.btn--primary:hover {
    background: var(--c-accent-hv);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(91,108,242,.42);
}
.btn--ghost {
    background: transparent;
    color: var(--c-on-dk);
    border: 1.5px solid var(--c-border-dk);
}
.btn--ghost:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.2);
}
.btn--sm  { font-size: .875rem;  padding: 10px 22px; }
.btn--lg  { font-size: 1rem;     padding: 15px 30px; }
.btn--xl  { font-size: 1.125rem; padding: 18px 36px; }


/* ── 6. Navbar ────────────────────────────── */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 var(--px);
    height: 68px;
    background: rgba(7, 16, 31, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--c-border-dk);
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: auto;
    text-decoration: none;
}
.logo-mark {
    width: 34px;
    height: 34px;
    background: var(--c-accent);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9375rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-on-dk);
    letter-spacing: -.025em;
}

/* Hidden checkbox — powers CSS-only mobile menu */
.nav-toggle { display: none; }

.nav-burger { display: none; }

.navbar__nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--c-muted-dk);
    padding: 8px 14px;
    border-radius: var(--r-f);
    transition: color .15s, background .15s;
}
.nav-link:hover {
    color: var(--c-on-dk);
    background: rgba(255,255,255,.06);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 10px;
    padding-left: 14px;
    border-left: 1px solid var(--c-border-dk);
}
.lang-item {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    color: var(--c-muted-dk);
    padding: 5px 8px;
    border-radius: var(--r-s);
    transition: color .15s, background .15s;
}
.lang-item:hover { color: var(--c-on-dk); }
.lang-item--on {
    color: var(--c-accent-lt);
    background: rgba(91,108,242,.15);
}

/* Mobile nav */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        min-height: 60px;
        padding: 12px var(--px);
    }

    .nav-burger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 8px;
        margin-left: 8px;
    }
    .nav-burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--c-on-dk);
        border-radius: 2px;
        transition: transform .3s, opacity .3s;
    }

    .navbar__nav {
        display: none;
        order: 10;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 12px 0 20px;
    }
    .nav-toggle:checked ~ .navbar__nav { display: flex; }

    .nav-link { padding: 11px 12px; }
    .navbar__nav .btn { align-self: flex-start; margin-top: 6px; }

    .lang-switch {
        border-left: none;
        margin-left: 0;
        padding-left: 0;
        border-top: 1px solid var(--c-border-dk);
        padding-top: 12px;
        margin-top: 6px;
        padding-bottom: 4px;
    }

    /* Burger → X animation */
    .nav-toggle:checked + .nav-burger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle:checked + .nav-burger span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked + .nav-burger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}


/* ── 7. Hero ──────────────────────────────── */
.hero {
    position: relative;
    overflow: hidden;
    background: var(--c-dark);
    padding: clamp(100px, 14vw, 180px) 0 clamp(80px, 12vw, 160px);
}
.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}
.hero::before {
    content: '';
    position: absolute;
    top: -180px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 700px;
    background: radial-gradient(ellipse at center,
        rgba(91,108,242,.22) 0%,
        rgba(91,108,242,.05) 42%,
        transparent 68%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero__content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--c-accent-lt);
    background: rgba(91,108,242,.12);
    border: 1px solid rgba(91,108,242,.25);
    border-radius: var(--r-f);
    padding: 6px 16px;
    margin-bottom: 28px;
    animation: fadeUp .6s ease both .05s;
}
.hero__badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--c-accent-lt);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero__headline {
    font-size: clamp(2.4rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--c-on-dk);
    margin-bottom: 24px;
    animation: fadeUp .6s ease both .15s;
}
.text-gradient {
    background: linear-gradient(125deg, #a8b2ff, #818cf8, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__sub {
    font-size: clamp(1rem, 1.8vw, 1.1875rem);
    line-height: 1.72;
    color: var(--c-muted-dk);
    max-width: 580px;
    margin: 0 auto 36px;
    animation: fadeUp .6s ease both .25s;
}
.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both .38s;
}
.hero__note {
    font-size: .875rem;
    color: var(--c-muted-dk);
    animation: fadeUp .6s ease both .48s;
}
.hero__note a {
    color: var(--c-accent-lt);
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* ── 8. Section headers ───────────────────── */
.sec-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto clamp(48px, 6vw, 80px);
}
.eyebrow {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent);
    margin-bottom: 14px;
}
.eyebrow--lt { color: var(--c-accent-lt); }

.sec-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.025em;
    margin-bottom: 18px;
}
.sec-title--dk { color: var(--c-on-dk); }

.sec-sub { font-size: 1.0625rem; line-height: 1.7; color: var(--c-muted); }
.sec-sub--dk { color: var(--c-muted-dk); }


/* ── 9. Problem cards ─────────────────────── */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.card {
    border-radius: var(--r-l);
    padding: clamp(28px, 4vw, 40px);
}
.card--light {
    background: var(--c-white);
    border: 1px solid var(--c-border-lt);
    box-shadow: var(--sh-s);
    transition: transform .2s, box-shadow .2s;
}
.card--light:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-m);
}
.card__icon {
    font-size: 1.875rem;
    line-height: 1;
    margin-bottom: 18px;
    display: block;
}
.card__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: var(--c-text);
    margin-bottom: 10px;
}
.card__body {
    font-size: .9375rem;
    line-height: 1.65;
    color: var(--c-muted);
}


/* ── 10. Product showcase ─────────────────── */
.product-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}

.product-name {
    font-size: clamp(4rem, 9vw, 6.5rem);
    font-weight: 900;
    color: var(--c-on-dk);
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: 10px;
}

.product-tagline {
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-accent-lt);
    margin-bottom: 24px;
    line-height: 1.5;
}

.product-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--c-muted-dk);
    margin-bottom: 36px;
}

/* Document type grid */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.doc-badge {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--r-m);
    padding: 20px 22px;
    transition: background .2s, border-color .2s;
}
.doc-badge:hover {
    background: rgba(91,108,242,.12);
    border-color: rgba(91,108,242,.32);
}
.doc-badge__abbr {
    display: block;
    font-size: 1.625rem;
    font-weight: 800;
    color: var(--c-on-dk);
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 6px;
}
.doc-badge__name {
    font-size: .8rem;
    color: var(--c-muted-dk);
    line-height: 1.4;
}

.note-legal {
    font-size: .75rem;
    color: rgba(255,255,255,.28);
    line-height: 1.5;
    margin-top: 16px;
    max-width: 420px;
}


/* ── 11. Steps ────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(24px, 3vw, 48px);
}
.step__num {
    font-size: clamp(3.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(91,108,242,.28);
    margin-bottom: 18px;
}
.step__title {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: -.015em;
    color: var(--c-text);
    margin-bottom: 10px;
}
.step__body {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--c-muted);
}


/* ── 12. Trust bar ────────────────────────── */
.trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.trust__val {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: 8px;
}
.trust__lbl {
    font-size: .9rem;
    color: rgba(255,255,255,.72);
    line-height: 1.4;
}


/* ── 13. CTA block ────────────────────────── */
.cta-block {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}
.cta-block__actions { margin-bottom: 20px; }
.cta-block__note {
    font-size: .875rem;
    color: var(--c-muted-dk);
}


/* ── 14. Footer ───────────────────────────── */
.footer {
    background: var(--c-dark);
    border-top: 1px solid var(--c-border-dk);
    padding: 52px 0 32px;
}
.footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--c-border-dk);
    margin-bottom: 24px;
}
.footer__tagline {
    font-size: .875rem;
    color: var(--c-muted-dk);
    margin-top: 8px;
}
.footer__nav {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.footer__link {
    font-size: .875rem;
    color: var(--c-muted-dk);
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .15s;
}
.footer__link:hover { color: var(--c-on-dk); }
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer__legal {
    font-size: .8rem;
    color: var(--c-muted-dk);
    line-height: 1.6;
}


/* ── 15. Privacy page ─────────────────────── */
.priv-body { background: var(--c-white); }
.priv-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) var(--px) clamp(64px, 10vw, 120px);
}
.priv-wrap h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--c-text);
    margin-bottom: 8px;
}
.priv-updated {
    font-size: .875rem;
    color: var(--c-muted);
    display: block;
    margin-bottom: 52px;
}
.priv-wrap h2 {
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--c-text);
    margin-top: 48px;
    margin-bottom: 14px;
    letter-spacing: -.015em;
    padding-top: 16px;
    border-top: 1px solid var(--c-border-lt);
}
.priv-wrap p,
.priv-wrap li {
    font-size: .9875rem;
    line-height: 1.78;
    color: var(--c-muted);
    margin-bottom: 12px;
}
.priv-wrap ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 12px;
}
.priv-wrap a {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.priv-wrap strong { color: var(--c-text); font-weight: 600; }
.priv-wrap .back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--c-accent);
    text-decoration: none;
    margin-bottom: 48px;
    transition: opacity .15s;
}
.priv-wrap .back-link:hover { opacity: .75; }


/* ── 16. Blog ─────────────────────────────── */

/* Blog listing page */
.blog-hero {
    background: var(--c-dark);
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
    border-bottom: 1px solid var(--c-border-dk);
}
.blog-hero__eyebrow {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--c-accent-lt);
    margin-bottom: 16px;
}
.blog-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--c-on-dk);
    margin-bottom: 16px;
}
.blog-hero__sub {
    font-size: 1.0625rem;
    color: var(--c-muted-dk);
    line-height: 1.7;
    max-width: 520px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: clamp(48px, 7vw, 96px) 0;
}
.article-card {
    background: var(--c-white);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--r-l);
    padding: clamp(28px, 4vw, 40px);
    box-shadow: var(--sh-s);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sh-m);
}
.article-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .8rem;
    color: var(--c-muted);
    margin-bottom: 16px;
}
.article-card__tag {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-accent);
    background: rgba(91,108,242,.08);
    border-radius: var(--r-f);
    padding: 4px 10px;
}
.article-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.3;
    color: var(--c-text);
    margin-bottom: 12px;
    transition: color .15s;
}
.article-card:hover .article-card__title { color: var(--c-accent); }
.article-card__excerpt {
    font-size: .9375rem;
    line-height: 1.7;
    color: var(--c-muted);
    flex: 1;
    margin-bottom: 24px;
}
.article-card__link {
    font-size: .875rem;
    font-weight: 600;
    color: var(--c-accent);
    transition: opacity .15s;
}
.article-card__link:hover { opacity: .75; }

/* Article page */
.article-hero {
    background: var(--c-dark);
    padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.article-hero__tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c-accent-lt);
    background: rgba(91,108,242,.14);
    border: 1px solid rgba(91,108,242,.22);
    border-radius: var(--r-f);
    padding: 5px 14px;
    margin-bottom: 24px;
}
.article-hero__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--c-on-dk);
    max-width: 760px;
    margin-bottom: 24px;
}
.article-hero__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: .875rem;
    color: var(--c-muted-dk);
}
.article-hero__meta span { display: flex; align-items: center; gap: 6px; }

.article-wrap {
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 96px) var(--px) clamp(64px, 10vw, 120px);
}
.article-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--c-text);
    margin-top: 52px;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--c-border-lt);
}
.article-body h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-text);
    margin-top: 32px;
    margin-bottom: 10px;
}
.article-body p {
    font-size: 1rem;
    line-height: 1.82;
    color: var(--c-muted);
    margin-bottom: 20px;
}
.article-body ul, .article-body ol {
    padding-left: 24px;
    margin-bottom: 20px;
}
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--c-muted);
    margin-bottom: 8px;
}
.article-body strong { color: var(--c-text); font-weight: 600; }
.article-body a:not(.btn) {
    color: var(--c-accent);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.article-checklist {
    background: var(--c-light);
    border-left: 3px solid var(--c-accent);
    border-radius: 0 var(--r-m) var(--r-m) 0;
    padding: 24px 28px;
    margin: 32px 0;
    list-style: none;
    padding-left: 28px;
}
.article-checklist li {
    font-size: .9875rem;
    line-height: 1.7;
    color: var(--c-text);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}
.article-checklist li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--c-accent);
    font-weight: 700;
}
.article-cta {
    background: var(--c-dark);
    border-radius: var(--r-l);
    padding: clamp(32px, 5vw, 52px);
    text-align: center;
    margin-top: 64px;
}
.article-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-on-dk);
    margin-bottom: 12px;
    letter-spacing: -.02em;
}
.article-cta__sub {
    font-size: .9875rem;
    color: var(--c-muted-dk);
    margin-bottom: 28px;
    line-height: 1.65;
}
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .875rem;
    font-weight: 600;
    color: var(--c-accent);
    text-decoration: none;
    margin-bottom: 48px;
    transition: opacity .15s;
}
.back-to-blog:hover { opacity: .75; }

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
}


/* ── 17. Keyframes ────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ── 17. Responsive ───────────────────────── */
@media (max-width: 900px) {
    .cards-3          { grid-template-columns: repeat(2, 1fr); }
    .trust            { grid-template-columns: repeat(2, 1fr); }
    .steps            { grid-template-columns: 1fr; gap: 36px; }
    .product-showcase { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
    .cards-3,
    .cards-2 { grid-template-columns: 1fr; }

    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .footer__top    { flex-direction: column; }
    .footer__nav    { justify-content: flex-start; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .trust { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
