/* ============================================================================
   dKasa Cloud — main.css
   Editorial styl. Tyrkysová · azurová · modrošedá.
   Sharp corners, large display typography, full-bleed color blocks,
   asymmetric layouts, numbered sections.
   ============================================================================ */

/* ---- DESIGN TOKENS ------------------------------------------------------- */
:root {
    /* Tyrkysová (primary brand) */
    --c-teal:        #0d9488;
    --c-teal-bright: #14b8a6;
    --c-teal-deep:   #0f766e;
    --c-teal-tint:   #f0fdfa;

    /* Cyan – jasný tyrkysový akcent (CTA, links) */
    --c-cyan:        #06b6d4;
    --c-cyan-bright: #22d3ee;
    --c-cyan-tint:   #ecfeff;

    /* Azurová (sekundární akcent) */
    --c-azure:        #0284c7;
    --c-azure-bright: #0ea5e9;
    --c-azure-deep:   #075985;

    /* Modrošedá (text, dark surfaces) */
    --c-slate-900:   #0f172a;
    --c-slate-800:   #1e293b;
    --c-slate-700:   #334155;
    --c-slate-600:   #475569;
    --c-slate-500:   #64748b;
    --c-slate-400:   #94a3b8;
    --c-slate-300:   #cbd5e1;
    --c-slate-200:   #e2e8f0;
    --c-slate-100:   #f1f5f9;
    --c-slate-50:    #f8fafc;

    --c-bg:          #fafbfc;
    --c-paper:       #ffffff;
    --c-ink:         var(--c-slate-900);
    --c-text:        var(--c-slate-700);
    --c-text-soft:   var(--c-slate-500);
    --c-line:        var(--c-slate-200);

    --font-display:  -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Helvetica Neue", system-ui, sans-serif;
    --font-body:     -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", system-ui, sans-serif;
    --font-mono:     ui-monospace, "SF Mono", Menlo, Consolas, monospace;

    --container:     1280px;
    --container-rd:  860px;
    --header-h:      80px;
}

/* ---- RESET --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: var(--c-teal-deep); text-decoration: none; transition: color .15s; }
a:hover { color: var(--c-teal); }
::selection { background: var(--c-teal); color: #fff; }

/* ---- TYPOGRAFIE ---------------------------------------------------------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--c-ink);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin: 0 0 .35em;
    font-weight: 700;
}
h1 {
    font-size: clamp(2.8rem, 7.5vw, 5.5rem);
    letter-spacing: -0.045em;
    font-weight: 700;
}
h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    letter-spacing: -0.04em;
    line-height: 1.05;
}
h3 {
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    letter-spacing: -0.025em;
    line-height: 1.2;
}
h4 { font-size: 1.05rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; color: var(--c-text); }
.lead {
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    line-height: 1.55;
    color: var(--c-slate-600);
    font-weight: 400;
    letter-spacing: -0.01em;
}
em {
    font-style: italic;
    color: var(--c-teal);
    font-weight: 600;
}
small { font-size: 13px; color: var(--c-text-soft); }

/* Display variant pro číselné údaje */
.numeric {
    font-feature-settings: "tnum" 1, "lnum" 1;
    letter-spacing: -0.04em;
}

/* ---- LAYOUT HELPERS ------------------------------------------------------ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}
.container--rd { max-width: var(--container-rd); margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) {
    .container, .container--rd { padding: 0 22px; }
}

.section { padding: clamp(72px, 9vw, 140px) 0; position: relative; }
.section--tight { padding: clamp(40px, 5vw, 70px) 0; }
.section--soft { background: var(--c-slate-50); }
.section--tint { background: var(--c-teal-tint); }

/* Full-bleed barevný blok – láme šířku obsahu */
.bleed {
    padding: clamp(80px, 11vw, 160px) 0;
    position: relative;
}
.bleed--teal { background: var(--c-teal); color: #fff; }
.bleed--teal h2, .bleed--teal h3 { color: #fff; }
.bleed--teal .lead { color: rgba(255,255,255,.85); }
.bleed--teal a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }
.bleed--teal a:hover { color: #fff; border-bottom-color: #fff; }

.bleed--ink { background: var(--c-slate-900); color: var(--c-slate-300); }
.bleed--ink h2, .bleed--ink h3 { color: #fff; }
.bleed--ink .lead { color: var(--c-slate-400); }

.bleed--azure { background: var(--c-azure-deep); color: #fff; }
.bleed--azure h2 { color: #fff; }
.bleed--azure .lead { color: rgba(255,255,255,.8); }

.text-center { text-align: center; }
.muted { color: var(--c-text-soft); }

/* ---- SECTION HEADER (s labelem) ----------------------------------------- */
.section-head {
    margin-bottom: clamp(40px, 6vw, 80px);
    max-width: 760px;
}
.section-head__label {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-teal);
    margin-bottom: 28px;
}
.section-head__label::before {
    content: "";
    display: inline-block;
    width: 36px; height: 1px;
    background: var(--c-teal);
}
.bleed--teal .section-head__label,
.bleed--ink .section-head__label { color: var(--c-cyan-bright); }
.bleed--teal .section-head__label::before,
.bleed--ink .section-head__label::before { background: var(--c-cyan-bright); }

/* ---- HEADER + NAV -------------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,251,252,0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(15,23,42,0.06);
}
.site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h);
    gap: 16px;
}

/* Brand: SVG logo */
.brand {
    display: inline-flex; align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.brand:hover { opacity: 0.88; }
.brand__logo {
    display: block;
    height: 38px;
    width: auto;
}
/* SVG logo barvy — header (světlé pozadí) */
.brand__logo .logo-mark-bg    { fill: var(--c-teal); }
.brand__logo .logo-text-dark  { fill: #2B2A29; fill-rule: nonzero; }
.brand__logo .logo-text-muted { fill: #64748B; fill-rule: nonzero; }

/* SVG logo barvy — footer (tmavé pozadí) */
.brand__logo--footer .logo-mark-bg           { fill: var(--c-teal); }
.brand__logo--footer .logo-text-footer       { fill: #ffffff; fill-rule: nonzero; }
.brand__logo--footer .logo-text-footer-muted { fill: #94a3b8; fill-rule: nonzero; }

/* Fallback — schovat staré text-logo elementy */
.brand__mark, .brand__type, .brand__sub { display: none; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav__link {
    color: var(--c-slate-600);
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: color .15s;
    position: relative;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 14px; right: 14px; bottom: 6px;
    height: 2px;
    background: var(--c-teal);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .2s;
}
.nav__link:hover { color: var(--c-ink); }
.nav__link:hover::after,
.nav__link--active::after { transform: scaleX(1); }
.nav__link--active { color: var(--c-ink); }

.nav__cta { margin-left: 14px; }

.nav-toggle {
    display: none;
    background: transparent;
    border: 0; padding: 8px;
    color: var(--c-ink);
    position: relative;
}
.nav-toggle__icon { display: block; }
.nav-toggle__icon--close { display: none; }
.nav-toggle.is-open .nav-toggle__icon--open  { display: none; }
.nav-toggle.is-open .nav-toggle__icon--close { display: block; }

@media (max-width: 1000px) {
    .nav-toggle { display: inline-flex; align-items: center; }
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: var(--c-bg);
        flex-direction: column;
        align-items: stretch;
        padding: 24px 32px;
        gap: 0;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.16,1,.3,1);
        overflow-x: hidden;
        overflow-y: auto;
        box-sizing: border-box;
        z-index: 99;
    }
    .nav.is-open { transform: translateX(0); }
    .nav__link {
        padding: 18px 0;
        font-size: 22px;
        font-family: var(--font-display);
        letter-spacing: -0.02em;
        color: var(--c-ink);
        border-bottom: 1px solid var(--c-line);
    }
    .nav__link::after { display: none; }
    .nav__link:last-of-type { border-bottom: 0; }
    .nav__cta { margin: 28px 0 0; }
    .nav__cta .btn { width: 100%; justify-content: center; }
}

/* ---- TLAČÍTKA ------------------------------------------------------------ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    border: 0;
    transition: background .15s, color .15s, transform .12s, box-shadow .15s;
    text-decoration: none;
    cursor: pointer;
    line-height: 1;
    /* sharp corners – signature */
}
.btn:hover { transform: translateY(-1px); }
.btn--primary {
    background: var(--c-ink);
    color: #fff;
}
.btn--primary:hover { background: var(--c-slate-800); color: #fff; box-shadow: 0 10px 24px -8px rgba(15,23,42,.35); }
.btn--accent {
    background: var(--c-teal);
    color: #fff;
}
.btn--accent:hover { background: var(--c-teal-deep); color: #fff; box-shadow: 0 10px 24px -8px rgba(13,148,136,.5); }
.btn--ghost {
    background: transparent;
    color: var(--c-ink);
    box-shadow: inset 0 0 0 1.5px var(--c-ink);
}
.btn--ghost:hover { background: var(--c-ink); color: #fff; }
.btn--white {
    background: #06b6d4;
    color: var(--c-ink);
}
.btn--white:hover { background: var(--c-slate-50); color: var(--c-ink); }
.btn--link {
    background: transparent;
    color: var(--c-teal-deep);
    padding: 12px 0;
    border-bottom: 1.5px solid var(--c-teal);
}
.btn--link:hover { color: var(--c-teal); }
.btn--lg { padding: 18px 34px; font-size: 16px; }
.btn--sm { padding: 10px 18px; font-size: 13.5px; }
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ---- HERO (TYPOGRAPHY-ONLY) --------------------------------------------- */
/* ---- HERO / INTRO ------------------------------------------------------- */
.intro {
    padding: clamp(80px, 12vw, 180px) 0 clamp(70px, 10vw, 140px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background-color: var(--c-slate-900);
}

/* Reálná fotka v pozadí + tmavý overlay pro čitelnost */
.intro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("/assets/img/hero.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* fallback gradient pokud se obrázek nenačte */
    background-color: var(--c-slate-800);
}
/* Overlay pro kontrast textu — vrstva slate→teal */
.intro::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(105deg, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.72) 45%, rgb(23 53 59) 100%), radial-gradient(ellipse 60% 50% at 0% 100%, rgba(6, 182, 212, 0.80), transparent 90%);
}

.intro__meta {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}
.intro__meta::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.2);
    max-width: 400px;
    min-width: 40px;
}
.intro__meta strong {
    color: var(--c-cyan-bright);
    font-weight: 700;
}

/* Větší nadpis (kompromis: ne tak obří jako původně, ale viditelnější) */
.intro__title {
    font-size: clamp(2.4rem, 7vw, 5.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    font-weight: 700;
    margin-bottom: 0.45em;
    max-width: 16ch;
    color: #fff;
}
.intro__title em {
    font-style: italic;
    color: var(--c-cyan-bright);
    font-weight: 700;
}
.intro__lead {
    max-width: 580px;
    margin-bottom: 44px;
    color: rgba(255,255,255,0.82);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.intro__ctas {
    display: flex; gap: 14px; flex-wrap: wrap;
    align-items: center;
}
/* Tlačítka uvnitř tmavého hera — primární nech tyrkysové, sekundární světlé */
.intro .btn--accent { background: var(--c-cyan); color: var(--c-slate-900); }
.intro .btn--accent:hover { background: var(--c-cyan-bright); color: var(--c-slate-900); box-shadow: 0 10px 24px -8px rgba(6,182,212,0.6); }
.intro .btn--link { color: #fff; border-bottom-color: var(--c-cyan-bright); }
.intro .btn--link:hover { color: var(--c-cyan-bright); }

/* INTRO CREDIT — pevný grid pro 4 sloupce, padá responzivně */
.intro__credit {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.02em;
    line-height: 1.45;
}
.intro__credit > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.intro__credit strong {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.005em;
}
@media (max-width: 760px) {
    .intro__credit { grid-template-columns: repeat(2, 1fr); gap: 22px 20px; }
}
@media (max-width: 420px) {
    .intro__credit { grid-template-columns: 1fr; gap: 18px; }
    .intro__credit > div {
        flex-direction: row;
        align-items: baseline;
        gap: 12px;
    }
    .intro__credit strong { min-width: 130px; }
}

/* ---- TICKER (INLINE STATS) ---------------------------------------------- */
.ticker {
    border-top: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    padding: clamp(24px, 3vw, 40px) 0;
    background: var(--c-paper);
}
/* Mobil: 2-sloupcový grid */
.ticker__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 24px;
    font-family: var(--font-display);
    font-size: 14px;
}
.ticker__item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--c-slate-500);
    min-width: 0;
    line-height: 1.3;
}
.ticker__item strong {
    color: var(--c-teal);
    font-weight: 700;
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: -0.03em;
    flex-shrink: 0;
}
/* ComGate položka — červená */
.ticker__item--comgate strong {
    color: #F44336;
}
.ticker__item span {
    min-width: 0;
    overflow-wrap: anywhere;
    font-size: clamp(13px, 1.4vw, 15px);
}
/* Separátory na mobilu schované */
.ticker__sep { display: none; color: var(--c-slate-300); }

/* Mezikrok 540px: 3 sloupce */
@media (min-width: 540px) {
    .ticker__inner { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px 28px; }
}

/* Tablet+: jednořádkový flex se separátory */
@media (min-width: 820px) {
    .ticker__inner {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: clamp(16px, 2vw, 32px);
        font-size: 15px;
        justify-content: space-between;
    }
    .ticker__sep {
        display: inline-block;
        font-size: 20px;
        color: var(--c-slate-300);
        flex-shrink: 0;
    }
    .ticker__item { gap: 12px; }
    .ticker__item strong { font-size: clamp(24px, 2.4vw, 30px); }
}

/* ---- NUMBERED FEATURE LIST (no cards!) ---------------------------------- */
.numbered {
    display: grid;
    gap: 0;
}
.numbered__item {
    display: grid;
    grid-template-columns: 110px 1fr 1fr;
    gap: clamp(20px, 4vw, 70px);
    padding: clamp(40px, 5vw, 60px) 0;
    border-top: 1px solid var(--c-line);
    align-items: start;
}
.numbered__item:last-child { border-bottom: 1px solid var(--c-line); }
.numbered__num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 300;
    color: var(--c-teal);
    letter-spacing: -0.03em;
    line-height: 1;
    font-feature-settings: "tnum" 1, "lnum" 1;
}
.numbered__title {
    font-size: clamp(1.5rem, 2.4vw, 1.85rem);
    margin: 0 0 0.5em;
    line-height: 1.15;
}
.numbered__text {
    color: var(--c-slate-600);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
.numbered__text + .numbered__text { margin-top: 1em; }
@media (max-width: 900px) {
    .numbered__item {
        grid-template-columns: 60px 1fr;
        gap: 24px;
    }
    .numbered__num { font-size: 2rem; }
    .numbered__title { grid-column: 2; }
    .numbered__body { grid-column: 2; }
}

/* ---- BAY (asymmetric magazine split) ------------------------------------ */
.bay {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: clamp(40px, 6vw, 100px);
    align-items: center;
}
.bay--reverse { grid-template-columns: 7fr 5fr; }
.bay--reverse > :first-child { order: 2; }
.bay--equal { grid-template-columns: 1fr 1fr; }
.bay__visual {
    
    position: relative;
    overflow: hidden;
}
.bay__visual--wide { aspect-ratio: 5 / 4; }
.bay__visual svg { width: 100%; height: 100%; display: block; }
@media (max-width: 900px) {
    .bay, .bay--reverse, .bay--equal { grid-template-columns: 1fr; gap: 40px; }
    .bay--reverse > :first-child { order: 0; }
    .bay__visual, .bay__visual--wide { aspect-ratio: 4 / 3; }
}

.bay__heading {
    font-size: clamp(1.85rem, 3.8vw, 3rem);
    margin-bottom: 0.5em;
}
.bay__body { max-width: 540px; }
.bay__body p { font-size: 16.5px; line-height: 1.65; }

/* ---- MANIFESTO (big quote-ish text block on full bleed) ----------------- */
.manifesto {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
.manifesto__lead {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.15;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -0.025em;
    color: #fff;
}
.manifesto__lead em {
    font-style: italic;
    color: var(--c-cyan-bright);
}
.manifesto__sub {
    margin-top: 32px;
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
}

/* ---- PRICING (no cards, table-style horizontal lines) ------------------- */
.pricing-toggle {
    display: inline-flex;
    padding: 4px;
    background: var(--c-slate-100);
    margin: 0 auto 60px;
}
.pricing-toggle__btn {
    background: transparent; border: 0;
    padding: 11px 24px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: -0.005em;
    color: var(--c-slate-500);
    transition: background .15s, color .15s;
    cursor: pointer;
}
.pricing-toggle__btn.is-active {
    background: var(--c-ink); color: #fff;
}
.pricing-toggle__save {
    margin-left: 6px; font-size: 11px;
    background: var(--c-teal); color: #fff;
    padding: 2px 8px;
    font-weight: 700;
}

.pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--c-ink);
}
@media (max-width: 1100px) { .pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing { grid-template-columns: 1fr; } }

.plan {
    padding: 36px 28px 32px;
    position: relative;
    border-bottom: 1px solid var(--c-line);
    background: transparent;
}
.plan + .plan { border-left: 1px solid var(--c-line); }
@media (max-width: 1100px) {
    .plan:nth-child(3) { border-left: 0; }
}
@media (max-width: 600px) {
    .plan + .plan { border-left: 0; }
}

.plan--featured {
    background: var(--c-teal);
    color: #fff;
}
.plan--featured .plan__name,
.plan--featured .plan__price,
.plan--featured .plan__list li { color: #fff; }
.plan--featured .plan__per { color: rgba(255,255,255,0.7); }
.plan--featured .plan__desc { color: rgba(255,255,255,0.85); }
.plan--featured .plan__list li svg { color: var(--c-cyan-bright); }
.plan--featured .btn--ghost { color: #fff; box-shadow: inset 0 0 0 1.5px #fff; }
.plan--featured .btn--ghost:hover { background: #fff; color: var(--c-teal-deep); }

.plan__badge {
    position: absolute;
    top: -1px; left: 0;
    display: inline-block;
    background: var(--c-cyan-bright);
    color: var(--c-slate-900);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
}
.plan__name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-slate-500);
    margin-bottom: 24px;
    padding-top: 8px;
}
.plan__price {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: -0.045em;
    line-height: 1;
    font-feature-settings: "tnum" 1, "lnum" 1;
}
.plan__per {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-slate-500);
    margin-top: 8px;
    letter-spacing: 0;
}
.plan__desc {
    margin: 20px 0 28px;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--c-slate-600);
}
.plan__list { list-style: none; padding: 0; margin: 0 0 32px; }
.plan__list li {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 7px 0;
    font-size: 14px;
    color: var(--c-slate-700);
    line-height: 1.45;
}
.plan__list li svg {
    width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px;
    color: var(--c-teal);
}
.plan__list li.dim { color: var(--c-slate-400); }
.plan__list li.dim svg { color: var(--c-slate-300); }

/* ---- FOOTER -------------------------------------------------------------- */
.site-footer {
    background: var(--c-slate-900);
    color: var(--c-slate-400);
    padding: 90px 0 36px;
    font-size: 14px;
}
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 70px;
}
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .site-footer__grid { grid-template-columns: 1fr; gap: 36px; } }

.site-footer h4 {
    color: #fff;
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    margin-bottom: 20px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 6px 0; }
.site-footer a { color: var(--c-slate-400); }
.site-footer a:hover { color: var(--c-cyan-bright); }
.site-footer__brand {
    display: inline-flex; align-items: center;
    margin-bottom: 24px;
    color: #fff;
}
.site-footer__brand .brand__logo--footer {
    height: 38px;
    width: auto;
}
.site-footer__about {
    color: var(--c-slate-300);
    max-width: 340px;
    line-height: 1.65;
    margin-bottom: 0;
}
.site-footer__bottom {
    border-top: 1px solid var(--c-slate-800);
    padding-top: 28px;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: var(--c-slate-500);
}
.site-footer__bottom a { color: var(--c-slate-300); }

/* ---- COOKIE BAR (sidebar-slide style) ----------------------------------- */
.cookie {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 200;
    max-width: 420px;
    background: var(--c-slate-900);
    color: #fff;
    padding: 28px 28px 24px;
    border-left: 4px solid var(--c-teal);
    box-shadow: 0 30px 60px -20px rgba(15,23,42,0.5);
    transform: translateY(calc(100% + 30px));
    transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.cookie.is-open { transform: translateY(0); }
.cookie__title {
    font-family: var(--font-display);
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-cyan-bright);
    margin-bottom: 12px;
}
.cookie__text {
    font-size: 14px;
    color: var(--c-slate-300);
    line-height: 1.55;
    margin-bottom: 20px;
}
.cookie__text a { color: var(--c-cyan-bright); border-bottom: 1px solid rgba(34,211,238,0.4); }
.cookie__text a:hover { border-bottom-color: var(--c-cyan-bright); }
.cookie__buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie__btn {
    padding: 12px 18px;
    border: 0;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: -0.005em;
    cursor: pointer;
    transition: background .15s, color .15s;
    flex: 1;
    min-width: 130px;
}
.cookie__btn--all { background: var(--c-teal); color: #fff; }
.cookie__btn--all:hover { background: var(--c-teal-bright); }
.cookie__btn--needed {
    background: transparent;
    color: var(--c-slate-200);
    box-shadow: inset 0 0 0 1.5px var(--c-slate-700);
}
.cookie__btn--needed:hover {
    box-shadow: inset 0 0 0 1.5px var(--c-slate-400);
    color: #fff;
}
@media (max-width: 600px) {
    .cookie {
        left: 12px; right: 12px; bottom: 12px;
        max-width: none;
        padding: 22px;
    }
    .cookie__btn { flex: 1 1 100%; }
}

/* ---- BREADCRUMBS --------------------------------------------------------- */
.crumbs {
    padding: 18px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-slate-400);
    border-bottom: 1px solid var(--c-line);
    background: var(--c-paper);
}
.crumbs a { color: var(--c-slate-500); }
.crumbs a:hover { color: var(--c-teal); }
.crumbs__sep { margin: 0 10px; opacity: .5; }

/* ---- PAGE HERO (smaller than home) -------------------------------------- */
.page-hero {
    padding: clamp(60px, 8vw, 110px) 0 clamp(40px, 5vw, 70px);
    background:
        radial-gradient(ellipse 60% 50% at 90% 0%, rgba(13,148,136,0.07), transparent 60%),
        var(--c-bg);
}
.page-hero__title { max-width: 18ch; }
.page-hero__lead { max-width: 600px; margin-top: 24px; }

/* ---- PROSE -------------------------------------------------------------- */
.prose { max-width: 720px; margin-inline: auto; font-size: 17px; line-height: 1.75; color: var(--c-slate-700); }
.prose h2 { margin-top: 2.4em; font-size: 1.85rem; }
.prose h3 { margin-top: 2em; font-size: 1.3rem; }
.prose ul, .prose ol { padding-left: 1.4em; margin: 0 0 1.4em; }
.prose li { margin: .5em 0; color: var(--c-slate-700); }
.prose strong { color: var(--c-ink); font-weight: 600; }
.prose code {
    font-family: var(--font-mono);
    background: var(--c-cyan-tint);
    color: var(--c-azure-deep);
    padding: 2px 6px;
    font-size: 15px;
}
.prose a { border-bottom: 1px solid var(--c-teal); }

/* ---- CONTACT ------------------------------------------------------------- */
.contact-card {
    background: var(--c-paper);
    padding: clamp(32px, 4vw, 50px);
    border-top: 3px solid var(--c-teal);
}
.contact-card h3 { margin-bottom: 24px; }
.contact-card dl { margin: 0; }
.contact-card dt {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--c-slate-500);
    margin-top: 24px;
}
.contact-card dt:first-of-type { margin-top: 0; }
.contact-card dd {
    margin: 6px 0 0;
    font-size: 17px;
    color: var(--c-ink);
}
.contact-card dd a {
    color: var(--c-teal-deep);
    border-bottom: 1px solid var(--c-teal);
}

/* ---- FAQ ---------------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq__item {
    padding: 26px 0;
    border-bottom: 1px solid var(--c-line);
}
.faq__item:first-child { border-top: 1px solid var(--c-line); }
.faq__item summary {
    cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--c-ink);
    letter-spacing: -0.015em;
    gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    font-size: 28px;
    font-weight: 200;
    color: var(--c-teal);
    transition: transform .25s;
    line-height: 1;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
    margin: 14px 0 0;
    color: var(--c-slate-600);
    line-height: 1.7;
}

/* ---- TABLE -------------------------------------------------------------- */
.table {
    width: 100%; border-collapse: collapse;
    margin: 24px 0;
    font-size: 15px;
}
.table th, .table td {
    padding: 16px 18px;
    text-align: left;
    border-bottom: 1px solid var(--c-line);
}
.table th {
    font-family: var(--font-display);
    font-weight: 600; color: var(--c-ink);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    border-top: 2px solid var(--c-ink);
    border-bottom: 2px solid var(--c-ink);
}
.table td { color: var(--c-slate-600); }
.table--compare th:first-child,
.table--compare td:first-child { color: var(--c-ink); font-weight: 500; text-transform: none; letter-spacing: -0.005em; font-family: var(--font-body); }
.table--compare svg.ok  { color: var(--c-teal); }
.table--compare svg.no  { color: var(--c-slate-300); }

/* ---- UTILITY ------------------------------------------------------------- */
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.divider {
    border: 0;
    border-top: 1px solid var(--c-line);
    margin: clamp(40px, 5vw, 70px) 0;
}
.divider--bold {
    border-top-width: 2px;
    border-top-color: var(--c-ink);
}

.check-list { list-style: none; padding: 0; margin: 24px 0; }
.check-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 9px 0;
    font-size: 16px;
    color: var(--c-slate-700);
    line-height: 1.55;
}
.check-list li svg {
    width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px;
    color: var(--c-teal);
}

/* ---- SKIP LINK ----------------------------------------------------------- */
.skip-link {
    position: absolute; top: -40px; left: 16px;
    background: var(--c-ink); color: #fff;
    padding: 10px 16px;
    font-size: 14px;
    z-index: 1000;
    transition: top .15s;
}
.skip-link:focus { top: 8px; color: #fff; }

/* ---- iOS / SAFARI FIXES ------------------------------------------------- */
input, textarea, select { -webkit-appearance: none; appearance: none; }
button { -webkit-tap-highlight-color: transparent; }
@supports (-webkit-touch-callout: none) {
    .intro { padding-top: max(70px, calc(env(safe-area-inset-top) + 70px)); }
    .cookie { bottom: max(24px, env(safe-area-inset-bottom)); }
}

/* ---- PRINT --------------------------------------------------------------- */
@media print {
    .site-header, .site-footer, .cookie, .bleed { display: none; }
}
