/* ═══════════════════════════════════════
   ALISMIA AI — Landing Page Styles
   ═══════════════════════════════════════ */

/* ─── Variables ─── */
:root {
    --bg: #08080f;
    --surface: #0f0f1a;
    --surface2: #16162a;
    --border: #1e1e38;
    --accent: #7c3aed;
    --accent2: #a855f7;
    --pink: #ec4899;
    --gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --text: #f0f0f8;
    --text2: #9ca3af;
    --text3: #6b7280;
    --radius: 16px;
    --radius-lg: 24px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── Utilities ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent2);
    background: rgba(124,58,237,.12);
    border: 1px solid rgba(124,58,237,.25);
    border-radius: 50px;
    padding: 6px 14px;
    margin-bottom: 20px;
}
.sec-head { text-align: center; margin-bottom: 56px; }
.sec-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px;
}
.sec-head p { font-size: 17px; color: var(--text2); max-width: 540px; margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all .2s;
    border: none;
    white-space: nowrap;
}
.btn--primary {
    background: var(--gradient);
    color: #fff;
    padding: 12px 22px;
    box-shadow: 0 4px 20px rgba(124,58,237,.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(124,58,237,.5); }
.btn--sm { padding: 10px 18px; font-size: 13px; }

/* ─── Store buttons ─── */
.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 12px 22px;
    color: var(--text);
    font-size: 14px;
    transition: all .2s;
    backdrop-filter: blur(10px);
}
.store-btn span { display: block; font-size: 11px; opacity: .6; }
.store-btn strong { display: block; font-size: 16px; font-weight: 700; }
.store-btn:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); transform: translateY(-2px); }
.store-btn--outline {
    background: transparent;
    border-color: rgba(124,58,237,.5);
    color: var(--accent2);
}
.store-btn--outline:hover { background: rgba(124,58,237,.1); }
.store-btn--big { padding: 16px 28px; border-radius: 16px; }
.store-btn--big strong { font-size: 18px; }

/* ─── Nav ─── */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    transition: background .3s, backdrop-filter .3s, border-color .3s;
}
.nav--scrolled {
    background: rgba(8,8,15,.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.nav__inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}
.nav__logo strong { color: var(--accent2); }
.nav__logo-mark { color: var(--accent); font-size: 16px; }
.nav__links {
    display: flex;
    gap: 32px;
    margin-left: 16px;
}
.nav__links a {
    font-size: 14px;
    color: var(--text2);
    transition: color .2s;
}
.nav__links a:hover { color: var(--text); }
.nav__inner .btn { margin-left: auto; }
.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mobile menu ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(8,8,15,.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px 28px;
    flex-direction: column;
    gap: 16px;
    z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; color: var(--text2); padding: 8px 0; }
.mobile-menu a:hover { color: var(--text); }
.mobile-menu .btn { margin-top: 8px; justify-content: center; }

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    isolation: isolate; /* contains filter stacking contexts of glow children */
}
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0; /* explicit: stays behind hero__inner (z-index:1) */
}
.hero__glow--1 {
    width: 600px; height: 600px;
    background: rgba(124,58,237,.22);
    top: -100px; left: -100px;
}
.hero__glow--2 {
    width: 500px; height: 500px;
    background: rgba(236,72,153,.15);
    bottom: 0px; right: 30px;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text2);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50px;
    padding: 7px 14px;
    margin-bottom: 24px;
}
.pulse-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16,185,129,.4);
    animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,.4); }
    70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hero__title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 20px;
}
.hero__desc {
    font-size: 18px;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero__proof {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: var(--text2);
}
.hero__proof strong { color: var(--text); }
.proof-avatars { display: flex; }
.proof-av {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin-right: -8px;
    color: #fff;
}
.proof-av--more {
    background: var(--surface2);
    color: var(--text2);
    font-size: 11px;
}

/* ─── Language switcher ─── */
.lang-switch {
    display: flex;
    gap: 2px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 8px;
    padding: 3px;
}
.lang-btn {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    color: var(--text2);
    transition: all .15s;
    letter-spacing: .04em;
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active {
    background: var(--surface2);
    color: var(--text);
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
}
.lang-switch--mobile { justify-content: flex-start; }

/* ─── Nav right group ─── */
.nav__right {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* ─── Google Play "Coming soon" button ─── */
.store-btn--soon {
    opacity: .55;
    cursor: default;
    pointer-events: none;
}
.coming-soon-tag {
    display: block;
    font-size: 10px;
    font-weight: 700;
    color: var(--accent2);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 1px;
}

/* ─── Phone mockup ─── */
.hero__phone-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Glow is first child in DOM → renders behind the phone naturally */
.phone__glow {
    position: absolute;
    width: 460px; height: 460px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124,58,237,.5) 0%, rgba(124,58,237,.2) 35%, transparent 65%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    filter: blur(30px);
}
.phone {
    width: 254px;
    border: 2px solid rgba(255,255,255,.22);
    border-radius: 42px;
    background: #0a0a12;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(124,58,237,.4),
        0 24px 60px rgba(0,0,0,.55),
        inset 0 0 0 1px rgba(255,255,255,.06);
}
/* Notch overlays on top of the screenshot — no layout impact */
.phone__notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 88px; height: 24px;
    background: #000;
    border-radius: 0 0 16px 16px;
    z-index: 3;
    pointer-events: none;
}
.phone__screen {
    width: 100%;
    display: block;
    line-height: 0;
}
/* Real screenshot fills the phone naturally */
.phone__screen > img {
    width: 100%;
    display: block;
}
/* CSS UI fallback */
.phone__ui { padding: 26px 14px 20px; }

/* App UI inside phone (CSS fallback) */
.app-ui { font-size: 10px; }
.app-ui__head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.app-ui__av { width: 28px; height: 28px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; }
.app-ui__hi { font-size: 9px; color: var(--text3); }
.app-ui__name { font-size: 11px; font-weight: 700; }
.app-ui__bell { margin-left: auto; background: var(--accent); color: #fff; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; }
.app-ui__search { background: var(--surface2); border: 1px solid var(--border); border-radius: 20px; padding: 6px 10px; color: var(--text3); font-size: 9px; margin-bottom: 10px; }
.app-ui__label { font-size: 9px; font-weight: 700; color: var(--text2); margin-bottom: 6px; letter-spacing: .03em; }
.app-ui__card { background: var(--surface2); border: 1px solid var(--border); border-radius: 10px; padding: 8px; display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.app-ui__card-icon { font-size: 18px; }
.app-ui__card-title { font-size: 10px; font-weight: 600; }
.app-ui__card-sub { font-size: 8px; color: var(--text3); margin-top: 2px; }
.app-ui__card-badge { margin-left: auto; background: rgba(16,185,129,.15); color: #10b981; border: 1px solid rgba(16,185,129,.3); border-radius: 20px; padding: 2px 6px; font-size: 7px; font-weight: 600; white-space: nowrap; }
.app-ui__cats { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 10px; }
.app-ui__cat { background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 5px 7px; font-size: 9px; text-align: center; }
.app-ui__biz { display: flex; align-items: center; gap: 7px; background: var(--surface2); border: 1px solid var(--border); border-radius: 8px; padding: 7px; margin-bottom: 5px; }
.app-ui__biz-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.app-ui__biz-name { font-size: 9px; font-weight: 600; }
.app-ui__biz-sub { font-size: 7px; color: var(--text3); }
.app-ui__biz-btn { margin-left: auto; color: var(--text3); font-size: 10px; }

/* ─── Screenshots showcase ─── */
.showcase { padding: 80px 0 40px; overflow: hidden; }
.showcase .sec-head { margin-bottom: 48px; }
.showcase__phones {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 12px;
}
.ss-phone {
    border-radius: 28px;
    overflow: hidden;
    border: 1.5px solid rgba(255,255,255,.1);
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
    flex-shrink: 0;
    line-height: 0;
}
.ss-phone img { width: 100%; display: block; }
.ss-phone--center {
    width: 200px;
    border-color: rgba(124,58,237,.4);
    box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(124,58,237,.2);
    z-index: 2;
    position: relative;
}
.ss-phone--side:nth-child(1),
.ss-phone--side:nth-child(5) {
    width: 130px;
    opacity: .45;
    transform: translateY(40px);
}
.ss-phone--side:nth-child(2),
.ss-phone--side:nth-child(4) {
    width: 160px;
    opacity: .7;
    transform: translateY(20px);
}

/* Placeholder when screenshot files are missing */
.ss-placeholder {
    aspect-ratio: 9/19.5;
    background: linear-gradient(160deg, var(--surface2) 0%, var(--surface) 100%);
    border-radius: 4px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.ss-placeholder::before {
    content: '📱';
    font-size: 28px;
    opacity: .4;
}
.ss-placeholder::after {
    content: attr(data-label);
    font-size: 9px;
    color: var(--text3);
    font-family: monospace;
    opacity: .6;
    text-align: center;
    padding: 0 8px;
    word-break: break-all;
}

/* ─── Stats ─── */
.stats {
    padding: 32px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,.015);
}
.stats__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stats__item {
    text-align: center;
    flex: 1;
    padding: 16px 24px;
}
.stats__num {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    letter-spacing: -.03em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.stats__lbl {
    font-size: 13px;
    color: var(--text3);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.stats__sep {
    width: 1px;
    height: 48px;
    background: var(--border);
    flex-shrink: 0;
}

/* ─── For who ─── */
.for-who { padding: 100px 0; }
.for-who__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fw-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: transform .3s, border-color .3s;
    opacity: 0;
    transform: translateY(24px);
}
.fw-card.visible { opacity: 1; transform: none; transition: opacity .5s, transform .5s; }
.fw-card:hover { transform: translateY(-6px); border-color: rgba(124,58,237,.35); }
.fw-card--hot {
    background: linear-gradient(145deg, rgba(124,58,237,.1) 0%, rgba(236,72,153,.06) 100%);
    border-color: rgba(124,58,237,.3);
    position: relative;
}
.fw-card__badge {
    position: absolute;
    top: -1px; right: 24px;
    background: var(--gradient);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0 0 10px 10px;
}
.fw-card__icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(124,58,237,.12); border: 1px solid rgba(124,58,237,.2); border-radius: 16px; margin-bottom: 20px; color: #a855f7; }
.fw-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.fw-card p { color: var(--text2); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.fw-card ul { display: flex; flex-direction: column; gap: 8px; }
.fw-card ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text2);
}
.fw-card ul li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px; height: 18px;
    background: rgba(124,58,237,.15);
    border: 1px solid rgba(124,58,237,.3);
    border-radius: 50%;
    font-size: 10px;
    color: var(--accent2);
    flex-shrink: 0;
}

/* ─── Features ─── */
.features { padding: 100px 0; background: rgba(255,255,255,.015); }
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all .3s;
    opacity: 0;
    transform: translateY(20px);
}
.feat-card.visible { opacity: 1; transform: none; transition: opacity .5s, transform .5s; }
.feat-card:hover { border-color: rgba(124,58,237,.3); transform: translateY(-4px); }
.feat-card--accent {
    background: linear-gradient(135deg, rgba(124,58,237,.12) 0%, rgba(236,72,153,.06) 100%);
    border-color: rgba(124,58,237,.25);
}
.feat-card__icon { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(124,58,237,.1); border: 1px solid rgba(124,58,237,.18); border-radius: 14px; margin-bottom: 16px; color: #a855f7; }
.feat-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.feat-card p { font-size: 14px; color: var(--text2); line-height: 1.65; }

/* ─── How it works ─── */
.how { padding: 100px 0; }
.how__steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.how-step {
    flex: 1;
    opacity: 0;
    transform: translateY(20px);
}
.how-step.visible { opacity: 1; transform: none; transition: opacity .5s, transform .5s; }
.how-step__num {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -.04em;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}
.how-step h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.how-step p { font-size: 14px; color: var(--text2); line-height: 1.65; }
.how-step__arrow {
    font-size: 28px;
    color: var(--border);
    padding-top: 44px;
    flex-shrink: 0;
}

/* ─── Business types pills ─── */
.biz-types { padding: 80px 0; }
.biz-types__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
.biz-type-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text2);
    transition: all .2s;
}
.biz-type-pill:hover {
    border-color: rgba(124,58,237,.4);
    color: var(--text);
    background: rgba(124,58,237,.05);
}

/* ─── Reviews ─── */
.reviews { padding: 100px 0; background: rgba(255,255,255,.015); }
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all .3s;
    opacity: 0;
    transform: translateY(20px);
}
.review-card.visible { opacity: 1; transform: none; transition: opacity .5s, transform .5s; }
.review-card:hover { border-color: rgba(124,58,237,.25); transform: translateY(-4px); }
.review-card__stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-card > p { font-size: 15px; color: var(--text2); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__av {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.review-card__name { font-size: 14px; font-weight: 600; }
.review-card__role { font-size: 12px; color: var(--text3); }

/* ─── Download CTA ─── */
.cta-download { padding: 100px 0; }
.cta-download__inner {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 72px 48px;
    text-align: center;
    overflow: hidden;
}
.cta-download__glow {
    position: absolute;
    width: 500px; height: 300px;
    background: radial-gradient(ellipse, rgba(124,58,237,.2) 0%, transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-download__inner .sec-tag { margin-bottom: 16px; }
.cta-download__inner h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -.02em;
    position: relative;
}
.cta-download__inner p {
    font-size: 17px;
    color: var(--text2);
    margin-bottom: 40px;
    position: relative;
}
.cta-download__btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
}

/* ─── Footer ─── */
.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}
.footer__inner {
    display: flex;
    gap: 64px;
    margin-bottom: 48px;
}
.footer__brand { max-width: 260px; }
.footer__brand p { font-size: 14px; color: var(--text3); line-height: 1.6; margin-top: 12px; }
.footer__nav {
    display: flex;
    gap: 48px;
    margin-left: auto;
}
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text3);
    margin-bottom: 4px;
}
.footer__col a { font-size: 14px; color: var(--text2); transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text3);
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 48px; }
    .hero__phone-wrap { order: -1; }
    .hero__desc, .hero__btns { max-width: 100%; }
    .hero__btns, .hero__proof { justify-content: center; }
    .for-who__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
    .reviews__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .how__steps { flex-direction: column; }
    .how-step__arrow { display: none; }
    .footer__inner { flex-direction: column; }
    .footer__nav { flex-wrap: wrap; margin-left: 0; gap: 32px; }
}
@media (max-width: 640px) {
    .nav__links, .nav__inner .btn { display: none; }
    .nav__burger { display: flex; }
    .stats__grid { flex-wrap: wrap; gap: 0; }
    .stats__item { min-width: 50%; }
    .stats__sep:nth-child(4) { display: none; }
    .features__grid { grid-template-columns: 1fr; }
    .cta-download__inner { padding: 48px 24px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
