/* ── Footer ── */
    .footer {
        width: 100%;
        background: #1A1A1A;
        color: #FFFFFF;
    }

    .footer__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* ── Top Section ── */
    .footer__top {
        padding: 4rem 0 3rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 3rem;
    }

    /* ── Brand Column ── */
    .footer__brand {
        max-width: 320px;
    }

    .footer__logo {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .footer__logo-container {
        height: 80px;
        width: auto;
        background: #FFFFFF;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .footer__logo-img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }

    .footer__logo-text {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: #FFFFFF;
        letter-spacing: -0.02em;
    }

    .footer__tagline {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9375rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin: 0 0 1.5rem;
    }

    .footer__social {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .footer__social-icons {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .footer__social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
    }

    .footer__social-link:hover {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border-color: transparent;
        color: #FFFFFF;
        transform: translateY(-2px);
    }

    /* ── Links Columns ── */
    .footer__links-title {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0 0 1.25rem;
        letter-spacing: -0.01em;
    }

    .footer__links-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.625rem;
    }

    .footer__links-list a {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9375rem;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        transition: color 0.2s ease;
        display: inline-block;
    }

    .footer__links-list a:hover {
        color: #D08FA8;
    }

    /* ── Newsletter Section ── */
    .footer__newsletter {
        padding: 3rem 0;
        background: rgba(255, 255, 255, 0.02);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__newsletter-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 3rem;
    }

    .footer__newsletter-text {
        flex: 1;
        max-width: 480px;
    }

    .footer__newsletter-title {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.75rem;
        font-weight: 700;
        color: #FFFFFF;
        margin: 0 0 0.5rem;
        letter-spacing: -0.01em;
    }

    .footer__newsletter-subtitle {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9375rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.6);
        margin: 0;
    }

    .footer__newsletter-form {
        flex: 1;
        max-width: 520px;
        display: flex;
        gap: 0.75rem;
    }

    .footer__newsletter-input-wrapper {
        flex: 1;
        position: relative;
    }

    .footer__newsletter-icon {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: rgba(255, 255, 255, 0.4);
        pointer-events: none;
    }

    .footer__newsletter-input {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 10px;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9375rem;
        color: #FFFFFF;
        transition: all 0.3s ease;
    }

    .footer__newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.4);
    }

    .footer__newsletter-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.08);
        border-color: #D08FA8;
    }

    .footer__newsletter-button {
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        border: none;
        border-radius: 10px;
        color: #FFFFFF;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9375rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .footer__newsletter-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(208, 143, 168, 0.4);
    }

    /* ── Middle Section (Trust Badges) ── */
    .footer__middle {
        padding: 2.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer__trust {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .footer__trust-item {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer__trust-item svg {
        flex-shrink: 0;
        color: #D08FA8;
    }

    .footer__trust-item span {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.875rem;
        line-height: 1.4;
    }

    /* ── Bottom Section ── */
    .footer__bottom {
        padding: 2rem 0;
    }

    .footer__bottom-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .footer__legal {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .footer__copyright {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
        margin: 0;
    }

    .footer__legal-links {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .footer__legal-links a {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer__legal-links a:hover {
        color: #D08FA8;
    }

    .footer__payment {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .footer__payment-label {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.875rem;
        color: rgba(255, 255, 255, 0.5);
    }

    .footer__payment-methods {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
        .footer__grid {
            grid-template-columns: 2fr 1fr 1fr;
        }

        .footer__grid .footer__links:last-child {
            grid-column: 1 / -1;
            max-width: 300px;
        }

        .footer__trust {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .footer__top {
            padding: 3rem 0 2rem;
        }

        .footer__grid {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .footer__brand {
            max-width: 100%;
        }

        .footer__grid .footer__links:last-child {
            grid-column: auto;
            max-width: 100%;
        }

        .footer__newsletter {
            padding: 2.5rem 0;
        }

        .footer__newsletter-content {
            flex-direction: column;
            gap: 2rem;
        }

        .footer__newsletter-text {
            max-width: 100%;
        }

        .footer__newsletter-form {
            width: 100%;
            max-width: 100%;
        }

        .footer__middle {
            padding: 2rem 0;
        }

        .footer__trust {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .footer__bottom-content {
            flex-direction: column;
            gap: 1.5rem;
        }

        .footer__legal {
            flex-direction: column;
            align-items: flex-start;
            gap: 1rem;
            width: 100%;
        }

        .footer__legal-links {
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer__payment {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.75rem;
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .footer__newsletter-form {
            flex-direction: column;
        }

        .footer__newsletter-button {
            width: 100%;
            justify-content: center;
        }

        .footer__social {
            flex-wrap: wrap;
        }

        .footer__payment-methods {
            flex-wrap: wrap;
        }
    }