/* =========================================================
   FlowPay NL — Mobile-First Addon (Launch Ready)
   Add-only: enhances landing.css without overwriting
   Base: ≤480px, scales up
   ========================================================= */

/* =========================================================
   MOBILE-FIRST BASE (≤480px)
   ========================================================= */

/* Touch Target Compliance: minimum 44px */
.btn,
.btn-primary,
.btn-outline,
.btn-large {
    min-height: 52px;
    padding: 14px 24px;
    font-size: 16px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

/* Hero Section: Mobile-First */
.hero {
    padding: 80px 0 48px;
    text-align: center;
}

.hero-content {
    flex-direction: column;
    gap: 32px;
}

.hero-headline {
    font-size: 1.75rem;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero-subheadline {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.hero-buttons .btn {
    width: 100%;
    justify-content: center;
}

/* Feature Cards: Stacked on Mobile */
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    text-align: center;
    padding: 24px 20px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* How It Works: Vertical Steps */
.steps {
    flex-direction: column;
    gap: 0;
}

.step {
    text-align: center;
    padding: 24px 16px;
}

.step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin: 0 auto 12px;
}

.step h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
}

.step-connector {
    width: 3px;
    height: 40px;
    margin: 0 auto;
}

/* Pricing Cards: Stack on Mobile */
.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-card {
    padding: 28px 20px;
}

.pricing-card h3 {
    font-size: 1.2rem;
}

.price-amount {
    font-size: 2rem;
}

.pricing-features li {
    font-size: 0.95rem;
    padding: 8px 0;
}

/* Trust Section: Clean Mobile Display */
.trust-badges {
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

.trust-badge {
    padding: 16px;
    font-size: 0.95rem;
}

/* Final CTA: Full-Width Button */
.cta-section {
    padding: 48px 20px;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.cta-buttons {
    flex-direction: column;
    gap: 12px;
}

.cta-buttons .btn {
    width: 100%;
    min-height: 52px;
}

/* Section Spacing */
section {
    padding: 48px 0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
}

.section-sub {
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 32px;
}

/* Navigation: Mobile Optimized */
.navbar {
    padding: 12px 16px;
}

.mobile-menu a {
    padding: 16px 20px;
    font-size: 1rem;
    min-height: 52px;
    display: flex;
    align-items: center;
}

.mobile-menu-buttons .btn {
    min-height: 52px;
    width: 100%;
}

/* Footer: Mobile Stack */
.footer-grid {
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.footer-column {
    text-align: center;
}

/* Cookie Banner: Mobile Friendly */
.cookie-banner {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
}

.cookie-buttons {
    width: 100%;
    flex-direction: column;
    gap: 8px;
}

.cookie-buttons button {
    width: 100%;
    min-height: 44px;
}

/* =========================================================
   TABLET ENHANCEMENT (≥481px)
   ========================================================= */
@media (min-width: 481px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-buttons .btn {
        width: auto;
        min-width: 180px;
    }

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

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .cta-buttons .btn {
        width: auto;
        min-width: 200px;
    }
}

/* =========================================================
   DESKTOP ENHANCEMENT (≥769px)
   ========================================================= */
@media (min-width: 769px) {
    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
    }

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

    .steps {
        flex-direction: row;
    }

    .step-connector {
        width: 60px;
        height: 3px;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* =========================================================
   LARGE DESKTOP (≥1025px)
   ========================================================= */
@media (min-width: 1025px) {
    .hero-headline {
        font-size: 3.2rem;
    }

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