/* ============================================
   BNM Consumer Landing Page — Premium Design System
   Green accent (#10b981 / #25D366) for consumer trust
   ============================================ */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors — Green / WhatsApp-inspired */
    --primary: #10b981;
    --primary-hover: #059669;
    --primary-light: #d1fae5;
    --primary-50: #ecfdf5;
    --primary-900: #064e3b;
    --primary-glow: rgba(16, 185, 129, 0.15);
    --wa-green: #25D366;

    /* Neutral Palette */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --accent: #8b5cf6;

    /* Surfaces */
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #0a0a0f;
    --bg-dark-card: rgba(255,255,255,0.05);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-glow: 0 0 60px rgba(16,185,129,0.15);

    /* Typography */
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--bg);
    overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 1px 3px rgba(16,185,129,0.3), 0 0 0 0 rgba(16,185,129,0);
}
.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 16px rgba(16,185,129,0.4), 0 0 0 4px rgba(16,185,129,0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
    border-color: rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--gray-700);
    border: 1.5px solid var(--gray-300);
}
.btn-outline-dark:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-large {
    font-size: 16px;
    padding: 14px 32px;
}

.btn-small {
    font-size: 13px;
    padding: 8px 18px;
}

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

/* Store buttons */
.store-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.store-btn-dark {
    background: #1a1a2e;
    color: #fff;
}
.store-btn-dark:hover {
    background: #242440;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.store-btn-light {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
}
.store-btn-light:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
}

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

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

.store-btn .store-text-small {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.7;
}

.store-btn .store-text-name {
    font-size: 16px;
    font-weight: 700;
}

/* ============================================
   TOP BUSINESS SWITCH BAR (removed from UI)
   ============================================ */
.top-bar {
    display: none;
    background: var(--gray-900);
    padding: 8px 0;
    text-align: center;
    position: relative;
    z-index: 1001;
}

.top-bar p {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.top-bar a {
    color: var(--primary);
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.2s;
}
.top-bar a:hover {
    color: #34d399;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar.light-bg {
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar.light-bg.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s var(--ease);
}
.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-cta {
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    transition: all 0.25s var(--ease);
    border: none;
    cursor: pointer;
}
.btn-nav-cta:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--bg-dark);
    overflow: hidden;
    min-height: 100vh;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -100px;
    background: rgba(16, 185, 129, 0.15);
    animation: glowFloat 8s ease-in-out infinite;
}
.hero-glow-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -100px;
    background: rgba(37, 211, 102, 0.1);
    animation: glowFloat 10s ease-in-out infinite reverse;
}

@keyframes glowFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -20px); }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    min-height: calc(100vh - 220px);
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #6ee7b7 50%, #34d399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-weight: 500;
}

.hero-trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Hero Phone Mockup */
.hero-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 300px;
    height: 620px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.phone-screen .carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.phone-screen .carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s var(--ease);
}

.phone-screen .carousel-slide.active {
    opacity: 1;
}

.phone-screen .carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Phone carousel dots — below the phone */
.phone-dots {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.phone-dots .carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.phone-dots .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    padding: 0;
}

.phone-dots .carousel-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}

/* Floating glow behind phone */
.phone-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16,185,129,0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    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.1); }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    padding: 40px 0;
    background: var(--bg);
    border-bottom: 1px solid var(--gray-100);
}

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease);
}
.trust-item:hover {
    background: var(--gray-50);
}

.trust-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    color: var(--primary);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 22px;
    height: 22px;
}

.trust-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    line-height: 1.3;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.section-eyebrow-light {
    color: #6ee7b7;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 16px;
}
.section-title-light {
    color: #fff;
}

.section-subtitle {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-500);
}
.section-subtitle-light {
    color: rgba(255,255,255,0.55);
}

/* ============================================
   WHY BNM — 6 Feature Cards
   ============================================ */
.why-bnm {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.feature-card {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--wa-green));
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(16,185,129,0.08);
    transform: translateY(-4px);
}
.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-md);
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 26px;
    height: 26px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ============================================
   HOW IT WORKS — 3 Steps
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg);
}

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

.how-visual {
    display: flex;
    justify-content: center;
}

.how-phone {
    position: relative;
    width: 280px;
    height: 580px;
    background: #1a1a2e;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.3),
        0 0 0 1px rgba(255,255,255,0.08);
}

.how-phone-screen {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    background: #000;
}

.how-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s var(--ease);
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.how-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
}
.how-step:hover,
.how-step.active {
    background: var(--primary-50);
    border-color: var(--primary-light);
}

.step-number {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    color: var(--gray-400);
    flex-shrink: 0;
    transition: all 0.3s var(--ease);
}

.how-step.active .step-number,
.how-step:hover .step-number {
    background: var(--primary);
    color: #fff;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ============================================
   FEATURE SECTIONS (Privacy, Verified, Control)
   ============================================ */
.feature-section {
    padding: 100px 0;
}

.feature-section.alt-bg {
    background: var(--bg-alt);
}

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

.feature-layout.reversed {
    direction: rtl;
}
.feature-layout.reversed > * {
    direction: ltr;
}

.feature-image {
    position: relative;
}

.feature-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
}

.feature-text .feature-icon-large {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-text .feature-icon-large svg {
    width: 28px;
    height: 28px;
}

.feature-text h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.feature-text > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
    line-height: 1.5;
}

.check-list li svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-text .feature-bold {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

/* ============================================
   NO SPAM — Dark Section
   ============================================ */
.no-spam {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.no-spam .section-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.no-spam-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.no-spam-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 50%;
    margin: 0 auto 28px;
    color: #ef4444;
}

.no-spam-icon svg {
    width: 32px;
    height: 32px;
}

.no-spam h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.no-spam p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 16px;
}

.no-spam .highlight-text {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}

/* ============================================
   APP SCREENSHOTS GALLERY
   ============================================ */
.screenshots {
    padding: 100px 0;
    background: var(--bg-alt);
    overflow: hidden;
}

.screenshots-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.screenshots-track::-webkit-scrollbar {
    display: none;
}

.screenshot-item {
    flex: 0 0 220px;
    scroll-snap-align: center;
    transition: all 0.3s var(--ease);
}

.screenshot-item img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease);
}

.screenshot-item:hover {
    transform: translateY(-8px);
}
.screenshot-item:hover img {
    box-shadow: var(--shadow-2xl);
}

.screenshot-label {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-500);
    margin-top: 12px;
}

/* Centered wrapper for screenshots */
.screenshots-wrapper {
    display: flex;
    justify-content: center;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(6, 200px);
    gap: 20px;
    padding: 20px 0;
}

/* ============================================
   USE CASES
   ============================================ */
.use-cases {
    padding: 100px 0;
    background: var(--bg);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.use-case-card {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s var(--ease);
    position: relative;
}

.use-case-card.featured {
    background: var(--bg-dark);
    border-color: rgba(255,255,255,0.1);
    color: #fff;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.use-case-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin: 0 auto 20px;
}

.use-case-card:not(.featured) .use-case-icon {
    background: var(--primary-50);
    color: var(--primary);
}

.use-case-card.featured .use-case-icon {
    background: rgba(16,185,129,0.15);
    color: #6ee7b7;
}

.use-case-icon svg {
    width: 30px;
    height: 30px;
}

.use-case-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.use-case-card:not(.featured) h3 {
    color: var(--gray-900);
}

.use-case-card .use-case-desc {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.use-case-card.featured .use-case-desc {
    color: rgba(255,255,255,0.55);
}

.use-case-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.use-case-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.use-case-card:not(.featured) .use-case-list li {
    color: var(--gray-600);
}
.use-case-card.featured .use-case-list li {
    color: rgba(255,255,255,0.7);
}

.use-case-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.use-case-card:not(.featured) .use-case-list li svg {
    color: var(--primary);
}
.use-case-card.featured .use-case-list li svg {
    color: #6ee7b7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.3s var(--ease);
}
.testimonial-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 30px rgba(16,185,129,0.06);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--primary);
    margin-bottom: 16px;
    opacity: 0.4;
}

.testimonial-quote svg {
    width: 32px;
    height: 32px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    fill: #f59e0b;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--gray-400);
}

/* Avatar colors */
.avatar-purple { background: #8b5cf6; }
.avatar-blue { background: #3b82f6; }
.avatar-pink { background: #ec4899; }
.avatar-orange { background: #f97316; }
.avatar-teal { background: #14b8a6; }
.avatar-indigo { background: #6366f1; }

/* ============================================
   BUSINESS SWITCH CTA
   ============================================ */
.business-cta {
    padding: 48px 0;
    background: var(--gray-900);
    text-align: center;
}

.business-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.business-cta a {
    color: var(--primary);
    font-weight: 700;
    margin-left: 10px;
    transition: color 0.2s;
}
.business-cta a:hover {
    color: #34d399;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 100px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.final-cta .section-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.final-cta-content {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.final-cta h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
}

.final-cta .store-buttons {
    justify-content: center;
    margin-bottom: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 64px 0 0;
    background: var(--gray-950);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {
    max-width: 280px;
}

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

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s var(--ease);
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}
.footer-links li a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    margin: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: var(--primary);
}

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

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(16,185,129,0.4);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .feature-layout,
    .feature-layout.reversed {
        grid-template-columns: 1fr;
        gap: 48px;
        direction: ltr;
    }

    .how-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .how-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px;
    }

    .screenshots-grid {
        grid-template-columns: repeat(3, 200px);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .phone-mockup {
        width: 260px;
        height: 540px;
    }

    .how-phone {
        width: 240px;
        height: 500px;
    }

    .features-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-item {
        padding: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
    }

    .screenshots-grid {
        grid-template-columns: repeat(3, 180px);
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .screenshots-grid {
        grid-template-columns: repeat(2, 160px);
    }
}
