/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Предотвращение горизонтального скролла */
html, body {
    overflow-x: hidden;
    width: 100%;
}

img, video, iframe, svg {
    max-width: 100%;
    height: auto;
}

/* Theme Styles */
:root {
    /* Colors */
    --color-1: #ffd6ff;
    --color-2: #e7c6ff;
    --color-3: #c8b6ff;
    --color-4: #b8c0ff;
    --color-5: #bbd0ff;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--color-1) 0%, var(--color-3) 50%, var(--color-5) 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(255, 214, 255, 0.1) 0%, rgba(187, 208, 255, 0.1) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    
    /* Theme colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --nav-bg: rgba(255, 255, 255, 0.8);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
    overflow-x: hidden;
    transition: background 0.3s ease, color 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(200, 182, 255, 0.2);
    transition: background 0.3s ease;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: var(--transition);
}

.nav-links a:hover {
    color: #1a1a2e;
}

.nav-links a:hover::after {
    width: 100%;
}


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

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

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

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

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn-primary,
.btn-primary-large {
    background: var(--gradient-main);
    color: #1a1a2e;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.btn-primary:hover,
.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary,
.btn-secondary-small {
    background: transparent;
    color: #4a4a68;
    border: 2px solid rgba(200, 182, 255, 0.3);
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-secondary-small {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-secondary:hover,
.btn-secondary-small:hover {
    background: var(--gradient-subtle);
    border-color: var(--color-3);
    color: #1a1a2e;
}

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

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 214, 255, 0.3) 0%, rgba(187, 208, 255, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-50px, 50px) scale(1.05); }
    50% { transform: translate(0, 100px) scale(1.1); }
    75% { transform: translate(50px, 50px) scale(1.05); }
}

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

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

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

.hero-subtitle {
    font-size: 20px;
    color: #4a4a68;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 80px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    padding-top: 60px;
    border-top: 1px solid rgba(200, 182, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #4a4a68;
    font-weight: 500;
}

/* Animation */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

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

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(200, 182, 255, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a68;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.section-subtitle {
    font-size: 18px;
    color: #4a4a68;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 214, 255, 0.05) 100%);
}

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

.step {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 182, 255, 0.2);
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    transform: scaleX(0);
    transition: var(--transition);
}

.step:hover::before {
    transform: scaleX(1);
}

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

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-3);
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-3);
}

/* Override for modern icons */
.step-icon-modern {
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-3) 100%) !important;
    color: white !important;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-description {
    color: #4a4a68;
    line-height: 1.7;
}

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

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

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(200, 182, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: #ffffff;
}

.gradient-1 {
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
}

.gradient-2 {
    background: linear-gradient(135deg, var(--color-2), var(--color-3));
}

.gradient-3 {
    background: linear-gradient(135deg, var(--color-3), var(--color-4));
}

.gradient-4 {
    background: linear-gradient(135deg, var(--color-4), var(--color-5));
}

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

.feature-description {
    color: #4a4a68;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 16px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(200, 182, 255, 0.2);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #4a4a68;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================
   TARGET AUDIENCE SECTION
   ========================================== */
.target-audience {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, rgba(187, 208, 255, 0.05) 0%, #ffffff 100%);
}

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

.audience-card {
    background: #ffffff;
    border: 1px solid rgba(200, 182, 255, 0.2);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}

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

.audience-emoji {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Modern emoji override */
.modern-emoji {
    margin-bottom: 20px !important;
}

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

.audience-description {
    color: #4a4a68;
    line-height: 1.7;
    margin-bottom: 24px;
}

.audience-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.audience-benefits li {
    color: #4a4a68;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.audience-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-3);
    font-weight: 700;
}

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

.unique-grid {
    display: grid;
    gap: 32px;
}

.unique-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 182, 255, 0.2);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

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

.unique-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 80px;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.1;
}

.unique-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.unique-description {
    color: #4a4a68;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

.unique-visual {
    display: flex;
    align-items: center;
    gap: 24px;
}

.visual-box {
    padding: 20px 40px;
    background: var(--gradient-subtle);
    border: 2px solid rgba(200, 182, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
}

.visual-box.gradient-border {
    background: #ffffff;
    border: none;
    position: relative;
    z-index: 1;
}

.visual-arrow {
    font-size: 32px;
    color: var(--color-3);
}

.unique-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.badge {
    padding: 12px 24px;
    background: rgba(200, 182, 255, 0.1);
    border: 0px solid rgba(200, 182, 255, 0.3);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    color: #4a4a68;
}

.badge-modern::before {
    background: var(--color-3);
    opacity: 0.6;
}

.hook-examples {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hook-example {
    padding: 16px 24px;
    background: #ffffff;
    border-left: 4px solid var(--color-3);
    border-radius: 12px;
    font-style: italic;
    color: #4a4a68;
    box-shadow: var(--shadow-sm);
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(187, 208, 255, 0.3) 0%, rgba(255, 214, 255, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

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

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

.cta-subtitle {
    font-size: 18px;
    color: #4a4a68;
    margin-bottom: 48px;
}

.cta-form {
    margin-bottom: 48px;
}

.form-group {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto 16px;
}

.email-input {
    flex: 1;
    padding: 18px 24px;
    border: 2px solid rgba(200, 182, 255, 0.3);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-main);
    transition: var(--transition);
    background: #ffffff;
}

.email-input:focus {
    outline: none;
    border-color: var(--color-3);
    box-shadow: 0 0 0 4px rgba(200, 182, 255, 0.1);
}

.form-note {
    font-size: 14px;
    color: #4a4a68;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a4a68;
    font-size: 14px;
    font-weight: 500;
}

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

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 214, 255, 0.05) 100%);
    border-top: 1px solid rgba(200, 182, 255, 0.2);
    padding: 80px 0 32px;
}

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

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

.footer-tagline {
    color: #4a4a68;
    margin-top: 12px;
    line-height: 1.6;
}

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

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

.footer-column h4 {
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-column a {
    color: #4a4a68;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--color-3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(200, 182, 255, 0.2);
    font-size: 14px;
    color: #4a4a68;
}

.footer-legal {
    display: flex;
    gap: 32px;
}

.footer-legal a {
    color: #4a4a68;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--color-3);
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .steps,
    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .footer-links {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Улучшенные touch targets для мобильных */
    button,
    a,
    .btn-primary,
    .btn-secondary {
        min-height: 44px;
        -webkit-tap-highlight-color: rgba(200, 182, 255, 0.2);
    }
    
    .nav {
        height: 70px;
    }
    
    .nav-content {
        height: 70px;
        padding: 0 16px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links a,
    .nav-links button {
        padding: 16px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(200, 182, 255, 0.1);
        width: 100%;
        text-align: left;
        background: none;
        border-left: none;
        border-right: none;
        border-top: none;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .nav-links a:last-child,
    .nav-links button:last-child {
        border-bottom: none;
    }
    
    .nav-links button {
        margin-top: 8px;
        padding: 12px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
        min-width: 44px;
        min-height: 44px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-gradient {
        width: 400px;
        height: 400px;
        top: -20%;
        right: -30%;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }
    
    .hero-buttons button {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
        padding: 40px 16px 0;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .section-tag {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .step {
        padding: 32px 24px;
    }
    
    .step-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .feature-card,
    .audience-card {
        padding: 32px 24px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .feature-title {
        font-size: 20px;
    }
    
    .unique-card {
        padding: 32px 24px;
    }
    
    .unique-title {
        font-size: 24px;
    }
    
    .unique-number {
        font-size: 60px;
        top: 16px;
        right: 24px;
    }
    
    .unique-visual {
        flex-direction: column;
        gap: 16px;
    }
    
    .visual-box {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .visual-arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .cta-title {
        font-size: 32px;
        padding: 0 16px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        padding: 0 16px;
    }
    
    .form-group {
        flex-direction: column;
        padding: 0 16px;
    }
    
    .email-input {
        width: 100%;
        padding: 16px;
        font-size: 16px;
    }
    
    .btn-primary-large {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }
    
    .trust-badge {
        font-size: 13px;
    }
    
    .footer {
        padding: 60px 0 24px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 0 16px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 12px;
    }
    
    .hook-example {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .badge {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav {
        height: 64px;
    }
    
    .nav-content {
        height: 64px;
        padding: 0 12px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-gradient {
        width: 300px;
        height: 300px;
        top: -10%;
        right: -40%;
    }
    
    .cta-gradient {
        width: 300px;
        height: 300px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .hero-buttons button {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 20px;
        padding-top: 32px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .section-header {
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .section-tag {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .step {
        padding: 24px 20px;
    }
    
    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .feature-card,
    .audience-card {
        padding: 24px 20px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-description {
        font-size: 14px;
    }
    
    .unique-card {
        padding: 24px 20px;
    }
    
    .unique-title {
        font-size: 20px;
    }
    
    .unique-description {
        font-size: 14px;
    }
    
    .unique-number {
        font-size: 48px;
        top: 12px;
        right: 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-subtitle {
        font-size: 15px;
    }
    
    .email-input {
        padding: 14px;
        font-size: 15px;
    }
    
    .btn-primary-large {
        padding: 14px 20px;
        font-size: 15px;
    }
    
    .trust-badge {
        font-size: 12px;
    }
    
    .trust-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-tagline {
        font-size: 14px;
    }
    
    .footer-column h4 {
        font-size: 15px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .hook-example {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    .badge {
        padding: 6px 12px;
        font-size: 11px;
    }
    
    .tag {
        padding: 5px 12px;
        font-size: 11px;
    }
}

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

:focus-visible {
    outline: 2px solid var(--color-3);
    outline-offset: 4px;
}

