* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E63946;
    --primary-dark: #D62828;
    --primary-light: #FF4D5A;
    --bg-dark: #0D0D0D;
    --bg-darker: #050505;
    --bg-card: #1A1A1A;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --border: #2A2A2A;
    --glow: rgba(230, 57, 70, 0.5);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 20px 0;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
}

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

.logo-accent {
    color: var(--primary);
}

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

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

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

.btn-nav {
    background: var(--primary);
    color: var(--text-primary) !important;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px var(--glow);
}

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

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(230, 57, 70, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 var(--glow);
    }
    50% {
        box-shadow: 0 0 20px 5px var(--glow);
    }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

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

.hero-tagline {
    font-size: 24px;
    color: var(--primary);
    font-weight: 600;
    max-width: 700px;
    margin: 0 auto 15px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--text-primary);
    box-shadow: 0 4px 20px var(--glow);
}

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

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.section-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 20px;
    color: var(--text-secondary);
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.2);
}

.feature-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px var(--glow);
}

.featured-badge, .popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--text-primary);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

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

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
}

.feature-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

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

.workflow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.workflow-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.workflow-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.step-number {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 20px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.workflow-arrow {
    font-size: 32px;
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
    align-self: center;
}

/* Pricing */
.pricing {
    padding: 120px 0;
    background: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1000px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.2);
}

.pricing-card.featured-plan {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    box-shadow: 0 10px 50px var(--glow);
}

.pricing-card.enterprise-plan {
    border: 2px solid #9B59B6;
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.3);
}

.plan-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-style: italic;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-secondary);
    font-size: 14px;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    vertical-align: top;
    color: var(--text-secondary);
}

.amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--text-primary);
}

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

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

.plan-features li {
    padding: 12px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--text-primary);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--bg-dark);
    color: var(--text-primary);
}

.cta-section .btn-secondary {
    border-color: var(--text-primary);
    color: var(--text-primary);
}

.cta-section .btn-secondary:hover {
    background: var(--text-primary);
    color: var(--primary);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 20px;
}

.logo-footer {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .workflow {
        flex-direction: column;
    }

    .workflow-arrow {
        transform: rotate(90deg);
    }

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

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

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

    .nav-links {
        display: none;
    }
}

/* Why This Exists Section */
.why-exists {
    padding: 120px 0;
    background: var(--bg-dark);
    position: relative;
}

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

.why-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.why-exists h2 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.why-exists h2 .highlight {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.why-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.why-description strong {
    color: var(--text-primary);
}

/* Human + AI Section */
.human-ai-section {
    padding: 120px 0;
    background: var(--bg-darker);
}

.section-header.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 12px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 30px;
    align-items: center;
    margin-top: 60px;
}

.comparison-card {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.comparison-card.ai-card {
    border-color: #3B82F6;
}

.comparison-card.human-card {
    border-color: #10B981;
}

.comparison-card.result-card {
    border-color: var(--primary);
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.2);
}

.comparison-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.comparison-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.comparison-list {
    list-style: none;
    text-align: left;
}

.comparison-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 24px;
    line-height: 1.6;
}

.comparison-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.comparison-plus,
.comparison-equals {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.result-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.result-description em {
    color: var(--text-primary);
    font-style: italic;
    font-weight: 600;
}

/* What We Track Section */
.what-we-track {
    padding: 120px 0;
    background: var(--bg-dark);
}

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

.tracking-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    transition: all 0.3s ease;
}

.tracking-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.15);
}

.tracking-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

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

.tracking-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Dashboard Section */
.dashboard-section {
    padding: 120px 0;
    background: var(--bg-darker);
}

.dashboard-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.dashboard-badge {
    display: inline-block;
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid #9B59B6;
    color: #9B59B6;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.dashboard-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 28px;
    line-height: 1.4;
}

.dashboard-features {
    list-style: none;
    margin-bottom: 28px;
}

.dashboard-features li {
    padding: 14px 0;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 28px;
}

.dashboard-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #9B59B6;
    font-weight: bold;
    font-size: 18px;
}

.dashboard-features strong {
    color: var(--text-primary);
}

.dashboard-note {
    padding: 20px;
    background: rgba(155, 89, 182, 0.05);
    border-left: 3px solid #9B59B6;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    border-radius: 4px;
}

.dashboard-platform-note {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.dashboard-platform-note strong {
    color: #9B59B6;
}

.dashboard-visual {
    position: relative;
}

.dashboard-screenshot-placeholder {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(230, 57, 70, 0.1) 100%);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.placeholder-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.5;
}

.placeholder-features {
    display: grid;
    gap: 16px;
    width: 100%;
}

.placeholder-metric {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

/* Value Props Grid */
.value-props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.value-prop {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-prop:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(230, 57, 70, 0.2);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

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

.value-prop p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.value-prop p strong {
    color: var(--primary);
}

/* Social Proof Section */
.social-proof {
    padding: 100px 0;
    background: var(--bg-dark);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.proof-stat {
    text-align: center;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.proof-stat:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.proof-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 12px;
}

.proof-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-plus,
    .comparison-equals {
        transform: rotate(90deg);
    }



    .dashboard-showcase {
        grid-template-columns: 1fr;
    }

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

    .value-props-grid {
        grid-template-columns: 1fr;
    }

    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-exists h2 {
        font-size: 32px;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 48px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--primary);
}

.modal-content h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-actions {
    margin-top: 32px;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #10B981;
    color: #10B981;
}

.form-message.error {
    display: block;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
}

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

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

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-badge {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.3s;
}

.hero-cta {
    animation-delay: 0.4s;
}

.hero-stats {
    animation-delay: 0.5s;
}
