/* ============================================================
   HOMEPAGE V3 — "Van verhaal naar lied"
   A love-letter / mixtape aesthetic: handwritten notes,
   polaroids, cassettes & vinyl. Romantic Rose palette.
   All classes are prefixed with .sv- to avoid collisions.
   ============================================================ */

/* ---------- Shared ---------- */
.sv-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sv-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-500);
    margin-bottom: 0.5rem;
}

.sv-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--stone-900);
    line-height: 1.15;
    margin: 0 0 1rem;
}

.sv-section-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--stone-600);
    line-height: 1.65;
    max-width: 620px;
    margin: 0 auto;
}

/* Reveal-on-scroll (only when JS is active) */
.sv-js .sv-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.sv-js .sv-reveal.sv-in {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Buttons ---------- */

/* style.css ships a global `button { border-radius: 5px !important }`
   (admin styling block); reclaim the circles for this page's players. */
.sv-cassette-btn,
.sv-artifact-4 .inspiration-play-btn,
.sv-samples .sample-play-btn,
.sv-testimonials .testimonial-play-btn {
    border-radius: 50% !important;
}

.sv-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.1rem 2.2rem;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose-500) 0%, var(--rose-600) 100%);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 34px -10px rgba(225, 29, 72, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: visible;
}

.sv-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 44px -10px rgba(225, 29, 72, 0.55);
    color: #fff;
}

.sv-btn-primary .sv-btn-arrow {
    transition: transform 0.25s ease;
}

.sv-btn-primary:hover .sv-btn-arrow {
    transform: translateX(4px);
}

.sv-btn-primary .price-original {
    text-decoration: line-through;
    opacity: 0.7;
    font-weight: 500;
    margin: 0 0.15rem;
}

.sv-btn-primary .discount-badge {
    position: absolute;
    top: -12px;
    right: -10px;
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: var(--stone-900);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.6rem;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    transform: rotate(4deg);
    white-space: nowrap;
}

.sv-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.05rem 1.8rem;
    border-radius: 999px;
    border: 2px solid var(--rose-200);
    background: rgba(255, 255, 255, 0.7);
    color: var(--stone-800);
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.sv-btn-ghost i {
    color: var(--rose-500);
}

.sv-btn-ghost:hover {
    border-color: var(--rose-400);
    background: #fff;
    transform: translateY(-2px);
    color: var(--stone-900);
}

/* ============================================================
   1. HERO
   ============================================================ */
.sv-hero {
    position: relative;
    padding: 130px 0 0;
    background:
        radial-gradient(ellipse 60% 50% at 12% 8%, rgba(255, 228, 230, 0.9) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 92% 18%, rgba(254, 243, 199, 0.75) 0%, transparent 60%),
        radial-gradient(ellipse 55% 45% at 75% 90%, rgba(255, 228, 230, 0.55) 0%, transparent 65%),
        linear-gradient(180deg, #fffbfb 0%, #fff7f5 60%, #fffdfa 100%);
    overflow: hidden;
}

.sv-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
    padding-top: 1.5rem;
    padding-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}

/* Floating music notes */
.sv-hero-notes span {
    position: absolute;
    font-family: 'Playfair Display', serif;
    color: var(--rose-300);
    opacity: 0.5;
    animation: sv-float 9s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.sv-hero-notes span:nth-child(1) { top: 18%; left: 4%;  font-size: 2rem;    animation-delay: 0s; }
.sv-hero-notes span:nth-child(2) { top: 66%; left: 45%; font-size: 1.5rem;  animation-delay: 2.2s; color: var(--amber-400); }
.sv-hero-notes span:nth-child(3) { top: 10%; left: 55%; font-size: 1.7rem;  animation-delay: 4s; }
.sv-hero-notes span:nth-child(4) { top: 75%; left: 8%;  font-size: 1.4rem;  animation-delay: 5.5s; }

@keyframes sv-float {
    0%, 100% { transform: translateY(0) rotate(-6deg); }
    50%      { transform: translateY(-22px) rotate(8deg); }
}

/* --- Left column --- */
.sv-rating-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--rose-100);
    box-shadow: 0 4px 16px rgba(244, 63, 94, 0.08);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    margin-bottom: 1.4rem;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--stone-700);
    transition: transform 0.2s ease;
}

.sv-rating-chip:hover { transform: translateY(-2px); color: var(--stone-900); }

.sv-rating-chip .sv-stars {
    color: var(--amber-400);
    font-size: 0.78rem;
    letter-spacing: 1px;
}

.sv-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4.1rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--stone-900);
    margin: 0 0 1.4rem;
}

.sv-headline .sv-headline-line {
    display: block;
}

.sv-headline .sv-accent {
    position: relative;
    display: inline-block;
    font-family: 'Caveat', cursive;
    font-style: normal;
    font-weight: 700;
    font-size: 1.18em;
    line-height: 1;
    color: var(--rose-600);
    padding: 0 0.1em;
}

.sv-accent svg {
    position: absolute;
    left: 0;
    bottom: -0.22em;
    width: 100%;
    height: 0.35em;
    overflow: visible;
}

.sv-accent svg path {
    stroke: var(--amber-400);
    stroke-width: 7;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: sv-draw 1.2s ease-out 0.5s forwards;
}

@keyframes sv-draw {
    to { stroke-dashoffset: 0; }
}

.sv-hero-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 1.18rem;
    line-height: 1.65;
    color: var(--stone-600);
    max-width: 500px;
    margin: 0 0 2rem;
}

.sv-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.3rem;
}

.sv-delivery-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--stone-600);
    margin: 0 0 1.1rem;
    /* Reserve the line's height before JS fills in the delivery date (CLS) */
    min-height: 1.5em;
}

.sv-delivery-note i { color: var(--rose-500); }
.sv-delivery-note strong { color: var(--stone-800); }

.sv-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.sv-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--stone-600);
}

.sv-trust-item i {
    color: #22c55e;
    font-size: 0.85rem;
}

.sv-payments {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.sv-payments span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: var(--stone-400);
}

.sv-payments img {
    height: 22px;
    width: auto;
    opacity: 0.75;
    filter: grayscale(20%);
}

/* --- Right column: photo + note + cassette player --- */
.sv-hero-stage {
    position: relative;
    padding: 1.5rem 0 3.5rem;
}

.sv-photo-card {
    position: relative;
    margin: 0 auto;
    max-width: 470px;
    background: #fff;
    padding: 12px 12px 14px;
    border-radius: 6px;
    box-shadow: 0 30px 60px -18px rgba(136, 19, 55, 0.3);
    transform: rotate(2.2deg);
    transition: transform 0.4s ease;
}

.sv-photo-card:hover { transform: rotate(0.8deg) translateY(-4px); }

.sv-photo-card img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
}

.sv-tape {
    position: absolute;
    width: 110px;
    height: 34px;
    background: rgba(253, 230, 138, 0.75);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(1px);
    z-index: 3;
}

.sv-tape-l { top: -14px; left: -28px;  transform: rotate(-38deg); }
.sv-tape-r { top: -12px; right: -30px; transform: rotate(35deg); }

/* Handwritten testimonial note */
.sv-note-bubble {
    position: absolute;
    top: -8px;
    left: -18px;
    z-index: 4;
    background: #fffdf5;
    border: 1px solid var(--amber-200);
    border-radius: 4px 14px 14px 14px;
    box-shadow: 0 12px 30px -8px rgba(136, 19, 55, 0.25);
    padding: 0.7rem 1rem 0.6rem;
    transform: rotate(-5deg);
    max-width: 210px;
    animation: sv-bob 6s ease-in-out infinite;
}

@keyframes sv-bob {
    0%, 100% { transform: rotate(-5deg) translateY(0); }
    50%      { transform: rotate(-4deg) translateY(-7px); }
}

.sv-note-bubble .sv-note-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 0.15rem;
}

.sv-note-bubble .sv-note-quote {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--stone-800);
}

/* Cassette-style hero player */
.sv-cassette {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) rotate(-1.5deg);
    width: min(430px, 96%);
    background: linear-gradient(180deg, #ffffff 0%, #fff8f8 100%);
    border: 1px solid var(--rose-100);
    border-radius: 18px;
    box-shadow: 0 24px 50px -14px rgba(136, 19, 55, 0.35);
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    z-index: 5;
}

.sv-cassette-btn {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px -6px rgba(225, 29, 72, 0.55);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sv-cassette-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 28px -6px rgba(225, 29, 72, 0.6);
}

.sv-cassette-btn.playing {
    animation: sv-pulse-ring 1.8s ease-out infinite;
}

@keyframes sv-pulse-ring {
    0%   { box-shadow: 0 10px 22px -6px rgba(225, 29, 72, 0.55), 0 0 0 0 rgba(244, 63, 94, 0.35); }
    100% { box-shadow: 0 10px 22px -6px rgba(225, 29, 72, 0.55), 0 0 0 18px rgba(244, 63, 94, 0); }
}

.sv-cassette-info {
    flex: 1;
    min-width: 0;
}

.sv-cassette-title {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--stone-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sv-cassette-sub {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--rose-500);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.sv-progress-track {
    height: 4px;
    background: var(--rose-100);
    border-radius: 999px;
    overflow: hidden;
}

.sv-progress-track .sv-progress-fill {
    display: block;
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--rose-400), var(--rose-600));
    border-radius: 999px;
    transition: width 0.15s linear;
}

.sv-cassette-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.35rem;
    flex-shrink: 0;
}

.sv-cassette-time {
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
    color: var(--stone-500);
}

/* Equalizer bars — animate only while playing */
.sv-eq {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
}

.sv-eq span {
    width: 4px;
    height: 6px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--rose-400), var(--rose-600));
    transform-origin: bottom;
}

.sv-cassette:has(.sv-cassette-btn.playing) .sv-eq span {
    animation: sv-eq-bounce 0.9s ease-in-out infinite;
}

.sv-eq span:nth-child(1) { animation-delay: 0s; }
.sv-eq span:nth-child(2) { animation-delay: 0.18s; }
.sv-eq span:nth-child(3) { animation-delay: 0.36s; }
.sv-eq span:nth-child(4) { animation-delay: 0.1s; }
.sv-eq span:nth-child(5) { animation-delay: 0.28s; }

@keyframes sv-eq-bounce {
    0%, 100% { height: 6px; }
    50%      { height: 20px; }
}

/* --- Occasions marquee --- */
.sv-marquee {
    position: relative;
    z-index: 2;
    border-top: 1px dashed var(--rose-200);
    border-bottom: 1px dashed var(--rose-200);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    overflow: hidden;
    padding: 0.85rem 0;
}

.sv-marquee-track {
    display: flex;
    gap: 2.6rem;
    width: max-content;
    animation: sv-marquee-scroll 36s linear infinite;
}

.sv-marquee:hover .sv-marquee-track { animation-play-state: paused; }

@keyframes sv-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.sv-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--stone-600);
    white-space: nowrap;
}

.sv-marquee-item::before {
    content: '♪';
    color: var(--rose-400);
    font-size: 1rem;
}

/* ============================================================
   2. PROOF STRIP
   ============================================================ */
.sv-proof {
    background: #fff;
    padding: 2.8rem 0;
    border-bottom: 1px solid var(--stone-100);
}

.sv-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.sv-proof-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--stone-900);
    line-height: 1.1;
}

.sv-proof-value i {
    font-size: 1.3rem;
    color: var(--amber-400);
    vertical-align: 0.2em;
    margin-right: 0.25rem;
}

.sv-proof-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    color: var(--stone-500);
    margin-top: 0.3rem;
}

/* ============================================================
   3. HOW IT WORKS — "Van verhaal naar lied"
   ============================================================ */
.sv-steps {
    position: relative;
    padding: 6rem 0 5rem;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 228, 230, 0.5) 0%, transparent 45%),
        radial-gradient(circle at 8% 70%, rgba(254, 243, 199, 0.4) 0%, transparent 45%),
        var(--stone-50);
    scroll-margin-top: 80px;
    overflow: hidden;
}

.sv-steps-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

/* Neutralize the global .highlight gradient/drop-shadow from style.css */
.sv-steps-header .highlight {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--rose-600) !important;
    background-clip: unset !important;
    filter: none !important;
    color: var(--rose-600);
    font-weight: 600;
}

.sv-steps-track {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
}

/* Central dashed spine (desktop) */
.sv-steps-track::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 60px;
    left: 50%;
    border-left: 2px dashed var(--rose-200);
    transform: translateX(-50%);
}

.sv-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 4.5rem;
}

.sv-step:last-of-type { margin-bottom: 3rem; }

/* Node on the spine */
.sv-step::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--rose-500);
    border: 4px solid #fff;
    box-shadow: 0 0 0 3px var(--rose-200);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.sv-step-copy {
    position: relative;
    padding: 0 1rem;
}

.sv-step:nth-child(even) .sv-step-copy   { order: 2; }
.sv-step:nth-child(even) .sv-step-visual { order: 1; }

.sv-step-badge {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose-600);
    background: var(--rose-100);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    margin-bottom: 0.9rem;
}

.sv-step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--stone-900);
    margin: 0 0 0.75rem;
}

.sv-step-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--stone-600);
    margin: 0;
}

.sv-step-text em { color: var(--rose-600); font-style: italic; }

/* --- Step 1 artifact: video polaroid + handwritten note --- */
.sv-artifact-1 { position: relative; padding-bottom: 3.5rem; }

.sv-video-card {
    position: relative;
    background: #fff;
    padding: 10px 10px 12px;
    border-radius: 6px;
    box-shadow: 0 22px 44px -14px rgba(136, 19, 55, 0.28);
    transform: rotate(-2deg);
    max-width: 400px;
    margin: 0 auto;
}

.sv-video-card video {
    display: block;
    width: 100%;
    border-radius: 3px;
}

.sv-input-note {
    position: absolute;
    right: -6px;
    bottom: 0;
    max-width: 250px;
    background: #fffdf5;
    border: 1px solid var(--amber-200);
    border-radius: 3px 12px 12px 12px;
    box-shadow: 0 14px 28px -10px rgba(136, 19, 55, 0.25);
    padding: 0.8rem 1rem;
    transform: rotate(2.5deg);
    z-index: 2;
}

.sv-input-note .sv-note-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--amber-600);
    margin-bottom: 0.2rem;
}

.sv-input-note p {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
    color: var(--stone-700);
    margin: 0;
}

/* --- Step 2 artifact: cassette + genre labels --- */
.sv-artifact-2 {
    background: #fff;
    border: 1px solid var(--rose-100);
    border-radius: 20px;
    box-shadow: 0 20px 44px -16px rgba(136, 19, 55, 0.2);
    padding: 1.6rem;
    transform: rotate(1.2deg);
}

.sv-cassette-illu {
    position: relative;
    background: linear-gradient(180deg, var(--stone-800), var(--stone-900));
    border-radius: 12px;
    padding: 1rem 1.2rem 1.2rem;
    margin-bottom: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sv-cassette-label {
    background: repeating-linear-gradient(0deg, #fffdf5 0 22px, #ffeef0 22px 23px);
    border-radius: 6px;
    padding: 0.5rem 0.9rem 0.4rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.sv-cassette-label span {
    font-family: 'Caveat', cursive;
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--stone-800);
}

.sv-reels {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
}

.sv-reel {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, var(--stone-900) 0 8px, transparent 8px),
        repeating-conic-gradient(var(--stone-500) 0 12deg, var(--stone-700) 12deg 60deg);
    border: 5px solid var(--stone-700);
    animation: sv-spin 3.5s linear infinite;
}

@keyframes sv-spin { to { transform: rotate(360deg); } }

.sv-genre-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.sv-genre-pill {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--stone-600);
    background: var(--stone-100);
    border: 1px solid var(--stone-200);
    border-radius: 999px;
    padding: 0.4rem 0.95rem;
    transition: transform 0.2s ease;
}

.sv-genre-pill:hover { transform: translateY(-2px); }

.sv-genre-pill.active {
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    border-color: var(--rose-500);
    color: #fff;
    box-shadow: 0 6px 14px -4px rgba(225, 29, 72, 0.45);
}

.sv-genre-pill.active::before { content: '♪ '; }

/* --- Step 3 artifact: lyric sheet --- */
.sv-artifact-3 {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    background:
        repeating-linear-gradient(0deg, transparent 0 30px, rgba(244, 63, 94, 0.08) 30px 31px),
        #fffdfa;
    border: 1px solid var(--stone-200);
    border-radius: 4px;
    box-shadow: 0 20px 44px -16px rgba(136, 19, 55, 0.25);
    padding: 1.5rem 1.6rem 1.4rem 2.4rem;
    transform: rotate(-1.4deg);
}

.sv-artifact-3::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.7rem;
    border-left: 2px solid rgba(244, 63, 94, 0.25);
}

.sv-lyrics-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}

.sv-lyrics-head span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stone-400);
}

.sv-lyrics-head .sv-lyrics-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: sv-blink 2s ease-in-out infinite;
}

@keyframes sv-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.4; }
}

.sv-artifact-3 p {
    font-family: 'Caveat', cursive;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 30px;
    color: var(--stone-700);
    margin: 0;
}

.sv-artifact-3 p.sv-lyrics-more {
    color: var(--stone-400);
    font-size: 1.2rem;
}

.sv-artifact-3 mark {
    background: linear-gradient(180deg, transparent 55%, var(--rose-200) 55%);
    color: var(--rose-700);
    font-weight: 700;
}

.sv-artifact-3 mark.sv-mark-green {
    background: linear-gradient(180deg, transparent 55%, #bbf7d0 55%);
    color: #15803d;
}

.sv-lyrics-stamp {
    position: absolute;
    right: -16px;
    bottom: -16px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px -6px rgba(22, 163, 74, 0.5);
    transform: rotate(8deg);
    border: 3px solid #fff;
}

/* --- Step 4 artifact: finished track (dark player) --- */
.sv-artifact-4 {
    /* .music-player-final (kept for the audio JS) sets display:flex in style.css */
    display: block;
    background: linear-gradient(150deg, var(--stone-900) 0%, #2c1620 100%);
    border-radius: 20px;
    box-shadow: 0 24px 50px -16px rgba(28, 25, 23, 0.55);
    padding: 1.6rem;
    transform: rotate(1deg);
    cursor: pointer;
}

.sv-player-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.sv-artifact-4 .inspiration-play-btn {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px -6px rgba(225, 29, 72, 0.6);
    transition: transform 0.2s ease;
}

.sv-artifact-4 .inspiration-play-btn:hover { transform: scale(1.08); }

.sv-player-titles { min-width: 0; }

.sv-player-song {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.sv-player-meta {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
}

.sv-wave {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 44px;
    margin-bottom: 1.1rem;
}

.sv-wave span {
    flex: 1;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.22);
    min-height: 6px;
}

.sv-wave span.on {
    background: linear-gradient(180deg, var(--rose-400), var(--rose-600));
}

.sv-artifact-4:has(.inspiration-play-btn.playing) .sv-wave span {
    animation: sv-wave-dance 1s ease-in-out infinite;
}

.sv-artifact-4:has(.inspiration-play-btn.playing) .sv-wave span:nth-child(odd)  { animation-delay: 0.15s; }
.sv-artifact-4:has(.inspiration-play-btn.playing) .sv-wave span:nth-child(3n)   { animation-delay: 0.3s; }
.sv-artifact-4:has(.inspiration-play-btn.playing) .sv-wave span:nth-child(4n)   { animation-delay: 0.45s; }

@keyframes sv-wave-dance {
    0%, 100% { transform: scaleY(0.6); }
    50%      { transform: scaleY(1.25); }
}

.sv-share-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.sv-share-row span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-right: 0.2rem;
}

.sv-share-chip {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.sv-share-chip.wa { background: #25d366; }
.sv-share-chip.mail { background: var(--rose-500); }

/* Steps CTA */
.sv-steps-cta {
    text-align: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

.sv-steps-cta .sv-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.92rem;
    color: var(--stone-600);
}

.sv-steps-cta .sv-guarantee i { color: #22c55e; }

/* ============================================================
   4. SAMPLES — the listening room (dark)
   ============================================================ */
.sv-samples {
    position: relative;
    padding: 6rem 0;
    background:
        radial-gradient(ellipse 55% 60% at 80% 20%, rgba(159, 18, 57, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 45% 50% at 10% 85%, rgba(190, 18, 60, 0.22) 0%, transparent 60%),
        var(--stone-900);
    overflow: hidden;
    scroll-margin-top: 80px;
}

.sv-samples-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.sv-samples .sv-kicker { color: var(--rose-300); }

.sv-samples .sv-section-title { color: #fff; }

.sv-samples .sv-section-sub {
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 2.2rem;
}

.sv-sample-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* Refine the shared .sample-player-row look inside this section */
.sv-samples .sample-player-row {
    border-radius: 16px;
    padding: 1.05rem 1.3rem;
}

.sv-samples .sample-play-btn {
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    border-color: transparent;
    width: 48px;
    height: 48px;
    box-shadow: 0 8px 20px -6px rgba(225, 29, 72, 0.55);
}

.sv-samples .sample-player-title { font-family: 'Outfit', sans-serif; }

.sv-samples-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.6rem;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--amber-200);
    text-decoration: none;
    transition: gap 0.2s ease, color 0.2s ease;
}

.sv-samples-link:hover { gap: 0.9rem; color: var(--amber-400); }

/* Vinyl */
.sv-vinyl-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
}

.sv-vinyl {
    position: relative;
    width: min(340px, 78vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        repeating-radial-gradient(circle at center, #111 0 2px, #1e1c1a 2px 4px);
    box-shadow:
        0 0 0 10px rgba(244, 63, 94, 0.12),
        0 30px 70px -20px rgba(0, 0, 0, 0.8);
    animation: sv-spin 14s linear infinite;
}

.sv-vinyl::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, transparent 35%, transparent 65%, rgba(255, 255, 255, 0.06) 100%);
}

.sv-vinyl img {
    position: absolute;
    inset: 30%;
    width: 40%;
    height: 40%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--rose-600);
}

.sv-vinyl::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--stone-50);
    transform: translate(-50%, -50%);
    z-index: 2;
}

/* Quote card (JS updates its text) — override old absolute styling */
.sv-samples .samples-quote-card {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 360px;
    animation: none;
    background: #fffdf5;
    border-radius: 4px 16px 16px 16px;
    transform: rotate(-1.6deg);
    box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.5);
}

.sv-samples .samples-quote-card p {
    font-family: 'Caveat', cursive;
    font-size: 1.25rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.35;
    color: var(--stone-700);
}

.sv-samples .samples-quote-card cite {
    font-family: 'Outfit', sans-serif;
    color: var(--rose-600);
}

/* ============================================================
   5. WHY A SONG — comparison + value stack
   ============================================================ */
.sv-why {
    padding: 6rem 0;
    background:
        radial-gradient(ellipse 50% 40% at 90% 10%, rgba(254, 243, 199, 0.55) 0%, transparent 60%),
        linear-gradient(180deg, #fffdfa 0%, #fff7f6 100%);
}

.sv-why-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sv-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 980px;
    margin: 0 auto 4rem;
    align-items: stretch;
}

.sv-compare-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--stone-200);
    border-radius: 18px;
    padding: 2rem 1.6rem;
    text-align: center;
    box-shadow: 0 8px 24px -12px rgba(28, 25, 23, 0.12);
}

.sv-compare-card .sv-compare-emoji {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 0.8rem;
}

.sv-compare-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--stone-800);
    margin: 0 0 0.35rem;
}

.sv-compare-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--stone-500);
    margin-bottom: 0.6rem;
}

.sv-compare-card p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--stone-500);
    margin: 0;
}

.sv-compare-card.sv-muted { opacity: 0.85; }

.sv-compare-card.sv-winner {
    background: linear-gradient(180deg, #fff 0%, var(--rose-50) 100%);
    border: 2px solid var(--rose-400);
    box-shadow: 0 24px 50px -16px rgba(225, 29, 72, 0.3);
    transform: scale(1.05);
    z-index: 1;
}

.sv-compare-card.sv-winner .sv-compare-price { color: var(--rose-600); }
.sv-compare-card.sv-winner p { color: var(--stone-600); }

.sv-winner-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    background: linear-gradient(135deg, var(--amber-400), var(--amber-500));
    color: var(--stone-900);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    white-space: nowrap;
    box-shadow: 0 6px 14px -4px rgba(245, 158, 11, 0.5);
}

/* Value panel */
.sv-value-panel {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--rose-100);
    border-radius: 24px;
    box-shadow: 0 30px 60px -24px rgba(136, 19, 55, 0.25);
    overflow: hidden;
}

.sv-value-list {
    padding: 2.6rem 2.4rem;
}

.sv-value-list h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--stone-900);
    margin: 0 0 1.4rem;
}

.sv-value-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.sv-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--stone-700);
}

.sv-value-list li i {
    color: #22c55e;
    margin-top: 0.22rem;
    font-size: 0.9rem;
}

.sv-value-price {
    position: relative;
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 255, 255, 0.14) 0%, transparent 45%),
        linear-gradient(160deg, var(--rose-600) 0%, var(--rose-800) 100%);
    color: #fff;
    padding: 2.6rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.4rem;
}

.sv-value-price .sv-price-label {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--rose-100);
}

.sv-value-price .sv-price-big {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.sv-value-price .sv-price-old {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    text-decoration: line-through;
    opacity: 0.65;
}

.sv-value-price .sv-price-once {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    opacity: 0.75;
    margin-bottom: 1.2rem;
}

.sv-value-price .sv-btn-primary {
    background: #fff;
    color: var(--rose-700);
    box-shadow: 0 14px 30px -10px rgba(0, 0, 0, 0.35);
}

.sv-value-price .sv-btn-primary:hover { color: var(--rose-800); }

.sv-value-price .sv-guarantee-seal {
    margin-top: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    border: 1px dashed rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    padding: 0.45rem 1rem;
}

/* ============================================================
   6. TESTIMONIALS — polaroid wall
   ============================================================ */
.sv-testimonials {
    padding: 6rem 0;
    background: #fff;
    scroll-margin-top: 80px;
}

.sv-testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.sv-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1060px;
    margin: 0 auto;
}

.sv-testimonial-card {
    position: relative;
    background: #fffdfb;
    border: 1px solid var(--stone-200);
    border-radius: 6px;
    padding: 1.8rem 1.6rem 1.6rem;
    box-shadow: 0 16px 36px -16px rgba(136, 19, 55, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sv-testimonial-card:nth-child(1) { transform: rotate(-1.6deg); }
.sv-testimonial-card:nth-child(2) { transform: rotate(1.1deg) translateY(10px); }
.sv-testimonial-card:nth-child(3) { transform: rotate(-0.8deg); }

.sv-testimonial-card:hover {
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 24px 48px -16px rgba(136, 19, 55, 0.3);
}

.sv-testimonial-card .sv-tape {
    top: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    width: 90px;
    height: 28px;
}

.sv-testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
}

.sv-testimonial-who {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
}

.sv-avatar {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
}

.sv-testimonial-name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.98rem;
    color: var(--stone-800);
}

.sv-testimonial-occasion {
    display: block;
    font-family: 'Caveat', cursive;
    font-size: 1.05rem;
    color: var(--rose-500);
    line-height: 1.1;
}

.sv-testimonial-stars {
    color: var(--amber-400);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
}

.sv-testimonial-quote {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--stone-600);
    margin: 0 0 1.1rem;
}

.sv-testimonial-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--rose-500);
    text-decoration: none;
}

.sv-testimonial-link:hover { color: var(--rose-600); text-decoration: underline; }

/* ============================================================
   7. FAQ
   ============================================================ */
.sv-faq {
    padding: 5.5rem 0;
    background: var(--stone-50);
    scroll-margin-top: 80px;
}

.sv-faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sv-faq .faq-item-simple {
    border: 1px solid var(--rose-100);
    border-radius: 14px;
    box-shadow: 0 4px 14px -6px rgba(136, 19, 55, 0.08);
    transition: box-shadow 0.25s ease;
}

.sv-faq .faq-item-simple.active {
    box-shadow: 0 12px 28px -10px rgba(136, 19, 55, 0.16);
    border-color: var(--rose-200);
}

.sv-faq .faq-question {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--stone-800);
}

.sv-faq-more {
    text-align: center;
    margin-top: 2.4rem;
}

.sv-faq-more a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--rose-600);
    text-decoration: none;
    transition: gap 0.2s ease;
}

.sv-faq-more a:hover { gap: 0.9rem; }

/* ============================================================
   8. FINAL CTA
   ============================================================ */
.sv-cta {
    position: relative;
    padding: 6.5rem 0;
    background:
        radial-gradient(ellipse 60% 55% at 20% 20%, rgba(159, 18, 57, 0.45) 0%, transparent 60%),
        radial-gradient(ellipse 45% 45% at 85% 80%, rgba(190, 18, 60, 0.3) 0%, transparent 60%),
        var(--stone-900);
    overflow: hidden;
    text-align: center;
}

.sv-cta-notes span {
    position: absolute;
    color: rgba(253, 164, 175, 0.3);
    font-size: 1.8rem;
    animation: sv-float 10s ease-in-out infinite;
    pointer-events: none;
}

.sv-cta-notes span:nth-child(1) { top: 15%; left: 8%; }
.sv-cta-notes span:nth-child(2) { top: 65%; left: 15%; animation-delay: 2s; font-size: 1.3rem; }
.sv-cta-notes span:nth-child(3) { top: 20%; right: 10%; animation-delay: 3.5s; }
.sv-cta-notes span:nth-child(4) { top: 70%; right: 18%; animation-delay: 5s; font-size: 1.4rem; }

.sv-cta .sv-kicker { color: var(--rose-300); justify-content: center; }

.sv-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.1rem, 4.5vw, 3.4rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin: 0 auto 1.1rem;
    max-width: 760px;
}

.sv-cta p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.12rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    max-width: 620px;
    margin: 0 auto 2rem;
}

.sv-cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.6rem;
    margin-bottom: 2.4rem;
}

.sv-cta-features .sv-trust-item { color: rgba(255, 255, 255, 0.8); }

.sv-cta .sv-btn-primary {
    font-size: 1.2rem;
    padding: 1.25rem 2.8rem;
}

.sv-cta-small {
    display: block;
    margin-top: 1.2rem;
    font-family: 'Caveat', cursive;
    font-size: 1.35rem;
    color: var(--rose-200);
}

/* ============================================================
   9. STICKY MOBILE CTA BAR
   ============================================================ */
.sv-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--rose-100);
    box-shadow: 0 -8px 30px rgba(136, 19, 55, 0.14);
    transform: translateY(110%);
    transition: transform 0.35s ease;
}

.sv-sticky.sv-show { transform: translateY(0); }

.sv-sticky-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sv-sticky-label {
    font-family: 'Caveat', cursive;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--rose-600);
    line-height: 1;
}

.sv-sticky-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--stone-900);
}

.sv-sticky-price .price-original {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--stone-400);
    text-decoration: line-through;
    margin-right: 0.3rem;
}

.sv-sticky .sv-btn-primary {
    padding: 0.8rem 1.5rem;
    font-size: 0.98rem;
    flex-shrink: 0;
}

@media (min-width: 821px) {
    .sv-sticky { display: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .sv-hero-grid { gap: 2.5rem; }
    .sv-note-bubble { max-width: 180px; left: -6px; }
    .sv-samples-grid { gap: 3rem; }
}

@media (max-width: 820px) {
    .sv-hero { padding-top: 105px; }

    .sv-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-bottom: 3.5rem;
    }

    .sv-hero-copy { text-align: center; }
    .sv-hero-sub { margin-left: auto; margin-right: auto; }
    .sv-hero-ctas { justify-content: center; }
    .sv-delivery-note { justify-content: center; }
    .sv-trust-row { justify-content: center; }
    .sv-payments { justify-content: center; }
    .sv-hero-notes { display: none; }

    .sv-hero-stage {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .sv-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem 1rem;
    }

    .sv-proof-value { font-size: 1.9rem; }

    /* Steps stack */
    .sv-steps { padding: 4.5rem 0 4rem; }
    .sv-steps-track::before { display: none; }
    .sv-step::after { display: none; }

    .sv-step {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        margin-bottom: 4rem;
    }

    .sv-step:nth-child(even) .sv-step-copy   { order: 1; }
    .sv-step:nth-child(even) .sv-step-visual { order: 2; }

    .sv-samples { padding: 4.5rem 0; }

    .sv-samples-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .sv-vinyl-zone { order: 2; }

    .sv-compare-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 1.2rem;
        margin-bottom: 3rem;
    }

    .sv-compare-card.sv-winner { transform: scale(1); }

    .sv-value-panel { grid-template-columns: 1fr; }

    .sv-value-list { padding: 2.2rem 1.8rem 1.6rem; }

    .sv-testimonial-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        gap: 1.8rem;
    }

    .sv-testimonial-card:nth-child(2) { transform: rotate(1.1deg); }

    .sv-why, .sv-testimonials { padding: 4.5rem 0; }
    .sv-faq { padding: 4rem 0; }
    .sv-cta { padding: 5rem 0 6rem; }
    .sv-cta-notes { display: none; }

    /* Leave room for the sticky bar */
    body { padding-bottom: 0; }
}

@media (max-width: 480px) {
    .sv-headline { font-size: 2.35rem; }
    .sv-hero-sub { font-size: 1.05rem; }

    .sv-btn-primary { width: 100%; }
    .sv-btn-ghost { width: 100%; justify-content: center; }

    .sv-cassette {
        transform: translateX(-50%) rotate(0deg);
        padding: 0.75rem 0.9rem;
        gap: 0.7rem;
    }

    .sv-cassette-btn { width: 46px; height: 46px; }
    .sv-eq { display: none; }

    .sv-note-bubble {
        max-width: 165px;
        top: -18px;
        padding: 0.55rem 0.8rem 0.5rem;
    }

    .sv-note-bubble .sv-note-quote { font-size: 1.1rem; }

    .sv-input-note { max-width: 200px; right: 0; }

    .sv-marquee-item { font-size: 1.15rem; }

    .sv-artifact-3 { padding: 1.2rem 1.2rem 1.2rem 2.1rem; }
    .sv-artifact-3 p { font-size: 1.25rem; }

    .sv-value-price { padding: 2.2rem 1.5rem; }
    .sv-value-price .sv-price-big { font-size: 3.2rem; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .sv-hero-notes span,
    .sv-cta-notes span,
    .sv-note-bubble,
    .sv-reel,
    .sv-vinyl,
    .sv-marquee-track,
    .sv-eq span,
    .sv-wave span,
    .sv-cassette-btn.playing,
    .sv-accent svg path,
    .sv-lyrics-head .sv-lyrics-dot {
        animation: none !important;
    }

    .sv-js .sv-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
