:root {
    --bg: #ffb4d8;
    --bg-strong: #ff75b4;
    --ink: #260918;
    --muted: #75445b;
    --white: #fff8fb;
    --pink: #ff2f86;
    --red: #f0545a;
    --gold: #ffe06f;
    --green: #23d36b;
    --line: rgba(126, 30, 79, 0.18);
    --shadow: 0 24px 60px rgba(133, 13, 73, 0.24);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Outfit", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1120px, calc(100% - 34px));
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.top-bar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--red);
    color: #fff;
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
}

.top-bar strong {
    min-width: 80px;
    padding: 4px 10px;
    border-radius: 8px;
    background: #fff;
    color: var(--red);
    font-variant-numeric: tabular-nums;
}

.hero {
    position: relative;
    min-height: 94vh;
    padding: 64px 0 76px;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.9), transparent 23%),
        radial-gradient(circle at 86% 20%, rgba(255, 224, 111, 0.6), transparent 28%),
        linear-gradient(135deg, #ffc1de, #ff91c5 46%, #ffa7d1);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    z-index: -1;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    filter: blur(2px);
    animation: floatShape 7s ease-in-out infinite;
}

.hero::before {
    width: 280px;
    height: 280px;
    left: -70px;
    bottom: 70px;
}

.hero::after {
    width: 220px;
    height: 220px;
    right: -50px;
    top: 160px;
    animation-delay: 1.2s;
}

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

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
    gap: 46px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    color: #b41662;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    margin-top: 14px;
    font-size: clamp(2.55rem, 5.6vw, 5.35rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
    font-weight: 900;
}

h3 {
    font-size: 1.18rem;
    font-weight: 900;
}

.hero-text,
.section-header p,
.section-copy p,
.offer-copy p,
.feature-card p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 1.1rem;
}

.promise-box {
    display: grid;
    gap: 4px;
    max-width: 560px;
    margin-top: 24px;
    padding: 18px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow);
}

.promise-box strong {
    color: #d20765;
    font-size: 1.5rem;
    line-height: 1;
}

.promise-box span {
    color: var(--ink);
    font-weight: 800;
}

.hero-list,
.included-list,
.checkout-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    list-style: none;
}

.hero-list li,
.included-list li,
.checkout-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink);
    font-weight: 900;
}

.hero-list li::before,
.included-list li::before,
.checkout-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(35, 211, 107, 0.65);
    flex: 0 0 auto;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 62px;
    width: min(100%, 420px);
    margin-top: 28px;
    padding: 18px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f5327e, #ff6d54);
    color: #fff;
    box-shadow: 0 18px 42px rgba(221, 21, 95, 0.32);
    font-weight: 900;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    animation: buttonPulse 2.4s ease-in-out infinite;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -50%;
    width: 38%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
    transform: skewX(-18deg);
    animation: buttonShine 3.3s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { transform: translateY(0); box-shadow: 0 18px 42px rgba(221, 21, 95, 0.32); }
    50% { transform: translateY(-2px); box-shadow: 0 24px 56px rgba(221, 21, 95, 0.44); }
}

@keyframes buttonShine {
    0% { left: -50%; }
    36%, 100% { left: 120%; }
}

.microcopy {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero-product {
    position: relative;
}

.product-mockup {
    width: 100%;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
    border: 8px solid rgba(255, 255, 255, 0.82);
    border-radius: 14px;
    background:
        radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.78), transparent 22%),
        linear-gradient(145deg, #fff4fa 0%, #ff6cad 45%, #ef236f 100%);
    box-shadow: var(--shadow);
    animation: productFloat 5s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.product-mockup::after {
    content: "";
    position: absolute;
    inset: auto -40px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 224, 111, 0.48);
}

.mockup-topline {
    color: #9d174f;
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.product-mockup h2 {
    margin-top: 8px;
    color: #fff;
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    text-shadow: 0 8px 24px rgba(130, 0, 60, 0.24);
}

.product-mockup p {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mockup-badges {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.mockup-badges span {
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.82);
    color: #9d174f;
    font-weight: 900;
}

@keyframes productFloat {
    0%, 100% { transform: translateY(0) rotate(-0.6deg); }
    50% { transform: translateY(-10px) rotate(0.6deg); }
}

.floating-tag {
    position: absolute;
    right: 16px;
    top: -16px;
    z-index: 2;
    padding: 9px 14px;
    border-radius: 10px;
    background: var(--gold);
    color: #7a2a00;
    box-shadow: 0 14px 32px rgba(132, 59, 0, 0.2);
    font-weight: 900;
    text-transform: uppercase;
    animation: tagBounce 2.6s ease-in-out infinite;
}

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

.trust-strip {
    background: rgba(255, 255, 255, 0.58);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.trust-grid div {
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border-left: 1px solid var(--line);
    text-align: center;
}

.trust-grid div:last-child {
    border-right: 1px solid var(--line);
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    font-size: 1.2rem;
    font-weight: 900;
}

.trust-grid span {
    color: var(--muted);
    font-weight: 700;
}

.authority-strip {
    padding: 28px 0;
    background: linear-gradient(135deg, #f5327e, #ff6d54);
    color: #fff;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.authority-grid div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(139, 14, 72, 0.18);
}

.authority-grid strong,
.authority-grid span {
    display: block;
}

.authority-grid strong {
    font-size: 1.25rem;
    font-weight: 900;
}

.authority-grid span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.86);
    font-weight: 700;
}

.compact-grid,
.included-grid,
.offer-grid,
.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
    gap: 44px;
    align-items: center;
}

.pain-cards,
.features-grid,
.who-grid {
    display: grid;
    gap: 14px;
}

.pain-cards {
    grid-template-columns: repeat(2, 1fr);
}

.pain-cards span,
.feature-card,
.who-card,
.price-box,
.guarantee,
details {
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 16px 44px rgba(133, 13, 73, 0.14);
}

.pain-cards span,
.who-card {
    padding: 18px;
    color: var(--ink);
    font-weight: 900;
}

.solution-section,
.who-section,
.faq-section {
    background: rgba(255, 255, 255, 0.24);
}

.closing-gap-section {
    background:
        radial-gradient(circle at 22% 20%, rgba(255, 224, 111, 0.35), transparent 30%),
        rgba(255, 255, 255, 0.28);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 42px;
    text-align: center;
}

.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.feature-card {
    padding: 20px;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.who-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 52px rgba(133, 13, 73, 0.2);
}

.feature-card span {
    display: inline-flex;
    margin-bottom: 14px;
    color: #d20765;
    font-weight: 900;
}

.mini-mockup {
    max-width: 480px;
    display: grid;
    gap: 12px;
    padding: 28px;
    border: 6px solid rgba(255, 255, 255, 0.8);
    border-radius: 14px;
    background: linear-gradient(145deg, #fff4fa, #ff7fba);
    box-shadow: var(--shadow);
}

.mini-mockup strong {
    color: #9d174f;
    font-size: 2rem;
    line-height: 1.05;
}

.mini-mockup span {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    font-weight: 900;
}

.included-copy {
    max-width: 610px;
}

.who-grid {
    grid-template-columns: repeat(4, 1fr);
}

.offer-section {
    background:
        radial-gradient(circle at 80% 12%, rgba(255, 224, 111, 0.5), transparent 28%),
        linear-gradient(135deg, #ffa8d0, #ff7bb8);
}

.guarantee {
    margin-top: 22px;
    padding: 18px;
}

.guarantee strong,
.guarantee span {
    display: block;
}

.guarantee strong {
    color: #d20765;
}

.guarantee span {
    color: var(--muted);
}

.price-box {
    padding: 28px;
}

.price-box span,
.price-box small {
    display: block;
}

.price-label {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 224, 111, 0.52);
    color: #8c3d00;
    font-weight: 900;
    text-align: center;
}

.old-price {
    margin-top: 22px;
    color: var(--muted);
}

.today {
    margin-top: 8px;
    color: #d20765;
    font-weight: 900;
    text-transform: uppercase;
}

.price {
    display: block;
    color: var(--ink);
    font-size: clamp(3.8rem, 9vw, 6.2rem);
    font-weight: 900;
    line-height: 0.95;
}

.price-box .btn-primary {
    width: 100%;
}

.price-box small {
    margin-top: 12px;
    color: var(--muted);
    text-align: center;
    font-weight: 700;
}

.faq-list {
    display: grid;
    gap: 12px;
}

summary {
    cursor: pointer;
    padding: 18px;
    color: var(--ink);
    font-weight: 900;
}

details p {
    padding: 0 18px 18px;
    color: var(--muted);
}

@media (max-width: 960px) {
    .hero-grid,
    .compact-grid,
    .included-grid,
    .offer-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .who-grid,
    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 26px, 1120px);
    }

    .section {
        padding: 62px 0;
    }

    .top-bar {
        gap: 8px;
        font-size: 0.78rem;
    }

    .hero {
        padding-top: 46px;
    }

    .hero-product {
        order: -1;
    }

    .trust-grid,
    .features-grid,
    .who-grid,
    .pain-cards,
    .authority-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid div,
    .trust-grid div:last-child {
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
