.site-header-v2 {
    padding-top: 18px;
    padding-bottom: 10px;
}

.header-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    width: 220px;
    height: auto;
    object-fit: contain;
}

.header-link-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid rgba(219, 39, 119, 0.14);
    background: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-weight: 600;
    color: #4b4350;
    box-shadow: 0 10px 24px rgba(52, 33, 44, 0.04);
}

.hero-section-v2 {
    position: relative;
    padding: 52px 0 84px;
}

.hero-section-v2::before {
    content: '';
    position: absolute;
    right: -120px;
    top: 20px;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 194, 224, 0.22) 0%, rgba(255, 194, 224, 0) 70%);
    pointer-events: none;
}

.hero-section-v2::after {
    content: '';
    position: absolute;
    left: -120px;
    bottom: 20px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 222, 170, 0.14) 0%, rgba(255, 222, 170, 0) 72%);
    pointer-events: none;
}

.hero-container-v2 {
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-badge-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(219, 39, 119, 0.14);
    background: rgba(255, 255, 255, 0.78);
    color: #8a5470;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 20px rgba(58, 40, 49, 0.04);
}

.hero-title-v2 {
    margin: 22px 0 0;
    font-size: 72px;
    line-height: 0.94;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #221c21;
}

.hero-title-accent {
    color: var(--pink);
}

.hero-script-text {
    margin: 22px 0 0;
    color: var(--gold);
    font-family: 'Marck Script', cursive;
    font-size: 54px;
    line-height: 1.12;
    font-weight: 400;
}

.hero-subtitle-v2 {
    max-width: 760px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.hero-actions-v2 {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.hero-cta {
    min-width: 280px;
    min-height: 62px;
    padding: 0 34px;
    font-size: 18px;
    letter-spacing: 0.01em;
}

.btn-primary-pulse {
    animation: pulseCta 2.2s ease-in-out infinite;
}

@keyframes pulseCta {
    0% {
        transform: scale(1);
        box-shadow: 0 18px 36px rgba(219, 39, 119, 0.28);
    }

    50% {
        transform: scale(1.035);
        box-shadow: 0 22px 48px rgba(219, 39, 119, 0.38);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 18px 36px rgba(219, 39, 119, 0.28);
    }
}

@media (max-width: 900px) {
    .brand-logo-img {
        width: 180px;
    }

    .hero-section-v2 {
        padding: 34px 0 60px;
    }

    .hero-title-v2 {
        font-size: 52px;
        line-height: 0.98;
    }

    .hero-script-text {
        font-size: 40px;
    }

    .hero-subtitle-v2 {
        font-size: 17px;
        line-height: 1.65;
    }

    .hero-cta {
        min-width: 240px;
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .header-row-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-logo-img {
        width: 168px;
    }

    .header-link-v2 {
        min-height: 44px;
        padding: 0 16px;
        font-size: 14px;
    }

    .hero-badge-v2 {
        font-size: 13px;
        line-height: 1.3;
        padding: 10px 14px;
        min-height: unset;
    }

    .hero-title-v2 {
        font-size: 42px;
    }

    .hero-script-text {
        font-size: 32px;
        line-height: 1.18;
    }

    .hero-subtitle-v2 {
        font-size: 16px;
        margin-top: 16px;
    }

    .hero-actions-v2 {
        width: 100%;
    }

    .hero-cta {
        width: 100%;
        min-width: 0;
    }
}