:root {
    --color-cream: #FDF8F3;
    --color-cream-dark: #F5EDE4;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #2D2D2D;
    --color-coral: #E85A4F;
    --color-coral-dark: #D64A3F;
    --color-coral-light: #FFE8E5;
    --color-sage: #4A7C59;
    --color-sage-light: #E8F0EA;
    --color-warm-gray: #6B6460;
    --color-warm-gray-light: #9A918C;
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Lato', system-ui, sans-serif;
    --shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.08);
    --shadow-medium: 0 8px 40px rgba(26, 26, 26, 0.12);
    --shadow-coral: 0 8px 30px rgba(232, 90, 79, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--color-charcoal);
    background-color: var(--color-cream);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    color: var(--color-warm-gray);
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background: var(--color-coral);
    color: white;
    box-shadow: var(--shadow-coral);
}

    .btn-primary:hover {
        background: var(--color-coral-dark);
        transform: translateY(-2px);
        box-shadow: 0 12px 35px rgba(232, 90, 79, 0.35);
    }

.btn-secondary {
    background: white;
    color: var(--color-charcoal);
    box-shadow: var(--shadow-soft);
}

    .btn-secondary:hover {
        background: var(--color-cream);
        transform: translateY(-2px);
    }

.btn-outline {
    background: transparent;
    color: var(--color-charcoal);
    border: 2px solid var(--color-charcoal);
}

    .btn-outline:hover {
        background: var(--color-charcoal);
        color: white;
    }

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

    .header.scrolled {
        background: rgba(253, 248, 243, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: var(--shadow-soft);
        padding: 12px 0;
    }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

    .nav-links a {
        font-weight: 500;
        color: var(--color-warm-gray);
        transition: color var(--transition-fast);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-coral);
            transition: width var(--transition-fast);
        }

        .nav-links a:hover {
            color: var(--color-charcoal);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.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(--color-charcoal);
        transition: all var(--transition-fast);
    }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 80%;
        height: 150%;
        background: radial-gradient(ellipse, var(--color-coral-light) 0%, transparent 70%);
        opacity: 0.6;
        z-index: 0;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--color-sage-light);
    color: var(--color-sage);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

    .hero-badge svg {
        width: 16px;
        height: 16px;
    }

.hero h1 {
    margin-bottom: 24px;
    color: var(--color-charcoal);
}

    .hero h1 span {
        color: var(--color-coral);
        position: relative;
    }

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.app-store-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-block;
    transition: all var(--transition-fast);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

    .store-btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-medium);
    }

    .store-btn svg {
        display: block;
    }

.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-phone {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.phone-frame {
    background: var(--color-charcoal);
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-medium);
}

.phone-screen {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.phone-app {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
    padding: 40px 20px 24px;
    color: white;
    text-align: center;
}

    .app-header h4 {
        font-family: var(--font-body);
        font-size: 14px;
        font-weight: 500;
        opacity: 0.9;
        margin-bottom: 8px;
    }

    .app-header h3 {
        font-family: var(--font-display);
        font-size: 18px;
        color: white;
    }

.app-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.alert-card {
    background: var(--color-coral-light);
    border-left: 4px solid var(--color-coral);
    padding: 16px;
    border-radius: var(--radius-sm);
    animation: pulse 2s ease infinite;
}

    .alert-card h5 {
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 600;
        color: var(--color-coral-dark);
        margin-bottom: 4px;
    }

    .alert-card p {
        font-size: 12px;
        color: var(--color-warm-gray);
    }

.neighbor-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.neighbor-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
}

.neighbor-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.neighbor-info {
    flex: 1;
}

    .neighbor-info h6 {
        font-size: 13px;
        font-weight: 600;
        color: var(--color-charcoal);
    }

    .neighbor-info span {
        font-size: 11px;
        color: var(--color-warm-gray-light);
    }

.neighbor-status {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 100px;
    font-weight: 600;
}

.status-responding {
    background: var(--color-sage-light);
    color: var(--color-sage);
}

.status-nearby {
    background: var(--color-cream-dark);
    color: var(--color-warm-gray);
}

/* Floating elements */
.float-card {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

.float-card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 20%;
    left: -5%;
    animation-delay: 1s;
}

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

    .float-icon.coral {
        background: var(--color-coral-light);
        color: var(--color-coral);
    }

    .float-icon.sage {
        background: var(--color-sage-light);
        color: var(--color-sage);
    }

.float-text h5 {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.float-text span {
    font-size: 12px;
    color: var(--color-warm-gray-light);
}

/* How It Works */
.how-it-works {
    padding: 120px 0;
    background: white;
    position: relative;
}

    .how-it-works::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--color-cream-dark), transparent);
    }

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-coral);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

    .steps-grid::before {
        content: '';
        position: absolute;
        top: 60px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, var(--color-coral-light), var(--color-coral), var(--color-coral-light));
        z-index: 0;
    }

.step-card {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 120px;
    height: 120px;
    margin: 0 auto 28px;
    background: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-coral);
    box-shadow: var(--shadow-soft);
    transition: all var(--transition-medium);
}

.step-card:hover .step-number {
    background: var(--color-coral);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-coral);
}

.step-card h3 {
    margin-bottom: 12px;
    color: var(--color-charcoal);
}

.step-card p {
    font-size: 15px;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--color-charcoal);
    position: relative;
    overflow: hidden;
}

    .features::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: radial-gradient(ellipse at right, var(--color-charcoal-light), transparent);
    }

    .features .section-label {
        color: var(--color-coral-light);
    }

    .features .section-header h2,
    .features .section-header p {
        color: white;
    }

    .features .section-header p {
        opacity: 0.8;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--color-charcoal-light);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
}

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--color-coral);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
}

.feature-card h3 {
    color: white;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* Who We Protect */
.protect {
    padding: 120px 0;
    background: var(--color-cream);
}

.protect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.protect-visual {
    position: relative;
}

.protect-main-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-sage-light), var(--color-cream-dark));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    position: relative;
    overflow: hidden;
}

    .protect-main-image::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A7C59' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

.community-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.community-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: var(--shadow-medium);
    animation: float 3s ease-in-out infinite;
}

    .community-icon:nth-child(2) {
        animation-delay: 0.5s;
        transform: translateY(20px);
    }

    .community-icon:nth-child(3) {
        animation-delay: 1s;
    }

.protect-badges {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.protect-badge {
    background: white;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: var(--shadow-soft);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-charcoal);
    white-space: nowrap;
}

.protect-content h2 {
    margin-bottom: 24px;
}

.protect-content > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.protect-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.protect-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.protect-item-icon {
    width: 48px;
    height: 48px;
    background: var(--color-coral-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.protect-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--color-charcoal);
}

.protect-item p {
    font-size: 15px;
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--color-cream);
    transition: all var(--transition-medium);
}

    .stat-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-soft);
    }

.stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-coral);
    line-height: 1;
    margin-bottom: 12px;
}

    .stat-number span {
        font-size: 2rem;
    }

.stat-card h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 4px;
}

.stat-card p {
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    padding: 120px 0;
    background: var(--color-cream);
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    gap: 32px;
    overflow: visible;
}

.testimonial-card {
    flex: 0 0 400px;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--color-coral-light);
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    color: var(--color-charcoal);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.author-info h5 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-charcoal);
}

.author-info span {
    font-size: 14px;
    color: var(--color-warm-gray-light);
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    margin-bottom: 20px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta .btn-secondary {
    background: white;
    color: var(--color-coral);
}

    .cta .btn-secondary:hover {
        background: var(--color-cream);
    }

.cta .btn-outline {
    border-color: white;
    color: white;
}

    .cta .btn-outline:hover {
        background: white;
        color: var(--color-coral);
    }

.cta-store-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--color-charcoal);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 20px;
}

.footer-brand .logo-icon {
    background: var(--color-coral);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 44px;
        height: 44px;
        background: var(--color-charcoal-light);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: all var(--transition-fast);
    }

        .footer-social a:hover {
            background: var(--color-coral);
            transform: translateY(-2px);
        }

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all var(--transition-fast);
    }

        .footer-links a:hover {
            color: var(--color-coral);
            padding-left: 4px;
        }

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

    .footer-bottom p {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
    }

.footer-legal {
    display: flex;
    gap: 24px;
}

    .footer-legal a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 14px;
        transition: color var(--transition-fast);
    }

        .footer-legal a:hover {
            color: white;
        }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .app-store-buttons {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

        .steps-grid::before {
            display: none;
        }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .protect-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .steps-grid,
    .features-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .float-card {
        display: none;
    }

    .protect-badges {
        flex-direction: column;
        align-items: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 280px;
        }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

        .hero-buttons .btn {
            width: 100%;
        }

    .app-store-buttons {
        justify-content: center;
    }

    .hero-phone {
        max-width: 300px;
    }

    .testimonial-card {
        flex: 0 0 calc(100vw - 48px);
    }
}
