/* =========================================================
   MÉTODO DQD — Dança Que Derrete
   Identidade visual: escuro elegante + magenta/coral vibrante
   + dourado premium. Nicho: dança / fitness / transformação.
   ========================================================= */

/* ================== TOKENS ================== */
:root {
    /* Paleta */
    --bg-0: #0B0416;
    --bg-1: #12081F;
    --bg-2: #1C0E33;
    --bg-3: #2A1445;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-2: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.10);

    --primary: #FF2E63;
    --primary-2: #FF5B8A;
    --primary-glow: rgba(255, 46, 99, 0.45);
    --secondary: #B4127A;
    --accent: #FFB800;
    --accent-2: #FFD966;
    --success: #22C55E;
    --danger: #EF4444;

    --text: #F6F1FA;
    --text-2: #C8B8D6;
    --text-3: #8E7FA0;
    --text-on-light: #1A0F2E;

    --gradient-primary: linear-gradient(135deg, #FF2E63 0%, #B4127A 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FF2E63 60%, #B4127A 100%);
    --gradient-gold: linear-gradient(135deg, #FFD966 0%, #FFB800 100%);
    --gradient-page: radial-gradient(at 10% 0%, #2A1445 0%, transparent 45%),
                     radial-gradient(at 90% 30%, #4A0E4E 0%, transparent 45%),
                     radial-gradient(at 50% 100%, #1C0E33 0%, transparent 50%),
                     #0B0416;

    /* Tipografia */
    --font-display: 'Bebas Neue', 'Poppins', system-ui, sans-serif;
    --font-body: 'Poppins', system-ui, -apple-system, 'Segoe UI', sans-serif;

    /* Espaço */
    --container: 1180px;
    --radius: 18px;
    --radius-lg: 28px;
    --radius-sm: 12px;

    /* Sombras */
    --shadow-lg: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
    --shadow-md: 0 12px 40px -12px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 60px -12px var(--primary-glow);

    /* Motion */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in: cubic-bezier(0.55, 0, 0.55, 0.2);
}

/* ================== RESET ================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    background: var(--gradient-page);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.55;
    min-height: 100vh;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; color: var(--text); }
em { font-style: normal; opacity: 0.85; }

::selection { background: var(--primary); color: #fff; }

/* ================== BG DECOR ================== */
.bg-decor {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
    animation: floaty 18s ease-in-out infinite;
}
.orb-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--primary), transparent 65%);
    top: -100px; left: -100px;
}
.orb-2 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, var(--secondary), transparent 65%);
    top: 40%; right: -150px;
    animation-delay: -6s;
}
.orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--accent), transparent 65%);
    bottom: 5%; left: 30%;
    opacity: 0.15;
    animation-delay: -12s;
}
@keyframes floaty {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -40px) scale(1.08); }
}

/* ================== CONTAINER ================== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 32px);
}

/* ================== HERO ================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(28px, 6vh, 64px) 0 clamp(40px, 8vh, 80px);
    position: relative;
}
.hero-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(18px, 3vh, 28px);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-2);
    backdrop-filter: blur(10px);
    animation: fadeUp .8s var(--ease) both;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.35); opacity: 0.6; }
}

.headline {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.2rem, 6.5vw, 4.8rem);
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    max-width: 20ch;
    animation: fadeUp .9s .1s var(--ease) both;
}
.hl-highlight {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    position: relative;
}
.hl-highlight::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 4px;
    opacity: 0.4;
}
.hl-gold {
    color: var(--accent);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.subtitle {
    font-size: clamp(1rem, 1.9vw, 1.15rem);
    color: var(--text-2);
    line-height: 1.65;
    max-width: 62ch;
    animation: fadeUp .9s .2s var(--ease) both;
}
.subtitle strong { color: var(--text); }
.subtitle-strong {
    display: block;
    margin-top: 12px;
    color: var(--primary-2);
    font-weight: 700;
}

.hero-hint {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-3);
    padding: 10px 18px;
    background: var(--surface);
    border-radius: 999px;
    border: 1px solid var(--border);
    animation: fadeUp .9s .5s var(--ease) both;
}
.hint-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================== VIDEO (formato Reels 9:16) ================== */
.video-wrap {
    width: 100%;
    max-width: 420px;
    margin: 8px auto 0;
    animation: fadeUp 1s .3s var(--ease) both;
}
.video-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid rgba(255, 46, 99, 0.25);
    isolation: isolate;
    max-height: 82vh;
}
.video-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    padding: 1px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary), transparent 40%, transparent 60%, var(--accent));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
    z-index: 2;
}
#vsl {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000;
    pointer-events: none;
}

/* Shield blocks all interaction on the video */
.video-shield {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: transparent;
    cursor: default;
    -webkit-tap-highlight-color: transparent;
}

/* Play cover (initial) */
.play-cover {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: radial-gradient(ellipse at center, rgba(20, 5, 40, 0.55) 0%, rgba(11, 4, 22, 0.85) 100%);
    cursor: pointer;
    transition: opacity .4s var(--ease);
}
.play-cover.hidden {
    opacity: 0;
    pointer-events: none;
}
.play-btn {
    width: clamp(74px, 12vw, 110px);
    height: clamp(74px, 12vw, 110px);
    border-radius: 50%;
    background: var(--gradient-primary);
    display: grid;
    place-items: center;
    box-shadow: 0 20px 60px -15px var(--primary-glow), 0 0 0 0 var(--primary-glow);
    animation: ringPulse 2.2s infinite;
    transition: transform .3s var(--ease);
}
.play-btn:hover { transform: scale(1.08); }
.play-icon {
    width: 0; height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 26px solid #fff;
    margin-left: 6px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,.3));
}
.play-label {
    color: #fff;
    font-weight: 600;
    font-size: clamp(13px, 2vw, 15px);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
@keyframes ringPulse {
    0%   { box-shadow: 0 20px 60px -15px var(--primary-glow), 0 0 0 0 rgba(255, 46, 99, 0.55); }
    70%  { box-shadow: 0 20px 60px -15px var(--primary-glow), 0 0 0 24px rgba(255, 46, 99, 0); }
    100% { box-shadow: 0 20px 60px -15px var(--primary-glow), 0 0 0 0 rgba(255, 46, 99, 0); }
}

/* Small "activate audio" hint if fallback muted-autoplay is used */
.audio-hint {
    position: absolute;
    top: 14px; right: 14px;
    z-index: 6;
}
.audio-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: background .2s;
}
.audio-btn:hover { background: rgba(0, 0, 0, 0.9); }
.audio-icon {
    width: 12px; height: 12px;
    position: relative;
    display: inline-block;
    background: #fff;
    clip-path: polygon(0 30%, 40% 30%, 100% 0, 100% 100%, 40% 70%, 0 70%);
}

/* Progress bar (fake) */
.progress-track {
    position: relative;
    margin-top: 14px;
    height: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}
.progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0%;
    background: var(--gradient-warm);
    border-radius: 999px;
    transition: width 0.4s linear;
    box-shadow: 0 0 20px var(--primary-glow);
}
.progress-glow {
    position: absolute;
    top: 0; bottom: 0;
    left: 0;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    filter: blur(4px);
    transform: translateX(-100%);
    animation: shimmer 2.4s infinite;
    animation-play-state: paused;
    pointer-events: none;
}
.video-wrap.playing .progress-glow { animation-play-state: running; }

/* CTA que aparece abaixo do vídeo após o reveal */
.hero-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    animation: ctaReveal .9s var(--ease) both;
}
.hero-cta-wrap[hidden] { display: none; }
.hero-cta {
    width: min(100%, 420px);
}
.hero-cta-sub {
    color: var(--text-3);
    font-size: 13px;
    text-align: center;
    letter-spacing: 0.02em;
}
@keyframes ctaReveal {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
@keyframes shimmer {
    0%   { transform: translateX(-100%); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateX(2200%); opacity: 0; }
}

/* ================== REVEAL WRAP ================== */
.reveal-wrap {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 1.2s var(--ease);
}
.reveal-wrap.revealed {
    opacity: 1;
    max-height: none;
    overflow: visible;
    animation: revealIn 1.1s var(--ease) both;
}
@keyframes revealIn {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

/* ================== SECTIONS COMMON ================== */
.section {
    padding: clamp(60px, 10vh, 110px) 0;
    position: relative;
}
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(36px, 5vh, 60px);
}
.eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-2);
    padding: 6px 14px;
    background: rgba(255, 46, 99, 0.12);
    border: 1px solid rgba(255, 46, 99, 0.28);
    border-radius: 999px;
    margin-bottom: 18px;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: 0.006em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.section-title.light { color: #fff; }
.section-lead {
    font-size: clamp(1rem, 1.6vw, 1.1rem);
    color: var(--text-2);
    line-height: 1.65;
    max-width: 62ch;
    margin-inline: auto;
}

/* ================== PAIN LIST ================== */
.pain-section {
    background: linear-gradient(180deg, transparent, rgba(255, 46, 99, 0.04) 40%, transparent);
}
.pain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 980px;
    margin: 0 auto;
}
.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    line-height: 1.5;
    color: var(--text-2);
    transition: transform .35s var(--ease), border-color .35s;
}
.pain-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 46, 99, 0.4);
}
.pain-icon {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(255, 46, 99, 0.12);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 46, 99, 0.25);
}
.pain-closer {
    text-align: center;
    max-width: 700px;
    margin: 40px auto 20px;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--text-2);
    line-height: 1.6;
}
.pain-hook {
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
}

/* ================== TRUTH ================== */
.truth-section {
    padding: clamp(70px, 12vh, 130px) 0;
    background:
        radial-gradient(ellipse at center top, rgba(180, 18, 122, 0.15), transparent 60%),
        linear-gradient(180deg, transparent, rgba(11, 4, 22, 0.5), transparent);
}
.truth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    max-width: 1080px;
    margin: 0 auto;
}
.truth-card {
    padding: 32px 26px;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.truth-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 46, 99, 0.4);
    box-shadow: 0 20px 60px -20px var(--primary-glow);
}
.truth-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    background: var(--gradient-primary);
    border-radius: 22px;
    box-shadow: 0 12px 28px -10px var(--primary-glow);
}
.truth-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.5rem;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.truth-card p {
    color: var(--text-2);
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ================== OFFER ================== */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
}
.offer-card {
    position: relative;
    padding: 30px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .35s var(--ease), border-color .35s;
    overflow: hidden;
}
.offer-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 46, 99, 0.35);
}
.offer-card.featured {
    background: linear-gradient(180deg, rgba(255, 46, 99, 0.18), rgba(180, 18, 122, 0.08));
    border-color: rgba(255, 46, 99, 0.5);
    box-shadow: 0 20px 60px -20px var(--primary-glow);
}
.offer-card.bonus {
    background: linear-gradient(180deg, rgba(255, 184, 0, 0.12), rgba(255, 184, 0, 0.03));
    border-color: rgba(255, 184, 0, 0.35);
}
.offer-tag {
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 999px;
}
.offer-tag.gold { background: var(--gradient-gold); color: var(--text-on-light); }
.offer-icon {
    width: 60px; height: 60px;
    margin-bottom: 18px;
    display: grid;
    place-items: center;
    background: rgba(255, 46, 99, 0.14);
    border: 1px solid rgba(255, 46, 99, 0.25);
    border-radius: 16px;
}
.offer-card.bonus .offer-icon {
    background: rgba(255, 184, 0, 0.14);
    border-color: rgba(255, 184, 0, 0.35);
}
.offer-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.35rem;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
}
.offer-card p {
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ================== ABOUT ================== */
.about-section {
    background: linear-gradient(180deg, transparent, rgba(180, 18, 122, 0.08), transparent);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
}
.about-image-wrap {
    position: relative;
}
.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: var(--bg-2);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 4, 22, 0.6) 100%);
    pointer-events: none;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.about-stat {
    position: absolute;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
    border: 1px solid rgba(255, 46, 99, 0.4);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 2px;
    backdrop-filter: blur(10px);
    z-index: 2;
}
.about-stat strong {
    font-family: var(--font-display);
    font-size: 1.9rem;
    line-height: 1;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.about-stat span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.about-stat-1 {
    top: 24px;
    left: -24px;
}
.about-stat-2 {
    bottom: 24px;
    right: -24px;
}
.about-copy .eyebrow { margin-bottom: 16px; }
.about-copy .section-title { text-align: left; margin-bottom: 22px; }
.about-copy p {
    color: var(--text-2);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* ================== MUSIC / EDIFY ================== */
.music-section {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 16vh, 160px) 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(255, 184, 0, 0.14), transparent 55%),
        radial-gradient(ellipse at 15% 30%, rgba(255, 46, 99, 0.18), transparent 55%),
        radial-gradient(ellipse at 85% 40%, rgba(180, 18, 122, 0.22), transparent 55%),
        linear-gradient(180deg, rgba(11, 4, 22, 0.4), rgba(11, 4, 22, 0.85) 60%, rgba(11, 4, 22, 0.4));
    isolation: isolate;
}
.music-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(180deg, transparent 0 6px, rgba(255,255,255,0.02) 6px 7px);
    pointer-events: none;
    z-index: 0;
}

.music-viz {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 62%;
    opacity: 0.6;
    mix-blend-mode: screen;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 25%, #000 60%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.5) 25%, #000 60%, #000 100%);
    z-index: 1;
}

.music-notes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 2;
}
.music-note {
    position: absolute;
    bottom: -40px;
    font-family: 'Segoe UI Symbol', 'Apple Symbols', sans-serif;
    line-height: 1;
    will-change: transform, opacity;
    animation-name: noteFloat;
    animation-timing-function: cubic-bezier(0.25, 0.6, 0.35, 1);
    animation-fill-mode: forwards;
    pointer-events: none;
}
@keyframes noteFloat {
    0%   { transform: translate3d(0, 0, 0) rotate(-8deg) scale(0.4); opacity: 0; }
    12%  { opacity: 1; }
    50%  { transform: translate3d(20px, -45vh, 0) rotate(10deg) scale(1); }
    100% { transform: translate3d(-30px, -95vh, 0) rotate(-14deg) scale(0.7); opacity: 0; }
}

.music-glow {
    position: absolute;
    left: 50%; top: 50%;
    width: min(520px, 70vw);
    height: min(520px, 70vw);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 46, 99, 0.32), transparent 62%);
    filter: blur(24px);
    animation: glowBreath 3.4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
@keyframes glowBreath {
    0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.55; }
    50%      { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
}

/* Rings expandindo do centro, como ondas sonoras */
.music-rings {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    width: 200px; height: 200px;
    pointer-events: none;
    z-index: 0;
}
.music-rings span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 217, 102, 0.35);
    animation: ringExpand 3.6s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
    box-shadow: 0 0 22px rgba(255, 184, 0, 0.15) inset;
}
.music-rings span:nth-child(2) { animation-delay: 1.2s; border-color: rgba(255, 46, 99, 0.35); }
.music-rings span:nth-child(3) { animation-delay: 2.4s; border-color: rgba(180, 18, 122, 0.4); }
@keyframes ringExpand {
    0%   { transform: scale(0.5); opacity: 0; }
    20%  { opacity: 1; }
    100% { transform: scale(3);   opacity: 0; }
}

.music-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 820px;
}
.eyebrow.gold {
    color: var(--accent-2);
    background: rgba(255, 184, 0, 0.12);
    border-color: rgba(255, 184, 0, 0.35);
}
.music-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2rem, 5.8vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    margin-bottom: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #FFE7A5 55%, #FFB800 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 80px rgba(255, 46, 99, 0.35);
    perspective: 800px;
}
.music-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(28px) scale(0.85) rotateX(-40deg);
    filter: blur(8px);
    transform-origin: 50% 100%;
    transition:
        opacity 0.8s var(--ease),
        transform 0.9s var(--ease),
        filter 0.8s var(--ease);
}
.music-title.animated .word {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    filter: blur(0);
}

.music-lead {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-2);
    line-height: 1.7;
    max-width: 62ch;
    margin: 0 auto 38px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .9s .55s var(--ease), transform .9s .55s var(--ease);
}
.music-section.animated .music-lead {
    opacity: 1;
    transform: translateY(0);
}

.music-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.music-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s var(--ease), transform .55s var(--ease), border-color .3s;
}
.music-badge:hover {
    border-color: rgba(255, 184, 0, 0.5);
}
.music-section.animated .music-badge { opacity: 1; transform: translateY(0); }
.music-section.animated .music-badge:nth-child(1) { transition-delay: 0.9s; }
.music-section.animated .music-badge:nth-child(2) { transition-delay: 1.05s; }
.music-section.animated .music-badge:nth-child(3) { transition-delay: 1.2s; }

@media (max-width: 560px) {
    .music-glow { width: 320px; height: 320px; }
    .music-rings { width: 140px; height: 140px; }
    .music-badges { gap: 8px; }
    .music-badge { padding: 10px 14px; font-size: 12px; }
}

/* ================== VALUE ================== */
.value-section {
    padding: clamp(70px, 12vh, 130px) 0;
    background: linear-gradient(180deg, transparent, rgba(11, 4, 22, 0.5), transparent);
}
.value-list {
    max-width: 780px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.value-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    border-bottom: 1px solid var(--border);
    transition: background .3s;
}
.value-row:hover { background: rgba(255, 255, 255, 0.02); }
.value-row.bonus { background: rgba(255, 184, 0, 0.05); }
.value-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.value-info p {
    font-size: 0.9rem;
    color: var(--text-3);
    line-height: 1.4;
}
.value-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--primary-2);
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.tag-mini {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    letter-spacing: 0.1em;
}
.tag-mini.gold { background: var(--gradient-gold); color: var(--text-on-light); }

.value-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 26px 28px;
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
}
.value-total span { font-size: 1rem; letter-spacing: 0.08em; text-transform: uppercase; }
.value-total strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.compare-box {
    max-width: 780px;
    margin: 40px auto 0;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 46, 99, 0.14), rgba(180, 18, 122, 0.08));
    border: 1px solid rgba(255, 46, 99, 0.35);
    border-radius: var(--radius-lg);
}
.compare-box h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}
.compare-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    color: var(--text-2);
    font-size: 0.98rem;
}
.compare-list li:last-child { border-bottom: 0; }
.compare-list li em { color: var(--danger); font-weight: 700; }
.compare-hit {
    margin-top: 22px;
    padding: 18px 20px;
    text-align: center;
    background: rgba(255, 184, 0, 0.1);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
}

/* ================== PRICE / CTA ================== */
.price-section {
    padding: clamp(70px, 12vh, 130px) 0;
}
.price-card {
    max-width: 620px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 46, 99, 0.14), rgba(180, 18, 122, 0.05));
    border: 2px solid rgba(255, 46, 99, 0.5);
    border-radius: var(--radius-lg);
    padding: 40px clamp(24px, 4vw, 40px);
    text-align: center;
    box-shadow: 0 30px 90px -20px var(--primary-glow), var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.price-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 46, 99, 0.3), transparent 40%);
    animation: rotateGlow 8s linear infinite;
    z-index: 0;
}
.price-card > * { position: relative; z-index: 2; }
.price-card::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: calc(var(--radius-lg) - 3px);
    background: linear-gradient(180deg, rgba(20, 8, 38, 0.95), rgba(11, 4, 22, 0.98));
    z-index: 1;
}
@keyframes rotateGlow {
    to { transform: rotate(360deg); }
}
.price-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-gold);
    color: var(--text-on-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 16px;
}
.price-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1;
    margin-bottom: 8px;
}
.price-header p {
    color: var(--text-2);
    font-size: 0.98rem;
    margin-bottom: 28px;
}
.price-strike {
    color: var(--text-3);
    font-size: 0.95rem;
    margin-bottom: 6px;
}
.price-strike s { color: var(--text-3); }
.price-main {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
}
.price-cents {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--text-2);
    letter-spacing: 0.02em;
}
.price-value {
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 8vw, 5.2rem);
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
    letter-spacing: 0.01em;
    font-weight: 400;
}
.price-value sup {
    font-size: 0.45em;
    top: -0.6em;
}
.price-cash {
    color: var(--text-3);
    font-size: 0.88rem;
    margin-bottom: 26px;
}
.price-guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
    text-align: left;
    max-width: 320px;
    margin-inline: auto;
}
.price-guarantees li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-2);
    font-size: 0.95rem;
}

/* CTA button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 34px;
    background: var(--gradient-warm);
    color: #fff;
    font-weight: 800;
    font-size: clamp(0.95rem, 1.7vw, 1.05rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    box-shadow: 0 20px 50px -12px var(--primary-glow);
    transition: transform .25s var(--ease), box-shadow .3s;
    width: min(100%, 480px);
    animation: ctaPulse 2.5s infinite;
    position: relative;
    overflow: hidden;
}
.cta-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    animation: shine 3s infinite;
}
.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 30px 70px -12px var(--primary-glow);
}
.cta-btn:active { transform: translateY(-1px) scale(1); }
.cta-arrow {
    display: inline-block;
    width: 22px; height: 14px;
    position: relative;
}
.cta-arrow::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 6px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transform: translateY(-50%);
}
.cta-arrow::after {
    content: '';
    position: absolute;
    top: 50%; right: 2px;
    width: 8px; height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(-50%) rotate(45deg);
}
@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 20px 50px -12px var(--primary-glow), 0 0 0 0 rgba(255, 46, 99, 0.4); }
    50%      { box-shadow: 0 20px 50px -12px var(--primary-glow), 0 0 0 14px rgba(255, 46, 99, 0); }
}
@keyframes shine {
    to { left: 100%; }
}
.cta-secondary { margin: 36px auto 0; display: flex; }

/* Guarantee */
.guarantee-card {
    max-width: 720px;
    margin: 36px auto 0;
    padding: 30px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 26px;
    align-items: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.03));
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: var(--radius-lg);
}
.guarantee-seal {
    width: 110px; height: 110px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--success), #16a34a, var(--success));
    display: grid;
    place-items: center;
    padding: 4px;
    box-shadow: 0 12px 30px -10px rgba(34, 197, 94, 0.4);
    flex-shrink: 0;
    position: relative;
}
.guarantee-seal::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.seal-inner {
    width: 100%; height: 100%;
    border-radius: 50%;
    background: var(--bg-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--success);
    line-height: 1;
}
.seal-inner strong {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: var(--success);
}
.seal-inner em {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--success);
    opacity: 0.9;
}
.guarantee-copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.guarantee-copy p {
    color: var(--text-2);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 8px;
}
.guarantee-tag {
    color: var(--success);
    font-weight: 700;
    font-style: italic;
}

/* ================== FAQ ================== */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(255, 46, 99, 0.4); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    font-size: clamp(0.98rem, 1.8vw, 1.05rem);
    list-style: none;
    transition: background .3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255, 255, 255, 0.03); }
.faq-toggle {
    width: 22px; height: 22px;
    position: relative;
    flex-shrink: 0;
}
.faq-toggle::before, .faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: var(--primary-2);
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .3s var(--ease), opacity .3s;
}
.faq-toggle::before { width: 14px; height: 2px; }
.faq-toggle::after  { width: 2px; height: 14px; }
.faq-item[open] .faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-answer {
    padding: 0 24px 22px;
    color: var(--text-2);
    line-height: 1.65;
    font-size: 0.98rem;
    animation: fadeSlide .4s var(--ease);
}
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ================== CHOICE ================== */
.choice-section {
    background: linear-gradient(180deg, transparent, rgba(11, 4, 22, 0.5), transparent);
}
.choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}
.choice-card {
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    position: relative;
    line-height: 1.65;
    color: var(--text-2);
    font-size: 1rem;
}
.choice-card.bad {
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.1), rgba(239, 68, 68, 0.02));
    border-color: rgba(239, 68, 68, 0.35);
}
.choice-card.good {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.02));
    border-color: rgba(34, 197, 94, 0.35);
    box-shadow: 0 20px 60px -20px rgba(34, 197, 94, 0.35);
}
.choice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}
.choice-tag {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    border-radius: 8px;
}
.choice-tag.red   { background: var(--danger); color: #fff; }
.choice-tag.green { background: var(--success); color: #fff; }
.choice-card strong { color: #fff; }

/* ================== FINAL ================== */
.final-section {
    padding: clamp(80px, 14vh, 140px) 0 clamp(50px, 8vh, 90px);
    background:
        radial-gradient(ellipse at center, rgba(255, 46, 99, 0.15), transparent 60%);
    text-align: center;
}
.final-inner { max-width: 720px; margin: 0 auto; }
.final-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.02em;
    margin-bottom: 30px;
    color: #fff;
}
.final-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: left;
}
.final-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.5;
}
.final-list em { color: var(--text-3); }
.final-quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.3rem);
    line-height: 1.2;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 620px;
    margin-inline: auto;
}
.signature {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.3rem;
    color: var(--primary-2);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.footer {
    padding: 30px 0;
    text-align: center;
    color: var(--text-3);
    font-size: 13px;
    border-top: 1px solid var(--border);
}

/* =========================================================
   ICONS — puro CSS
   ========================================================= */
.ico {
    display: inline-block;
    position: relative;
    vertical-align: middle;
    color: var(--primary-2);
}

/* Pain icons */
.pain-icon .ico { color: var(--primary-2); }

/* Calendar */
.ico-calendar {
    width: 22px; height: 20px;
    border: 2px solid currentColor;
    border-radius: 3px;
    margin-top: 3px;
}
.ico-calendar::before {
    content: '';
    position: absolute;
    top: -5px; left: 3px;
    width: 3px; height: 6px;
    background: currentColor;
    border-radius: 1px;
    box-shadow: 9px 0 currentColor;
}
.ico-calendar::after {
    content: '';
    position: absolute;
    top: 5px; left: 2px; right: 2px;
    height: 2px;
    background: currentColor;
    box-shadow: 0 6px currentColor;
    opacity: 0.6;
}

/* Broken heart */
.ico-broken {
    width: 22px; height: 20px;
    color: currentColor;
}
.ico-broken::before, .ico-broken::after {
    content: '';
    position: absolute;
    top: 2px;
    width: 10px; height: 14px;
    background: currentColor;
    border-radius: 10px 10px 0 0;
    transform-origin: bottom;
}
.ico-broken::before {
    left: 0;
    transform: rotate(-45deg);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 20% 60%);
}
.ico-broken::after {
    right: 0;
    transform: rotate(45deg);
    clip-path: polygon(0 0, 100% 0, 80% 60%, 40% 100%);
}

/* Clock */
.ico-clock {
    width: 22px; height: 22px;
    border: 2px solid currentColor;
    border-radius: 50%;
}
.ico-clock::before {
    content: '';
    position: absolute;
    top: 2px; left: 50%;
    width: 2px; height: 8px;
    background: currentColor;
    border-radius: 1px;
    transform-origin: bottom center;
    transform: translateX(-50%);
}
.ico-clock::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 6px; height: 2px;
    background: currentColor;
    border-radius: 1px;
    transform: translate(-1px, -50%);
}

/* Money */
.ico-money {
    width: 22px; height: 22px;
    border: 2px solid currentColor;
    border-radius: 50%;
    color: currentColor;
}
.ico-money::before {
    content: '$';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 900;
    color: currentColor;
    line-height: 1;
    font-family: var(--font-body);
}

/* Injury / bandaid */
.ico-injury {
    width: 22px; height: 8px;
    background: currentColor;
    border-radius: 4px;
    transform: rotate(-30deg);
    margin-top: 6px;
}
.ico-injury::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 8px; height: 8px;
    background: currentColor;
    border-radius: 2px;
    transform: translate(-50%, -50%);
}
.ico-injury::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 4px; height: 4px;
    background: var(--bg-2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: -3px -2px 0 var(--bg-2), 3px 2px 0 var(--bg-2), -3px 2px 0 var(--bg-2), 3px -2px 0 var(--bg-2);
}

/* Car / traffic */
.ico-car {
    width: 24px; height: 12px;
    background: currentColor;
    border-radius: 5px 5px 3px 3px;
    margin-top: 4px;
}
.ico-car::before {
    content: '';
    position: absolute;
    top: -5px; left: 3px; right: 3px;
    height: 6px;
    background: currentColor;
    border-radius: 4px 4px 0 0;
    opacity: 0.75;
}
.ico-car::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 3px;
    width: 5px; height: 5px;
    background: var(--bg-1);
    border-radius: 50%;
    box-shadow: 11px 0 var(--bg-1);
}

/* Body */
.ico-body {
    width: 26px; height: 38px;
    color: #fff;
}
.ico-body::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 10px; height: 10px;
    border-radius: 50%;
    background: currentColor;
}
.ico-body::after {
    content: '';
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 22px; height: 26px;
    background: currentColor;
    clip-path: polygon(38% 0, 62% 0, 100% 25%, 82% 100%, 60% 55%, 40% 55%, 18% 100%, 0 25%);
}

/* Music note */
.ico-music {
    width: 28px; height: 32px;
    color: #fff;
}
.ico-music::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 11px; height: 11px;
    background: currentColor;
    border-radius: 50%;
}
.ico-music::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 9px;
    width: 3px; height: 26px;
    background: currentColor;
    border-radius: 2px;
    box-shadow: 12px 0 currentColor;
}

/* Pin */
.ico-pin {
    width: 24px; height: 32px;
    color: #fff;
}
.ico-pin::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 24px; height: 24px;
    background: currentColor;
    border-radius: 50% 50% 50% 0;
    transform: translateX(-50%) rotate(-45deg);
}
.ico-pin::after {
    content: '';
    position: absolute;
    top: 7px; left: 50%;
    transform: translateX(-50%);
    width: 9px; height: 9px;
    background: var(--secondary);
    border-radius: 50%;
    z-index: 1;
}

/* Offer icons (colored via currentColor) */
.offer-icon .ico { color: var(--primary); }
.offer-card.bonus .offer-icon .ico { color: var(--accent); }

/* Stretch */
.ico-stretch {
    width: 30px; height: 30px;
}
.ico-stretch::before, .ico-stretch::after {
    content: '';
    position: absolute;
    background: currentColor;
    border-radius: 2px;
}
.ico-stretch::before {
    top: 50%; left: 0; right: 0;
    height: 3px;
    transform: translateY(-50%);
    clip-path: polygon(0 50%, 15% 0, 15% 40%, 85% 40%, 85% 0, 100% 50%, 85% 100%, 85% 60%, 15% 60%, 15% 100%);
    height: 20px;
    top: 5px;
}

/* Flame */
.ico-flame {
    width: 22px; height: 28px;
    background: linear-gradient(180deg, #FFD966, #FF6B35 55%, #FF2E63);
    border-radius: 45% 15% 45% 45%;
    transform: rotate(-45deg);
}
.ico-flame::before {
    content: '';
    position: absolute;
    inset: 30% 20% 15% 15%;
    background: linear-gradient(180deg, #FFF8E0, #FFB800);
    border-radius: 50% 10% 50% 50%;
}
.ico-flame.small { width: 16px; height: 20px; }

/* Strength (dumbbell) */
.ico-strength {
    width: 30px; height: 14px;
}
.ico-strength::before {
    content: '';
    position: absolute;
    top: 50%; left: 0;
    width: 7px; height: 18px;
    background: currentColor;
    border-radius: 3px;
    transform: translateY(-50%);
    box-shadow: 23px 0 currentColor;
}
.ico-strength::after {
    content: '';
    position: absolute;
    top: 50%; left: 7px;
    width: 16px; height: 4px;
    background: currentColor;
    transform: translateY(-50%);
    border-radius: 2px;
}

/* Play */
.ico-play {
    width: 0; height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 20px solid currentColor;
    margin-left: 6px;
}

/* People */
.ico-people {
    width: 32px; height: 26px;
}
.ico-people::before, .ico-people::after {
    content: '';
    position: absolute;
    background: currentColor;
}
.ico-people::before {
    top: 0; left: 3px;
    width: 11px; height: 11px;
    border-radius: 50%;
    box-shadow: 14px 0 currentColor;
}
.ico-people::after {
    bottom: 0; left: 0; right: 0;
    height: 12px;
    background: currentColor;
    border-radius: 12px 12px 3px 3px;
}

/* Coordination (spiral) */
.ico-coord {
    width: 28px; height: 28px;
    border: 3px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
}
.ico-coord::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    border: 3px solid currentColor;
    border-radius: 50%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    transform: translate(-50%, -50%);
}

/* Gift */
.ico-gift {
    width: 26px; height: 22px;
    background: currentColor;
    border-radius: 2px;
    margin-top: 4px;
}
.ico-gift::before {
    content: '';
    position: absolute;
    top: -6px; left: -2px; right: -2px;
    height: 8px;
    background: currentColor;
    border-radius: 3px;
}
.ico-gift::after {
    content: '';
    position: absolute;
    top: -8px; left: 50%;
    width: 3px; height: 30px;
    background: var(--bg-2);
    transform: translateX(-50%);
}

/* Check */
.ico-check {
    width: 20px; height: 20px;
    background: var(--success);
    border-radius: 50%;
    color: #fff;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
}
.ico-check::before {
    content: '';
    width: 5px; height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) translate(-1px, -1px);
    margin-top: -3px;
}
.ico-check.big { width: 40px; height: 40px; }
.ico-check.big::before { width: 10px; height: 20px; border-width: 0 3px 3px 0; }

/* X */
.ico-x {
    width: 20px; height: 20px;
    background: var(--danger);
    border-radius: 50%;
    color: #fff;
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
}
.ico-x::before, .ico-x::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 2px;
    background: #fff;
    border-radius: 1px;
}
.ico-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.ico-x::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.ico-x.big { width: 40px; height: 40px; }
.ico-x.big::before, .ico-x.big::after { width: 20px; height: 3px; }

/* Heart */
.ico-heart {
    width: 20px; height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}
.ico-heart::before, .ico-heart::after {
    content: '';
    position: absolute;
    top: 0;
    width: 10px; height: 16px;
    background: currentColor;
    border-radius: 50px 50px 0 0;
}
.ico-heart::before {
    left: 0;
    transform-origin: 100% 100%;
    transform: rotate(-45deg);
}
.ico-heart::after {
    right: 0;
    transform-origin: 0 100%;
    transform: rotate(45deg);
}

/* Star */
.ico-star {
    width: 20px; height: 20px;
    background: var(--accent);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    flex-shrink: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { max-width: 420px; margin: 0 auto; }
    .about-copy .section-title { text-align: center; }
    .about-copy .eyebrow { display: block; text-align: center; margin-inline: auto; }
    .about-copy { text-align: center; }
    .about-stat-1 { top: 16px; left: 0; }
    .about-stat-2 { bottom: 16px; right: 0; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero { padding-top: 40px; min-height: auto; }
    .hero-inner { gap: 20px; }

    .value-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 8px;
    }
    .value-price { font-size: 1.4rem; }
    .value-total {
        flex-direction: column;
        gap: 6px;
        padding: 24px 20px;
        text-align: center;
    }
    .value-total strong { font-size: 1.7rem; }

    .compare-box { padding: 24px 20px; }
    .compare-list li {
        flex-wrap: wrap;
        font-size: 0.92rem;
        line-height: 1.5;
    }

    .price-card { padding: 32px 20px; }
    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        padding: 26px 22px;
    }
    .guarantee-seal { width: 100px; height: 100px; }

    .faq-item summary { padding: 18px 20px; font-size: 0.98rem; }
    .faq-answer { padding: 0 20px 20px; }

    .final-list li { padding: 12px 16px; font-size: 0.96rem; }
}

@media (max-width: 560px) {
    .section { padding: 60px 0; }
    .headline { font-size: clamp(2rem, 9vw, 2.8rem); max-width: 100%; }
    .subtitle { font-size: 0.98rem; }

    .video-wrap { margin-top: 4px; }
    .video-frame { border-radius: 20px; }

    .pain-list { grid-template-columns: 1fr; gap: 12px; }
    .pain-item { padding: 18px; }

    .truth-grid { gap: 16px; }
    .truth-card { padding: 28px 22px; }
    .truth-icon { width: 62px; height: 62px; border-radius: 18px; }

    .offer-grid { gap: 14px; }
    .offer-card { padding: 26px 22px; }
    .offer-icon { width: 52px; height: 52px; border-radius: 14px; }
    .offer-card h3 { font-size: 1.2rem; }

    .about-stat { padding: 10px 14px; }
    .about-stat strong { font-size: 1.5rem; }
    .about-stat span { font-size: 10px; }

    .price-header h2 { font-size: 2.2rem; }
    .price-value { font-size: 3.6rem; }

    .cta-btn {
        padding: 18px 24px;
        letter-spacing: 0.05em;
        font-size: 0.92rem;
    }

    .final-list { gap: 10px; }
    .choice-card { padding: 26px 22px; }
    .choice-tag { font-size: 1rem; padding: 5px 12px; }

    .about-stat-1 { top: 14px; left: 8px; }
    .about-stat-2 { bottom: 14px; right: 8px; }
}

@media (max-width: 360px) {
    .container { padding: 0 16px; }
    .headline { font-size: 1.8rem; }
    .subtitle { font-size: 0.92rem; }
    .section-title { font-size: 1.7rem; }
    .value-row { padding: 16px; }
    .pain-item { padding: 16px; gap: 12px; }
    .pain-icon { width: 40px; height: 40px; }
    .price-card { padding: 28px 16px; }
    .price-value { font-size: 3rem; }
    .cta-btn { padding: 16px 20px; font-size: 0.85rem; letter-spacing: 0.04em; }
    .guarantee-copy h3 { font-size: 1.2rem; }
    .final-quote { font-size: 1.4rem; }
}

@media (max-height: 500px) and (orientation: landscape) {
    .hero { padding-top: 24px; padding-bottom: 30px; }
    .video-wrap { max-width: 260px; }
    .video-frame { max-height: 88vh; }
}

@media (max-width: 560px) {
    .video-wrap { max-width: 360px; }
    .video-frame { max-height: 78vh; }
}

@media (max-width: 360px) {
    .video-wrap { max-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001s !important;
        transition-duration: 0.001s !important;
    }
    .orb { display: none; }
}
