/* Swift Premium Landing */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #060b14;
    --bg-elevated: #0d1424;
    --bg-card: rgba(255,255,255,.04);
    --bg-card-hover: rgba(255,255,255,.07);
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --brand: #22c55e;
    --brand-2: #10b981;
    --brand-glow: rgba(34,197,94,.35);
    --accent: #38bdf8;
    --border: rgba(148,163,184,.14);
    --border-strong: rgba(148,163,184,.28);
    --radius: 20px;
    --radius-sm: 12px;
    --shadow: 0 24px 80px rgba(0,0,0,.45);
    --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    --font-ar: "Cairo", "Segoe UI", sans-serif;
    --nav-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.landing {
    margin: 0;
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    padding-bottom: env(safe-area-inset-bottom);
}
body.landing.rtl { font-family: var(--font-ar); }

.bg-mesh {
    position: fixed; inset: 0; z-index: -2; pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 20% -10%, rgba(34,197,94,.18), transparent 55%),
        radial-gradient(ellipse 60% 40% at 90% 10%, rgba(56,189,248,.12), transparent 50%),
        radial-gradient(ellipse 50% 30% at 50% 100%, rgba(16,185,129,.08), transparent 50%),
        var(--bg);
}
.bg-grid {
    position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
    background-image: linear-gradient(rgba(148,163,184,.07) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(148,163,184,.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}

.container { width: min(1180px, 92vw); margin: 0 auto; }
.section { padding: 96px 0; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head .eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--brand); font-weight: 700; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
    margin-bottom: 14px;
}
.section-head h2 {
    margin: 0 0 14px; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.15; letter-spacing: -.02em;
}
.section-head p { margin: 0; color: var(--text-muted); font-size: 1.08rem; }

/* Nav */
.site-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
    border-bottom: 1px solid transparent;
    transition: .3s ease;
    padding-top: env(safe-area-inset-top);
}
.site-nav.scrolled {
    background: rgba(6,11,20,.82);
    backdrop-filter: blur(18px);
    border-bottom-color: var(--border);
}
.nav-inner {
    height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
    display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text);
    font-weight: 800; font-size: 1.2rem; letter-spacing: -.02em;
}
.brand img { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 0 12px var(--brand-glow)); }
a.site-brand,
a.site-brand:visited,
a.site-brand:hover,
a.site-brand:active {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: #f1f5f9 !important;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: -.02em;
}
a.site-brand .brand-name { color: #f1f5f9 !important; }
a.site-brand img {
    width: 40px; height: 40px; object-fit: contain;
    filter: drop-shadow(0 0 12px var(--brand-glow));
}
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-menu a {
    color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: .92rem;
    padding: 8px 14px; border-radius: 999px; transition: .2s;
}
.nav-menu a:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.lang-pill {
    display: inline-flex; border: 1px solid var(--border); border-radius: 999px; overflow: hidden;
}
.lang-pill a {
    padding: 7px 12px; font-size: .8rem; font-weight: 700; color: var(--text-muted); text-decoration: none;
}
.lang-pill a.active, .lang-pill a:hover { background: rgba(255,255,255,.08); color: var(--text); }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); color: var(--text); border-radius: 10px; padding: 8px 12px; cursor: pointer; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    touch-action: manipulation;
    padding: 14px 24px; border-radius: 999px; font-weight: 700; font-size: .95rem;
    text-decoration: none; border: none; cursor: pointer; transition: .25s ease;
}
.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #052e16; box-shadow: 0 12px 40px var(--brand-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px var(--brand-glow); }
.btn-ghost {
    background: rgba(255,255,255,.04); color: var(--text); border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,.08); }

/* Hero */
.hero { padding: calc(var(--nav-h) + 48px) 0 80px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-copy .badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25);
    color: #86efac; padding: 8px 14px; border-radius: 999px; font-size: .82rem; font-weight: 700;
    margin-bottom: 22px;
}
.hero-copy .badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 12px var(--brand); }
.hero h1 {
    margin: 0 0 20px; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.05; letter-spacing: -.03em;
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero .lead { color: var(--text-muted); font-size: 1.12rem; max-width: 54ch; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.hero-trust span { color: var(--text-muted); font-size: .88rem; display: flex; align-items: center; gap: 8px; }
.hero-trust span::before { content: "✓"; color: var(--brand); font-weight: 800; }

.mockup-wrap { position: relative; }
.mockup-glow {
    position: absolute; inset: 10% -10% -10% -10%;
    background: radial-gradient(circle, var(--brand-glow), transparent 65%);
    filter: blur(40px); z-index: 0;
}
.mockup {
    position: relative; z-index: 1; border-radius: 22px; border: 1px solid var(--border-strong);
    background: linear-gradient(180deg, #111827, #0b1220); box-shadow: var(--shadow); overflow: hidden;
}
.mockup-bar {
    display: flex; align-items: center; gap: 8px; padding: 14px 16px;
    background: rgba(255,255,255,.03); border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-body { padding: 18px; display: grid; grid-template-columns: 140px 1fr; gap: 14px; min-height: 340px; }
.mockup-side { display: flex; flex-direction: column; gap: 8px; }
.mockup-pill {
    height: 34px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid var(--border);
}
.mockup-pill.active { background: rgba(34,197,94,.15); border-color: rgba(34,197,94,.35); }
.mockup-main { display: grid; gap: 12px; }
.mockup-card {
    border-radius: 14px; background: rgba(255,255,255,.04); border: 1px solid var(--border); padding: 14px;
}
.mockup-card h4 { margin: 0 0 8px; font-size: .85rem; color: #e2e8f0; }
.mockup-bars { display: flex; align-items: flex-end; gap: 6px; height: 64px; }
.mockup-bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--brand), rgba(34,197,94,.3)); }
.mockup-shot img { width: 100%; display: block; object-fit: cover; }

.module-strip {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 48px;
}
.module-chip {
    padding: 10px 16px; border-radius: 999px; font-size: .85rem; font-weight: 600;
    background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--text-muted);
}

/* Stats — full section (bottom of page) */
.section-stats .section-head { max-width: 720px; margin-bottom: 48px; }
.section-stats .stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center;
}
.section-stats .stat-item { padding: 8px 12px; }
.section-stats .stat-item .val {
    font-size: clamp(2.2rem, 4.5vw, 3rem); font-weight: 800; color: var(--brand);
    letter-spacing: -.03em; line-height: 1.1; font-variant-numeric: tabular-nums;
}
.section-stats .stat-item .lbl {
    color: var(--text-muted); font-size: .95rem; margin-top: 10px; font-weight: 500;
}

.split-title, .features-title { margin: 0 0 14px; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.12; letter-spacing: -.03em; font-weight: 800; }
.split-title .title-accent, .features-title .title-accent { color: var(--brand); }

/* Steps */
.section-steps .steps-line {
    display: flex; align-items: stretch; justify-content: center; gap: 0; flex-wrap: wrap;
}
.step-card {
    flex: 1 1 240px; max-width: 340px; padding: 28px 24px; border-radius: 16px;
    background: rgba(255,255,255,.045); border: 1px solid rgba(148,163,184,.12);
    position: relative;
}
.step-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 18px; }
.step-icon {
    width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(34,197,94,.16); border: 1px solid rgba(34,197,94,.28); color: var(--brand);
}
.step-icon .site-icon { width: 22px; height: 22px; }
.step-num {
    font-size: 2.4rem; font-weight: 800; line-height: 1; color: rgba(34,197,94,.22); letter-spacing: -.04em;
}
.step-card h3 { margin: 0 0 10px; font-size: 1.08rem; font-weight: 700; }
.step-card p { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.6; }
.step-arrow {
    display: grid; place-items: center; color: var(--brand); padding: 0 10px; align-self: center;
}
.step-arrow .site-icon { width: 22px; height: 22px; }
body.landing.rtl .step-arrow .site-icon { transform: scaleX(-1); }

/* Requirements */
.requirements-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.req-card {
    padding: 28px 24px; border-radius: 16px; background: rgba(255,255,255,.045);
    border: 1px solid rgba(148,163,184,.12);
}
.req-icon {
    width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(34,197,94,.16); border: 1px solid rgba(34,197,94,.28); color: var(--brand); margin-bottom: 18px;
}
.req-icon .site-icon { width: 22px; height: 22px; }
.req-card h3 { margin: 0 0 16px; font-size: 1.05rem; font-weight: 700; }
.req-spec { margin-bottom: 12px; }
.req-spec:last-child { margin-bottom: 0; }
.req-label { display: block; font-size: .78rem; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .06em; }
.req-spec strong { font-size: .95rem; color: #fff; font-weight: 600; }

/* Download */
.download-panel {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(34,197,94,.22);
    background: linear-gradient(145deg, rgba(34,197,94,.08), rgba(255,255,255,.03));
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.download-main, .download-notes { padding: 32px 28px; }
.download-notes { background: rgba(0,0,0,.22); border-inline-start: 1px solid rgba(148,163,184,.12); }
.download-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.download-head .site-icon { width: 28px; height: 28px; color: var(--brand); }
.download-head h3 { margin: 0; font-size: 1.2rem; font-weight: 700; }
.download-meta { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.download-meta li {
    display: flex; align-items: center; gap: 10px; color: var(--text-muted); font-size: .95rem;
}
.download-meta .site-icon { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }
.download-btn {
    display: inline-flex; align-items: center; gap: 10px; width: 100%; justify-content: center;
    padding: 14px 20px; font-size: 1rem;
}
.download-btn .site-icon { width: 20px; height: 20px; }
.download-notes h4 { margin: 0 0 14px; font-size: 1.05rem; }
.download-badge {
    padding: 12px 14px; border-radius: 12px; background: rgba(0,0,0,.28);
    border: 1px solid rgba(148,163,184,.12); color: #86efac; font-size: .9rem; margin-bottom: 16px;
}
.download-notes ul { margin: 0; padding-inline-start: 18px; color: var(--text-muted); font-size: .92rem; line-height: 1.7; }

/* Features grid */
.section-features .section-head { max-width: 760px; margin-bottom: 48px; }
.features-title { margin: 0 0 14px; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.12; letter-spacing: -.03em; font-weight: 800; }
.features-title .title-accent { color: var(--brand); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
    padding: 28px 24px; border-radius: 16px;
    background: rgba(255,255,255,.045); border: 1px solid rgba(148,163,184,.12);
    transition: border-color .25s, transform .25s, background .25s;
}
.feature-card:hover {
    transform: translateY(-4px); border-color: rgba(34,197,94,.28);
    background: rgba(255,255,255,.06);
}
.feature-icon {
    width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(34,197,94,.16); border: 1px solid rgba(34,197,94,.28); margin-bottom: 18px;
    color: var(--brand);
}
.feature-icon .site-icon { width: 22px; height: 22px; stroke-width: 2; }
.feature-card h3 { margin: 0 0 10px; font-size: 1.05rem; font-weight: 700; line-height: 1.35; color: #fff; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: .92rem; line-height: 1.6; }
@media (min-width: 1025px) {
    .features-grid .feature-card:nth-child(-n+2) {
        grid-column: span 2; padding: 32px 28px;
    }
    .features-grid .feature-card:nth-child(-n+2) h3 { font-size: 1.15rem; }
}

.site-icon { width: 1.15em; height: 1.15em; display: block; flex-shrink: 0; }
.site-icon-star { width: 16px; height: 16px; color: #fbbf24; fill: rgba(251,191,36,.2); stroke: #fbbf24; }

/* Gallery slider */
.gallery-slider {
    position: relative; max-width: 1040px; margin: 0 auto; padding: 0 52px;
}
.gallery-viewport {
    display: flex; overflow-x: hidden; width: 100%;
    border-radius: 20px; scroll-behavior: smooth;
    border: 1px solid rgba(34,197,94,.14);
    background: linear-gradient(160deg, #0d1524 0%, #060b14 55%, #0a1018 100%);
    box-shadow:
        0 28px 56px -16px rgba(0,0,0,.55),
        0 0 0 1px rgba(255,255,255,.04) inset,
        0 0 100px -24px rgba(34,197,94,.14);
}
.gallery-slide {
    position: relative; flex: 0 0 100%; width: 100%; min-width: 100%;
    margin: 0; box-sizing: border-box;
    aspect-ratio: 16/9; min-height: 300px; overflow: hidden;
}
.gallery-slide img, .gallery-slide video {
    width: 100%; height: 100%; object-fit: contain;
    background: #060b14; display: block;
}
.gallery-slide figcaption {
    position: absolute; left: 0; right: 0; bottom: 0; padding: 20px 24px 18px;
    background: linear-gradient(transparent, rgba(0,0,0,.92));
    font-size: .95rem; font-weight: 500; letter-spacing: .01em;
}
.gallery-nav {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 48px; height: 48px; border-radius: 50%;
    border: 1px solid rgba(34,197,94,.22);
    background: rgba(6,11,20,.88); color: #e2e8f0; cursor: pointer;
    display: grid; place-items: center; transition: .25s;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 28px rgba(0,0,0,.45);
}
.gallery-nav:hover {
    border-color: rgba(34,197,94,.55); color: #86efac;
    box-shadow: 0 8px 28px rgba(0,0,0,.45), 0 0 20px rgba(34,197,94,.18);
    transform: translateY(-50%) scale(1.06);
}
.gallery-nav .site-icon { width: 22px; height: 22px; }
.gallery-prev { inset-inline-start: 0; }
.gallery-next { inset-inline-end: 0; }
body.landing.rtl .gallery-prev .site-icon,
body.landing.rtl .gallery-next .site-icon { transform: scaleX(-1); }
.gallery-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 18px;
}
.gallery-dot {
    width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0;
    background: rgba(148,163,184,.35); cursor: pointer; transition: .2s;
}
.gallery-dot.active { background: var(--brand); box-shadow: 0 0 0 4px var(--brand-glow); transform: scale(1.1); }
.gallery-type-badge {
    position: absolute; top: 12px; inset-inline-end: 12px;
    background: rgba(6,11,20,.75); color: #86efac; font-size: .72rem; font-weight: 700;
    padding: 4px 10px; border-radius: 999px; border: 1px solid rgba(34,197,94,.3);
    letter-spacing: .06em; text-transform: uppercase; z-index: 2;
}

.feature-card h3 { margin: 0 0 10px; font-size: 1.15rem; position: relative; z-index: 1; }
.feature-card p { margin: 0; color: var(--text-muted); font-size: .95rem; position: relative; z-index: 1; }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card {
    padding: 32px 28px; border-radius: 24px; background: var(--bg-card); border: 1px solid var(--border);
    display: flex; flex-direction: column; transition: .3s;
}
.price-card:hover { transform: translateY(-6px); }
.price-card.featured {
    background: linear-gradient(180deg, rgba(34,197,94,.12), rgba(255,255,255,.03));
    border-color: rgba(34,197,94,.4); box-shadow: 0 0 0 1px rgba(34,197,94,.15), var(--shadow);
    transform: scale(1.03);
}
.price-card .tag {
    align-self: flex-start; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    color: #86efac; background: rgba(34,197,94,.15); padding: 6px 10px; border-radius: 999px; margin-bottom: 14px;
}
.price-card h3 { margin: 0; font-size: 1.3rem; }
.price-card .amount { font-size: 2.2rem; font-weight: 800; margin: 12px 0 20px; letter-spacing: -.03em; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.price-card li { padding: 9px 0; border-bottom: 1px dashed var(--border); color: var(--text-muted); font-size: .92rem; }
.price-card li::before { content: "✦ "; color: var(--brand); }

/* Contact + footer */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.contact-card {
    padding: 24px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border);
}
.contact-card strong { display: block; margin-bottom: 8px; color: var(--brand); }
.contact-card a { color: var(--text); text-decoration: none; font-weight: 600; }
.site-footer {
    padding: 64px 0 28px; border-top: 1px solid var(--border); margin-top: 48px;
    background: rgba(0,0,0,.32);
}
.footer-top {
    display: grid; grid-template-columns: 1.1fr 2fr; gap: 48px; align-items: start;
    padding-bottom: 36px;
}
.site-footer .footer-brand .site-brand { margin-bottom: 14px; }
.footer-tagline {
    margin: 0 0 12px; color: var(--text-muted); max-width: 38ch;
    line-height: 1.65; font-size: .92rem;
}
.footer-desc {
    margin: 0 0 20px; color: var(--text-muted); max-width: 42ch;
    line-height: 1.65; font-size: .88rem; opacity: .9;
}
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
    width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
    background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text-muted);
    transition: .2s;
}
.footer-social a:hover { color: var(--brand); border-color: rgba(34,197,94,.35); }
.footer-social .site-icon { width: 18px; height: 18px; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { margin: 0 0 14px; font-size: .95rem; font-weight: 700; color: #fff; }
.footer-col a {
    display: block; color: var(--text-muted); text-decoration: none; font-size: .9rem;
    padding: 5px 0; transition: .2s;
}
.footer-col a:hover { color: var(--brand); }
.footer-legal {
    padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}
.footer-legal h4 { margin: 0 0 12px; font-size: .95rem; font-weight: 700; }
.footer-legal-links { display: flex; flex-wrap: wrap; gap: 18px 28px; }
.footer-legal-links a { color: var(--text-muted); text-decoration: none; font-size: .88rem; }
.footer-legal-links a:hover { color: var(--brand); }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    color: var(--text-muted); font-size: .85rem;
}
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.t-card {
    padding: 26px; border-radius: var(--radius); background: var(--bg-card); border: 1px solid var(--border);
}
.t-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.t-quote { color: #e2e8f0; font-size: 1rem; margin: 0 0 18px; }
.t-author strong { display: block; }
.t-author span { color: var(--text-muted); font-size: .88rem; }

.compare-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); background: rgba(255,255,255,.03); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 16px 18px; border-bottom: 1px solid var(--border); text-align: start; }
.compare-table th { color: var(--text-muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.compare-table td { color: #e2e8f0; }
.compare-table .col-swift { color: #86efac; font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
    border-radius: var(--radius-sm); border: 1px solid var(--border); background: var(--bg-card); overflow: hidden;
}
.faq-q {
    width: 100%; text-align: start; background: none; border: none; color: var(--text);
    padding: 18px 20px; font: inherit; font-weight: 700; font-size: 1rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q .icon { transition: .25s; color: var(--brand); }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: .3s ease; color: var(--text-muted); padding: 0 20px; }
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 18px; }

/* CTA */
.cta-banner {
    margin: 0 auto; max-width: 980px; padding: 48px; border-radius: 28px; text-align: center;
    background: linear-gradient(135deg, rgba(34,197,94,.18), rgba(56,189,248,.08));
    border: 1px solid rgba(34,197,94,.25); box-shadow: var(--shadow);
}
.cta-banner h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.cta-banner p { margin: 0 0 24px; color: var(--text-muted); }

.reveal { opacity: 0; transform: translateY(28px); transition: .7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1024px) {
    .hero-grid, .pricing-grid, .testimonial-grid, .contact-grid { grid-template-columns: 1fr; }
    .features-grid, .requirements-grid { grid-template-columns: repeat(2, 1fr); }
    .section-stats .stats-row { grid-template-columns: repeat(2, 1fr); }
    .download-panel { grid-template-columns: 1fr; }
    .download-notes { border-inline-start: none; border-top: 1px solid rgba(148,163,184,.12); }
    .footer-top { grid-template-columns: 1fr; }
    .footer-columns { grid-template-columns: repeat(2, 1fr); }
    .gallery-slider { padding: 0 8px; }
    .gallery-prev { inset-inline-start: 12px; }
    .gallery-next { inset-inline-end: 12px; }
    .gallery-nav { width: 40px; height: 40px; }
    .price-card.featured { transform: none; }
}
@media (max-width: 768px) {
    .nav-menu, .nav-actions .btn-ghost { display: none; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; }
    .nav-inner { gap: 10px; }
    .nav-actions .btn-primary { padding: 10px 14px; font-size: .82rem; white-space: nowrap; }
    .site-nav.open .nav-menu {
        display: flex; flex-direction: column; position: absolute; top: var(--nav-h); left: 16px; right: 16px;
        background: rgba(13,20,36,.98); border: 1px solid var(--border); border-radius: 16px; padding: 12px;
        z-index: 101; box-shadow: var(--shadow); max-height: calc(100dvh - var(--nav-h) - 24px); overflow-y: auto;
    }
    .site-nav.open .nav-menu a {
        padding: 14px 16px; font-size: 1rem; border-radius: 12px;
    }
    .section { padding: 72px 0; }
    .mockup-body { grid-template-columns: 1fr; min-height: 260px; }
    .mockup-side { flex-direction: row; flex-wrap: wrap; }
    .mockup-pill { flex: 1 1 40%; height: 28px; }
}
@media (max-width: 640px) {
    .features-grid, .requirements-grid,
    .section-stats .stats-row, .footer-columns { grid-template-columns: 1fr; }
    .features-grid .feature-card:nth-child(-n+2) { grid-column: auto; }
    .step-arrow { display: none; }
    .section-steps .steps-line { flex-direction: column; align-items: stretch; }
    .step-card { max-width: none; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero { padding: calc(var(--nav-h) + 28px) 0 56px; }
    .hero h1 { font-size: clamp(1.85rem, 8.5vw, 2.35rem); }
    .hero .lead { font-size: 1rem; }
    .hero-copy > div[style] { flex-direction: column; align-items: stretch !important; }
    .hero-copy .btn { width: 100%; }
    .section { padding: 56px 0; }
    .container { width: min(1180px, 94vw); }
    .btn { min-height: 44px; }
    .download-btn { width: 100%; }
    .faq-item.open .faq-a { max-height: 520px; }
    .cta-banner { padding: 32px 20px; }
    .gallery-nav { width: 44px; height: 44px; }
    .price-card .btn { width: 100%; }
    .module-strip { gap: 8px; }
    .module-chip { font-size: .8rem; padding: 8px 12px; }
}
@media (max-width: 380px) {
    .nav-actions .btn-primary { display: none; }
    .brand-name { font-size: 1rem; }
    .lang-pill a { padding: 7px 10px; font-size: .75rem; }
}
