.home-hero-v2 {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 48px 0 72px;
    background: #fff;
    color: #1c1b1c;
    overflow: hidden;
}

.home-hero-v2-blob {
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translateY(-50%);
    width: 640px;
    height: 640px;
    background: var(--home-primary-soft-strong);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}

.home-hero-v2-inner {
    position: relative;
    z-index: 1;
}

.home-hero-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f7f7fa;
    border: 1px solid #e8e8ef;
    border-radius: 999px;
    padding: 6px 16px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #68687a;
    letter-spacing: 0.02em;
}

.home-hero-v2-badge img {
    width: 16px;
    height: 16px;
}

.home-hero-v2-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--home-text-strong);
    margin-bottom: 20px;
    max-width: 760px;
}

.home-hero-v2-title .home-hero-v2-accent {
    color: var(--home-primary);
}

.home-hero-v2-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #47464b;
    max-width: 600px;
    margin-bottom: 28px;
    font-weight: 400;
}

.home-hero-v2-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.home-hero-v2-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--home-primary);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    border: none;
    box-shadow: 0 4px 14px var(--home-primary-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    min-height: 48px;
}

.home-hero-v2-btn-primary:hover {
    transform: translateY(-2px);
    background: var(--home-primary-hover);
    box-shadow: 0 8px 20px var(--home-primary-shadow-strong);
    color: #fff !important;
}

.home-hero-v2-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1c1b1c !important;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 6px;
    border: 1px solid #e8e8ef;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: background 0.2s ease;
    text-decoration: none;
    min-height: 48px;
}

.home-hero-v2-btn-secondary:hover {
    background: #f7f7fa;
    color: #1c1b1c !important;
}

.home-hero-v2-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(232, 232, 239, 0.8);
    width: 100%;
}

.home-hero-v2-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #47464b;
}

.home-hero-v2-trust-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

.home-hero-v2-visual {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-hero-v2-visual img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    animation: homeHeroFloat 6s ease-in-out infinite;
}

@keyframes homeHeroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@media (prefers-reduced-motion: reduce) {
    .home-hero-v2-visual img {
        animation: none;
    }
}

@media (min-width: 576px) {
    .home-hero-v2-cta {
        flex-direction: row;
        align-items: center;
    }

    .home-hero-v2-btn-primary,
    .home-hero-v2-btn-secondary {
        width: auto;
    }
}

@media (min-width: 992px) {
    .home-hero-v2 {
        padding: 80px 0 120px;
    }

    .home-hero-v2-visual {
        min-height: 480px;
    }
}
