/* =========================================================================
   ScrollWork - shared stylesheet
   1. Design tokens
   2. Reset and base
   3. Layout primitives
   4. Buttons and badges
   5. Header and navigation
   6. Hero and product mock
   7. Marketing sections
   8. Pricing
   9. Tool pages
   10. Auth pages
   11. Dashboard
   12. Legal pages
   13. Footer and cookie banner
   14. Animations
   15. Responsive
   ========================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
    --ink-900: #0b1020;
    --ink-800: #151c33;
    --ink-700: #26304f;
    --ink-500: #4d5875;
    --ink-400: #6b7590;
    --ink-300: #97a0b8;
    --line: #e4e7f2;
    --line-soft: #eef0f8;
    --surface: #ffffff;
    --surface-muted: #f6f7fc;
    --surface-deep: #0b1020;

    --brand-500: #6366f1;
    --brand-600: #4f46e5;
    --brand-700: #4338ca;
    --brand-50: #eef0ff;
    --sky-500: #0ea5e9;
    --violet-500: #8b5cf6;
    --orange-500: #f97316;
    --green-600: #059669;
    --green-50: #ecfdf5;
    --red-600: #dc2626;
    --red-50: #fef2f2;
    --amber-50: #fffbeb;
    --amber-700: #b45309;

    --gradient-brand: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    --gradient-soft: linear-gradient(135deg, #eef0ff 0%, #e6f6ff 100%);

    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --shadow-xs: 0 1px 2px rgba(15, 23, 42, .06);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, .06);
    --shadow: 0 10px 30px rgba(15, 23, 42, .08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, .12);
    --shadow-brand: 0 18px 40px rgba(79, 70, 229, .28);

    --shell: 1180px;
    --shell-narrow: 780px;
    --header-height: 72px;

    --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- 2. Reset and base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink-700);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    margin: 0 0 .6em;
    color: var(--ink-900);
    line-height: 1.15;
    letter-spacing: -.02em;
    font-weight: 700;
}

h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.2em; }
li { margin-bottom: .4em; }

a { color: var(--brand-600); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; }
strong { color: var(--ink-900); font-weight: 650; }
small { font-size: .82rem; }

address { font-style: normal; }

:focus-visible {
    outline: 3px solid var(--brand-500);
    outline-offset: 2px;
    border-radius: 4px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 200;
    background: var(--ink-900);
    color: #fff;
    padding: .7rem 1.1rem;
    border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.icon { width: 22px; height: 22px; display: block; }

/* ---------- 3. Layout primitives ---------- */
.shell {
    width: 100%;
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--muted { background: var(--surface-muted); }
.section--dark { background: var(--surface-deep); color: rgba(255, 255, 255, .78); }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head {
    max-width: 720px;
    margin: 0 auto 56px;
    text-align: center;
}
.section-head p { color: var(--ink-500); font-size: 1.08rem; margin-bottom: 0; }
.section-head--left { margin-left: 0; text-align: left; }

.eyebrow {
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--brand-600);
    margin-bottom: 14px;
}
.section--dark .eyebrow { color: #a5b4fc; }

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-xs);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- 4. Buttons and badges ---------- */
.btn {
    --btn-bg: var(--brand-600);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem 1.4rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: .96rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gradient-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { box-shadow: 0 22px 46px rgba(79, 70, 229, .34); }

.btn--dark { background: var(--ink-900); color: #fff; }
.btn--dark:hover { background: var(--ink-800); }

.btn--ghost { background: transparent; color: var(--ink-700); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand-500); color: var(--brand-600); background: var(--brand-50); }

.btn--light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn--light:hover { background: rgba(255, 255, 255, .2); }

.btn--white { background: #fff; color: var(--ink-900); }

.btn--block { width: 100%; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--sm { padding: .55rem 1rem; font-size: .86rem; }

.badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .7rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .02em;
    background: var(--brand-50);
    color: var(--brand-700);
}
.badge--success { background: var(--green-50); color: var(--green-600); }
.badge--warning { background: var(--amber-50); color: var(--amber-700); }
.badge--danger { background: var(--red-50); color: var(--red-600); }
.badge--gradient { background: var(--gradient-brand); color: #fff; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: .86rem;
    font-weight: 600;
    color: var(--ink-500);
    box-shadow: var(--shadow-xs);
}

/* ---------- 5. Header and navigation ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck {
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}

.site-header__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: var(--header-height);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-weight: 750;
    font-size: 1.12rem;
    color: var(--ink-900);
    letter-spacing: -.02em;
}
.brand:hover { text-decoration: none; }
.brand__mark { width: 32px; height: 32px; display: block; flex: none; }
.brand--footer .brand__name { color: #fff; }

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    cursor: pointer;
    padding: 11px 10px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink-800);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle span + span { margin-top: 5px; }
.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); }

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}
.primary-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-nav__list li { margin: 0; }

.primary-nav__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .55rem .85rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 550;
    color: var(--ink-700);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.primary-nav__link:hover,
.primary-nav__link.is-active { background: var(--surface-muted); color: var(--brand-600); text-decoration: none; }
.primary-nav__link .caret { width: 15px; height: 15px; transition: transform .25s ease; }
.primary-nav__link[aria-expanded="true"] .caret { transform: rotate(180deg); }

.primary-nav__actions { display: flex; align-items: center; gap: 10px; }

.has-submenu { position: relative; }
.submenu {
    position: absolute;
    top: calc(100% + 12px);
    left: -8px;
    width: 380px;
    padding: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu,
.submenu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.submenu__item {
    display: flex;
    gap: 12px;
    padding: 11px 12px;
    border-radius: var(--radius);
    color: var(--ink-700);
    transition: background .2s ease;
}
.submenu__item:hover { background: var(--surface-muted); text-decoration: none; }
.submenu__item strong { display: block; font-size: .94rem; color: var(--ink-900); }
.submenu__item small { display: block; color: var(--ink-400); line-height: 1.4; }
.submenu__icon {
    flex: none;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--accent, var(--brand-600));
    background: color-mix(in srgb, var(--accent, #6366f1) 12%, #fff);
}

/* ---------- 6. Hero and product mock ---------- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 96px;
    background:
        radial-gradient(1000px 520px at 82% -8%, rgba(14, 165, 233, .16), transparent 60%),
        radial-gradient(760px 460px at 6% 4%, rgba(99, 102, 241, .18), transparent 62%),
        var(--surface);
}
.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 56px;
    align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero__subtitle {
    font-size: 1.14rem;
    color: var(--ink-500);
    max-width: 34em;
    margin-bottom: 30px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 18px; }
.hero__note {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    font-size: .9rem;
    color: var(--ink-400);
    margin: 0;
}
.hero__note .icon { width: 18px; height: 18px; color: var(--green-600); margin-top: 3px; flex: none; }

.mock {
    position: relative;
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, #131a33 0%, #0b1020 100%);
    padding: 18px;
    box-shadow: var(--shadow-lg);
    color: #fff;
}
.mock__bar { display: flex; align-items: center; gap: 8px; padding: 4px 6px 14px; }
.mock__dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, .22); }
.mock__file {
    margin-left: 6px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .58);
    font-weight: 550;
}
.mock__screen {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #223056 0%, #16203c 100%);
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.mock__figure {
    position: absolute;
    left: 50%;
    bottom: -8%;
    transform: translateX(-50%);
    width: 46%;
}
.mock__caption {
    position: absolute;
    left: 50%;
    bottom: 15%;
    transform: translateX(-50%);
    width: 84%;
    text-align: center;
    font-weight: 750;
    font-size: clamp(.85rem, 1.5vw, 1.05rem);
    line-height: 1.35;
    letter-spacing: -.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .55);
}
.mock__caption em { font-style: normal; color: #fbbf24; }
.mock__waves {
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    display: flex;
    align-items: flex-end;
    gap: 3px;
    padding: 0 14px 10px;
    opacity: .45;
}
.mock__waves span {
    flex: 1;
    background: linear-gradient(180deg, #818cf8, #38bdf8);
    border-radius: 3px 3px 0 0;
    animation: wave 1.6s ease-in-out infinite;
}
.mock__meta { display: flex; align-items: center; gap: 10px; padding: 14px 6px 4px; flex-wrap: wrap; }
.mock__chip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .3rem .65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
}
.mock__chip .icon { width: 14px; height: 14px; }
.mock__progress {
    margin-left: auto;
    font-size: .76rem;
    font-weight: 700;
    color: #4ade80;
}
.mock__track { height: 5px; border-radius: 999px; background: rgba(255, 255, 255, .12); margin: 10px 6px 2px; overflow: hidden; }
.mock__track i { display: block; height: 100%; width: 100%; background: var(--gradient-brand); border-radius: 999px; }

.mock__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .6rem .9rem;
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink-800);
    font-size: .82rem;
    font-weight: 650;
    box-shadow: var(--shadow);
    animation: float 5s ease-in-out infinite;
}
.mock__float .icon { width: 17px; height: 17px; color: var(--brand-600); }
.mock__float--one { top: 14%; left: -34px; }
.mock__float--two { bottom: 16%; right: -28px; animation-delay: 1.4s; }

/* ---------- 7. Marketing sections ---------- */
.proof { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface-muted); }
.proof__title { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-400); font-weight: 700; margin-bottom: 26px; }
.proof__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; text-align: center; }
.proof__value { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 750; letter-spacing: -.03em; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.proof__label { font-size: .9rem; color: var(--ink-400); }

.tool-card { display: flex; flex-direction: column; height: 100%; position: relative; overflow: hidden; }
.tool-card::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: var(--accent, var(--brand-500));
    opacity: 0;
    transition: opacity .3s ease;
}
.tool-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.tool-card:hover::after { opacity: 1; }
.tool-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    margin-bottom: 18px;
    color: var(--accent, var(--brand-600));
    background: color-mix(in srgb, var(--accent, #6366f1) 12%, #fff);
}
.tool-card__icon .icon { width: 26px; height: 26px; }
.tool-card h3 { margin-bottom: .4em; }
.tool-card p { color: var(--ink-500); font-size: .97rem; }
.tool-card__cost {
    display: inline-flex;
    align-items: baseline;
    gap: .3rem;
    font-size: .86rem;
    color: var(--ink-400);
    margin-top: auto;
    padding-top: 14px;
}
.tool-card__cost b { color: var(--ink-900); font-size: 1rem; }
.tool-card__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: 14px;
    font-weight: 650;
    font-size: .92rem;
    color: var(--brand-600);
}
.tool-card__link .icon { width: 17px; height: 17px; transition: transform .25s ease; }
.tool-card:hover .tool-card__link .icon { transform: translateX(4px); }

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.step { position: relative; padding-top: 8px; }
.step__number {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 750;
    font-size: 1.05rem;
    margin-bottom: 18px;
    box-shadow: var(--shadow-brand);
}
.step h3 { margin-bottom: .35em; }
.step p { color: var(--ink-500); font-size: .97rem; margin: 0; }

.feature-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature {
    display: flex;
    gap: 14px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.feature__icon {
    flex: none;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--brand-50);
    color: var(--brand-600);
}
.feature h3 { font-size: 1.03rem; margin-bottom: .3em; }
.feature p { margin: 0; font-size: .93rem; color: var(--ink-500); }

.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; margin: 0; font-size: .97rem; }
.check-list .icon { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--green-600); }
.check-list--two { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 28px; }

.quote-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.quote { display: flex; flex-direction: column; height: 100%; }
.quote__stars { display: flex; gap: 2px; color: #fbbf24; margin-bottom: 14px; }
.quote__stars svg { width: 17px; height: 17px; fill: currentColor; stroke: none; }
.quote blockquote { margin: 0 0 20px; font-size: 1rem; color: var(--ink-700); }
.quote__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote__avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gradient-soft);
    color: var(--brand-700);
    font-weight: 750;
    font-size: .95rem;
    flex: none;
}
.quote__name { font-weight: 650; color: var(--ink-900); font-size: .94rem; line-height: 1.3; }
.quote__role { font-size: .84rem; color: var(--ink-400); }

.faq { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq__item {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.faq__item[open] { border-color: color-mix(in srgb, var(--brand-500) 40%, #fff); box-shadow: var(--shadow-sm); }
.faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 650;
    color: var(--ink-900);
    list-style: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
    content: "";
    flex: none;
    width: 11px;
    height: 11px;
    border-right: 2px solid var(--ink-400);
    border-bottom: 2px solid var(--ink-400);
    transform: rotate(45deg) translateY(-2px);
    transition: transform .25s ease;
}
.faq__item[open] .faq__question::after { transform: rotate(-135deg) translateY(-2px); }
.faq__answer { padding: 0 22px 20px; color: var(--ink-500); font-size: .97rem; }
.faq__answer p:last-child { margin-bottom: 0; }

.cta-band {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 62px 48px;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: -40% -10% auto auto;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
}
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255, 255, 255, .86); max-width: 34em; margin: 0 auto 26px; position: relative; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; }

/* ---------- 8. Pricing ---------- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--brand-500) 35%, #fff); }
.price-card--featured {
    border-color: var(--brand-500);
    box-shadow: var(--shadow-brand);
}
.price-card--featured:hover { box-shadow: 0 26px 54px rgba(79, 70, 229, .32); }
.price-card__badge {
    position: absolute;
    top: -12px;
    left: 22px;
}
.price-card__name { font-size: .82rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 10px; }
.price-card__price { font-size: 2rem; font-weight: 750; letter-spacing: -.03em; color: var(--ink-900); line-height: 1.1; }
.price-card__once { font-size: .78rem; color: var(--ink-400); margin-bottom: 14px; }
.price-card__credits {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--surface-muted);
    margin-bottom: 12px;
}
.price-card__credits b { font-size: 1.15rem; color: var(--ink-900); }
.price-card__credits span { font-size: .85rem; color: var(--ink-400); }
.price-card__unit { font-size: .82rem; color: var(--ink-400); margin-bottom: 6px; }
.price-card__save { margin-bottom: 14px; }
.price-card__summary { font-size: .88rem; color: var(--ink-500); margin-bottom: 18px; }
.price-card__cta { margin-top: auto; }

.price-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: center;
    margin-top: 30px;
    font-size: .88rem;
    color: var(--ink-400);
}
.price-notes span { display: inline-flex; align-items: center; gap: .4rem; }
.price-notes .icon { width: 17px; height: 17px; color: var(--green-600); }

.disclosure {
    border: 1px solid color-mix(in srgb, var(--brand-500) 26%, #fff);
    background: linear-gradient(135deg, #f7f8ff 0%, #f2fbff 100%);
    border-radius: var(--radius-lg);
    padding: 28px 30px;
}
.disclosure h2 { font-size: 1.3rem; }
.disclosure ul { list-style: none; padding: 0; margin: 0 0 14px; display: grid; gap: 10px; }
.disclosure li { display: flex; gap: .6rem; font-size: .95rem; margin: 0; }
.disclosure li .icon { width: 19px; height: 19px; flex: none; margin-top: 3px; color: var(--brand-600); }
.disclosure__refund { margin: 0; font-size: .92rem; font-weight: 600; }

.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
table.data { width: 100%; border-collapse: collapse; min-width: 560px; }
table.data th, table.data td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); font-size: .94rem; }
table.data th { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-400); background: var(--surface-muted); font-weight: 700; }
table.data tr:last-child td { border-bottom: 0; }
table.data td strong { display: block; }
table.data td small { color: var(--ink-400); }

.info-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.info-card { padding: 26px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); }
.info-card h3 { font-size: 1.05rem; }
.info-card p { margin: 0; font-size: .94rem; color: var(--ink-500); }
.info-card__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); margin-bottom: 16px; }

/* ---------- 9. Tool pages ---------- */
.tool-hero {
    padding: 66px 0 56px;
    background:
        radial-gradient(720px 380px at 88% 0%, color-mix(in srgb, var(--accent, #6366f1) 16%, transparent), transparent 62%),
        var(--surface-muted);
    border-bottom: 1px solid var(--line);
}
.tool-hero__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 48px; align-items: center; }
.tool-hero__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff;
    color: var(--accent, var(--brand-600));
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.tool-hero__icon .icon { width: 30px; height: 30px; }
.tool-hero h1 { font-size: clamp(2rem, 4vw, 2.9rem); }
.tool-hero__lead { font-size: 1.1rem; color: var(--ink-500); }
.tool-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.cost-box {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    text-align: center;
}
.cost-box__label { font-size: .78rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.cost-box__value { font-size: 3rem; font-weight: 750; letter-spacing: -.04em; color: var(--accent, var(--brand-600)); line-height: 1.05; margin: 10px 0 2px; }
.cost-box__unit { font-size: .98rem; color: var(--ink-500); margin-bottom: 14px; }
.cost-box__note { font-size: .87rem; color: var(--ink-400); margin-bottom: 20px; }

.format-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.format-card { padding: 24px; border-radius: var(--radius-lg); background: var(--surface-muted); border: 1px solid var(--line); }
.format-card h3 { font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); }
.format-card p { margin: 0; font-size: .96rem; color: var(--ink-700); }

.tool-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

/* ---------- 10. Auth pages ---------- */
.auth {
    min-height: calc(100vh - var(--header-height));
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
}
.auth__form-side { display: grid; place-items: center; padding: 56px 24px; }
.auth__box { width: 100%; max-width: 440px; }
.auth__box h1 { font-size: clamp(1.7rem, 3vw, 2.1rem); margin-bottom: .3em; }
.auth__lead { color: var(--ink-500); margin-bottom: 28px; }
.auth__alt { margin-top: 22px; font-size: .94rem; color: var(--ink-500); text-align: center; }

.auth__aside {
    padding: 56px 48px;
    background:
        radial-gradient(600px 420px at 80% 10%, rgba(14, 165, 233, .28), transparent 60%),
        linear-gradient(160deg, #1b2445 0%, #0b1020 100%);
    color: rgba(255, 255, 255, .78);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.auth__aside h2 { color: #fff; font-size: 1.5rem; }
.auth__aside .check-list .icon { color: #4ade80; }
.auth__aside .check-list li { color: rgba(255, 255, 255, .84); }
.auth__aside-card {
    margin-top: 34px;
    padding: 20px 22px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
}
.auth__aside-card p { margin: 0; font-size: .92rem; }
.auth__aside-quote { font-size: .95rem; color: rgba(255, 255, 255, .9); }
.auth__aside-author { font-size: .85rem; color: rgba(255, 255, 255, .58); margin-top: 8px; }

.field { margin-bottom: 18px; }
.field > label {
    display: block;
    font-size: .88rem;
    font-weight: 650;
    color: var(--ink-800);
    margin-bottom: 7px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="password"] {
    width: 100%;
    padding: .8rem .95rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink-900);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus {
    outline: none;
    border-color: var(--brand-500);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, .14);
}
.field input[aria-invalid="true"] { border-color: var(--red-600); }
.field__hint { display: block; font-size: .82rem; color: var(--ink-400); margin-top: 6px; }
.field__error { display: block; font-size: .85rem; color: var(--red-600); margin-top: 6px; font-weight: 550; }

.field--check { display: flex; gap: .65rem; align-items: flex-start; }
.field--check input { margin-top: 4px; width: 17px; height: 17px; flex: none; accent-color: var(--brand-600); }
.field--check label { font-size: .9rem; font-weight: 450; color: var(--ink-500); margin: 0; }

.field-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; font-size: .9rem; }

.alert {
    display: flex;
    gap: .7rem;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 22px;
    font-size: .93rem;
    border: 1px solid transparent;
}
.alert .icon { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.alert p:last-child, .alert ul:last-child { margin-bottom: 0; }
.alert ul { padding-left: 1.1em; }
.alert--error { background: var(--red-50); border-color: color-mix(in srgb, var(--red-600) 24%, #fff); color: #991b1b; }
.alert--error strong { color: #991b1b; }
.alert--success { background: var(--green-50); border-color: color-mix(in srgb, var(--green-600) 24%, #fff); color: #065f46; }
.alert--info { background: var(--brand-50); border-color: color-mix(in srgb, var(--brand-500) 22%, #fff); color: var(--brand-700); }
.alert--warning { background: var(--amber-50); border-color: color-mix(in srgb, var(--amber-700) 22%, #fff); color: var(--amber-700); }

.notice-page { padding: 84px 0 96px; }
.notice-box {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    padding: 46px 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}
.notice-box__icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    background: var(--green-50);
    color: var(--green-600);
}
.notice-box__icon .icon { width: 32px; height: 32px; }
.notice-box h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.notice-box p { color: var(--ink-500); }
.notice-box__hint { font-size: .9rem; color: var(--ink-400); }

/* ---------- 11. Dashboard ---------- */
.dash { background: var(--surface-muted); min-height: calc(100vh - var(--header-height)); padding: 40px 0 72px; }
.dash__head { display: flex; flex-wrap: wrap; gap: 24px; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.dash__head h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: .2em; }
.dash__head p { margin: 0; color: var(--ink-500); }

.dash__top { display: grid; grid-template-columns: minmax(0, 1.15fr) repeat(3, minmax(0, .62fr)); gap: 18px; margin-bottom: 32px; }
.balance-card {
    padding: 26px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #4f46e5 0%, #0ea5e9 100%);
    color: #fff;
    box-shadow: var(--shadow-brand);
    display: flex;
    flex-direction: column;
}
.balance-card__label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; color: rgba(255, 255, 255, .78); }
.balance-card__value { font-size: 2.6rem; font-weight: 750; letter-spacing: -.03em; line-height: 1.1; margin: 6px 0 2px; }
.balance-card__hint { font-size: .84rem; color: rgba(255, 255, 255, .74); margin-bottom: 20px; }
.balance-card .btn { margin-top: auto; align-self: flex-start; }

.stat-card { padding: 22px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); }
.stat-card__icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); margin-bottom: 14px; }
.stat-card__value { font-size: 1.7rem; font-weight: 750; color: var(--ink-900); letter-spacing: -.02em; line-height: 1.1; }
.stat-card__label { font-size: .87rem; color: var(--ink-400); }

.panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; margin-bottom: 24px; }
.panel__head { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: baseline; justify-content: space-between; margin-bottom: 20px; }
.panel__head h2 { font-size: 1.2rem; margin: 0; }
.panel__head p { margin: 0; font-size: .88rem; color: var(--ink-400); }

.dash-tools { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.dash-tool {
    text-align: left;
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--surface);
    font-family: inherit;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    width: 100%;
}
.dash-tool:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: color-mix(in srgb, var(--accent, #6366f1) 42%, #fff); }
.dash-tool__icon {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--accent, var(--brand-600));
    background: color-mix(in srgb, var(--accent, #6366f1) 12%, #fff);
}
.dash-tool__body h3 { font-size: 1.02rem; margin-bottom: .25em; }
.dash-tool__body p { margin: 0 0 .5em; font-size: .9rem; color: var(--ink-500); }
.dash-tool__cost { font-size: .84rem; color: var(--ink-400); }
.dash-tool__cost b { color: var(--ink-800); }

.tool-state {
    margin-top: 14px;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: var(--amber-50);
    border: 1px solid color-mix(in srgb, var(--amber-700) 20%, #fff);
    color: var(--amber-700);
    font-size: .9rem;
}
.tool-state[hidden] { display: none; }
.tool-state strong { color: var(--amber-700); }

.account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.definition { display: grid; gap: 12px; margin: 0; }
.definition div { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line-soft); }
.definition dt { font-size: .9rem; color: var(--ink-400); margin: 0; }
.definition dd { margin: 0; font-size: .93rem; font-weight: 600; color: var(--ink-900); text-align: right; }

.placeholder-box {
    padding: 22px;
    border-radius: var(--radius);
    border: 1px dashed var(--line);
    background: var(--surface-muted);
}
.placeholder-box h3 { font-size: 1rem; }
.placeholder-box p { margin: 0 0 16px; font-size: .91rem; color: var(--ink-500); }

/* ---------- 12. Legal pages ---------- */
.legal-hero { padding: 56px 0 40px; background: var(--surface-muted); border-bottom: 1px solid var(--line); }
.legal-hero h1 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: .35em; }
.legal-hero__meta { display: flex; flex-wrap: wrap; gap: 10px 20px; font-size: .9rem; color: var(--ink-400); margin: 0; }
.legal-hero__meta span { display: inline-flex; align-items: center; gap: .4rem; }
.legal-hero__meta .icon { width: 17px; height: 17px; }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 56px; padding: 56px 0 84px; align-items: start; }
.legal-toc { position: sticky; top: calc(var(--header-height) + 24px); }
.legal-toc h2 { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-400); margin-bottom: 14px; }
.legal-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; display: grid; gap: 4px; }
.legal-toc li { margin: 0; counter-increment: toc; }
.legal-toc a {
    display: block;
    padding: .4rem .6rem;
    border-radius: var(--radius-sm);
    font-size: .88rem;
    color: var(--ink-500);
    border-left: 2px solid var(--line);
}
.legal-toc a::before { content: counter(toc) ". "; color: var(--ink-300); }
.legal-toc a:hover { color: var(--brand-600); background: var(--surface-muted); border-left-color: var(--brand-500); text-decoration: none; }

.legal-body { max-width: 74ch; }
.legal-body section { margin-bottom: 44px; }
.legal-body section:last-child { margin-bottom: 0; }
.legal-body h2 {
    font-size: 1.35rem;
    padding-top: 6px;
    margin-bottom: .6em;
}
.legal-body h3 { font-size: 1.05rem; margin-top: 1.6em; }
.legal-body p, .legal-body li { font-size: 1rem; color: var(--ink-700); }
.legal-body ul, .legal-body ol { padding-left: 1.3em; }
.legal-body li { margin-bottom: .55em; }

.legal-intro { margin-bottom: 40px; }
.legal-intro p { font-size: 1.06rem; color: var(--ink-500); }
.legal-intro p:last-child { margin-bottom: 0; }

.legal-identity {
    padding: 24px 26px;
    border-radius: var(--radius-lg);
    background: var(--surface-muted);
    border: 1px solid var(--line);
    margin-bottom: 40px;
}
.legal-identity h2 { font-size: 1.05rem; margin-bottom: .5em; }
.legal-identity p { margin: 0; font-size: .95rem; }
.legal-identity address { line-height: 1.6; }

.legal-callout {
    padding: 20px 22px;
    border-radius: var(--radius);
    border-left: 4px solid var(--brand-500);
    background: var(--brand-50);
    margin: 24px 0;
}
.legal-callout p { margin: 0; font-size: .96rem; color: var(--brand-700); }
.legal-callout p + p { margin-top: .8em; }

.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-bottom: 40px; }
.contact-card { padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); }
.contact-card__icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); margin-bottom: 14px; }
.contact-card h3 { font-size: 1rem; margin-bottom: .35em; }
.contact-card p { margin: 0; font-size: .93rem; color: var(--ink-500); }

/* ---------- 13. Footer and cookie banner ---------- */
.site-footer { background: var(--surface-deep); color: rgba(255, 255, 255, .66); padding: 68px 0 32px; font-size: .94rem; }
.site-footer a { color: rgba(255, 255, 255, .74); }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 44px; }
.site-footer__brand { max-width: 40ch; }
.site-footer__about { margin: 18px 0 24px; max-width: 34em; color: rgba(255, 255, 255, .6); }
.site-footer__identity { font-size: .88rem; line-height: 1.6; }
.site-footer__identity-title { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .42); margin: 0 0 .4em; font-weight: 700; }
.site-footer__identity address { margin-bottom: 18px; }
.site-footer__identity strong { color: #fff; }
.site-footer__title { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255, 255, 255, .46); margin-bottom: 16px; font-weight: 700; }
.site-footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer__col li { margin: 0; }
.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    justify-content: space-between;
    align-items: center;
    margin-top: 52px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .85rem;
    color: rgba(255, 255, 255, .48);
}
.site-footer__bottom p { margin: 0; }
.site-footer__vat { max-width: 44em; }

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 150;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    animation: rise .4s ease both;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__inner {
    max-width: var(--shell);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.cookie-banner__title { font-size: 1.02rem; margin-bottom: .25em; }
.cookie-banner__text { margin: 0; font-size: .9rem; color: var(--ink-500); max-width: 72ch; }
.cookie-banner__actions { display: flex; gap: 10px; margin-left: auto; flex-wrap: wrap; }

/* ---------- 14. Animations ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes wave {
    0%, 100% { height: 22%; }
    50% { height: 88%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}
@keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ---------- 15. Responsive ---------- */
@media (max-width: 1080px) {
    .price-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .dash__top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .legal-layout { grid-template-columns: 1fr; gap: 32px; }
    .legal-toc { position: static; }
    .legal-toc ol { grid-template-columns: repeat(2, minmax(0, 1fr)); display: grid; }
}

@media (max-width: 960px) {
    .hero__grid, .tool-hero__grid { grid-template-columns: 1fr; gap: 44px; }
    .mock__float--one { left: 8px; }
    .mock__float--two { right: 8px; }
    .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid--3, .steps, .feature-list, .quote-grid, .info-grid, .tool-strip, .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .auth { grid-template-columns: 1fr; }
    .auth__aside { order: 2; padding: 44px 28px; }
    .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
    .section { padding: 72px 0; }
}

@media (max-width: 860px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        padding: 18px;
        margin: 0;
        background: var(--surface);
        border: 1px solid var(--line);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        display: none;
    }
    .primary-nav.is-open { display: flex; }
    .primary-nav__list { flex-direction: column; align-items: stretch; gap: 2px; }
    .primary-nav__link { justify-content: space-between; width: 100%; padding: .7rem .8rem; }
    .primary-nav__actions { flex-direction: column-reverse; align-items: stretch; }
    .primary-nav__actions .btn { width: 100%; }
    .submenu {
        position: static;
        width: auto;
        opacity: 1;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 4px 0 4px 8px;
        height: 0;
        overflow: hidden;
    }
    .submenu.is-open { visibility: visible; height: auto; }
    .has-submenu:hover .submenu { visibility: hidden; height: 0; }
    .has-submenu:hover .submenu.is-open { visibility: visible; height: auto; }
}

@media (max-width: 720px) {
    body { font-size: 16px; }
    .grid--2, .grid--3, .grid--4, .steps, .feature-list, .quote-grid, .info-grid,
    .price-grid, .format-grid, .dash-tools, .account-grid, .tool-strip,
    .contact-cards, .check-list--two, .proof__grid { grid-template-columns: 1fr; }
    .dash__top { grid-template-columns: 1fr; }
    .proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .section { padding: 60px 0; }
    .cta-band { padding: 44px 24px; }
    .shell { padding: 0 18px; }
    .hero { padding: 56px 0 72px; }
    .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
    .cookie-banner { padding: 18px; }
    .cookie-banner__actions { margin-left: 0; width: 100%; }
    .cookie-banner__actions .btn { flex: 1; }
    .legal-toc ol { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .notice-box { padding: 34px 24px; }
    .definition div { flex-direction: column; gap: 2px; }
    .definition dd { text-align: left; }
}
