/* ── Bottom Banner ── */
.bottom-banner-section {
    background: #FFFFFF;
}

/* ── Newsletter ── */
.bottom-banner-section .newsletter-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #14532d 100%);
    padding: 64px 60px;
}

.bottom-banner-section .newsletter-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bottom-banner-section .newsletter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.9);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 100px;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.bottom-banner-section .newsletter-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.bottom-banner-section .newsletter-left p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.6;
}

.bottom-banner-section .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bottom-banner-section .newsletter-form-row {
    display: flex;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px;
    padding: 6px 6px 6px 16px;
    backdrop-filter: blur(10px);
}

.bottom-banner-section .newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: #FFFFFF;
    min-width: 0;
}

.bottom-banner-section .newsletter-input::placeholder {
    color: rgba(255,255,255,0.45);
}

.bottom-banner-section .newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: #FFFFFF;
    color: #0c4a6e;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.bottom-banner-section .newsletter-btn:hover {
    background: #f0f9ff;
    transform: translateY(-1px);
}

.bottom-banner-section .newsletter-disclaimer {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.5;
}

.bottom-banner-section .newsletter-disclaimer a {
    color: rgba(255,255,255,0.7);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Features Strip ── */
.bottom-banner-section .features-section {
    background: #0f172a;
    padding: 0 60px;
}

.bottom-banner-section .features-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding: 28px 0;
}

.bottom-banner-section .feature-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.bottom-banner-section .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: center;
    padding: 0 12px;
}

.bottom-banner-section .feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.07);
    border-radius: 12px;
    color: #7dd3fc;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.08);
}

.bottom-banner-section .feature-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 3px;
    letter-spacing: 0.01em;
}

.bottom-banner-section .feature-text p {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin: 0;
    line-height: 1.3;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .bottom-banner-section .newsletter-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .bottom-banner-section .features-inner {
        flex-wrap: wrap;
        gap: 20px;
        padding: 28px 0;
    }

    .bottom-banner-section .feature-divider {
        display: none;
    }

    .bottom-banner-section .feature-item {
        flex: 0 0 calc(33% - 20px);
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .bottom-banner-section .newsletter-section {
        padding: 40px 24px;
    }

    .bottom-banner-section .newsletter-left h2 {
        font-size: 22px;
    }

    .bottom-banner-section .newsletter-form-row {
        flex-direction: column;
        padding: 12px;
        gap: 10px;
    }

    .bottom-banner-section .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .bottom-banner-section .features-section {
        padding: 0 24px;
    }

    .bottom-banner-section .feature-item {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .bottom-banner-section .feature-item {
        flex: 0 0 100%;
    }
}
