/* ================================================
   TOUGH COACH LANDING PAGE - MASTER STYLES
   Ultra-Animated, High-Converting Design
   ================================================ */

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

:root {
    /* Colors */
    --primary: #007AFF;
    --primary-dark: #0056CC;
    --primary-light: #4DA3FF;
    --secondary: #FF2D55;
    --success: #34C759;
    --warning: #FF9500;

    --dark-bg: #0A0A0A;
    --dark-surface: #1C1C1E;
    --dark-surface-elevated: #2C2C2E;
    --dark-border: #38383A;

    --text-primary: #FFFFFF;
    --text-secondary: #8E8E93;
    --text-tertiary: #636366;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    /* Disabled smooth scroll to prevent jumping */
    scroll-behavior: auto;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    /* Prevent layout shifts */
    min-height: 100vh;
}

/* Prevent content shift on scroll */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================
   ANIMATED BACKGROUND
   ================================================ */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(255, 45, 85, 0.1) 0%, transparent 50%);
    /* DISABLED: animation: gradientShift 20s ease infinite; */
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-5%, 5%) rotate(120deg); }
    66% { transform: translate(5%, -5%) rotate(240deg); }
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
    /* DISABLED: animation: float 20s ease-in-out infinite; */
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.shape-3 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    left: 30%;
    animation-delay: 6s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

.shape-5 {
    width: 350px;
    height: 350px;
    bottom: 20%;
    right: 15%;
    animation-delay: 12s;
}

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

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* DISABLED: animation: slideDown 0.6s ease; */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 32px;
    /* DISABLED: animation: pulse 2s ease-in-out infinite; */
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.cta-nav-btn {
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.cta-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.4);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    padding: 180px 0 120px;
    position: relative;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 18px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* DISABLED: animation: gradientFlow 3s ease infinite; */
    background-size: 200% 200%;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 122, 255, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

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

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

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

.btn-block {
    width: 100%;
    display: flex;
}

.btn-glow {
    /* DISABLED: animation: glow 2s ease-in-out infinite; */
    box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3);
}

@keyframes glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 122, 255, 0.3); }
    50% { box-shadow: 0 4px 40px rgba(0, 122, 255, 0.6); }
}

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in {
    /* DISABLED: animation: fadeIn 0.8s ease forwards; */
    opacity: 1;
}

.slide-up {
    /* DISABLED: animation: slideUp 0.8s ease forwards; */
    opacity: 1;
}

.slide-up.delay-1 {
    /* DISABLED: animation-delay: 0.2s; */
}

.slide-up.delay-2 {
    /* DISABLED: animation-delay: 0.4s; */
}

.slide-up.delay-3 {
    /* DISABLED: animation-delay: 0.6s; */
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.floating {
    /* DISABLED: animation: floating 3s ease-in-out infinite; */
}

.floating-slow {
    /* DISABLED: animation: floating 6s ease-in-out infinite; */
}

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

/* ================================================
   SOCIAL PROOF
   ================================================ */
.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
    margin-left: 8px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-surface);
    border: 3px solid var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-left: -12px;
    transition: var(--transition-smooth);
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:hover {
    transform: translateY(-5px) scale(1.1);
    z-index: 10;
}

.social-proof-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.rating {
    font-size: 14px;
    color: var(--warning);
}

.social-proof-text span:last-child {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ================================================
   PHONE MOCKUP
   ================================================ */
.phone-mockup {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(145deg, #2C2C2E, #1C1C1E);
    border-radius: 50px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #0A0A0A;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(28, 28, 30, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    /* DISABLED: animation: floatCard 3s ease-in-out infinite; */
}

.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: -20%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: -15%;
    animation-delay: 2s;
}

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

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

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-title {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

/* ================================================
   PERSONALITY SECTION
   ================================================ */
.personality-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 122, 255, 0.02) 50%, transparent 100%);
}

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

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

.personality-card {
    padding: 40px;
    background: rgba(28, 28, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.personality-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-tough:hover {
    box-shadow: 0 30px 60px rgba(255, 45, 85, 0.3);
    border-color: rgba(255, 45, 85, 0.5);
}

.card-supportive:hover {
    box-shadow: 0 30px 60px rgba(0, 122, 255, 0.3);
    border-color: rgba(0, 122, 255, 0.5);
}

.personality-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: inline-block;
    /* DISABLED: animation: bounce 2s ease-in-out infinite; */
}

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

.personality-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.personality-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.personality-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 8px;
}

.example-message {
    padding: 20px;
    border-radius: 16px;
    margin-top: 24px;
}

.tough-message {
    background: rgba(255, 45, 85, 0.1);
    border: 1px solid rgba(255, 45, 85, 0.2);
}

.supportive-message {
    background: rgba(0, 122, 255, 0.1);
    border: 1px solid rgba(0, 122, 255, 0.2);
}

.message-bubble {
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
    color: var(--text-primary);
}

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
    padding: var(--section-padding) 0;
}

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

.feature-card {
    padding: 40px 32px;
    background: rgba(28, 28, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(28, 28, 30, 0.8);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   SCREENSHOTS SECTION
   ================================================ */
.screenshots-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(88, 86, 214, 0.03) 0%, transparent 100%);
}

.screenshots-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 40px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.screenshots-carousel::-webkit-scrollbar {
    height: 8px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.screenshot-item {
    flex: 0 0 300px;
    scroll-snap-align: center;
    transition: var(--transition-smooth);
    opacity: 0.6;
}

.screenshot-item:hover,
.screenshot-item.active {
    opacity: 1;
    transform: scale(1.05);
}

.screenshot {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.screenshot-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
}

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

.testimonial-card {
    padding: 32px;
    background: rgba(28, 28, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-smooth);
    /* Fixed height to prevent jumping */
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--warning);
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
    flex: 1; /* Push author to bottom */
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto; /* Always at bottom */
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.author-title {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 122, 255, 0.02) 50%, transparent 100%);
}

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

.pricing-card {
    padding: 48px 40px;
    background: rgba(28, 28, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    transition: var(--transition-smooth);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 122, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 122, 255, 0.2);
}

.pricing-featured {
    background: linear-gradient(145deg, rgba(0, 122, 255, 0.1), rgba(88, 86, 214, 0.1));
    border: 2px solid rgba(0, 122, 255, 0.3);
    transform: scale(1.05);
}

.pricing-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.pricing-badge.popular {
    background: var(--gradient-primary);
}

.pricing-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.price-amount {
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ================================================
   DOWNLOAD SECTION
   ================================================ */
.download-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.05) 0%, rgba(88, 86, 214, 0.05) 100%);
}

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

.download-title {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.download-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-smooth);
}

.store-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

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

.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-label {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.store-name {
    font-size: 20px;
    font-weight: 700;
}

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

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

.stat-number {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.phone-mockup-large {
    max-width: 350px;
    margin: 0 auto;
}

/* ================================================
   FAQ SECTION
   ================================================ */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 32px;
    background: rgba(28, 28, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background: rgba(28, 28, 30, 0.8);
    border-color: rgba(0, 122, 255, 0.2);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-answer {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================================
   FOOTER CTA
   ================================================ */
.footer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    text-align: center;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.footer-cta-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    padding: 80px 0 40px;
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

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

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--primary);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-tertiary);
    font-size: 14px;
}

/* ================================================
   EXIT INTENT POPUP
   ================================================ */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.exit-popup-content {
    max-width: 500px;
    padding: 48px;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: center;
    position: relative;
    animation: popupIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--text-primary);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.exit-popup-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.exit-popup-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.exit-popup-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.exit-popup-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

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

    .hero-right {
        order: -1;
    }

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

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 24px;
    }

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

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

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

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

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

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

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

    .floating-card {
        display: none;
    }

    .download-title {
        font-size: 36px;
    }

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

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

/* Download Popup Styles */
.download-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.download-popup-overlay.active {
    display: block;
    opacity: 1;
}

.download-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--dark-surface-elevated);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    z-index: 1000;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all var(--transition-smooth);
    pointer-events: none;
}

.download-popup.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.download-popup-content {
    text-align: center;
}

.download-popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 1s ease-in-out;
}

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

.download-popup-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.download-popup-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.download-popup-date {
    font-size: 16px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

.download-popup .btn {
    width: 100%;
}

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

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

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

    .download-title,
    .footer-cta-title {
        font-size: 28px;
    }

    .download-popup {
        padding: 30px 20px;
        max-width: 90%;
    }

    .download-popup-title {
        font-size: 20px;
    }

    .download-popup-text,
    .download-popup-date {
        font-size: 14px;
    }
}
