:root {
    --bg: #06060b;
    --surface: #0e0e16;
    --surface-2: #14141f;
    --surface-3: #1a1a28;
    --accent: #2d7ff9;
    --accent-light: #5b9cff;
    --accent-glow: rgba(45,127,249,0.15);
    --warm: #ff8c42;
    --warm-glow: rgba(255,140,66,0.12);
    --emerald: #10b981;
    --violet: #8b5cf6;
    --rose: #f43f5e;
    --text: #eeeef0;
    --text-2: #a0a0b4;
    --text-3: #65657a;
    --border: rgba(255,255,255,0.06);
    --border-2: rgba(255,255,255,0.1);
    --font-display: 'Instrument Serif', Georgia, serif;
    --font-body: 'Satoshi', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* ── Grain ── */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* ═══════════════ NAV ═══════════════ */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 32px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

header.scrolled {
    background: rgba(6,6,11,0.88);
    backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: -0.01em;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--accent);
    border-radius: 11px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}

.logo-icon svg { width: 20px; height: 20px; fill: #fff; position: relative; z-index: 1; }

nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

nav a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-2);
    transition: color 0.25s;
    position: relative;
}

nav a:hover { color: var(--text); }

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s;
}

nav a:hover::after { width: 100%; }

.nav-download {
    padding: 9px 22px;
    background: var(--accent);
    color: #fff !important;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.nav-download:hover {
    background: #1a6cf0;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(45,127,249,0.3);
}

.nav-download::after { display: none !important; }

.mobile-toggle {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero-aurora {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-aurora .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-aurora .orb-1 {
    width: 600px; height: 600px;
    background: rgba(45,127,249,0.12);
    top: -10%; right: 10%;
}

.hero-aurora .orb-2 {
    width: 500px; height: 500px;
    background: rgba(139,92,246,0.08);
    bottom: -5%; left: -5%;
    animation-delay: -4s;
}

.hero-aurora .orb-3 {
    width: 400px; height: 400px;
    background: rgba(255,140,66,0.06);
    top: 40%; left: 40%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

/* Hero Text */
.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 8px;
    background: var(--accent-glow);
    border: 1px solid rgba(45,127,249,0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-light);
    margin-bottom: 28px;
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) both;
}

.hero-chip .chip-dot {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent);
    display: grid;
    place-items: center;
}

.hero-chip .chip-dot svg { width: 12px; height: 12px; fill: #fff; }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5.8vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.08s both;
}

.hero h1 em {
    font-style: italic;
    background: linear-gradient(135deg, var(--accent-light), #c084fc, var(--warm));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.12rem;
    color: var(--text-2);
    max-width: 500px;
    margin-bottom: 40px;
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.16s both;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.24s both;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(32px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 13px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    border: none;
    font-family: var(--font-body);
}

.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-fill {
    background: var(--accent);
    color: #fff;
}

.btn-fill:hover {
    background: #1a6cf0;
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(45,127,249,0.3);
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid var(--border-2);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* Hero Phone */
.hero-phone-wrap {
    display: flex;
    justify-content: center;
    perspective: 1200px;
    animation: heroIn 1.1s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}

.phone {
    position: relative;
    width: 280px;
    border-radius: 40px;
    background: #000;
    padding: 10px;
    box-shadow:
            inset 0 0 0 1.5px #2a2a30,
            0 60px 120px rgba(0,0,0,0.6),
            0 0 0 1px rgba(255,255,255,0.05);
    transform: rotateY(-6deg) rotateX(3deg);
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.phone:hover { transform: rotateY(-2deg) rotateX(1deg); }

.phone-inner {
    border-radius: 32px;
    overflow: hidden;
    background: #f5f5f7;
    aspect-ratio: 9/19.2;
    position: relative;
}

.phone-di {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 28px;
    background: #000;
    border-radius: 0 0 18px 18px;
    z-index: 5;
}

.phone-ui {
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, system-ui, sans-serif;
}

.pui-header {
    padding: 40px 14px 10px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
    color: #000;
    background: #f5f5f7;
    border-bottom: 0.5px solid #d1d1d6;
}

.pui-tabs {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: #f5f5f7;
}

.pui-tab {
    flex: 1;
    text-align: center;
    padding: 6px;
    border-radius: 7px;
    font-size: 11.5px;
    font-weight: 600;
    color: #8e8e93;
    transition: 0.2s;
}

.pui-tab.on { background: #d4d4d8; color: #000; }

.pui-list {
    flex: 1;
    overflow: hidden;
    padding: 4px 0;
}

.pui-city {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
}

.pui-city-img {
    width: 44px;
    height: 32px;
    border-radius: 5px;
    flex-shrink: 0;
}

.pui-city span {
    font-size: 13.5px;
    font-weight: 600;
    color: #000;
}

.pui-soon {
    margin-left: auto;
    font-size: 8px;
    font-weight: 700;
    padding: 2px 6px;
    background: #ff9500;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Floating badges */
.hero-badge-float {
    position: absolute;
    padding: 14px 18px;
    background: rgba(14,14,22,0.92);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.4);
    z-index: 10;
}

.hero-badge-float .hbf-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-badge-float .hbf-text small {
    display: block;
    font-size: 0.68rem;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.hero-badge-float .hbf-text strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.hbf-1 { top: 14%; right: -36px; animation: badgeFloat 5s ease-in-out infinite; }
.hbf-2 { bottom: 16%; left: -44px; animation: badgeFloat 5s ease-in-out infinite 2.5s; }

.hbf-1 .hbf-icon { background: var(--accent-glow); }
.hbf-2 .hbf-icon { background: var(--warm-glow); }

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 52px;
    animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.36s both;
}

.hero-stat { text-align: left; }

.hero-stat .hs-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .hs-label {
    font-size: 0.78rem;
    color: var(--text-3);
    font-weight: 500;
}

/* ═══════════════ SECTIONS ═══════════════ */
section { padding: 120px 0; }

.sec-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 18px;
}

.sec-tag::before {
    content: '';
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.sec-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.2vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
}

.sec-desc {
    font-size: 1.05rem;
    color: var(--text-2);
    max-width: 540px;
    line-height: 1.7;
}

/* ═══════════════ MARQUEE (Social Proof) ═══════════════ */
.marquee-section {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    font-size: 0.9rem;
    color: var(--text-3);
    font-weight: 500;
}

.marquee-item span { font-size: 1.2rem; }

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* ═══════════════ FEATURES ═══════════════ */
.feat-section { background: var(--bg); }

.feat-header { text-align: center; margin-bottom: 72px; }
.feat-header .sec-desc { margin: 0 auto; }

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feat-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    overflow: hidden;
}

.feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--violet));
    opacity: 0;
    transition: opacity 0.4s;
}

.feat-card:hover {
    border-color: rgba(45,127,249,0.15);
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

.feat-card:hover::after { opacity: 1; }

.fc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    font-size: 22px;
}

.fc-icon.i1 { background: var(--accent-glow); }
.fc-icon.i2 { background: rgba(16,185,129,0.12); }
.fc-icon.i3 { background: rgba(139,92,246,0.12); }
.fc-icon.i4 { background: var(--warm-glow); }
.fc-icon.i5 { background: rgba(244,63,94,0.12); }
.fc-icon.i6 { background: rgba(6,182,212,0.12); }

.feat-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feat-card p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* ═══════════════ APP SHOWCASE (3 phones) ═══════════════ */
.showcase {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.showcase .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.showcase-screens {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.showcase-screen {
    width: 200px;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid #222;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    background: #fff;
    transition: transform 0.4s;
}

.showcase-screen:nth-child(2) {
    transform: scale(1.08);
    z-index: 2;
    border-color: var(--accent);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 0 1px var(--accent);
}

.showcase-screen img {
    width: 100%;
    height: auto;
}

/* ═══════════════ CITIES ═══════════════ */
.cities-section { background: var(--bg); }

.cities-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
    flex-wrap: wrap;
    gap: 24px;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.city-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.4,0,0.2,1);
}

.city-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 64px rgba(0,0,0,0.5);
    z-index: 2;
}

.city-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}

.city-card:hover .city-bg { transform: scale(1.1); }

.city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.city-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 3;
}

.city-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.city-info small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
}

.city-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    padding: 4px 10px;
    background: var(--warm);
    color: #000;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.how-section { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.how-header { text-align: center; margin-bottom: 72px; }
.how-header .sec-desc { margin: 0 auto; }

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.how-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
}

.how-card:hover {
    border-color: var(--border-2);
    transform: translateY(-4px);
}

.how-num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 22px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    background: var(--accent-glow);
    border: 1.5px solid rgba(45,127,249,0.25);
    color: var(--accent-light);
    transition: all 0.3s;
}

.how-card:hover .how-num {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 0 40px rgba(45,127,249,0.25);
}

.how-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-card p {
    font-size: 0.88rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ═══════════════ CITY GUIDES (SEO Content) ═══════════════ */
.guides-section { background: var(--bg); }

.guides-header { text-align: center; margin-bottom: 56px; }
.guides-header .sec-desc { margin: 0 auto; }

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.guide-card {
    display: flex;
    gap: 24px;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s;
}

.guide-card:hover {
    border-color: var(--border-2);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.guide-img {
    width: 120px;
    height: 120px;
    border-radius: 14px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--surface-2);
}

.guide-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.guide-content .guide-meta {
    font-size: 0.78rem;
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 8px;
}

.guide-content p {
    font-size: 0.85rem;
    color: var(--text-2);
    line-height: 1.6;
}

/* ═══════════════ REVIEWS ═══════════════ */
.reviews-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reviews-header { text-align: center; margin-bottom: 56px; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 32px 28px;
}

.review-stars {
    font-size: 0.9rem;
    color: var(--warm);
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--accent-glow);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--accent-light);
}

.review-name { font-weight: 600; font-size: 0.9rem; }
.review-trip { font-size: 0.78rem; color: var(--text-3); }

/* ═══════════════ COMPARISON ═══════════════ */
.compare-section { background: var(--bg); }

.compare-header { text-align: center; margin-bottom: 56px; }
.compare-header .sec-desc { margin: 0 auto; }

.compare-table {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.compare-row {
    display: grid;
    grid-template-columns: 1fr 140px 140px;
    border-bottom: 1px solid var(--border);
}

.compare-row:last-child { border-bottom: none; }

.compare-row.cr-head {
    background: var(--surface-2);
}

.compare-row.cr-head > div {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text);
}

.compare-row > div {
    padding: 16px 24px;
    font-size: 0.88rem;
    color: var(--text-2);
    display: flex;
    align-items: center;
}

.compare-row > div:not(:first-child) { justify-content: center; }

.compare-row .feat-name { font-weight: 600; color: var(--text); }

.check { color: var(--emerald); font-size: 1.2rem; }
.cross { color: var(--text-3); font-size: 1.2rem; opacity: 0.5; }

/* ═══════════════ FAQ ═══════════════ */
.faq-section {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.faq-header { text-align: center; margin-bottom: 56px; }

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    width: 100%;
    padding: 22px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
}

.faq-q .faq-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--surface-3);
    display: grid;
    place-items: center;
    font-size: 14px;
    color: var(--text-2);
    transition: transform 0.3s, background 0.3s;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .faq-arrow {
    transform: rotate(45deg);
    background: var(--accent-glow);
    color: var(--accent-light);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding-bottom: 22px;
}

.faq-a p {
    font-size: 0.92rem;
    color: var(--text-2);
    line-height: 1.7;
}

/* ═══════════════ CTA ═══════════════ */
.cta-section { background: var(--bg); }

.cta-box {
    position: relative;
    padding: 88px 60px;
    border-radius: 28px;
    text-align: center;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
            radial-gradient(ellipse 50% 60% at 25% 50%, rgba(45,127,249,0.1), transparent),
            radial-gradient(ellipse 50% 60% at 75% 50%, rgba(139,92,246,0.07), transparent);
}

.cta-box > * { position: relative; z-index: 2; }

.cta-box .sec-title { margin-bottom: 14px; }
.cta-box .sec-desc { margin: 0 auto 36px; }

.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

.btn-appstore {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 16px 32px;
    background: #fff;
    color: #000;
    border-radius: 14px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-appstore:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(255,255,255,0.12);
}

.btn-appstore svg { width: 24px; height: 24px; }

.btn-appstore .as-text { text-align: left; }
.btn-appstore .as-text small { display: block; font-size: 0.6rem; font-weight: 400; opacity: 0.6; }
.btn-appstore .as-text span { font-size: 1.05rem; }

/* ═══════════════ FOOTER ═══════════════ */
footer {
    padding: 64px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-3);
    line-height: 1.65;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-3);
    margin-bottom: 18px;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 10px; }

.footer-col a {
    font-size: 0.88rem;
    color: var(--text-2);
    transition: color 0.25s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    font-size: 0.78rem;
    color: var(--text-3);
    flex-wrap: wrap;
    gap: 12px;
}

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}

.reveal.vis {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1100px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; gap: 56px; }
    .hero-desc { margin: 0 auto 40px; }
    .hero-btns { justify-content: center; }
    .hero-stats { justify-content: center; }
    .phone { transform: none; }
    .phone:hover { transform: none; }
    .hero-badge-float { display: none; }
    .feat-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
    .showcase .container { grid-template-columns: 1fr; gap: 48px; }
    .how-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    nav ul { display: none; }
    .mobile-toggle { display: flex; }
    section { padding: 80px 0; }
    .hero { padding: 90px 0 60px; }
    .feat-grid { grid-template-columns: 1fr; }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .guides-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr 1fr; }
    .compare-row { grid-template-columns: 1fr 100px 100px; }
    .compare-row > div { padding: 12px 16px; font-size: 0.82rem; }
    .cta-box { padding: 56px 24px; }
    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .cities-grid { grid-template-columns: 1fr 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; align-items: stretch; }
    .hero-stats { gap: 32px; }
    .guide-card { flex-direction: column; }
    .guide-img { width: 100%; height: 160px; }
}
