@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&display=swap');

:root {
    --pink: #FF1EB2;
    --purple: #9D00FF;
    --cyan: #00FFEA;
    --dark: #050508;
    --card: rgba(12, 12, 20, 0.85);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: white;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.canvas-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    background: #050508;
}

.page-wrap { position: relative; z-index: 1; }

/* ── NAV ── */

.landing-nav {
    position: fixed;
    top: 16px; right: 16px;
    z-index: 100;
}

.landing-nav-left {
    position: fixed;
    top: 16px; left: 16px;
    z-index: 100;
}

.nav-login {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,30,178,0.35);
    border-radius: 10px;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 4px 20px rgba(157,0,255,0.35);
}

.nav-login:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(157,0,255,0.55);
    filter: brightness(1.12);
}

/* ── LANG SWITCHER ── */

.lang-switcher { position: relative; }

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(12,12,20,0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    padding: 8px 13px;
    color: white;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-toggle:hover { border-color: rgba(157,0,255,0.3); }
.lang-toggle svg { transition: transform 0.2s; }
.lang-switcher.open .lang-toggle svg { transform: rotate(180deg); }

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    background: rgba(12,12,20,0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 9px;
    padding: 4px;
    min-width: 100%;
    z-index: 101;
}

.lang-switcher.open .lang-dropdown {
    display: flex;
    flex-direction: column;
}

.lang-opt {
    display: block;
    padding: 6px 12px;
    color: rgba(255,255,255,0.5);
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.15s;
    text-align: center;
    white-space: nowrap;
}

.lang-opt:hover {
    color: white;
    background: rgba(157,0,255,0.2);
}

@media (max-width: 600px) {
    .landing-nav { top: 10px; right: 10px; }
    .landing-nav-left { top: 10px; left: 10px; }
}

/* ── HERO ── */

.hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 60px 24px 40px;
    position: relative;
}

.hero-logo {
    width: 90px; height: 90px;
    border-radius: 22px;
    margin-bottom: 28px;
    filter: drop-shadow(0 0 40px rgba(157,0,255,0.4));
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-tag {
    font-size: 11px; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--cyan); margin-bottom: 16px; opacity: 0.8;
}

.hero-title {
    font-size: clamp(32px, 7vw, 68px);
    font-weight: 900; line-height: 1.05;
    margin-bottom: 20px; max-width: 700px;
}

.grad {
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--cyan));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradMove 6s ease infinite;
}

@keyframes gradMove {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-sub {
    font-size: clamp(15px, 3vw, 19px);
    color: rgba(255,255,255,0.55);
    max-width: 520px; line-height: 1.6;
    margin-bottom: 36px; font-weight: 300;
}

.hero-cta {
    display: inline-flex; padding: 16px 40px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: white; text-decoration: none;
    font-weight: 700; font-size: 15px;
    border-radius: 12px; letter-spacing: 1px;
    text-transform: uppercase; transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(157,0,255,0.35);
    border: none; cursor: pointer;
    font-family: inherit;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(157,0,255,0.5);
}

.scroll-hint {
    position: absolute; bottom: 30px;
    animation: scrollBounce 2s infinite; opacity: 0.3;
}

.scroll-hint svg { width: 24px; height: 24px; }

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ── SECTIONS ── */

section { padding: 80px 24px; max-width: 1000px; margin: 0 auto; }

.section-label {
    font-size: 10px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--pink); margin-bottom: 12px;
}

.section-title {
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}

.problem-section, .how-section, .features-section, .trust-section { text-align: center; }

/* ── SPLIT LAYOUT (Text + Phone) ── */

.split-layout {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 36px;
}

.split-layout.reverse { flex-direction: row-reverse; }

.split-content { flex: 1; min-width: 0; }
.split-phone { flex-shrink: 0; }

/* ── INLINE PHONE MOCKUP ── */

.phone-inline {
    width: 200px;
    height: 420px;
    background: linear-gradient(145deg, #1a1a2e, #0d0d18);
    border-radius: 28px;
    padding: 10px;
    position: relative;
    box-shadow:
        0 25px 60px rgba(0,0,0,0.6),
        0 0 0 1px rgba(255,255,255,0.06),
        inset 0 1px 0 rgba(255,255,255,0.05);
    transform: rotateY(-6deg) rotateX(3deg);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease;
}

.phone-inline.tilt-left {
    transform: rotateY(6deg) rotateX(3deg);
}

.phone-inline:hover {
    transform: rotateY(0deg) rotateX(0deg) scale(1.03);
    box-shadow:
        0 35px 80px rgba(0,0,0,0.5),
        0 0 40px rgba(157,0,255,0.12),
        0 0 0 1px rgba(157,0,255,0.2),
        inset 0 1px 0 rgba(255,255,255,0.08);
}

.phone-notch {
    width: 80px;
    height: 22px;
    background: #0d0d18;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-notch::after {
    content: '';
    width: 8px; height: 8px;
    background: #1a1a2e;
    border-radius: 50%;
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    box-shadow: inset 0 0 2px rgba(255,255,255,0.1);
}

.phone-screen {
    width: 100%; height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #050508;
}

.phone-screen::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.phone-screen video {
    width: 100%;
    height: 110%;
    margin-top: -5%;
    object-fit: cover;
    display: block;
}

.phone-bar {
    width: 40%; height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

/* ── PROBLEM ── */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px; margin-top: 36px;
}

.problem-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 28px 22px;
    text-align: left; transition: all 0.3s;
}

.problem-card:hover {
    border-color: rgba(157,0,255,0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.card-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}

.card-icon svg { width: 20px; height: 20px; }
.card-icon-pink { background: rgba(255,30,178,0.12); }
.card-icon-pink svg { stroke: var(--pink); }
.card-icon-cyan { background: rgba(0,255,234,0.1); }
.card-icon-cyan svg { stroke: var(--cyan); }
.card-icon-purple { background: rgba(157,0,255,0.12); }
.card-icon-purple svg { stroke: var(--purple); }

.problem-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.problem-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* ── STEPS ── */

.steps {
    display: flex; flex-direction: column;
    gap: 0; position: relative;
}

.steps::before {
    content: ''; position: absolute;
    left: 28px; top: 40px; bottom: 40px; width: 2px;
    background: linear-gradient(180deg, var(--pink), var(--purple), var(--cyan));
    border-radius: 1px;
}

.step {
    display: flex; gap: 20px;
    align-items: flex-start; padding: 20px 0; text-align: left;
}

.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800;
    flex-shrink: 0; position: relative; z-index: 1;
}

.step:nth-child(1) .step-num { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.step:nth-child(2) .step-num { background: linear-gradient(135deg, var(--purple), var(--cyan)); }
.step:nth-child(3) .step-num { background: linear-gradient(135deg, var(--cyan), var(--pink)); }
.step:nth-child(4) .step-num { background: linear-gradient(135deg, var(--pink), var(--cyan)); }

.step-content { padding-top: 8px; }
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── FEATURES ── */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.feature-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 20px 16px;
    text-align: center; transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(0,255,234,0.2);
    transform: translateY(-3px);
}

.feature-icon-wrap {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
}

.feature-icon-wrap svg { width: 20px; height: 20px; }
.feature-title { font-size: 12px; font-weight: 700; margin-bottom: 4px; }
.feature-desc { font-size: 11px; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* ── SHARING SECTION ── */

.sharing-section {
    max-width: 1000px;
}

.sharing-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 24px;
}

.sharing-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sharing-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
}

/* ── MAP SECTION ── */
/* ── MAP SECTION ── */

.map-section {
    max-width: 1100px;
    padding: 100px 24px;
}

.map-layout {
    display: flex;
    align-items: center;
    gap: 56px;
}

.map-phone-wrap {
    flex-shrink: 0;
    position: relative;
    perspective: 1000px;
}

.map-phone-glow {
    position: absolute;
    width: 260px; height: 260px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,255,234,0.12) 0%, rgba(157,0,255,0.06) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.phone-inline.phone-lg {
    width: 240px;
    height: 510px;
    position: relative;
    z-index: 2;
    transition: transform 0.15s ease-out, box-shadow 0.3s ease;
}

.map-content {
    flex: 1;
    min-width: 0;
}

.map-title {
    font-size: clamp(26px, 5vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 420px;
}

.map-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.map-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.map-stat:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(157,0,255,0.15);
    transform: translateX(4px);
}

.map-stat-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    flex-shrink: 0;
}

.map-stat-val {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.map-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
}

.map-dots-row {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.map-ping {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--c);
    position: relative;
    animation: pingAnim 2.4s ease-in-out infinite;
    animation-delay: var(--d, 0s);
}

.map-ping::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid var(--c);
    animation: pingRing 2.4s ease-out infinite;
    animation-delay: var(--d, 0s);
    opacity: 0;
}

@keyframes pingAnim {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

@keyframes pingRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(3); opacity: 0; }
}

/* ── MAP RESPONSIVE ── */

@media (max-width: 800px) {
    .map-layout {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }

    .map-desc { max-width: 100%; }
    .map-stats { max-width: 400px; margin: 0 auto 28px; }
    .map-dots-row { justify-content: center; }

    .phone-inline.phone-lg {
        width: 200px; height: 424px;
    }
}

@media (max-width: 600px) {
    .phone-inline.phone-lg {
        width: 180px; height: 382px;
    }

    .map-stat { padding: 12px 14px; }
}

/* ── TRUST ── */

.trust-section { max-width: 1000px; }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px; margin-top: 32px;
}

.trust-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px; padding: 28px 22px;
    text-align: left; transition: all 0.3s;
}

.trust-card:hover {
    border-color: rgba(0,255,234,0.15);
    transform: translateY(-3px);
}

.trust-icon-wrap {
    width: 44px; height: 44px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}

.trust-icon-wrap svg { width: 22px; height: 22px; }
.trust-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.trust-desc { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.6; }

.trust-detail {
    margin-top: 10px; padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.04);
    font-size: 10px; color: rgba(255,255,255,0.2);
    line-height: 1.6; letter-spacing: 0.2px;
}

/* ── MANIFESTO ── */

.manifesto {
    text-align: center; padding: 80px 24px;
    max-width: 640px; margin: 0 auto;
}

.manifesto-text {
    font-size: clamp(16px, 3.5vw, 22px);
    font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.6); font-style: italic;
}

.manifesto-text strong { color: white; font-weight: 600; font-style: normal; }

.manifesto-author {
    margin-top: 24px; font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 2px; text-transform: uppercase;
}

/* ── DIVIDER ── */

.divider {
    height: 1px; max-width: 200px; margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(157,0,255,0.3), transparent);
}

/* ── APPLY FORM ── */

.apply-section {
    padding: 60px 24px 80px;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.apply-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 36px 28px;
    backdrop-filter: blur(12px);
    text-align: left;
}

.apply-card h2 {
    font-size: clamp(22px, 4vw, 30px);
    font-weight: 800; margin-bottom: 6px;
    text-align: center;
}

.apply-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group { margin-bottom: 16px; }

.form-label {
    display: block; font-size: 11px; font-weight: 600;
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px; letter-spacing: 0.5px;
}

.form-label .req { color: var(--pink); }

.form-input, .form-textarea {
    width: 100%; padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    color: #fff; font-family: inherit; font-size: 14px;
    transition: all 0.3s ease; outline: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: rgba(157,0,255,0.4);
    background: rgba(157,0,255,0.05);
    box-shadow: 0 0 20px rgba(157,0,255,0.08);
}

.form-input::placeholder, .form-textarea::placeholder {
    color: rgba(255,255,255,0.15);
}

.form-textarea { min-height: 80px; resize: vertical; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-hint {
    font-size: 10px; color: rgba(255,255,255,0.18);
    margin-top: 5px; line-height: 1.4;
}

.form-submit {
    width: 100%; padding: 15px;
    border-radius: 12px; border: none;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    color: #fff; font-family: inherit;
    font-size: 14px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 30px rgba(255,30,178,0.25);
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(255,30,178,0.4);
}

.form-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.form-error {
    background: rgba(255,30,178,0.08);
    border: 1px solid rgba(255,30,178,0.2);
    border-radius: 10px; padding: 12px 16px;
    margin-bottom: 20px; font-size: 12px;
    color: var(--pink); line-height: 1.5;
}

/* ── SUCCESS ── */

.success-card { text-align: center; padding: 48px 28px; }

.success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(0,255,234,0.08);
    border: 2px solid rgba(0,255,234,0.25);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-icon svg { width: 30px; height: 30px; stroke: var(--cyan); }

.success-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }

.success-card p {
    color: rgba(255,255,255,0.4);
    font-size: 14px; line-height: 1.7;
    max-width: 380px; margin: 0 auto;
}

/* ── FOOTER ── */

.footer {
    text-align: center; padding: 30px 24px 40px;
    font-size: 11px; color: rgba(255,255,255,0.15);
}

.footer a {
    color: rgba(255,255,255,0.25);
    text-decoration: none; transition: color 0.2s;
}

.footer a:hover { color: rgba(255,255,255,0.5); }

/* ── ANIMATIONS ── */

.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */

@media (max-width: 800px) {
    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .split-layout.reverse { flex-direction: column; }

    .split-content .section-label,
    .split-content .section-title,
    .split-content .sharing-desc {
        text-align: center !important;
    }

    .sharing-badges { justify-content: center; }
    .map-features { align-items: center; }

    .phone-inline {
        width: 180px; height: 380px;
        transform: none;
    }

    .phone-inline.tilt-left { transform: none; }
    .phone-inline:hover { transform: scale(1.02); }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 600px) {
    .trust-grid { grid-template-columns: 1fr; }
    .steps::before { left: 24px; }
    .step-num { width: 48px; height: 48px; font-size: 17px; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .apply-card { padding: 24px 18px; }
    .hero { padding: 80px 20px 40px; }

    .phone-inline {
        width: 160px; height: 340px;
        border-radius: 22px;
    }

    .phone-screen { border-radius: 16px; }
    .phone-notch { width: 60px; height: 16px; border-radius: 0 0 10px 10px; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .feature-card { padding: 16px 12px; }
}

/* ── FAQ ── */

.faq-section {
    max-width: 700px;
    text-align: center;
}

.faq-list {
    margin-top: 32px;
    text-align: left;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    margin-bottom: 10px;
    background: var(--card);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item[open] {
    border-color: rgba(157,0,255,0.2);
}

.faq-q {
    padding: 18px 22px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q::after {
    content: '+';
    font-size: 18px;
    font-weight: 300;
    color: var(--purple);
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
}

.faq-a {
    padding: 0 22px 18px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
}
