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

:root {
    /* Bright colors for dark theme */
    --primary: #0A84FF;
    --primary-dark: #0066CC;
    --secondary: #5E5CE6;
    --success: #32D74B;
    --warning: #FF9F0A;
    --danger: #FF453A;

    /* Dark theme colors */
    --bg-primary: #000000;
    --bg-secondary: #1C1C1E;
    --bg-tertiary: #2C2C2E;
    --bg-elevated: #1C1C1E;
    --bg-card: #2C2C2E;

    /* Text colors for dark theme */
    --text-primary: #FFFFFF;
    --text-secondary: #EBEBF5;
    --text-tertiary: #EBEBF599;
    --text-quaternary: #EBEBF54D;

    /* Border colors */
    --border-primary: #38383A;
    --border-secondary: #48484A;

    /* Legacy gray scale (kept for compatibility) */
    --gray-50: #2C2C2E;
    --gray-100: #38383A;
    --gray-200: #48484A;
    --gray-300: #636366;
    --gray-400: #8E8E93;
    --gray-500: #AEAEB2;
    --gray-600: #C7C7CC;
    --gray-700: #D1D1D6;
    --gray-800: #E5E5EA;
    --gray-900: #F5F5F7;
    --white: #FFFFFF;
    --black: #000000;

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Enhanced shadows for dark theme */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.7);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(28, 28, 30, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.app-store-badge-nav {
    display: inline-block;
    transition: var(--transition);
}

.app-store-badge-nav:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.app-store-badge-nav img {
    display: block;
    height: 40px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(28, 28, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

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

.mobile-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-primary);
}

.app-store-badge-mobile {
    display: block;
    padding: 12px 0;
    border-bottom: none !important;
}

.app-store-badge-mobile img {
    display: block;
    height: 40px;
    width: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

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

/* Choice Banner */
.choice-banner {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
    padding: 60px 0;
    margin-top: 73px; /* Account for navbar height */
}

.choice-content {
    text-align: center;
}

.choice-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.choice-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.choice-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-primary);
    border-radius: 20px;
    padding: 40px 32px;
    text-decoration: none;
    transition: var(--transition);
    overflow: hidden;
}

.choice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
}

.choice-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(10, 132, 255, 0.2);
}

.choice-card:hover::before {
    opacity: 1;
}

.choice-ios:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(10, 132, 255, 0.3);
}

.choice-web:hover {
    border-color: var(--success);
    box-shadow: 0 20px 40px rgba(50, 215, 75, 0.3);
}

.choice-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 20px;
    margin-bottom: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.choice-ios .choice-icon {
    color: var(--primary);
}

.choice-web .choice-icon {
    color: var(--success);
}

.choice-card:hover .choice-icon {
    transform: scale(1.1);
}

.choice-details {
    position: relative;
    z-index: 1;
}

.choice-details h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.choice-details p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.choice-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    transition: var(--transition);
}

.choice-ios .choice-badge {
    background: var(--primary);
}

.choice-web .choice-badge {
    background: var(--success);
}

.choice-card:hover .choice-badge {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    top: -200px;
    left: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--success), var(--primary));
    top: 100px;
    right: -150px;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--warning), var(--danger));
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-tertiary);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.app-store-badge-hero {
    display: inline-block;
    transition: var(--transition);
}

.app-store-badge-hero:hover {
    transform: translateY(-4px);
    filter: brightness(1.1);
}

.app-store-badge-hero img {
    display: block;
    height: 60px;
    width: auto;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

.phone-mockup {
    position: relative;
    perspective: 1000px;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 12px;
    background: linear-gradient(145deg, var(--gray-800), var(--black));
    border-radius: 40px;
    box-shadow: var(--shadow-xl);
    transform: rotateY(-15deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

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

.phone-screen {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 19.5;
    background: var(--bg-secondary);
    border-radius: 32px;
    overflow: hidden;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-tertiary);
}

/* Features Section */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-tertiary);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-primary);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* Demo Section */
.demo {
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.demo-container {
    background: var(--bg-tertiary);
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-primary);
}

.demo-controls {
    margin-bottom: 32px;
}

.control-group {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.control-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.toggle-switch {
    position: relative;
}

.toggle-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    display: block;
    width: 200px;
    height: 48px;
    background: var(--gray-200);
    border-radius: 24px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.toggle-input:checked + .toggle-label {
    background: var(--primary);
}

.toggle-input:checked + .toggle-label::before {
    transform: translateX(152px);
}

.toggle-text {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.toggle-text::after {
    content: attr(data-off);
}

.toggle-input:checked + .toggle-label .toggle-text::after {
    content: attr(data-on);
}

.location-presets {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.location-presets.active {
    opacity: 1;
    pointer-events: all;
}

.preset-btn {
    padding: 10px 20px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-primary);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.preset-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.preset-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.demo-display {
    margin-bottom: 32px;
}

/* Fake Email Styles */
.fake-email {
    background: var(--bg-tertiary);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-primary);
    box-shadow: var(--shadow-lg);
}

.email-header {
    background: var(--bg-secondary);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-primary);
}

.email-from,
.email-to,
.email-subject {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.email-from:last-child,
.email-to:last-child,
.email-subject:last-child {
    margin-bottom: 0;
}

.email-label {
    font-weight: 600;
    color: var(--text-tertiary);
    min-width: 60px;
}

.email-value {
    color: var(--text-primary);
}

.email-body {
    padding: 32px 24px;
    line-height: 1.8;
}

.email-body p {
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.email-body p:last-of-type {
    margin-bottom: 0;
}

.email-body strong {
    color: var(--primary);
    font-weight: 600;
}

.location-share-box {
    display: flex;
    gap: 16px;
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 12px;
    margin: 24px 0;
    border: 1px solid var(--border-primary);
    transition: var(--transition);
}

.location-share-box:hover {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.location-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 69, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-details {
    flex: 1;
}

.location-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.location-coords {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    font-family: 'Monaco', 'Courier New', monospace;
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.location-link:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.email-footer {
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    display: flex;
    justify-content: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.demo-map {
    position: relative;
    width: 100%;
    height: 400px;
    /* Map base - gray like Google Maps */
    background: #4a5568;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Map terrain pattern */
.demo-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Parks/green areas - brighter */
        radial-gradient(ellipse 80px 60px at 20% 25%, rgba(120, 200, 120, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 60px 80px at 75% 30%, rgba(120, 200, 120, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 70px 70px at 30% 70%, rgba(120, 200, 120, 0.5) 0%, transparent 70%),
        radial-gradient(ellipse 90px 60px at 80% 75%, rgba(120, 200, 120, 0.5) 0%, transparent 70%),
        /* Water bodies - brighter blue */
        radial-gradient(ellipse 100px 40px at 50% 50%, rgba(120, 170, 220, 0.6) 0%, transparent 70%);
    opacity: 1;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

/* Street network - BRIGHT white/yellow roads like Google Maps */
.map-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Major highways - BRIGHT yellow roads */
        linear-gradient(90deg, transparent 0%, transparent 48%, rgba(255, 200, 80, 1) 48%, rgba(255, 200, 80, 1) 52%, transparent 52%, transparent 100%),
        linear-gradient(0deg, transparent 0%, transparent 48%, rgba(255, 200, 80, 1) 48%, rgba(255, 200, 80, 1) 52%, transparent 52%, transparent 100%),
        /* Regular streets - BRIGHT white roads in grid */
        repeating-linear-gradient(90deg, transparent 0px, transparent 60px, rgba(240, 240, 240, 1) 60px, rgba(240, 240, 240, 1) 63px, transparent 63px, transparent 120px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 60px, rgba(240, 240, 240, 1) 60px, rgba(240, 240, 240, 1) 63px, transparent 63px, transparent 120px),
        /* Smaller streets - bright */
        repeating-linear-gradient(90deg, transparent 0px, transparent 30px, rgba(220, 220, 220, 0.7) 30px, rgba(220, 220, 220, 0.7) 32px, transparent 32px, transparent 60px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 30px, rgba(220, 220, 220, 0.7) 30px, rgba(220, 220, 220, 0.7) 32px, transparent 32px, transparent 60px);
    opacity: 1;
}

/* Building blocks and labels */
.map-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Building blocks - dark squares */
        repeating-linear-gradient(90deg, transparent 0px, transparent 30px, rgba(60, 70, 80, 0.4) 30px, rgba(60, 70, 80, 0.4) 58px, transparent 58px, transparent 120px),
        repeating-linear-gradient(0deg, transparent 0px, transparent 30px, rgba(60, 70, 80, 0.4) 30px, rgba(60, 70, 80, 0.4) 58px, transparent 58px, transparent 120px);
    background-size: 120px 120px;
    opacity: 0.7;
}

.map-label {
    position: absolute;
    transform: translate(-50%, -50%);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-shadow:
        0 1px 3px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6);
    z-index: 5;
    pointer-events: none;
    letter-spacing: 0.3px;
}

.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.5));
    z-index: 10;
}

.map-marker svg {
    filter: drop-shadow(0 0 8px rgba(255, 69, 58, 0.8));
}

.demo-info {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-primary);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-primary);
}

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

.info-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.info-value {
    color: var(--text-primary);
    font-weight: 500;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
}

.status-real {
    background: var(--success);
    color: var(--white);
}

.status-changed {
    background: var(--primary);
    color: var(--white);
}

.demo-cta {
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid var(--border-primary);
}

.demo-cta p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

/* Use Cases */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.use-case {
    text-align: center;
    padding: 32px;
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.use-case h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.use-case p {
    color: var(--text-tertiary);
}

/* Pricing Section */
.pricing {
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.pricing-card {
    background: var(--bg-tertiary);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border-primary);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-primary);
}

.pricing-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
}

.price-period {
    font-size: 16px;
    color: var(--text-tertiary);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.pricing-feature.disabled {
    opacity: 0.4;
}

.pricing-feature svg {
    flex-shrink: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 14px;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
}

.step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step p {
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-tertiary);
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid var(--border-primary);
}

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

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

.faq-icon {
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--text-tertiary);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    position: relative;
    background: var(--bg-primary);
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
}

/* Animated gradient background */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 69, 58, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(94, 92, 230, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(10, 132, 255, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content > p {
    font-size: 20px;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

.cta-content .btn-primary {
    background: linear-gradient(135deg, var(--danger) 0%, var(--warning) 100%);
    color: var(--white);
    padding: 18px 48px;
    font-size: 18px;
    border: none;
    box-shadow: 0 8px 24px rgba(255, 69, 58, 0.3);
}

.cta-content .btn-primary:hover {
    background: linear-gradient(135deg, var(--warning) 0%, var(--danger) 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(255, 69, 58, 0.4);
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-tertiary);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-tertiary);
    padding: 60px 0 32px;
    border-top: 1px solid var(--border-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-description {
    line-height: 1.7;
    max-width: 300px;
}

.footer-section h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-tertiary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--border-primary);
    text-align: center;
    font-size: 14px;
}

.footer-note {
    margin-top: 8px;
    font-size: 12px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-content {
        gap: 40px;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

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

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

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

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

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

    .demo-container {
        padding: 24px;
    }

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

    .cta-content h2 {
        font-size: 32px;
    }

    .choice-title {
        font-size: 28px;
    }

    .choice-options {
        grid-template-columns: 1fr;
    }

    .choice-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }

    .choice-banner {
        padding: 40px 0;
    }

    .choice-title {
        font-size: 24px;
        margin-bottom: 32px;
    }

    .choice-card {
        padding: 28px 20px;
    }

    .choice-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .choice-icon svg {
        width: 36px;
        height: 36px;
    }

    .choice-details h3 {
        font-size: 20px;
    }

    .choice-details p {
        font-size: 14px;
    }

    .demo-map {
        height: 300px;
    }

    .toggle-label {
        width: 160px;
    }

    .toggle-input:checked + .toggle-label::before {
        transform: translateX(112px);
    }

    .info-row {
        flex-direction: column;
        gap: 4px;
    }
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}
