/**
 * Landing Page Styles – E-Check Protokoll System
 * Komplett-Redesign mit Verkaufspsychologie, Animationen, 10 Sektionen
 */

/* ============================================================
   Reset & Basis
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

.landing-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #1e293b;
    line-height: 1.6;
    overflow-x: hidden;
}

.landing-page a {
    text-decoration: none;
    color: inherit;
}

/* ============================================================
   Scroll-Reveal Animations
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================================
   Navigation (Sticky + Mobile Hamburger)
   ============================================================ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 2rem;
    transition: box-shadow 0.3s;
}

.landing-nav.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

a.nav-logo,
a.nav-logo:visited {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.nav-logo span {
    color: #38bdf8;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-center a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-center a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: width 0.3s;
}

.nav-center a:hover {
    color: #fff;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-nav-login {
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.45rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-nav-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-nav-cta {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #fff;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(56, 189, 248, 0.25);
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.35);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menü */
.nav-mobile {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    z-index: 999;
}

.nav-mobile.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.nav-mobile a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.2s;
}

.nav-mobile a:hover {
    color: #38bdf8;
}

.nav-mobile .btn-nav-cta {
    text-align: center;
    margin-top: 0.5rem;
    padding: 0.75rem;
}

/* ============================================================
   Hero
   ============================================================ */
.landing-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 10rem 2rem 5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-2%, 2%); }
}

.hero-inner {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(56, 189, 248, 0.12);
    color: #38bdf8;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(56, 189, 248, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.15); }
    50% { box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
}

.landing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.landing-hero h1 .highlight {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.95rem 2.25rem;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 0.95rem 2.25rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.25s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: #38bdf8;
    line-height: 1.2;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.25rem;
}

/* ============================================================
   Section Generell
   ============================================================ */
.landing-section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Section CTA (nach Sektionen) */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-section {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #fff;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.btn-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(56, 189, 248, 0.35);
}

/* ============================================================
   Pain Section ("Kennen Sie das?")
   ============================================================ */
.landing-pain {
    background: #fff;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.pain-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.25s;
}

.pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.1);
}

.pain-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.pain-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #991b1b;
}

.pain-card p {
    font-size: 0.9rem;
    color: #7f1d1d;
    line-height: 1.5;
    opacity: 0.85;
}

.pain-transition {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
}

.pain-transition span {
    color: #3b82f6;
}

/* ============================================================
   Benefits (helles Grau)
   ============================================================ */
.landing-benefits {
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    border-color: #38bdf8;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: #3b82f6;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

/* ============================================================
   "So funktioniert's" (3 Schritte)
   ============================================================ */
.landing-steps {
    background: #fff;
}

.steps-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.step-number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.step-connector {
    display: none;
}

/* Connector-Linie zwischen Schritten auf Desktop */
@media (min-width: 769px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 28px;
        left: calc(50% + 36px);
        width: calc(100% - 24px);
        height: 2px;
        background: linear-gradient(90deg, #38bdf8, #6366f1);
        opacity: 0.3;
    }

    .step-card:last-child .step-connector {
        display: none;
    }
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

/* ============================================================
   Features (6 Karten)
   ============================================================ */
.landing-features {
    background: #f8fafc;
}

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

.feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    border-color: #cbd5e1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #3b82f6;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
}

/* ============================================================
   Trust / Normen Section
   ============================================================ */
.landing-trust {
    background: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.trust-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.trust-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 26px;
    height: 26px;
    stroke: #059669;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.trust-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.landing-faq {
    background: #f8fafc;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: #cbd5e1;
}

.faq-item.active {
    border-color: #38bdf8;
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    gap: 1rem;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #3b82f6;
}

.faq-chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.faq-chevron svg {
    width: 20px;
    height: 20px;
    stroke: #94a3b8;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-item.active .faq-chevron svg {
    stroke: #38bdf8;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.65;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ============================================================
   Finaler CTA (dunkel)
   ============================================================ */
.landing-final-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    color: #fff;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.landing-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(56, 189, 248, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.final-cta-inner {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.landing-final-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.landing-final-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.final-cta-actions {
    margin-bottom: 1.5rem;
}

.final-cta-login {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.final-cta-login a {
    color: #38bdf8;
    font-weight: 600;
    transition: color 0.2s;
}

.final-cta-login a:hover {
    color: #7dd3fc;
    text-decoration: underline;
}

/* ============================================================
   Footer (3-spaltig)
   ============================================================ */
.landing-footer {
    background: #0b1120;
    color: rgba(255, 255, 255, 0.5);
    padding: 4rem 2rem 2.5rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ============================================================
   Responsive: Tablet (<=1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .landing-hero h1 {
        font-size: 2.75rem;
    }

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

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

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

    .hero-stats {
        gap: 2rem;
    }
}

/* ============================================================
   Responsive: Mobile (<=768px)
   ============================================================ */
@media (max-width: 768px) {
    /* Nav */
    .nav-center,
    .nav-right {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .landing-nav {
        padding: 0 1.25rem;
    }

    /* Hero */
    .landing-hero {
        padding: 8rem 1.5rem 4rem;
    }

    .landing-hero h1 {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    /* Sections */
    .landing-section {
        padding: 4rem 1.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    /* Pain */
    .pain-grid {
        grid-template-columns: 1fr;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .step-card {
        max-width: 350px;
    }

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

    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Final CTA */
    .landing-final-cta {
        padding: 4rem 1.5rem;
    }

    .landing-final-cta h2 {
        font-size: 1.75rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   Responsive: Kleine Mobilgeräte (<=480px)
   ============================================================ */
@media (max-width: 480px) {
    .landing-hero h1 {
        font-size: 1.75rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}
