/* ── Hero Section ── */
    .hero {
        position: relative;
        width: calc(100% - 2rem);
        min-height: 650px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 24px;
        margin: 1.5rem 1rem 1rem 1rem;
    }

    /* ── Background & Overlay ── */
    .hero__background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('/images/hero-banner-bg.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border-radius: 24px;
        z-index: 1;
    }

    .hero__overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.92) 0%,
            rgba(255, 255, 255, 0.88) 50%,
            rgba(208, 143, 168, 0.15) 100%
        );
        border-radius: 24px;
        z-index: 2;
    }

    /* ── Content ── */
    .hero__content {
        position: relative;
        z-index: 3;
        max-width: 1280px;
        width: 100%;
        padding: 4rem 1.5rem;
        margin: 0 auto;
    }

    .hero__text-wrapper {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    /* ── Badge Group ── */
    .hero__badge-group {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .hero__badge {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        border-radius: 20px;
        box-shadow: 0 4px 12px rgba(208, 143, 168, 0.3);
    }

    .hero__badge svg {
        width: 14px;
        height: 14px;
    }

    .hero__badge--trust {
        background: #FFFFFF;
        color: #3D2B1F;
        border: 2px solid #D08FA8;
        box-shadow: 0 2px 8px rgba(208, 143, 168, 0.15);
    }

    /* ── Title ── */
    .hero__title {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 3.75rem;
        font-weight: 800;
        line-height: 1.1;
        color: #3D2B1F;
        margin: 0 0 1.25rem;
        letter-spacing: -0.04em;
    }

    .hero__title-accent {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: inline-block;
    }

    /* ── Description ── */
    .hero__description {
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1.15rem;
        line-height: 1.7;
        color: #3D2B1F;
        margin: 0 0 1.5rem;
        max-width: 650px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__description strong {
        color: #D08FA8;
        font-weight: 600;
    }

    /* ── Features Inline ── */
    .hero__features-inline {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .hero__feature-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.9rem;
        font-weight: 600;
        color: #3D2B1F;
    }

    .hero__feature-item svg {
        color: #27ae60;
        flex-shrink: 0;
    }

    /* ── CTA Buttons ── */
    .hero__cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }

    .hero__button {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 1rem 2rem;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
    }

    .hero__button--primary {
        background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
        color: #FFFFFF;
        border: none;
        box-shadow: 0 6px 20px rgba(208, 143, 168, 0.35);
    }

    .hero__button--primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
        transition: left 0.5s ease;
    }

    .hero__button--primary:hover::before {
        left: 100%;
    }

    .hero__button--primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 28px rgba(208, 143, 168, 0.45);
    }

    .hero__button--secondary {
        background: rgba(255, 255, 255, 0.9);
        color: #3D2B1F;
        border: 2px solid rgba(208, 143, 168, 0.3);
        backdrop-filter: blur(8px);
    }

    .hero__button--secondary:hover {
        background: rgba(255, 255, 255, 1);
        border-color: #D08FA8;
        color: #D08FA8;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(208, 143, 168, 0.2);
    }

    /* ── Trust Bar ── */
    .hero__trust-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        padding: 1.25rem 2rem;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(208, 143, 168, 0.2);
        border-radius: 16px;
        flex-wrap: wrap;
        box-shadow: 0 4px 16px rgba(61, 43, 31, 0.05);
    }

    .hero__trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-family: 'Inter', 'Segoe UI', sans-serif;
        font-size: 0.875rem;
        font-weight: 600;
        color: #3D2B1F;
    }

    .hero__trust-item svg {
        color: #3D2B1F;
        flex-shrink: 0;
    }

    .hero__stars {
        display: flex;
        gap: 0.15rem;
    }

    .hero__divider {
        width: 1px;
        height: 20px;
        background: rgba(208, 143, 168, 0.25);
    }

    /* ── Responsive Design ── */
    @media (max-width: 768px) {
        .hero {
            min-height: 500px;
            margin: 1rem 0.75rem 1.5rem 0.75rem;
        }

        .hero__content {
            padding: 3rem 1rem;
        }

        .hero__badge-group {
            gap: 0.5rem;
        }

        .hero__badge {
            font-size: 0.7rem;
            padding: 0.4rem 0.85rem;
        }

        .hero__title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .hero__description {
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }

        .hero__features-inline {
            flex-direction: column;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .hero__cta {
            flex-direction: column;
            gap: 0.75rem;
        }

        .hero__button {
            width: 100%;
            justify-content: center;
            padding: 0.95rem 1.75rem;
        }

        .hero__trust-bar {
            flex-direction: column;
            gap: 1rem;
            padding: 1rem 1.25rem;
        }

        .hero__divider {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .hero__title {
            font-size: 2rem;
        }

        .hero__description {
            font-size: 0.95rem;
        }

        .hero__button {
            font-size: 0.95rem;
            padding: 0.875rem 1.5rem;
        }
    }

    @media (min-width: 1440px) {
        .hero__title {
            font-size: 4.25rem;
        }

        .hero__description {
            font-size: 1.25rem;
        }
    }