/* ============================================
   REDESIGNED HERO SECTION - Romantic Rose Theme
   Emotional, high-conversion design
   ============================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

/* ============================================
   HERO BACKDROP - Romantic Elements
   ============================================ */
.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Abstract blobs for soft romantic background */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    mix-blend-mode: multiply;
    animation: blob-pulse 8s ease-in-out infinite;
}

.hero-blob-1 {
    top: 20%;
    right: 15%;
    width: 400px;
    height: 400px;
    background: var(--rose-200);
    opacity: 0.4;
}

.hero-blob-2 {
    top: 50%;
    right: 30%;
    width: 300px;
    height: 300px;
    background: var(--amber-200);
    opacity: 0.3;
    animation-delay: 2s;
}

@keyframes blob-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

/* Floating hearts and notes */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.floating-element {
    position: absolute;
    color: var(--rose-300);
    opacity: 0;
    animation: float-up 12s ease-in infinite;
}

.floating-element.note {
    font-size: 1.5rem;
}

.floating-element.heart {
    font-size: 1.2rem;
}

.floating-element:nth-child(1) { left: 5%; animation-delay: 0s; }
.floating-element:nth-child(2) { left: 15%; animation-delay: 2s; }
.floating-element:nth-child(3) { left: 25%; animation-delay: 4s; }
.floating-element:nth-child(4) { left: 35%; animation-delay: 6s; }
.floating-element:nth-child(5) { left: 75%; animation-delay: 1s; }
.floating-element:nth-child(6) { left: 85%; animation-delay: 3s; }
.floating-element:nth-child(7) { left: 92%; animation-delay: 5s; }

@keyframes float-up {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ============================================
   HERO CONTENT - Two Column Layout
   ============================================ */
.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

/* Left Column - Text Content */
.hero-content {
    max-width: 600px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--rose-200);
    border-radius: 50px;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    color: var(--rose-500);
}

.badge-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-800);
}

/* Hero Headline */
.hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--stone-800);
}

.headline-primary {
    display: block;
}

.headline-accent {
    display: block;
    background: linear-gradient(120deg, var(--rose-500), var(--rose-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

/* Hero Subtitle */
.hero-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--stone-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* Primary Button */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow:
        0 4px 0 var(--rose-700),
        var(--shadow-rose);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow:
        0 8px 0 var(--rose-700),
        0 16px 40px rgba(244, 63, 94, 0.35);
}

.btn-hero-primary:active {
    transform: translateY(-1px);
    box-shadow:
        0 2px 0 var(--rose-700),
        var(--shadow-md);
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-icon {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Secondary Button */
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: white;
    color: var(--stone-800);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: 1px solid var(--rose-200);
    border-radius: 50px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--rose-50);
    border-color: var(--rose-400);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Accessibility - Focus States for Hero Buttons */
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible {
    outline: 3px solid var(--rose-300);
    outline-offset: 3px;
}

.btn-hero-secondary .btn-icon {
    color: var(--rose-500);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-stars {
    display: flex;
    gap: 2px;
    color: var(--amber-400);
    font-size: 0.8rem;
}

.trust-icon {
    color: var(--rose-400);
    font-size: 0.9rem;
}

.trust-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone-600);
}

/* ============================================
   RIGHT COLUMN - Hero Image & Player
   ============================================ */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(2deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: rotate(0deg);
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(136, 19, 55, 0.4) 0%, transparent 50%);
}

/* Floating Mini Player */
.hero-mini-player {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 20;
}

.mini-player-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rose-100);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose-500);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mini-player-btn:hover {
    background: var(--rose-500);
    color: white;
    transform: scale(1.05);
}

.mini-player-btn.playing {
    background: var(--rose-500);
    color: white;
}

.mini-player-content {
    flex: 1;
    min-width: 0;
}

.mini-player-progress {
    height: 4px;
    background: var(--rose-100);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.mini-player-progress-fill {
    height: 100%;
    width: 33%;
    background: var(--rose-500);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.mini-player-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mini-player-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--stone-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-time {
    font-size: 0.875rem;
    color: var(--stone-500);
    flex-shrink: 0;
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--rose-400);
    font-size: 0.9rem;
    margin-top: 2rem;
}

.scroll-hint .bounce-arrow {
    animation: bounce-arrow 2s ease-in-out infinite;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 2rem;
    }

    .hero-image {
        height: 400px;
    }

    .hero-blob-1 {
        width: 300px;
        height: 300px;
    }

    .hero-blob-2 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 320px;
    }

    .trust-bar {
        justify-content: center;
        gap: 1rem;
    }

    .trust-item {
        gap: 0.35rem;
    }

    .trust-text {
        font-size: 0.8rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-image-wrapper {
        transform: none;
    }

    .hero-image {
        height: 350px;
    }

    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-blob-1,
    .hero-blob-2 {
        display: none;
    }

    .floating-element {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 5rem 0 3rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
    }

    .badge-text {
        font-size: 0.875rem;
    }

    .hero-image {
        height: 280px;
    }

    .hero-mini-player {
        left: 10px;
        right: 10px;
        padding: 0.75rem 1rem;
    }

    .mini-player-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .mini-player-title {
        font-size: 0.8rem;
    }

    .scroll-hint {
        display: none;
    }
}

/* ============================================
   ACCESSIBILITY - Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .hero-blob,
    .floating-element,
    .hero-badge,
    .scroll-hint .bounce-arrow,
    .btn-hero-primary::before {
        animation: none !important;
    }

    .btn-hero-primary:hover,
    .btn-hero-secondary:hover,
    .hero-image-wrapper:hover {
        transform: none;
    }

    .floating-element {
        display: none;
    }
}

/* ============================================
   HERO SECTION V2 - Clean Modern Design
   Based on reference screenshot
   ============================================ */

.hero-section-v2 {
    background: linear-gradient(135deg, #fff9f9 0%, #fff5f5 30%, #fffaf5 60%, #ffffff 100%);
    min-height: 100vh;
    overflow: visible;
    padding-top: 80px;
}

.hero-backdrop-v2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(253, 164, 175, 0.08) 0%, rgba(251, 191, 36, 0.05) 50%, transparent 100%);
    pointer-events: none;
}

/* Rating Badge */
.hero-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--stone-200);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.rating-stars i,
.rating-text {
    text-shadow: none;
    box-shadow: none;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 0.75rem;
}

.rating-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-700);
}

/* V2 Headline with Dancing Script */
.hero-headline-v2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--stone-900);
}

.headline-main {
    display: block;
}

.headline-cursive {
    display: inline-block;
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2.8rem, 5.5vw, 4rem);
    font-weight: 600;
    color: var(--rose-500);
    position: relative;
    margin-top: 0.25rem;
    transform: rotate(-2deg);
    padding-bottom: 0.5rem;
}

.headline-cursive::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5%;
    width: 90%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' preserveAspectRatio='none'%3E%3Cpath d='M2,8 C20,8 25,3 45,4 C65,5 75,9 95,8 C115,7 125,3 145,4 C165,5 175,9 195,7 C215,5 225,4 245,5 C265,6 280,8 298,7' stroke='%23fda4af' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat;
    background-size: 100% 100%;
}

/* V2 CTA Group */
.hero-cta-group-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

/* V2 Primary Button */
.btn-hero-primary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--rose-500);
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 1.75rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(244, 63, 94, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-primary-v2:hover {
    background: var(--rose-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 63, 94, 0.4);
}

.btn-hero-primary-v2 .btn-icon {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.btn-hero-primary-v2:hover .btn-icon {
    transform: translateX(4px);
}

/* V2 Secondary Button */
.btn-hero-secondary-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--stone-800);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary-v2:hover {
    color: var(--rose-600);
}

.btn-play-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid var(--stone-200);
    border-radius: 50%;
    color: var(--rose-500);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary-v2:hover .btn-play-circle {
    border-color: var(--rose-400);
    background: var(--rose-50);
}

/* V2 Trust Indicators */
.trust-indicators-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-indicator i {
    color: #10b981;
    font-size: 0.875rem;
}

.trust-indicator span {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stone-600);
}

/* V2 Hero Visual */
.hero-visual-v2 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container-v2 {
    position: relative;
    width: 100%;
    max-width: 520px;
}

/* Testimonial Bubble */
.hero-testimonial-bubble {
    position: absolute;
    top: -10px;
    right: -30px;
    z-index: 30;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 0.75rem 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    animation: bubble-bob 3s ease-in-out infinite;
}

@keyframes bubble-bob {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.testimonial-bubble-content {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.bubble-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--stone-900);
}

.bubble-review-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bubble-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    flex-shrink: 0;
}

.bubble-quote {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--stone-500);
    font-style: italic;
    line-height: 1.3;
}

/* V2 Image Wrapper */
.hero-image-wrapper-v2 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-image-v2 {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

/* V2 Mini Player */
.hero-mini-player-v2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 0.875rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.875rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.mini-player-album {
    flex-shrink: 0;
}

.album-art {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
}

.mini-player-details {
    flex: 1;
    min-width: 0;
}

.player-song-name {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--stone-900);
}

.player-song-type {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    color: var(--stone-500);
    margin-bottom: 0.5rem;
}

.player-waveform-mini {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 16px;
}

.waveform-bar-mini {
    width: 4px;
    height: 8px;
    background: var(--rose-400);
    border-radius: 2px;
}

.waveform-bar-mini:nth-child(1) { height: 6px; }
.waveform-bar-mini:nth-child(2) { height: 10px; }
.waveform-bar-mini:nth-child(3) { height: 14px; }
.waveform-bar-mini:nth-child(4) { height: 8px; }
.waveform-bar-mini:nth-child(5) { height: 12px; }
.waveform-bar-mini:nth-child(6) { height: 6px; }
.waveform-bar-mini:nth-child(7) { height: 10px; background: var(--stone-300); }
.waveform-bar-mini:nth-child(8) { height: 14px; background: var(--stone-300); }
.waveform-bar-mini:nth-child(9) { height: 8px; background: var(--stone-300); }
.waveform-bar-mini:nth-child(10) { height: 12px; background: var(--stone-300); }
.waveform-bar-mini:nth-child(11) { height: 6px; background: var(--stone-300); }
.waveform-bar-mini:nth-child(12) { height: 10px; background: var(--stone-300); }

.mini-player-time-v2 {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--stone-500);
    flex-shrink: 0;
}

.time-separator {
    color: var(--stone-400);
}

.mini-player-btn-v2 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rose-500);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mini-player-btn-v2:hover {
    background: var(--rose-600);
    transform: scale(1.05);
}

.mini-player-btn-v2.playing i::before {
    content: "\f04c";
}

/* V2 Hero Grid Override - better vertical balance with payment methods */
.hero-section-v2 .hero-grid {
    align-items: start;
    padding-top: 4rem;
}

.hero-section-v2 .hero-visual-v2 {
    padding-top: 2rem;
}

/* ============================================
   V2 RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero-testimonial-bubble {
        right: -10px;
        top: -5px;
    }

    .hero-image-v2 {
        height: 480px;
    }
}

@media (max-width: 768px) {
    .hero-section-v2 {
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 4rem;
    }

    .hero-section-v2 .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 0;
        align-items: center;
    }

    .hero-section-v2 .hero-content {
        text-align: center;
        order: 2;
    }

    .hero-section-v2 .hero-visual-v2 {
        order: 1;
        padding-top: 0;
    }

    .hero-rating-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-headline-v2 {
        font-size: clamp(2rem, 7vw, 2.75rem);
    }

    .headline-cursive {
        font-size: clamp(2.2rem, 8vw, 3.25rem);
        transform: rotate(-1.5deg);
    }

    .hero-cta-group-v2 {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary-v2,
    .btn-hero-secondary-v2 {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .trust-indicators-v2 {
        justify-content: center;
        gap: 1rem 1.5rem;
    }

    .hero-image-container-v2 {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-testimonial-bubble {
        right: -5px;
        top: -5px;
        max-width: 160px;
        padding: 0.5rem 0.75rem;
    }

    .bubble-label {
        font-size: 0.75rem;
    }

    .bubble-quote {
        font-size: 0.7rem;
    }

    .hero-image-v2 {
        height: 400px;
    }

    .hero-mini-player-v2 {
        left: 12px;
        right: 12px;
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-section-v2 {
        padding-top: 70px;
        padding-bottom: 3rem;
    }

    .hero-headline-v2 {
        font-size: 1.75rem;
    }

    .headline-cursive {
        font-size: 2rem;
        transform: rotate(-1deg);
    }

    .hero-image-v2 {
        height: 340px;
    }

    .hero-testimonial-bubble {
        display: none;
    }

    .mini-player-time-v2 {
        display: none;
    }

    .album-art {
        width: 40px;
        height: 40px;
    }

    .mini-player-btn-v2 {
        width: 38px;
        height: 38px;
        font-size: 0.875rem;
    }

    .trust-indicators-v2 {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

/* V2 Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .btn-hero-primary-v2:hover,
    .btn-hero-secondary-v2:hover,
    .mini-player-btn-v2:hover {
        transform: none;
    }

    .hero-testimonial-bubble {
        animation: none;
    }
}

/* ============================================
   TRUST INDICATOR - Guarantee Badge
   ============================================ */
.trust-indicator-guarantee {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    padding: 0.4rem 0.75rem;
    border-radius: 50px;
    border: 1px solid #a7f3d0;
}

.trust-indicator-guarantee i {
    color: #059669 !important;
    font-size: 1rem;
}

.trust-indicator-guarantee span {
    color: #047857 !important;
    font-weight: 600;
}

/* ============================================
   PAYMENT METHODS
   ============================================ */
.hero-payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--stone-200);
}

.payment-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--stone-500);
    white-space: nowrap;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, opacity 0.2s ease;
    opacity: 0.85;
}

.payment-logo:hover {
    transform: scale(1.1);
    opacity: 1;
}

.payment-logo svg {
    display: block;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Payment Methods Responsive */
@media (max-width: 768px) {
    .hero-payment-methods {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

    .payment-logos {
        gap: 0.5rem;
    }

    .payment-logo svg {
        transform: scale(0.9);
    }
}

@media (max-width: 480px) {
    .hero-payment-methods {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .payment-label {
        font-size: 0.75rem;
    }

    .payment-logo svg {
        transform: scale(0.8);
    }
}
