/* ════════════════════════════════════
   RESET & VARIABLES
   ════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #050a18;
    --bg-subtle: #0a1128;
    --card: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    --card-hover: rgba(255, 255, 255, 0.1);
    --primary: #6C5CE7;
    --primary-light: #a29bfe;
    --secondary: #00cec9;
    --accent: #fd79a8;
    --hot: #ff6b6b;
    --text: #f0f0f5;
    --text-light: #a0a0b8;
    --text-muted: #6c6c80;
    --radius: 20px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #6C5CE7, #00cec9);
    --gradient-hot: linear-gradient(135deg, #fd79a8, #ff6b6b);
    --gradient-bg: linear-gradient(135deg, #050a18 0%, #0a1128 50%, #0d0a2e 100%);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ════════════════════════════════════
   ANIMATED BACKGROUND BLOBS
   ════════════════════════════════════ */
.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    will-change: transform;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #6C5CE7 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: blobFloat1 20s ease-in-out infinite;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00cec9 0%, transparent 70%);
    top: 40%;
    right: -15%;
    animation: blobFloat2 25s ease-in-out infinite;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #fd79a8 0%, transparent 70%);
    bottom: -5%;
    left: 30%;
    animation: blobFloat3 22s ease-in-out infinite;
}

@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, 40px) scale(1.1); }
    66% { transform: translate(-40px, 80px) scale(0.95); }
}

@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -40px) scale(1.05); }
    66% { transform: translate(40px, -80px) scale(0.9); }
}

@keyframes blobFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(60px, -30px) scale(1.15); }
    66% { transform: translate(-80px, 20px) scale(0.95); }
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Stagger children in grids */
.features-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.features-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.features-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.features-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

.deals-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.deals-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.deals-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

.why-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.why-grid .reveal:nth-child(3) { transition-delay: 0.2s; }
.why-grid .reveal:nth-child(4) { transition-delay: 0.3s; }

/* ════════════════════════════════════
   GLASSMORPHISM BASE
   ════════════════════════════════════ */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: var(--glass-shadow);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.glass-card:hover {
    background: var(--card-hover);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* ════════════════════════════════════
   GRADIENT TEXT
   ════════════════════════════════════ */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-sm {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ════════════════════════════════════
   NAV
   ════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(5, 10, 24, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 12px 0;
    transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
}

nav.nav-scrolled {
    background: rgba(5, 10, 24, 0.9);
    padding: 8px 0;
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 2px 12px rgba(108, 92, 231, 0.3);
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 900;
    white-space: nowrap;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: none;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 10px;
    transition: color 0.25s, background 0.25s;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    margin: 0 6px 0 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switch-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 30px;
    padding: 4px 8px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 999px;
    transition: color 0.2s, background 0.2s;
}

.lang-switch-item:hover {
    color: var(--text);
}

.lang-switch-item.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.12);
    cursor: default;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 12px;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
    box-shadow: 0 2px 16px rgba(108, 92, 231, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.5);
}

.nav-cta svg {
    transition: transform 0.25s;
}

.nav-cta:hover svg {
    transform: translateX(3px);
}

@media (min-width: 768px) {
    .nav-link { display: block; }
}

/* ════════════════════════════════════
   HERO
   ════════════════════════════════════ */
.hero {
    position: relative;
    z-index: 1;
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.12);
    border: 1px solid rgba(108, 92, 231, 0.25);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 206, 201, 0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(0, 206, 201, 0); }
}

.hero h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--text);
}

.price-highlight {
    position: relative;
    color: var(--secondary);
    text-shadow: 0 0 40px rgba(0, 206, 201, 0.3);
}

.hero-plane {
    display: inline-block;
    animation: floatPlane 3s ease-in-out infinite;
    font-style: normal;
}

@keyframes floatPlane {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.18rem);
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hide-mobile { display: none; }
@media (min-width: 640px) { .hide-mobile { display: inline; } }

/* ════════════════════════════════════
   BUTTONS
   ════════════════════════════════════ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.35),
                0 0 0 0 rgba(108, 92, 231, 0);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 40px rgba(108, 92, 231, 0.5),
                0 0 80px rgba(108, 92, 231, 0.15);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

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

/* Shimmer sweep effect */
.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.btn-white {
    background: linear-gradient(135deg, #fff 0%, #e8e8f0 100%);
    color: var(--bg);
    box-shadow: 0 4px 24px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
    box-shadow: 0 8px 40px rgba(255, 255, 255, 0.25),
                0 0 80px rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(108, 92, 231, 0.12);
    border: 1px solid rgba(108, 92, 231, 0.3);
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
    background: rgba(108, 92, 231, 0.2);
    border-color: rgba(108, 92, 231, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.2);
}

.btn-secondary svg {
    transition: transform 0.25s;
}

.btn-secondary:hover svg {
    transform: translateX(4px);
}

/* ════════════════════════════════════
   HERO ACTIONS & STORE
   ════════════════════════════════════ */
.hero-actions {
    margin-bottom: 20px;
}

.store-badge-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.store-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    min-width: 160px;
    height: 52px;
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.25s ease, border-color 0.25s, background 0.25s;
}

.store-btn:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.4);
    background: #0a0a0a;
}

.store-btn-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.store-btn-small {
    font-size: 0.68rem;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

.store-btn-big {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.android-soon,
.android-ready {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
}

.android-ready {
    color: var(--text);
    opacity: 0.9;
}

/* ════════════════════════════════════
   HERO STATS
   ════════════════════════════════════ */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 56px;
}

.hero-stat {
    padding: 20px 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-stat:hover {
    transform: translateY(-4px) scale(1.04);
}

.hero-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ════════════════════════════════════
   PHONE MOCKUP
   ════════════════════════════════════ */
.hero-mockup {
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-glow {
    position: absolute;
    width: 280px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    z-index: 0;
    animation: phoneGlow 4s ease-in-out infinite alternate;
}

@keyframes phoneGlow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.phone-frame {
    width: 280px;
    max-width: 100%;
    border-radius: 36px;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 12px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-frame:hover {
    transform: translateY(-8px) rotateX(2deg);
}

.phone-notch {
    width: 100px;
    height: 24px;
    background: #0d0d1a;
    border-radius: 0 0 16px 16px;
    margin: -12px auto 8px;
    position: relative;
    z-index: 2;
}

.phone-screen {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #0d1117 0%, #0a0e16 100%);
}

.phone-content {
    padding: 14px;
}

.phone-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 12px;
}

.phone-header img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.phone-header span {
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-search {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.phone-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 3px;
}

.phone-tab {
    flex: 1;
    text-align: center;
    padding: 6px 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: 8px;
    transition: all 0.25s;
}

.phone-tab.active {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

.phone-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 12px;
    margin-bottom: 8px;
    transition: all 0.3s;
}

.phone-card.featured {
    background: rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.2);
}

.phone-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.phone-card-dest {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-card-dest .flag {
    font-size: 1.3rem;
}

.phone-card-dest .city {
    font-weight: 700;
    font-size: 0.88rem;
}

.phone-card-price {
    font-weight: 800;
    font-size: 1.1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.phone-card-hot {
    color: var(--hot);
    font-weight: 700;
}

.phone-card-saved {
    color: var(--secondary);
    font-weight: 600;
}

.phone-card-dates {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.phone-date-pill {
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

.phone-date-pill.active {
    background: rgba(108, 92, 231, 0.2);
    color: var(--primary-light);
}

/* ════════════════════════════════════
   SECTIONS COMMON
   ════════════════════════════════════ */
section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 56px;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(108, 92, 231, 0.12);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    color: var(--text);
}

.section-title p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
}

/* ════════════════════════════════════
   FEATURES
   ════════════════════════════════════ */
.features-section {
    padding-top: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    padding: 28px 24px;
    border-radius: var(--radius);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease,
                border-color 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-6px) scale(1.02);
}

.feature-card.highlight {
    background: rgba(108, 92, 231, 0.08);
    border-color: rgba(108, 92, 231, 0.2);
}

.feature-card.highlight:hover {
    background: rgba(108, 92, 231, 0.14);
    border-color: rgba(108, 92, 231, 0.3);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon { animation-delay: 0.3s; }
.feature-card:nth-child(3) .feature-icon { animation-delay: 0.6s; }
.feature-card:nth-child(4) .feature-icon { animation-delay: 0.9s; }
.feature-card:nth-child(5) .feature-icon { animation-delay: 1.2s; }
.feature-card:nth-child(6) .feature-icon { animation-delay: 1.5s; }

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

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.feature-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--gradient-hot);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    vertical-align: middle;
    margin-left: 6px;
}

/* ════════════════════════════════════
   DEALS
   ════════════════════════════════════ */
.deals-section {
    padding-bottom: 80px;
}

.deals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .deals-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .deals-grid { grid-template-columns: repeat(4, 1fr); }
}

.deal-card {
    padding: 24px 20px;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.35s ease,
                border-color 0.35s ease;
}

.deal-card:hover {
    transform: translateY(-8px) scale(1.03);
}

.deal-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(253, 121, 168, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.deal-card.hot {
    border-color: rgba(253, 121, 168, 0.2);
}

.deal-card.hot:hover {
    border-color: rgba(253, 121, 168, 0.35);
}

.deal-flag {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 12px;
}

.deal-city {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text);
}

.deal-route {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.deal-price {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.deal-price span {
    font-size: 0.85rem;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-muted);
}

.deal-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.hot-label {
    background: rgba(253, 121, 168, 0.15);
    color: var(--accent);
    border: 1px solid rgba(253, 121, 168, 0.25);
}

.best-label {
    background: rgba(0, 206, 201, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(0, 206, 201, 0.25);
}

.deal-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-bottom: 14px;
}

.date-pill {
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: all 0.25s;
}

.deal-card:hover .date-pill {
    border-color: rgba(255, 255, 255, 0.12);
}

.deal-cta-link {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 10px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    transition: all 0.25s;
}

.deal-cta-link:hover {
    background: rgba(108, 92, 231, 0.2);
    transform: translateX(2px);
}

.deals-urgency {
    text-align: center;
    font-size: 0.88rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 16px;
    padding: 12px;
    background: rgba(253, 121, 168, 0.08);
    border: 1px solid rgba(253, 121, 168, 0.15);
    border-radius: var(--radius-sm);
}

.trust-line {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-item {
    padding: 10px 18px;
    border-radius: var(--radius-xs);
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 500;
}

.deals-cta {
    text-align: center;
}

/* ════════════════════════════════════
   WHY SECTION
   ════════════════════════════════════ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
    .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.why-card {
    padding: 28px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: inline-block;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
}

/* ════════════════════════════════════
   FAQ
   ════════════════════════════════════ */
.faq-section {
    padding-bottom: 60px;
}

.faq-list {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: color 0.25s;
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(108, 92, 231, 0.1);
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s;
}

.faq-toggle svg {
    width: 12px;
    height: 12px;
    stroke: var(--primary-light);
    stroke-width: 2.5;
    stroke-linecap: round;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    background: rgba(108, 92, 231, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════ */
.final-cta {
    padding: 60px 0 100px;
}

.final-cta-box {
    text-align: center;
    padding: 56px 32px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background: rgba(108, 92, 231, 0.06);
    border: 1px solid rgba(108, 92, 231, 0.15);
}

.final-cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    animation: ctaGlow 5s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { opacity: 0.5; transform: translateX(-50%) scale(0.8); }
    100% { opacity: 1; transform: translateX(-50%) scale(1.2); }
}

.final-cta-logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px rgba(108, 92, 231, 0.3);
    position: relative;
    z-index: 1;
}

.final-cta-box h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.final-cta-box p {
    font-size: 1.02rem;
    color: var(--text-light);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.final-cta-box .store-badge-wrap {
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.final-cta-box .btn-primary {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.final-small {
    font-size: 0.82rem;
    color: var(--text-muted);
    position: relative;
    z-index: 1;
}

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
footer {
    position: relative;
    z-index: 1;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand img {
    width: 28px;
    height: 28px;
    border-radius: 8px;
}

.footer-brand span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

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

/* ════════════════════════════════════
   STICKY MOBILE CTA
   ════════════════════════════════════ */
.sticky-cta {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px;
    background: rgba(5, 10, 24, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-cta.sticky-visible {
    bottom: 0;
}

.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--gradient-primary);
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(108, 92, 231, 0.35);
    transition: transform 0.25s;
}

.sticky-cta a:active {
    transform: scale(0.97);
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none;
    }
}

/* ════════════════════════════════════
   MOBILE FINE-TUNING
   ════════════════════════════════════ */
@media (max-width: 639px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 8px;
    }

    .hero-stat {
        padding: 16px 8px;
    }

    .hero-stat-value {
        font-size: 1.2rem;
    }

    section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 36px;
    }

    .hero-mockup {
        padding: 0 8px;
    }

    .phone-glow {
        width: 100%;
        height: 500px;
    }

    .phone-frame {
        width: 100%;
        max-width: 320px;
        border-radius: 32px;
        padding: 10px;
    }

    .phone-notch {
        width: 90px;
        height: 22px;
        margin: -10px auto 6px;
        border-radius: 0 0 14px 14px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .phone-content {
        padding: 12px;
    }

    .phone-card {
        border-radius: 12px;
        padding: 10px;
    }

    .final-cta-box {
        padding: 40px 20px;
    }

    .blob-1 { width: 350px; height: 350px; }
    .blob-2 { width: 300px; height: 300px; }
    .blob-3 { width: 250px; height: 250px; }
}

/* ════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .blob { animation: none; }
}
