/* =============================================
   LANDING PAGE - FLYFLOPS
   Paleta de marca: Azul #5B9CB8 | Dorado #E8B830
   ============================================= */

/* ===== RESET LANDING ===== */
.landing-page {
    display: block;
    background: #ffffff;
    min-height: 100vh;
    align-items: initial;
    justify-content: initial;
}

/* ===== LOGO IMG ===== */
.landing-nav__logo-img {
    height: 42px;
    width: auto;
    vertical-align: middle;
    margin-right: 8px;
    border-radius: 6px;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    border-radius: 6px;
    filter: brightness(1.2);
}

/* ===== BANNER PROMOCIONAL ===== */
.promo-banner {
    background: linear-gradient(135deg, #E8B830, #F5D060);
    color: #2C5F73;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    animation: bannerSlideDown 0.6s ease-out;
}

@keyframes bannerSlideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.promo-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.promo-banner__cta {
    background: #5B9CB8;
    color: #fff !important;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-banner__cta:hover {
    background: #4A8BA5;
    transform: scale(1.05);
}

.promo-banner__close {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #2C5F73;
    padding: 0 4px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.promo-banner__close:hover {
    opacity: 1;
}

/* ===== REDES SOCIALES FOOTER ===== */
.landing-footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.landing-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.landing-footer__social a:hover {
    background: rgba(255,255,255,0.25);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* ===== NAVEGACIÓN ===== */
.landing-nav {
    position: fixed;
    top: 44px; /* Espacio para el banner */
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.landing-nav.banner-hidden {
    top: 0;
}

.landing-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(27, 94, 123, 0.1);
    border-bottom: 1px solid rgba(27, 94, 123, 0.08);
}

.landing-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.landing-nav__logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #5B9CB8 !important;
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

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

.landing-nav__links a {
    color: #4a6274;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.landing-nav__links a:hover {
    color: #5B9CB8;
}

.landing-nav__links .nav-cta {
    background: linear-gradient(135deg, #5B9CB8, #7BB8D0);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.landing-nav__links .nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27, 94, 123, 0.4);
}

.landing-nav__links .nav-cta--catalogo {
    background: linear-gradient(135deg, #E8B830, #D4A52A);
}

.landing-nav__links .nav-cta--catalogo:hover {
    box-shadow: 0 8px 25px rgba(232, 184, 48, 0.4);
}

.landing-nav__links .nav-cta--login {
    background: linear-gradient(135deg, #2C5F73, #4A8BA5);
    font-size: 0.85rem;
}

.landing-nav__links .nav-cta--login:hover {
    box-shadow: 0 8px 25px rgba(44, 95, 115, 0.4);
}

/* Hamburguesa */
.landing-nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.landing-nav__hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: #5B9CB8;
    transition: all 0.3s ease;
}

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

.landing-nav__hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #4A8BA5 0%, #7BB8D0 35%, #A8D4E5 65%, #D0E8F0 100%);
    overflow: hidden;
    padding: 160px 2rem 80px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(91, 156, 184, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(123, 184, 208, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 90%, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    max-width: 800px;
    text-align: center;
    z-index: 1;
}

.hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #E8B830;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease-out;
}

.hero__title {
    font-size: 3.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero__trust {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero__trust-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

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

/* ===== BOTONES LANDING ===== */
.btn-landing {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    letter-spacing: 0.3px;
}

.btn-landing--primary {
    background: linear-gradient(135deg, #E8B830, #D4A520);
    color: #2C5F73 !important;
    box-shadow: 0 8px 30px rgba(232, 184, 48, 0.4);
}

.btn-landing--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 184, 48, 0.55);
    background: linear-gradient(135deg, #F5C840, #E8B830);
}

.btn-landing--secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-landing--secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-landing--alliance {
    background: linear-gradient(135deg, #E8B830, #D4A520);
    color: #2C5F73 !important;
    box-shadow: 0 8px 30px rgba(232, 184, 48, 0.4);
}

.btn-landing--alliance:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(232, 184, 48, 0.55);
}

/* ===== SECCIONES GENÉRICAS ===== */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2C5F73;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    color: #4a6274;
    font-size: 1.15rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BENEFICIOS ===== */
.benefits {
    padding: 100px 0;
    background: #f0f6f9;
}

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

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(27, 94, 123, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(27, 94, 123, 0.06);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(27, 94, 123, 0.15);
    border-color: rgba(27, 94, 123, 0.12);
}

.benefit-card__icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #5B9CB8;
    margin-bottom: 12px;
}

.benefit-card__text {
    color: #4a6274;
    line-height: 1.7;
    font-size: 1rem;
}

/* ===== CÓMO FUNCIONA ===== */
.how-it-works {
    padding: 100px 0;
    background: #fff;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 280px;
    padding: 24px;
}

.step__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5B9CB8, #7BB8D0);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 24px rgba(27, 94, 123, 0.3);
}

.step__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #5B9CB8;
    margin-bottom: 10px;
}

.step__text {
    color: #4a6274;
    line-height: 1.6;
    font-size: 0.95rem;
}

.step__arrow {
    font-size: 2rem;
    color: #b8d4e0;
    margin-top: 30px;
    font-weight: 300;
}

/* ===== SECCIÓN ALIANZA / DISTRIBUIDORES ===== */
.alliance {
    padding: 100px 0;
    background: linear-gradient(180deg, #4A8BA5, #6AAFC6, #8EC8DB);
    color: #fff;
}

.alliance__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.alliance__badge {
    display: inline-block;
    background: rgba(232, 184, 48, 0.15);
    color: #E8B830;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(232, 184, 48, 0.25);
}

.alliance__title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

.alliance__description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.alliance__features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.alliance__features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
}

/* Mockup visual */
.alliance__visual {
    display: flex;
    justify-content: center;
}

.alliance__mockup {
    perspective: 800px;
}

.mockup-screen {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    min-width: 320px;
    backdrop-filter: blur(20px);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.mockup-screen:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.mockup-header {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mockup-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-stat:last-child {
    border-bottom: none;
}

.mockup-stat__label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.mockup-stat__value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #E8B830;
}

/* ===== PRUEBA SOCIAL ===== */
.social-proof {
    padding: 100px 0;
    background: #f0f6f9;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.testimonial {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(27, 94, 123, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(27, 94, 123, 0.06);
}

.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(27, 94, 123, 0.15);
}

.testimonial__stars {
    margin-bottom: 16px;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial__text {
    color: #3C6E80;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #5B9CB8, #7BB8D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.testimonial__author strong {
    display: block;
    color: #2C5F73;
    font-size: 0.95rem;
}

.testimonial__author span {
    color: #7a9aab;
    font-size: 0.85rem;
}

/* Barra de estadísticas */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: linear-gradient(135deg, #5B9CB8, #4A8BA5);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(27, 94, 123, 0.3);
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-item__number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 4px;
    color: #E8B830;
}

.stat-item__label {
    font-size: 0.95rem;
    opacity: 0.85;
    font-weight: 500;
}

/* ===== CTA DESCARGA ===== */
.download-cta {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.download-cta__title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #2C5F73;
    margin-bottom: 16px;
}

.download-cta__text {
    color: #4a6274;
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.download-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #5B9CB8;
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(27, 94, 123, 0.35);
    background: #4A8BA5;
}

.btn-store__icon {
    font-size: 1.6rem;
}

.btn-store small {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
    text-align: left;
}

.btn-store strong {
    font-size: 1.1rem;
    display: block;
    text-align: left;
}

/* ===== FOOTER LANDING ===== */
.landing-footer {
    background: #2C5F73;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

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

.landing-footer__logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.landing-footer__brand p {
    line-height: 1.7;
    font-size: 0.95rem;
}

.landing-footer__links h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.landing-footer__links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 4px 0;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.landing-footer__links a:hover {
    color: #E8B830;
}

.landing-footer__links p {
    font-size: 0.9rem;
    padding: 4px 0;
    margin: 0;
}

.landing-footer__links p a {
    display: inline;
    padding: 0;
}

.landing-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== ANIMACIONES SCROLL ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:nth-child(2).animate-on-scroll.visible { transition-delay: 0.15s; }
.benefit-card:nth-child(3).animate-on-scroll.visible { transition-delay: 0.3s; }

.step:nth-child(3).animate-on-scroll.visible { transition-delay: 0.15s; }
.step:nth-child(5).animate-on-scroll.visible { transition-delay: 0.3s; }

.testimonial:nth-child(2).animate-on-scroll.visible { transition-delay: 0.15s; }
.testimonial:nth-child(3).animate-on-scroll.visible { transition-delay: 0.3s; }

.stat-item:nth-child(2).animate-on-scroll.visible { transition-delay: 0.1s; }
.stat-item:nth-child(3).animate-on-scroll.visible { transition-delay: 0.2s; }
.stat-item:nth-child(4).animate-on-scroll.visible { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 1024px) {
    .hero__title {
        font-size: 2.8rem;
    }

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

    .alliance__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .alliance__features {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

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

    .landing-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* Tablet pequeño / Mobile grande */
@media (max-width: 768px) {
    .landing-nav__links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }

    .landing-nav__links.active {
        display: flex;
    }

    .landing-nav__links a {
        font-size: 1.3rem;
        color: #1a1a2e;
    }

    .landing-nav__hamburger {
        display: flex;
        z-index: 1001;
    }

    .hero {
        padding: 100px 1.5rem 60px;
        min-height: 90vh;
    }

    .hero__title {
        font-size: 2.2rem;
    }

    .hero__subtitle {
        font-size: 1.05rem;
    }

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

    .btn-landing {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero__trust {
        flex-direction: column;
        gap: 8px;
    }

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

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .benefits {
        padding: 60px 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .how-it-works {
        padding: 60px 0;
    }

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

    .step__arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .alliance {
        padding: 60px 0;
    }

    .alliance__title {
        font-size: 1.7rem;
    }

    .mockup-screen {
        min-width: 260px;
        transform: none;
    }

    .social-proof {
        padding: 60px 0;
    }

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

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px;
    }

    .stat-item__number {
        font-size: 2rem;
    }

    .download-cta {
        padding: 60px 0;
    }

    .download-cta__title {
        font-size: 1.6rem;
    }

    .landing-footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .promo-banner {
        font-size: 0.82rem;
        padding: 10px 16px;
    }

    .promo-banner__inner {
        flex-direction: column;
        gap: 8px;
    }
}

/* Mobile pequeño */
@media (max-width: 400px) {
    .hero__title {
        font-size: 1.8rem;
    }

    .hero__badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }

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

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

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 24px;
    }
}
