/* ==========================================================================
   zhengisai — Modern Dark Cinema + Aurora UI design system
   Mobile-first. Single-file. Drives both the public landing and the
   in-Telegram WebApp.
   ========================================================================== */

/* ───── 1. Tokens ─────────────────────────────────────────────────────── */
:root {
    /* Surfaces (no pure black — avoids OLED smear, gives depth) */
    --bg-deep:       #020203;
    --bg-base:       #07080A;
    --bg-elevated:   #0F1115;
    --surface:       rgba(255, 255, 255, 0.04);
    --surface-2:     rgba(255, 255, 255, 0.06);
    --surface-3:     rgba(255, 255, 255, 0.09);

    /* Foreground */
    --fg:            #EDEDEF;
    --fg-muted:      #9096A0;
    --fg-dim:        #61666F;

    /* Borders */
    --border:        rgba(255, 255, 255, 0.08);
    --border-hi:     rgba(255, 255, 255, 0.16);

    /* Accents */
    --accent:        #6E7BFF;            /* indigo, hero gradient */
    --accent-2:      #22D3EE;            /* cyan, secondary highlights */
    --accent-3:      #C084FC;            /* violet, mesh */
    --accent-glow:   rgba(110, 123, 255, 0.32);
    --accent-text:   #BFC7FF;

    /* Semantic */
    --success:       #22C55E;
    --success-bg:    rgba(34, 197, 94, 0.12);
    --warn:          #F59E0B;
    --warn-bg:       rgba(245, 158, 11, 0.14);
    --danger:        #EF4444;
    --danger-bg:     rgba(239, 68, 68, 0.14);
    --kaspi:         #F14635;            /* Kaspi brand red */

    /* Geometry */
    --radius-xs:  8px;
    --radius-sm:  12px;
    --radius:     18px;
    --radius-lg:  24px;
    --radius-xl:  32px;
    --radius-pill: 999px;

    /* Motion */
    --ease:        cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
    --dur-1:       .14s;
    --dur-2:       .25s;
    --dur-3:       .45s;

    /* Type */
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    --font-body:    'Inter', system-ui, -apple-system, sans-serif;
    --font-mono:    'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

    /* Layout */
    --maxw:    1200px;
    --gutter:  24px;
    --shell-pad: 24px;

    /* Shadows (cinematic, layered) */
    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow:    0 8px 24px rgba(0,0,0,.45), 0 1px 0 rgba(255,255,255,.04) inset;
    --shadow-lg: 0 24px 60px rgba(0,0,0,.6), 0 1px 0 rgba(255,255,255,.05) inset;
    --shadow-accent: 0 12px 40px rgba(110,123,255,.25), 0 0 0 1px rgba(110,123,255,.35) inset;
}

/* ───── 2. Reset & base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.55;
    color: var(--fg);
    background: var(--bg-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    position: relative;
}

img { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font-family: inherit; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 6px;
}

/* ───── 3. Aurora background ──────────────────────────────────────────── */
.aurora {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% -10%, rgba(110,123,255,.18), transparent 55%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 60%, var(--bg-deep) 100%);
}
.aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    will-change: transform;
}
.aurora-blob--1 {
    width: 520px; height: 520px;
    top: -160px; left: -160px;
    background: radial-gradient(circle, rgba(110,123,255,.55), transparent 70%);
    animation: aurora-float-1 18s ease-in-out infinite alternate;
}
.aurora-blob--2 {
    width: 600px; height: 600px;
    top: 10%; right: -200px;
    background: radial-gradient(circle, rgba(34,211,238,.30), transparent 70%);
    animation: aurora-float-2 22s ease-in-out infinite alternate;
}
.aurora-blob--3 {
    width: 540px; height: 540px;
    top: 40%; left: 30%;
    background: radial-gradient(circle, rgba(192,132,252,.22), transparent 70%);
    animation: aurora-float-3 26s ease-in-out infinite alternate;
}
.aurora-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

@keyframes aurora-float-1 {
    from { transform: translate3d(0,0,0) scale(1); }
    to   { transform: translate3d(60px, 80px, 0) scale(1.15); }
}
@keyframes aurora-float-2 {
    from { transform: translate3d(0,0,0) scale(1); }
    to   { transform: translate3d(-90px, 60px, 0) scale(1.1); }
}
@keyframes aurora-float-3 {
    from { transform: translate3d(0,0,0) scale(1); }
    to   { transform: translate3d(40px, -70px, 0) scale(1.12); }
}

@media (prefers-reduced-motion: reduce) {
    .aurora-blob { animation: none; }
}

main, header, footer, .top-banner { position: relative; z-index: 1; }

/* ───── 4. Top banner ─────────────────────────────────────────────────── */
.top-banner {
    background: linear-gradient(90deg, rgba(110,123,255,.18), rgba(34,211,238,.14), rgba(110,123,255,.18));
    border-bottom: 1px solid var(--border);
    color: var(--fg);
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    padding: 9px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: .01em;
}
.top-banner .dot {
    width: 8px; height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(34,197,94,.18), 0 0 12px rgba(34,197,94,.6);
    animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,.45), 0 0 8px rgba(34,197,94,.5); }
    50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0),   0 0 14px rgba(34,197,94,.7); }
}

/* ───── 5. Site header ────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    background: rgba(7, 8, 10, 0.72);
    border-bottom: 1px solid var(--border);
}
.site-header-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px var(--shell-pad);
    display: flex;
    align-items: center;
    gap: 24px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -.02em;
    color: var(--fg);
}
.logo-mark {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 8px 24px rgba(110,123,255,.4), inset 0 1px 0 rgba(255,255,255,.3);
}
.primary-nav {
    display: none;
    gap: 4px;
    margin: 0 auto;
}
.primary-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    color: var(--fg-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.primary-nav a:hover { color: var(--fg); background: var(--surface); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}
.ghost-btn, .solid-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 38px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    transition: transform var(--dur-1) var(--ease), background var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
}
.ghost-btn {
    color: var(--fg-muted);
    border: 1px solid var(--border);
    background: var(--surface);
}
.ghost-btn:hover { color: var(--fg); border-color: var(--border-hi); background: var(--surface-2); }
.solid-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #4F5BE8);
    box-shadow: 0 8px 22px rgba(110,123,255,.32), inset 0 1px 0 rgba(255,255,255,.2);
}
.solid-btn:hover  { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(110,123,255,.42), inset 0 1px 0 rgba(255,255,255,.2); }
.solid-btn:active { transform: translateY(0) scale(.98); }

/* ───── 6. Hero ───────────────────────────────────────────────────────── */
.hero-wrap {
    padding: 56px var(--shell-pad) 40px;
}
.hero {
    max-width: var(--maxw);
    margin: 0 auto;
    position: relative;
}
.hero-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--fg-muted);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.hero-eyebrow .dot {
    width: 7px; height: 7px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34,211,238,.18), 0 0 10px rgba(34,211,238,.6);
    animation: pulse 1.8s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(38px, 7.6vw, 76px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--fg);
    margin-bottom: 22px;
}
.hero h1 .accent {
    background: linear-gradient(120deg, var(--accent) 0%, var(--accent-3) 50%, var(--accent-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 100%;
    animation: gradient-shift 9s ease-in-out infinite;
}
@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.lead {
    font-size: clamp(15px, 2.1vw, 19px);
    color: var(--fg-muted);
    max-width: 640px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 54px;
    padding: 0 26px;
    border-radius: var(--radius-pill);
    font-size: 15.5px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--accent), #4F5BE8);
    box-shadow: 0 12px 32px rgba(110,123,255,.42), inset 0 1px 0 rgba(255,255,255,.22);
    transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-2) var(--ease);
}
.hero-cta:hover  { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(110,123,255,.55), inset 0 1px 0 rgba(255,255,255,.24); }
.hero-cta:active { transform: translateY(0) scale(.98); }
.hero-cta--ghost {
    background: var(--surface);
    border: 1px solid var(--border-hi);
    color: var(--fg);
    box-shadow: none;
}
.hero-cta--ghost:hover { background: var(--surface-2); border-color: var(--fg-dim); box-shadow: none; transform: translateY(-1px); }

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--fg-muted);
    font-size: 13.5px;
    font-weight: 500;
}
.hero-feature .icon {
    width: 16px; height: 16px;
    color: var(--accent-text);
}

.hero-trust {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    padding: 18px 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
    max-width: 720px;
    margin: 0 auto;
}
.trust-stat { display: flex; flex-direction: column; gap: 4px; align-items: center; flex: 1; min-width: 0; }
.trust-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(18px, 3vw, 24px);
    letter-spacing: -.02em;
    color: var(--fg);
}
.trust-label {
    font-size: 12px;
    color: var(--fg-dim);
    text-align: center;
    line-height: 1.35;
}
.trust-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border-hi), transparent);
    flex-shrink: 0;
}

/* ───── 7. Brand marquee ──────────────────────────────────────────────── */
.brand-strip {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(15, 17, 21, 0.4);
    backdrop-filter: blur(8px);
    overflow: hidden;
}
.brand-strip-inner {
    max-width: 100vw;
    overflow: hidden;
    position: relative;
}
.brand-strip-inner::before,
.brand-strip-inner::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.brand-strip-inner::before { left: 0;  background: linear-gradient(90deg, var(--bg-base), transparent); }
.brand-strip-inner::after  { right: 0; background: linear-gradient(-90deg, var(--bg-base), transparent); }

.marquee { width: 100%; }
.marquee-track {
    display: flex;
    align-items: center;
    gap: 56px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--fg-muted);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -.01em;
    opacity: .7;
    transition: opacity var(--dur-1) var(--ease);
}
.marquee-item:hover { opacity: 1; }
.marquee-item img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    filter: grayscale(.3) brightness(1.05);
}
@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
}

/* ───── 8. Section frame ──────────────────────────────────────────────── */
.section {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 72px var(--shell-pad);
    scroll-margin-top: 88px;
}
.section-head {
    margin-bottom: 36px;
    max-width: 720px;
}
.section-kicker {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent-text);
    margin-bottom: 14px;
}
.section-head .row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
}
.section-head h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(30px, 4.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--fg);
}
.section-head .meta {
    font-size: 14px;
    color: var(--fg-dim);
    font-weight: 500;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: var(--surface);
    border: 1px solid var(--border);
}
.section-head p {
    font-size: 16px;
    color: var(--fg-muted);
    line-height: 1.6;
    max-width: 640px;
}

/* ───── 9. Cards grid (rentals & products) ────────────────────────────── */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 560px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 1100px) { .grid { grid-template-columns: repeat(4, 1fr); } }

.card {
    --brand: #6E7BFF;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: left;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform var(--dur-2) var(--ease),
                border-color var(--dur-2) var(--ease),
                box-shadow var(--dur-2) var(--ease);
    animation: card-in .55s var(--ease) both;
    box-shadow: var(--shadow-sm);
    isolation: isolate;
}
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, var(--brand), transparent 55%);
    opacity: 0;
    transition: opacity var(--dur-3) var(--ease);
    pointer-events: none;
    mix-blend-mode: overlay;
    z-index: 0;
}
.card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.18);
    box-shadow: 0 24px 48px rgba(0,0,0,.5),
                0 0 0 1px var(--brand) inset,
                0 0 40px -10px var(--brand);
}
.card:hover::before { opacity: .25; }
.card:active { transform: translateY(-1px) scale(.99); }

@keyframes card-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.card-art {
    position: relative;
    height: 132px;
    display: grid;
    place-items: center;
    overflow: hidden;
    z-index: 1;
}
.card-art--light {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.92), rgba(255,255,255,.78) 65%, rgba(255,255,255,.65)),
        #f5f6fa;
}
.card-art--dark {
    background:
        radial-gradient(circle at 30% 20%, color-mix(in oklab, var(--brand) 35%, #0a0b10), #0a0b10);
}
.card-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0,0,0,.12), transparent 55%);
    pointer-events: none;
}
.card-art--dark::after { background: radial-gradient(ellipse 80% 70% at 50% 100%, rgba(0,0,0,.4), transparent 55%); }

.card-badges {
    position: absolute;
    top: 12px; left: 12px; right: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    z-index: 2;
}
.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 26px;
    padding: 0 10px;
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    font-weight: 600;
    background: rgba(15, 17, 21, 0.78);
    color: #fff;
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(10px);
    letter-spacing: .01em;
}
.card-art--light .card-badge {
    background: rgba(15, 17, 21, 0.92);
    color: #fff;
}

.card-logo {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 64px; height: 64px;
}
.card-logo img,
.card-logo svg {
    width: 100%; height: 100%;
    object-fit: contain;
}
.card-art--dark .card-logo svg { color: #fff; }

.card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: var(--bg-elevated);
    position: relative;
    z-index: 1;
    flex: 1;
}
.card-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--fg);
    line-height: 1.2;
}
.card-sub {
    font-size: 13px;
    color: var(--fg-dim);
    line-height: 1.4;
    margin-bottom: 4px;
}
.card-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    align-self: flex-start;
    height: 22px;
    padding: 0 10px;
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .01em;
    margin-bottom: 4px;
}
.card-status .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}
.card-status.ok   { background: var(--success-bg); color: var(--success); }
.card-status.warn { background: var(--warn-bg);    color: var(--warn); }
.card-status.busy { background: var(--danger-bg); color: var(--danger); }

.card-foot {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.card-price {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    min-width: 0;
}
.card-price-label {
    font-size: 11px;
    color: var(--fg-dim);
    text-transform: lowercase;
    letter-spacing: .02em;
    margin-bottom: 4px;
}
.card-price-value {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 17px;
    color: var(--fg);
    letter-spacing: -.01em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.card-price-old {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--fg-dim);
    text-decoration: line-through;
    margin-top: 2px;
}
.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    height: 34px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--fg);
    background: var(--surface-2);
    border: 1px solid var(--border-hi);
    flex-shrink: 0;
    transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
}
.card:hover .card-cta {
    background: linear-gradient(135deg, var(--accent), #4F5BE8);
    color: #fff;
    border-color: transparent;
}

/* Skeletons */
.skeleton, .skeleton-block {
    border-radius: var(--radius-lg);
    background: linear-gradient(110deg, var(--surface) 8%, var(--surface-2) 18%, var(--surface) 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    border: 1px solid var(--border);
}
.skeleton { height: 280px; }
.skeleton-block { height: 130px; }
@keyframes shimmer {
    from { background-position: 200% 0; }
    to   { background-position: -200% 0; }
}

.empty {
    grid-column: 1 / -1;
    padding: 32px;
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface);
    color: var(--fg-muted);
    text-align: center;
    font-size: 14px;
    line-height: 1.6;
}

/* ───── 10. How-it-works ──────────────────────────────────────────────── */
.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
@media (min-width: 720px)  { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
    position: relative;
    padding: 28px 24px;
    background: linear-gradient(180deg, rgba(15,17,21,.95), rgba(15,17,21,.7));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--dur-2) var(--ease), transform var(--dur-2) var(--ease);
}
.step::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 30%, rgba(110,123,255,.4), transparent 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--dur-2) var(--ease);
}
.step:hover { transform: translateY(-3px); border-color: var(--border-hi); }
.step:hover::before { opacity: 1; }
.step-num {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 13px;
    color: var(--accent-text);
    margin-bottom: 14px;
    letter-spacing: .04em;
}
.step h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: -.015em;
    margin-bottom: 8px;
    color: var(--fg);
}
.step p {
    font-size: 14.5px;
    color: var(--fg-muted);
    line-height: 1.55;
}

/* ───── 11. FAQ ───────────────────────────────────────────────────────── */
.faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 820px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
}
.faq-item[open] { border-color: var(--border-hi); background: var(--surface-2); }
.faq-q {
    cursor: pointer;
    list-style: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--fg);
    user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-icon {
    display: grid;
    place-items: center;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-hi);
    font-weight: 400;
    font-size: 18px;
    color: var(--fg-muted);
    transition: transform var(--dur-2) var(--ease), background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
    flex-shrink: 0;
    line-height: 1;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
    background: var(--accent);
    color: #fff;
    border-color: transparent;
}
.faq-a {
    padding: 0 22px 20px;
    font-size: 14.5px;
    color: var(--fg-muted);
    line-height: 1.65;
}

/* ───── 12. Final CTA ─────────────────────────────────────────────────── */
.final-cta {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 32px var(--shell-pad) 88px;
}
.final-cta-card {
    position: relative;
    padding: 56px 32px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(15,17,21,.78), rgba(15,17,21,.92));
    border: 1px solid var(--border-hi);
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.final-cta-glow {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 540px;
    height: 240px;
    background: radial-gradient(ellipse, rgba(110,123,255,.45), transparent 60%);
    filter: blur(40px);
    pointer-events: none;
}
.final-cta-card .hero-eyebrow { margin-bottom: 20px; }
.final-cta-card h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.05;
    letter-spacing: -.025em;
    color: var(--fg);
    margin-bottom: 14px;
}
.final-cta-card p {
    color: var(--fg-muted);
    font-size: 16px;
    max-width: 540px;
    margin: 0 auto 28px;
    line-height: 1.6;
}
.final-cta-card .hero-actions { margin-bottom: 0; }

/* ───── 13. Footer ────────────────────────────────────────────────────── */
.site-footer {
    border-top: 1px solid var(--border);
    background: rgba(7,8,10,.78);
    backdrop-filter: blur(12px);
    padding: 56px var(--shell-pad) 32px;
}
.site-footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}
@media (min-width: 720px) {
    .site-footer-inner {
        grid-template-columns: 1.4fr 1fr;
        gap: 48px;
    }
    .footer-meta { grid-column: 1 / -1; }
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p {
    font-size: 14px;
    color: var(--fg-muted);
    line-height: 1.6;
    max-width: 380px;
}
.footer-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--fg-dim);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.footer-col a, .footer-link {
    color: var(--fg-muted);
    font-size: 14px;
    transition: color var(--dur-1) var(--ease);
}
.footer-col a:hover, .footer-link:hover { color: var(--fg); }

.footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--fg-dim);
}
.footer-meta-sep { opacity: .4; }

/* ───── 14. Modal ─────────────────────────────────────────────────────── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: end center;
}
.modal[hidden] { display: none; }
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 2, 4, 0.72);
    backdrop-filter: blur(8px);
    animation: fade-in var(--dur-2) var(--ease);
}
.modal-sheet {
    position: relative;
    width: 100%;
    max-width: 560px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 8px 22px 28px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border-hi);
    border-radius: 28px 28px 0 0;
    box-shadow: var(--shadow-lg);
    animation: sheet-up .35s var(--ease);
}
@media (min-width: 640px) {
    .modal { place-items: center; }
    .modal-sheet { border-radius: var(--radius-xl); border: 1px solid var(--border-hi); padding: 14px 28px 32px; }
}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes sheet-up {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal-grip {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    background: var(--border-hi);
    margin: 0 auto 12px;
}
@media (min-width: 640px) { .modal-grip { display: none; } }

.modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--fg-muted);
    font-size: 22px;
    line-height: 1;
    display: grid;
    place-items: center;
    transition: background var(--dur-1) var(--ease), color var(--dur-1) var(--ease);
    z-index: 5;
}
.modal-close:hover { background: var(--surface-2); color: var(--fg); }

/* Modal content blocks (rendered by app.js) */
.modal-hero {
    text-align: center;
    padding: 12px 0 22px;
}
.modal-hero.compact {
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding: 8px 0 20px;
}
.modal-hero-meta { flex: 1; min-width: 0; }
.modal-logo {
    width: 80px; height: 80px;
    border-radius: var(--radius);
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    overflow: hidden;
}
.modal-hero.compact .modal-logo {
    width: 56px; height: 56px;
    margin: 0;
    border-radius: 14px;
    flex-shrink: 0;
}
.modal-logo.tile-art--light {
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.92), rgba(255,255,255,.75)),
        #f5f6fa;
}
.modal-logo.tile-art--dark {
    background: radial-gradient(circle at 30% 20%, color-mix(in oklab, var(--brand) 40%, #0a0b10), #0a0b10);
}
.modal-logo img, .modal-logo svg {
    width: 60%; height: 60%;
    object-fit: contain;
}
.modal-logo svg { color: #fff; }
.modal-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -.02em;
    color: var(--fg);
    line-height: 1.2;
}
.modal-sub {
    font-size: 14px;
    color: var(--fg-muted);
    margin-top: 4px;
}

.modal-icon-good, .modal-icon-bad {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin: 0 auto 14px;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}
.modal-icon-good {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 12px 32px rgba(34,197,94,.4);
}
.modal-icon-bad {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    box-shadow: 0 12px 32px rgba(239,68,68,.4);
}

.info-card {
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--fg-muted);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 16px;
}
.info-card b { color: var(--fg); font-weight: 600; }

.block-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-dim);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin: 16px 0 10px;
}

.plan-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}
.plan-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--fg);
    font-size: 15px;
    text-align: left;
    transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease), transform var(--dur-1) var(--ease);
}
.plan-row:hover { background: var(--surface-2); border-color: var(--border-hi); }
.plan-row:active { transform: scale(.99); }
.plan-row.selected {
    background: linear-gradient(135deg, rgba(110,123,255,.18), rgba(34,211,238,.10));
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(110,123,255,.18);
}
.plan-row .hours { font-weight: 600; }
.plan-row .price {
    font-family: var(--font-mono);
    font-weight: 700;
    color: var(--accent-text);
}

.action-row {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.btn {
    flex: 1;
    height: 50px;
    padding: 0 18px;
    border-radius: var(--radius-pill);
    background: var(--surface-2);
    border: 1px solid var(--border-hi);
    color: var(--fg);
    font-size: 15px;
    font-weight: 600;
    transition: background var(--dur-1) var(--ease), transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn:hover:not(:disabled)  { background: var(--surface-3); }
.btn:active:not(:disabled) { transform: scale(.98); }
.btn:disabled              { opacity: .5; cursor: not-allowed; }
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #4F5BE8);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 12px 30px rgba(110,123,255,.4), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #7B86FF, #5664EE);
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(110,123,255,.5), inset 0 1px 0 rgba(255,255,255,.24);
}
.link-btn {
    width: 100%;
    margin-top: 14px;
    padding: 12px;
    background: transparent;
    color: var(--fg-dim);
    font-size: 14px;
    text-align: center;
    border-radius: var(--radius-pill);
    transition: color var(--dur-1) var(--ease);
}
.link-btn:hover { color: var(--fg-muted); }

/* Kaspi card + flow */
.kaspi-card {
    position: relative;
    padding: 22px 22px 24px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(241,70,53,.16), rgba(241,70,53,.06));
    border: 1px solid rgba(241,70,53,.32);
    overflow: hidden;
    margin-bottom: 14px;
}
.kaspi-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(241,70,53,.18), transparent 55%);
    pointer-events: none;
}
.kaspi-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: #FCA29D;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.kaspi-pulse {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--kaspi);
    box-shadow: 0 0 0 3px rgba(241,70,53,.22), 0 0 10px var(--kaspi);
    animation: pulse-kaspi 1.6s ease-in-out infinite;
}
@keyframes pulse-kaspi {
    0%, 100% { box-shadow: 0 0 0 0 rgba(241,70,53,.5), 0 0 8px var(--kaspi); }
    50%      { box-shadow: 0 0 0 6px rgba(241,70,53,0), 0 0 14px var(--kaspi); }
}
.kaspi-amount {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: -.01em;
    color: #fff;
    line-height: 1.1;
}
.kaspi-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    background: rgba(15,17,21,.7);
    border: 1px solid rgba(241,70,53,.28);
    font-size: 12.5px;
    color: #fff;
    font-family: var(--font-mono);
    font-weight: 600;
    position: relative;
    z-index: 1;
}
.kaspi-timer.expired { color: var(--danger); border-color: var(--danger); }

.btn-kaspi {
    width: 100%;
    height: 54px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--kaspi), #C2392B);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 14px 36px rgba(241,70,53,.4), inset 0 1px 0 rgba(255,255,255,.22);
    transition: transform var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
    margin-bottom: 14px;
}
.btn-kaspi:hover  { transform: translateY(-1px); box-shadow: 0 18px 44px rgba(241,70,53,.55); }
.btn-kaspi:active { transform: translateY(0) scale(.98); }

.step-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 14px;
    color: var(--fg-dim);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.step-divider::before,
.step-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.dropzone {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 28px 20px;
    border: 1.5px dashed var(--border-hi);
    border-radius: var(--radius-lg);
    background: var(--surface);
    cursor: pointer;
    transition: border-color var(--dur-1) var(--ease), background var(--dur-1) var(--ease);
    text-align: center;
    margin-bottom: 14px;
}
.dropzone:hover, .dropzone.dragging {
    border-color: var(--accent);
    background: rgba(110,123,255,.08);
}
.dropzone.has-file {
    border-style: solid;
    border-color: var(--success);
    background: rgba(34,197,94,.08);
}
.dropzone input[type="file"] { display: none; }
.dz-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--surface-2);
    display: grid;
    place-items: center;
    font-size: 20px;
    margin-bottom: 4px;
}
.dropzone.has-file .dz-icon {
    background: rgba(34,197,94,.2);
}
.dz-main {
    font-weight: 600;
    color: var(--fg);
    font-size: 14.5px;
}
.dz-sub {
    font-size: 12.5px;
    color: var(--fg-dim);
}

.spinner {
    width: 16px; height: 16px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Credentials card (rental result) */
.cred-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 14px;
}
.cred-row {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}
.cred-row + .cred-row { border-top: 1px solid var(--border); }
.cred-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-dim);
    letter-spacing: .08em;
    text-transform: uppercase;
}
.cred-val {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--fg);
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-all;
}
.cred-copy {
    height: 30px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: var(--surface-2);
    border: 1px solid var(--border-hi);
    color: var(--fg);
    font-size: 12px;
    font-weight: 600;
    transition: background var(--dur-1) var(--ease);
    flex-shrink: 0;
}
.cred-copy:hover { background: var(--surface-3); }

/* Toggle (discount switch) */
.toggle-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 14px;
    cursor: pointer;
}
.toggle-text { flex: 1; min-width: 0; }
.toggle-main { font-weight: 600; font-size: 14.5px; color: var(--fg); }
.toggle-sub  { font-size: 12.5px; color: var(--fg-dim); margin-top: 2px; }
.switch {
    position: relative;
    width: 44px; height: 26px;
    flex-shrink: 0;
}
.switch input {
    opacity: 0;
    width: 100%; height: 100%;
    position: absolute; inset: 0;
    cursor: pointer;
    margin: 0;
}
.slider {
    position: absolute; inset: 0;
    background: var(--surface-3);
    border: 1px solid var(--border-hi);
    border-radius: var(--radius-pill);
    transition: background var(--dur-1) var(--ease), border-color var(--dur-1) var(--ease);
    pointer-events: none;
}
.slider::before {
    content: '';
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #fff;
    transition: transform var(--dur-2) var(--ease);
    box-shadow: 0 2px 6px rgba(0,0,0,.4);
}
.switch input:checked + .slider {
    background: linear-gradient(135deg, var(--accent), #4F5BE8);
    border-color: transparent;
}
.switch input:checked + .slider::before { transform: translateX(18px); }
.switch input:disabled + .slider { opacity: .6; }

/* Hint blocks */
.hint {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius);
    background: rgba(110,123,255,.08);
    border: 1px solid rgba(110,123,255,.24);
    color: var(--fg-muted);
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 14px;
}
.hint.warn {
    background: var(--warn-bg);
    border-color: rgba(245,158,11,.36);
    color: #FACA75;
}
.hint-icon { flex-shrink: 0; font-size: 16px; line-height: 1.2; }

/* Summary table (subscription modal) */
.summary {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 4px 0;
    margin-bottom: 14px;
}
.summary .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    font-size: 14px;
    color: var(--fg-muted);
}
.summary .row + .row { border-top: 1px dashed var(--border); }
.summary .row.total {
    background: var(--surface-2);
    color: var(--fg);
    font-weight: 700;
    border-radius: 0 0 var(--radius) var(--radius);
}
.summary .val {
    font-family: var(--font-mono);
    color: var(--fg);
    font-weight: 600;
}
.summary .val.muted { color: var(--fg-dim); font-weight: 500; }
.summary .strike { text-decoration: line-through; }
.summary .row.total .val { font-size: 16px; color: var(--accent-text); }

/* ───── 15. Toast ─────────────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    background: var(--bg-elevated);
    border: 1px solid var(--border-hi);
    color: var(--fg);
    font-size: 14px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 300;
    animation: toast-in .35s var(--ease);
    max-width: calc(100vw - 48px);
    text-align: center;
}
.toast[hidden] { display: none; }
@keyframes toast-in {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ───── 16. Responsive tweaks ─────────────────────────────────────────── */
@media (min-width: 720px) {
    .primary-nav { display: flex; }
    .ghost-btn   { display: inline-flex; }
}
@media (max-width: 719px) {
    .ghost-btn { display: none; }
    .header-actions .solid-btn { padding: 0 12px; height: 36px; font-size: 13.5px; }
    .site-header-inner { padding: 12px 18px; }
    :root { --shell-pad: 18px; }
    .hero-wrap { padding: 36px 18px 28px; }
    .section { padding: 56px 18px; }
    .hero-trust { flex-direction: column; gap: 14px; padding: 16px 20px; }
    .trust-divider { width: 60%; height: 1px; align-self: center; background: linear-gradient(to right, transparent, var(--border-hi), transparent); }
    .final-cta { padding: 20px 18px 56px; }
    .final-cta-card { padding: 40px 22px; }
    .footer-cols { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 419px) {
    .hero h1 { font-size: clamp(32px, 9.5vw, 40px); }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-cta { justify-content: center; }
    .card-foot { flex-direction: column; align-items: stretch; gap: 10px; }
    .card-cta { justify-content: center; }
}
