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

:root {
    /* App-inspired vibrant color palette */
    --coral: #FF6B7A;
    --coral-dark: #FF5266;
    --coral-light: #FF8A96;
    --sky-blue: #00A9E0;
    --sky-blue-dark: #0091C7;
    --purple: #7C4DFF;
    --purple-dark: #6537E0;
    --orange: #FF9F43;
    --orange-dark: #FF8C1F;
    --green: #00D4AA;
    --green-dark: #00BF9A;

    /* Primary colors - using coral as main brand color */
    --primary: #FF6B7A;
    --primary-dark: #FF5266;
    --primary-light: #FF8A96;
    --secondary: #00A9E0;
    --accent: #7C4DFF;

    /* Text colors */
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    /* Background colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-dark: #0f172a;
    --bg-coral-light: #FFF5F6;
    --bg-blue-light: #F0F9FF;
    --bg-purple-light: #F5F3FF;

    /* Border */
    --border: #e2e8f0;

    /* Gradients matching app screens */
    --gradient-coral: linear-gradient(135deg, #FF6B7A 0%, #FF8A96 100%);
    --gradient-blue: linear-gradient(135deg, #00A9E0 0%, #4FC3F7 100%);
    --gradient-purple: linear-gradient(135deg, #7C4DFF 0%, #9D73FF 100%);
    --gradient-orange: linear-gradient(135deg, #FF9F43 0%, #FFB770 100%);
    --gradient-green: linear-gradient(135deg, #00D4AA 0%, #26E3BF 100%);
    --gradient-mixed: linear-gradient(135deg, #FF6B7A 0%, #7C4DFF 50%, #00A9E0 100%);

    /* Legacy gradient support */
    --gradient-start: #FF6B7A;
    --gradient-end: #7C4DFF;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-coral: 0 8px 20px rgba(255, 107, 122, 0.3);
    --shadow-blue: 0 8px 20px rgba(0, 169, 224, 0.3);
    --shadow-purple: 0 8px 20px rgba(124, 77, 255, 0.3);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    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;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

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

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

.nav-cta {
    background: var(--text-primary);
    color: white !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary);
    transform: translateY(-1px);
}

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

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

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 24px;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-primary);
    border-color: var(--text-muted);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

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

/* App Showcase Carousel */
.app-showcase {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.app-screen-carousel {
    position: relative;
    width: 320px;
    height: 650px;
    border-radius: 40px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    padding: 12px;
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px;
}

.app-screen.active {
    opacity: 1;
    transform: translateX(0);
}

.app-screen.previous {
    opacity: 0;
    transform: translateX(-100%);
}

.screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    display: block;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.dot:hover {
    background: var(--text-muted);
    transform: scale(1.2);
}

.dot.active {
    background: var(--gradient-mixed);
    width: 32px;
    border-radius: var(--radius-full);
}

/* Legacy phone mockup support */
.phone-mockup {
    position: relative;
    z-index: 2;
}

.phone-frame {
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition);
}

.phone-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 280px;
    height: auto;
    border-radius: 32px;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.floating-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.card-1 {
    top: 15%;
    left: -20px;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation: float 6s ease-in-out infinite 1s;
}

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

.card-icon {
    font-size: 28px;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.card-subtitle {
    font-size: 12px;
    color: var(--text-muted);
}

/* Trust Section */
.trust-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.trust-text {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
}

.trust-badge svg {
    color: var(--primary);
}

/* See It In Action Section */
.see-in-action {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.action-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.action-feature:last-child {
    margin-bottom: 0;
}

.action-feature.reverse {
    direction: rtl;
}

.action-feature.reverse > * {
    direction: ltr;
}

.action-content {
    max-width: 540px;
}

.action-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-lg);
}

.action-content h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.action-content p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.action-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.action-stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.action-stat:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.action-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.action-stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.action-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.action-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.action-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: var(--gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 14px;
}

.action-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(124, 77, 255, 0.1) 0%, rgba(124, 77, 255, 0.05) 100%);
    padding: 20px;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--purple);
    margin-top: 24px;
}

.highlight-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.action-highlight strong {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.action-highlight p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.action-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.app-screenshot {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transition: var(--transition);
    max-width: 340px;
}

.app-screenshot:hover {
    transform: scale(1.02);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(0, 0, 0, 0.05);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Privacy & Trust Section */
.privacy-trust {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-purple-light) 0%, var(--bg-blue-light) 100%);
    position: relative;
    overflow: hidden;
}

.privacy-trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 77, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 169, 224, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.privacy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.privacy-text {
    max-width: 560px;
}

.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.privacy-badge svg {
    color: var(--purple);
}

.privacy-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.privacy-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.privacy-features {
    display: grid;
    gap: 24px;
}

.privacy-feature {
    display: flex;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.privacy-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.privacy-feature-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.privacy-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.privacy-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.privacy-screenshot {
    position: relative;
    max-width: 360px;
}

.privacy-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    display: block;
}

.privacy-callout {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 240px;
}

.privacy-callout-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.privacy-callout strong {
    display: block;
    font-size: 14px;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.privacy-callout p {
    margin: 0;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-card {
    background: var(--bg-secondary);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-primary);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.feature-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How it Works Section */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    padding: 32px;
    opacity: 0;
    transform: translateY(20px);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 24px;
}

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

.step p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    margin-top: 60px;
    flex-shrink: 0;
}

/* Download Section */
.download {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

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

.download-text {
    max-width: 480px;
}

.download-text .section-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.download-text h2 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: white;
}

.download-text > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.download-stats-mini {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-stat span {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.mini-stat small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.download-note {
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    font-style: italic;
}

.download-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    color: var(--text-primary);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.store-btn-text span {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

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

.download-phone {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 40px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-phone-img {
    width: 260px;
    height: auto;
    border-radius: 28px;
    display: block;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

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

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

.footer-brand .logo-icon {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    line-height: 1.7;
}

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

/* Legal Pages */
.legal-content {
    padding: 140px 0 80px;
    min-height: 100vh;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
    margin-top: 32px;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--text-secondary);
}

.legal-section p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-section ul,
.legal-section ol {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.legal-section a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.legal-section a:hover {
    border-bottom-color: var(--primary);
}

.contact-info {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}

/* FAQ Styles */
.faq-item {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-top: 0;
    font-size: 16px;
}

.faq-item p,
.faq-item ol {
    margin-bottom: 8px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

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

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

    .footer-links {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-bottom: 1px solid var(--border);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-cta {
        display: none;
    }

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

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

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

    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        max-width: 100%;
    }

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

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

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        transform: none;
    }

    .phone-screen {
        width: 240px;
    }

    .floating-card {
        display: none;
    }

    /* App Carousel Mobile */
    .app-screen-carousel {
        width: 260px;
        height: 530px;
    }

    .carousel-dots {
        margin-top: 16px;
    }

    .trust-badges {
        gap: 24px;
    }

    /* See It In Action Mobile */
    .see-in-action {
        padding: 80px 0;
    }

    .action-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .action-feature.reverse {
        direction: ltr;
    }

    .action-content {
        max-width: 100%;
    }

    .action-content h3 {
        font-size: 28px;
    }

    .action-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .app-screenshot {
        max-width: 280px;
    }

    /* Privacy & Trust Mobile */
    .privacy-trust {
        padding: 80px 0;
    }

    .privacy-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .privacy-text {
        max-width: 100%;
    }

    .privacy-text h2 {
        font-size: 36px;
    }

    .privacy-screenshot {
        max-width: 280px;
        margin: 0 auto;
    }

    .privacy-callout {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }

    .trust-badge {
        font-size: 13px;
    }

    .features {
        padding: 80px 0;
    }

    .section-header h2 {
        font-size: 36px;
    }

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

    .how-it-works {
        padding: 80px 0;
    }

    .steps-grid {
        flex-direction: column;
        gap: 16px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0 auto;
    }

    .download {
        padding: 80px 0;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .download-text {
        max-width: 100%;
    }

    .download-text h2 {
        font-size: 36px;
    }

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

    .download-phone-img {
        width: 220px;
    }

    .download-stats-mini {
        gap: 24px;
        justify-content: center;
    }

    .download-note {
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 32px;
        justify-content: center;
    }

    .footer-column {
        text-align: center;
        min-width: 140px;
    }

    .legal-content {
        padding: 120px 0 60px;
    }

    .legal-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-badge {
        font-size: 12px;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stat-divider {
        height: 32px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .feature-card {
        padding: 24px;
    }

    .download-text h2 {
        font-size: 28px;
    }

    .store-btn {
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

/* Animation classes */
.feature-card,
.step,
.floating-card {
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:nth-child(1) { transition-delay: 0s; }
.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.4s; }
.feature-card:nth-child(6) { transition-delay: 0.5s; }

.step:nth-child(1) { transition-delay: 0s; }
.step:nth-child(3) { transition-delay: 0.2s; }
.step:nth-child(5) { transition-delay: 0.4s; }

.floating-card.card-1 { transition-delay: 0.3s; }
.floating-card.card-2 { transition-delay: 0.5s; }
