/**
 * BONUS IDEALISTA MAGGIO 2026 - MIOGEST
 * Landing con degradado verde/crema/dorado. Voucher da 250€ idealista.
 */

/* ========================================
   0. FONDO DEGRADADO
   ======================================== */

body.bonus-idealista {
    background: linear-gradient(145deg,
        #4db825 0%,      /* Verde Miogest scuro */
        #64c832 12%,     /* Verde Miogest principale */
        #9add6a 28%,     /* Verde medio */
        #c8eda8 45%,     /* Verde chiarissimo */
        #e8f7a0 62%,     /* Lime Idealista, accento */
        #fef9e7 78%,     /* Crema neutra */
        #fde68a 100%     /* Amber caldo */
    );
    background-attachment: fixed;
    min-height: 100vh;
}

body.bonus-idealista .hero-grid {
    display: grid !important;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

body.bonus-idealista .content-column {
    padding: 15px;
    max-width: none;
}

body.bonus-idealista .form-column {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: 480px;
}

body.bonus-idealista .form-wrapper {
    display: block !important;
    visibility: visible !important;
}

body.bonus-idealista .form-container {
    display: block !important;
    visibility: visible !important;
    padding: 30px 25px;
}

/* ========================================
   1. HERO CONTAINER
   ======================================== */

.bi-hero {
    text-align: center;
    background: transparent;
    border-radius: 24px;
    padding: 35px 30px;
    border: none;
    box-shadow: none;
}

/* ========================================
   2. BADGE
   ======================================== */

.bi-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #64c832 0%, #52a828 100%);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 8px 24px rgba(100, 200, 50, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.bi-badge-icon {
    font-size: 22px;
    animation: giftBounce 2s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(-6deg); }
    50% { transform: translateY(0) rotate(0deg); }
    75% { transform: translateY(-4px) rotate(6deg); }
}

.bi-badge-text {
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ========================================
   3. TÍTULO PRINCIPAL
   ======================================== */

.bi-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1f2937;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.bi-hl-green {
    color: #64c832;
    font-weight: 900;
}

.bi-hl-bonus {
    display: inline-block;
    background: rgb(225 245 110 / 96%);
    color: #1a3a00;
    font-weight: 900;
    padding: 3px 12px;
    border-radius: 6px;
    font-size: 0.95em;
    border: 1.5px solid rgba(160, 210, 0, 0.5);
}

/* ========================================
   4. IMAGEN HERO
   ======================================== */

.bi-image {
    position: relative;
    margin: 0 auto 25px;
    animation: floatImg 3s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes floatImg {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

.bi-image-img {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(180, 83, 9, 0.2));
}

/* ========================================
   5. SUBTÍTULO
   ======================================== */

.bi-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #374151;
    margin: 0 auto 25px;
    max-width: 520px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
}

.bi-subtitle strong {
    color: #64c832;
    font-weight: 700;
}

/* ========================================
   6. LISTA DE BENEFICIOS
   ======================================== */

.bi-benefits {
    list-style: none;
    padding: 0;
    margin: 0 auto 18px;
    max-width: 460px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bi-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}

.bi-check {
    width: 18px;
    height: 18px;
    color: #64c832;
    flex-shrink: 0;
}

.bi-benefit-item span {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

.bi-benefit-item strong {
    color: #1f2937;
    font-weight: 700;
}

/* Aviso oferta */
.bi-offer-notice {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 15px;
    font-style: italic;
}

/* ========================================
   7. CTA MÓVIL
   ======================================== */

.bi-cta-mobile {
    display: none;
    margin-top: 25px;
}

.bi-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #64c832 0%, #52a828 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(100, 200, 50, 0.4);
    transition: all 0.3s ease;
}

.bi-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(100, 200, 50, 0.5);
    background: linear-gradient(135deg, #72d640 0%, #5cb82e 100%);
}

.bi-cta-button svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   8. RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    body.bonus-idealista .form-column {
        display: none !important;
    }

    body.bonus-idealista .hero-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .bi-cta-mobile {
        display: block;
    }

    .bi-title {
        font-size: 24px;
    }

    .bi-image-img {
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .bi-hero {
        padding: 25px 20px;
    }

    .bi-badge {
        padding: 10px 18px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .bi-badge-text {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .bi-badge-icon {
        font-size: 18px;
    }

    .bi-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .bi-image {
        margin-bottom: 20px;
    }

    .bi-image-img {
        max-width: 220px;
    }

    .bi-subtitle {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .bi-benefits {
        margin-bottom: 16px;
    }

    .bi-benefit-item span {
        font-size: 13px;
    }

    .bi-cta-button {
        font-size: 14px;
        padding: 16px 28px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    body.bonus-idealista {
        background: linear-gradient(160deg,
            #64c832 0%,
            #a8de76 25%,
            #d8f0b0 55%,
            #fef5c0 80%,
            #fcd34d 100%
        );
    }

    .bi-hero {
        padding: 20px 15px;
        border-radius: 18px;
    }

    .bi-badge {
        padding: 8px 14px;
        gap: 6px;
    }

    .bi-badge-text {
        font-size: 10px;
    }

    .bi-badge-icon {
        font-size: 16px;
    }

    .bi-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .bi-image-img {
        max-width: 180px;
    }

    .bi-subtitle {
        font-size: 14px;
    }

    .bi-benefit-item span {
        font-size: 12px;
    }

    .bi-cta-button {
        font-size: 13px;
        padding: 14px 24px;
    }
}

/* ========================================
   9. FEATURE CAROUSEL
   ======================================== */

.fc-wrapper {
    margin: 0 auto 22px;
    text-align: left;
}

/* Cards track */
.fc-track {
    position: relative;
    min-height: 268px;
}

.fc-card {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.fc-card--active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

/* Mockup window */
.fc-mockup-win {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 8px 28px rgba(0,0,0,0.09);
    overflow: hidden;
}

.fc-win-bar {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 14px;
    background: #f4f6f8;
    border-bottom: 1px solid #ebebeb;
}

.fc-dot-r { width: 9px; height: 9px; border-radius: 50%; background: #fc5f57; display: block; flex-shrink: 0; }
.fc-dot-y { width: 9px; height: 9px; border-radius: 50%; background: #febc2e; display: block; flex-shrink: 0; }
.fc-dot-g { width: 9px; height: 9px; border-radius: 50%; background: #28c840; display: block; flex-shrink: 0; }

.fc-win-title {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    margin-left: 6px;
}

.fc-win-body {
    padding: 13px 15px;
}

/* Portal list */
.fc-portal-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 10px;
}

.fc-pl-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 9px;
    background: #f0fbe8;
    border-radius: 7px;
    border: 1px solid #64c832;
    font-size: 12px;
    font-weight: 600;
    color: #1f2937;
}

.fc-pl-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-pl-check {
    margin-left: auto;
    color: #64c832;
    font-size: 11px;
    font-weight: 800;
}

.fc-pl-more {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-align: center;
    padding: 3px 0;
}

.fc-win-cta {
    width: 100%;
    padding: 7px 10px;
    background: linear-gradient(135deg, #64c832 0%, #52a828 100%);
    color: white;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

/* AI body */
.fc-ai-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.fc-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 9px;
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

.fc-ai-langs {
    display: flex;
    gap: 4px;
}

.fc-lang {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.fc-lang--on {
    background: #f0fbe8;
    color: #52a828;
    border-color: #64c832;
}

.fc-ai-editor {
    background: #fafafa;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 10px 11px;
}

.fc-ai-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #9ca3af;
    margin-bottom: 6px;
}

.fc-ai-text {
    font-size: 11.5px;
    color: #374151;
    line-height: 1.55;
    margin: 0 0 8px;
    font-weight: 500;
}

.fc-ai-cursor {
    border-bottom: 2px solid #7c3aed;
    padding-bottom: 1px;
}

.fc-ai-typing {
    display: inline-block;
    width: 2px;
    height: 13px;
    background: #64c832;
    vertical-align: text-bottom;
    animation: blink .8s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

.fc-ai-meta {
    display: flex;
    gap: 8px;
}

.fc-ai-meta-item {
    font-size: 10px;
    font-weight: 600;
    color: #64c832;
}

/* Match body */
.fc-win-body--match { padding: 14px; }

.fc-match-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.fc-match-pill {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #1f2937;
}

.fc-match-pill--green {
    background: #f0fbe8;
    border: 1px solid #64c832;
}

.fc-match-pill--blue {
    background: #eff6ff;
    border: 1px solid #0077ff;
}

.fc-match-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-match-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #64c832;
    color: white;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(100,200,50,0.45);
    animation: checkPulse 1.8s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% { transform: scale(1);    box-shadow: 0 0 8px rgba(100,200,50,0.35); }
    50%       { transform: scale(1.12); box-shadow: 0 0 16px rgba(100,200,50,0.65); }
}

.fc-match-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: #f0fbe8;
    border-radius: 7px;
    border: 1px solid #64c832;
    font-size: 11px;
    font-weight: 700;
    color: #374151;
}

/* Card caption */
.fc-caption {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.95);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 10px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

.fc-caption strong {
    font-size: 14px;
    font-weight: 800;
    color: #1f2937;
}

.fc-caption span {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

/* Nav dots */
.fc-nav {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
}

.fc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(100,200,50,0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.fc-dot--on {
    width: 22px;
    border-radius: 4px;
    background: #64c832;
}

/* Social proof below dots */
.fc-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 10px;
    flex-wrap: wrap;
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.fc-proof strong { color: #1f2937; font-weight: 700; }

.fc-proof-sep { color: #d1d5db; }

/* WhatsApp card */
.fc-win-bar--wa {
    gap: 6px;
    padding: 7px 12px;
    background: #075e54;
}

.fc-win-bar--wa .fc-dot-r,
.fc-win-bar--wa .fc-dot-y,
.fc-win-bar--wa .fc-dot-g { opacity: 0.6; }

.fc-wa-contact {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 6px;
    flex: 1;
}

.fc-wa-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    font-size: 9px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.fc-wa-name {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.fc-wa-status {
    font-size: 9px;
    color: rgba(255,255,255,0.65);
}

.fc-wa-icon { margin-left: auto; flex-shrink: 0; }

.fc-win-body--wa {
    background: #ece5dd;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fc-wa-bubble {
    max-width: 82%;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: 11px;
    line-height: 1.4;
    color: #1f2937;
    position: relative;
}

.fc-wa-bubble--in {
    background: #ffffff;
    border-radius: 0 8px 8px 8px;
    align-self: flex-start;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.fc-wa-bubble--out {
    background: #dcf8c6;
    border-radius: 8px 0 8px 8px;
    align-self: flex-end;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.fc-wa-time {
    display: block;
    font-size: 9px;
    color: #9ca3af;
    text-align: right;
    margin-top: 2px;
}

.fc-wa-channels {
    display: flex;
    gap: 5px;
    margin-top: 2px;
    justify-content: center;
}

.fc-wa-ch {
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
}

.fc-wa-ch--wa   { background: #25d366; color: white; }
.fc-wa-ch--sms  { background: #3b82f6; color: white; }
.fc-wa-ch--mail { background: #f59e0b; color: white; }

/* Responsive */
@media (max-width: 768px) {
    .fc-track    { min-height: 262px; }
    .fc-win-body { padding: 11px 13px; }
}

@media (max-width: 480px) {
    .fc-track    { min-height: 258px; }
    .fc-win-body { padding: 9px 11px; }
    .fc-caption  { padding: 8px 12px 10px; }
    .fc-ai-text  { font-size: 11px; }
}

/* ========================================
   10. FOOTER SECTION - BONUS IDEALISTA
   ======================================== */

.bi-footer-section {
    background: linear-gradient(135deg, #0d3320 0%, #1a4a30 50%, #0d3320 100%);
    padding: 60px 20px 40px;
    margin-top: 0;
}

.bi-footer-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.bi-footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #64c832 0%, #52a828 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(100, 200, 50, 0.3);
}

.bi-footer-badge-icon {
    font-size: 18px;
    animation: giftBounce 2s ease-in-out infinite;
}

.bi-footer-badge-text {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bi-footer-title {
    margin-bottom: 30px;
}

.bi-footer-title-main {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #fcd34d;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(252, 211, 77, 0.3);
}

.bi-footer-title-sub {
    display: block;
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 5px;
}

.bi-footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.bi-footer-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px 15px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.bi-footer-stat:hover {
    transform: translateY(-5px);
    border-color: #fcd34d;
    box-shadow: 0 10px 25px rgba(252, 211, 77, 0.25);
}

.bi-footer-stat-featured {
    border-color: #fcd34d;
    background: rgba(252, 211, 77, 0.15);
    box-shadow: 0 8px 20px rgba(252, 211, 77, 0.2);
}

.bi-footer-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: #fcd34d;
    line-height: 1;
    margin-bottom: 6px;
    text-shadow: 0 0 15px rgba(252, 211, 77, 0.4);
}

.bi-footer-stat-label {
    font-size: 12px;
    font-weight: 800;
    color: #64c832;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.bi-footer-stat-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.bi-footer-stat-desc s {
    color: #fcd34d;
}

.bi-footer-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.bi-footer-benefit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.bi-footer-benefit svg {
    width: 18px;
    height: 18px;
    color: #64c832;
    flex-shrink: 0;
}

.bi-footer-benefit span {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.bi-footer-form-wrapper {
    max-width: 500px;
    margin: 0 auto 40px;
}

.bi-footer-support {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bi-footer-support-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bi-footer-support-box svg {
    width: 24px;
    height: 24px;
    color: #64c832;
    flex-shrink: 0;
}

.bi-footer-support-box div {
    text-align: left;
}

.bi-footer-support-title {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.bi-footer-support-desc {
    margin: 4px 0 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.bi-footer-legal {
    margin-top: 30px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.bi-footer-legal a {
    color: #fcd34d;
    text-decoration: underline;
    transition: color 0.2s;
}

.bi-footer-legal a:hover {
    color: #fde68a;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .bi-footer-section {
        padding: 40px 15px 30px;
    }

    .bi-footer-title-main {
        font-size: 28px;
    }

    .bi-footer-title-sub {
        font-size: 18px;
    }

    .bi-footer-stats {
        gap: 10px;
    }

    .bi-footer-stat {
        padding: 15px 10px;
    }

    .bi-footer-stat-number {
        font-size: 28px;
    }

    .bi-footer-stat-label {
        font-size: 10px;
    }

    .bi-footer-stat-desc {
        font-size: 10px;
    }

    .bi-footer-benefits {
        gap: 8px;
    }

    .bi-footer-benefit {
        padding: 8px 14px;
    }

    .bi-footer-benefit span {
        font-size: 12px;
    }

    .bi-footer-support-box {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .bi-footer-support-box div {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .bi-footer-badge {
        padding: 8px 16px;
    }

    .bi-footer-badge-text {
        font-size: 10px;
    }

    .bi-footer-title-main {
        font-size: 24px;
    }

    .bi-footer-title-sub {
        font-size: 16px;
    }

    .bi-footer-stat-number {
        font-size: 22px;
    }

    .bi-footer-benefit {
        padding: 6px 12px;
    }

    .bi-footer-benefit svg {
        width: 16px;
        height: 16px;
    }

    .bi-footer-benefit span {
        font-size: 11px;
    }
}
