/* Glow Gummies — Vibrant Pink + Red Rose + Gold */

:root {
    --pink: #FF6B9D;
    --pink-light: #FFB8D0;
    --pink-dark: #E91E63;
    --pink-pale: #FFF0F5;
    --rose: #C2185B;
    --rose-dark: #880E4F;
    --rose-light: #FCE4EC;
    --gold: #D4A574;
    --gold-light: #E8C9A0;
    --gold-pale: #FAF3EB;
    --cream: #FFF8FA;
    --white: #FFFFFF;
    --dark: #2D0A1E;
    --text: #4A1A32;
    --text-light: #7A4A62;
    --whatsapp: #25D366;
    --red: #E63946;
    --red-light: #FFE5E7;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== LOGO BAR ===== */
.logo-bar {
    background: var(--white);
    border-bottom: 1px solid var(--pink-pale);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--rose);
    line-height: 1.1;
}

.logo-tag {
    font-size: 0.75rem;
    color: var(--pink);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    background: linear-gradient(135deg, var(--rose) 0%, var(--pink-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    animation: barFlash 2s ease-in-out infinite;
}

.urgency-pulse {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.urgency-bar strong { text-decoration: underline; text-underline-offset: 2px; color: var(--gold-light); }

@keyframes barFlash {
    0%, 100% { background: linear-gradient(135deg, var(--rose) 0%, var(--pink-dark) 100%); }
    50% { background: linear-gradient(135deg, var(--pink-dark) 0%, var(--rose) 100%); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* ===== HOOK SECTION ===== */
.hook {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--cream) 0%, var(--pink-pale) 100%);
    overflow: hidden;
    padding: 40px 0 60px;
}

.hook-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(255,107,157,0.15) 0%, transparent 50%),
        radial-gradient(circle at 15% 85%, rgba(212,165,116,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hook-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hook Alert */
.hook-alert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rose-light);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rose);
    width: fit-content;
    border: 1px solid var(--pink-light);
}

.hook-pulse {
    width: 8px;
    height: 8px;
    background: var(--pink);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

/* Hook Headline */
.hook-text h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hook-highlight {
    background: linear-gradient(120deg, var(--gold-light) 0%, var(--gold) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    padding: 0 4px;
}

.hook-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.hook-sub strong { color: var(--dark); }

.hook-sub em { font-style: normal; background: var(--rose-light); padding: 2px 6px; border-radius: 4px; color: var(--rose); }

/* CTA */
.hook-cta { margin-bottom: 16px; }

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(233,30,99,0.35);
    animation: btnPulse 2s ease-in-out infinite;
}

.btn-whatsapp svg { width: 24px; height: 24px; }

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(233,30,99,0.5);
}

@keyframes btnPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(233,30,99,0.35); }
    50% { box-shadow: 0 8px 40px rgba(233,30,99,0.55); }
}

/* Hook Visual */
.hook-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: end;
    position: relative;
}

.hook-product {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hook-product img {
    max-height: 360px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 2;
}

.hook-product img:hover { transform: scale(1.03); }

.hook-stock {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, var(--rose) 0%, var(--pink-dark) 100%);
    color: var(--white);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    animation: stockShake 3s ease-in-out infinite;
    z-index: 3;
    border: 2px solid var(--gold);
}

@keyframes stockShake {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(-3deg); }
    20% { transform: rotate(3deg); }
    30% { transform: rotate(-3deg); }
    40% { transform: rotate(0deg); }
}

.hook-model {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 460px;
}

.hook-model img {
    max-height: 440px;
    width: auto;
    object-fit: cover;
    object-position: top;
    border-radius: 20px 20px 0 0;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.hook-model img:hover { transform: scale(1.02); }

.model-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(255,107,157,0.25) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(1.15); opacity: 0.9; }
}

/* Scroll Indicator */
.hook-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.scroll-arrow {
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--pink);
    border-bottom: 2px solid var(--pink);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); }
    40% { transform: translateY(-6px) rotate(45deg); }
    60% { transform: translateY(-3px) rotate(45deg); }
}

/* ===== STORY SECTION ===== */
.story { background: var(--white); padding: 100px 0; }

.story-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.story-label {
    display: inline-block;
    background: var(--rose-light);
    color: var(--rose);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.story-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--dark);
    line-height: 1.2;
}

.story-body { max-width: 700px; margin: 0 auto; }

.story-block {
    padding: 40px 36px;
    border-radius: 20px;
    margin-bottom: 0;
    position: relative;
}

.story-fear {
    background: linear-gradient(135deg, #FFF0F3 0%, #FFE5EA 100%);
    border-left: 4px solid var(--rose);
}

.story-reveal {
    background: linear-gradient(135deg, #FFF9F5 0%, #FFF0E8 100%);
    border-left: 4px solid var(--gold);
}

.story-solution {
    background: linear-gradient(135deg, #FFF5F8 0%, #FFEBF2 100%);
    border-left: 4px solid var(--pink);
}

.story-icon { font-size: 2.5rem; margin-bottom: 16px; }

.story-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 14px;
}

.story-block p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 12px;
}

.story-block p:last-child { margin-bottom: 0; }
.story-block strong { color: var(--dark); }

.story-block em {
    font-style: normal;
    background: rgba(255,107,157,0.15);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--rose);
}

.story-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--pink);
    padding: 16px 0;
    animation: bounceArrow 2s ease-in-out infinite;
}

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

/* ===== BEFORE / AFTER ===== */
.before-after {
    background: linear-gradient(180deg, var(--pink-pale) 0%, var(--cream) 100%);
    padding: 100px 0;
}

.before-after h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 12px;
}

.ba-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.ba-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.ba-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.ba-label {
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ba-before {
    background: linear-gradient(135deg, var(--rose-light) 0%, #FFE5EA 100%);
    color: var(--rose);
}

.ba-after {
    background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
    color: var(--white);
}

.ba-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF0F5 0%, #F5E0E8 100%);
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ba-card:hover .ba-image img { transform: scale(1.05); }

.ba-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(194,24,89,0.85));
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.ba-overlay span { font-size: 1.4rem; }

.ba-overlay--good {
    background: linear-gradient(transparent, rgba(255,107,157,0.85));
}

.ba-caption { padding: 20px 24px; }

.ba-caption h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 6px;
}

.ba-caption p { font-size: 0.9rem; color: var(--text-light); }

/* ===== REAL WOMEN ===== */
.real-women { background: var(--white); padding: 100px 0; }

.real-women h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 12px;
}

.rw-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 48px;
}

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

.rw-card {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid var(--pink-pale);
}

.rw-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(233,30,99,0.1);
    border-color: var(--pink-light);
}

.rw-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(180deg, #FFF0F5 0%, #F5E0E8 100%);
}

.rw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.rw-card:hover .rw-image img { transform: scale(1.05); }

.rw-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 2;
    border: 2px solid var(--gold-light);
}

.rw-content { padding: 28px 24px; }

.rw-content h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.rw-location {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.rw-fear {
    font-size: 0.9rem;
    color: var(--rose);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0;
    padding: 12px 16px;
    background: var(--rose-light);
    border-radius: 10px;
    border-left: 3px solid var(--rose);
}

.rw-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    color: var(--gold);
    font-size: 1.2rem;
}

.rw-divider::before,
.rw-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--pink-light);
    margin: 0 12px;
}

.rw-result {
    font-size: 0.9rem;
    color: var(--rose);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--pink-pale);
    border-radius: 10px;
    border-left: 3px solid var(--pink);
}

.rw-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rw-tags span {
    background: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--rose);
    border: 1px solid var(--pink-light);
}

/* ===== BENEFITS ===== */
.benefits { background: var(--cream); padding: 100px 0; }

.benefits h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px 28px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(233,30,99,0.1);
    border-top-color: var(--pink);
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
    color: var(--white);
    transform: scale(1.03);
    box-shadow: 0 16px 40px rgba(233,30,99,0.25);
}

.benefit-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.benefit-card.featured h3,
.benefit-card.featured p { color: var(--white); }

.benefit-card .icon { font-size: 2.6rem; margin-bottom: 18px; }

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.benefit-stat {
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rose);
}

.benefit-card.featured .benefit-stat {
    border-top-color: rgba(255,255,255,0.2);
    color: var(--gold-light);
}

/* ===== INGREDIENTS ===== */
.ingredients { background: var(--white); padding: 100px 0; }

.ingredients h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

.ingredients-list {
    max-width: 600px;
    margin: 0 auto 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ingredient {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: var(--cream);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid var(--pink-pale);
}

.ingredient:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(233,30,99,0.08);
    border-color: var(--pink-light);
}

.check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ingredient strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.ingredient span { font-size: 0.88rem; color: var(--text-light); }

.certs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.certs span {
    background: var(--cream);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--rose);
    border: 1px solid var(--pink-light);
}

/* ===== PROOF ===== */
.proof { background: linear-gradient(180deg, var(--cream) 0%, var(--pink-pale) 100%); padding: 100px 0; }

.proof h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--dark);
    text-align: center;
    margin-bottom: 48px;
}

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

.proof-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    border: 1px solid var(--pink-pale);
}

.proof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(233,30,99,0.1);
    border-color: var(--pink-light);
}

.proof-stars {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.proof-card > p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.proof-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--pink), var(--rose));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1rem;
}

.proof-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}

.proof-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ===== DELIVERY ===== */
.delivery-section {
    background: linear-gradient(135deg, var(--rose) 0%, var(--pink-dark) 100%);
    padding: 100px 0;
}

.delivery-section h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--white);
    text-align: center;
    margin-bottom: 12px;
}

.delivery-visual {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.delivery-man {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 420px;
}

.delivery-man img {
    max-height: 400px;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    transition: transform 0.4s ease;
}

.delivery-man img:hover { transform: translateY(-6px); }

.delivery-float {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--white);
    padding: 14px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floatBadge 3s ease-in-out infinite;
    border: 2px solid var(--gold);
}

.delivery-float span { font-size: 1.6rem; }

.delivery-float p {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

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

.delivery-info { color: var(--white); }

.delivery-intro {
    text-align: center;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    margin-bottom: 32px;
}

.delivery-info .delivery-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.delivery-info .dcard {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.delivery-info .dcard:hover { transform: translateY(-6px); }

.delivery-info .dcard.accra {
    border: 3px solid var(--gold);
    position: relative;
}

.dicon { font-size: 3rem; margin-bottom: 14px; }

.delivery-info .dcard h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.dprice {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--rose);
    margin-bottom: 4px;
}

.dmethod {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.dtime { font-size: 0.9rem; color: var(--text-light); }

.dtag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.dnote {
    display: inline-block;
    margin-top: 12px;
    background: var(--cream);
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--rose-light) 0%, var(--pink-pale) 100%);
    padding: 100px 0;
}

.final-box {
    background: var(--white);
    padding: 56px 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
    box-shadow: 0 24px 80px rgba(194,24,89,0.12);
    border: 2px solid var(--pink);
}

.final-urgency {
    display: inline-block;
    background: linear-gradient(135deg, var(--rose) 0%, var(--pink-dark) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    animation: savePulse 2s ease-in-out infinite;
}

@keyframes savePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.final-box h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.final-fear {
    color: var(--text-light);
    font-size: 1.05rem;
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.final-fear strong { color: var(--dark); }

.final-price { margin-bottom: 20px; }

.fp-old {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
    text-decoration-color: var(--rose);
    text-decoration-thickness: 2px;
    margin-right: 14px;
}

.fp-new {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--rose);
}

.countdown--small { justify-content: center; margin-bottom: 28px; }

.countdown {
    margin-bottom: 24px;
}

.countdown-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 8px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cd-unit {
    background: var(--dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: 10px;
    text-align: center;
    min-width: 56px;
}

.cd-unit span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.cd-unit small {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.cd-sep {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.btn-whatsapp--large {
    padding: 22px 48px;
    font-size: 1.25rem;
}

.fp-stock {
    margin-top: 18px;
    font-size: 0.95rem;
    color: var(--rose);
    font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 56px 0 36px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink-light);
}

footer .contact {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 20px;
}

footer .disclaimer {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin: 0 auto 14px;
    line-height: 1.6;
}

footer .copy {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ===== STICKY WHATSAPP ===== */
.whatsapp-sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(233,30,99,0.4);
    transition: all 0.3s ease;
    animation: slideIn 0.6s ease 1s both;
    border: 2px solid var(--gold-light);
}

.whatsapp-sticky svg { width: 22px; height: 22px; }

.whatsapp-sticky:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233,30,99,0.5);
}

.whatsapp-sticky span { white-space: nowrap; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hook-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hook-alert { margin: 0 auto 20px; }
    .hook-sub { margin-left: auto; margin-right: auto; }
    .hook-cta { display: flex; flex-direction: column; align-items: center; }
    .hook-visual {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .hook-model { min-height: 380px; }
    .hook-model img { max-height: 360px; }
    .hook-stock { right: 10px; }
    .ba-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .ba-card { max-width: 400px; margin: 0 auto; }
    .rw-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .rw-card { max-width: 420px; margin: 0 auto; }
    .benefits-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .benefit-card.featured { transform: scale(1); }
    .benefit-card.featured:hover { transform: scale(1) translateY(-8px); }
    .proof-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
    .delivery-visual { grid-template-columns: 1fr; gap: 32px; }
    .delivery-man { min-height: 320px; order: 2; }
    .delivery-man img { max-height: 300px; }
    .delivery-info { order: 1; }
    .delivery-float { right: 50%; transform: translateX(50%); top: 0; }
    .delivery-info .delivery-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .hook-visual {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hook-product { order: 2; }
    .hook-model { order: 1; min-height: 320px; }
    .hook-model img { max-height: 300px; border-radius: 16px; }
    .model-glow { width: 200px; height: 200px; }
    .hook-stock {
        right: 50%;
        transform: translateX(50%);
        top: -10px;
    }
    .story-block { padding: 28px 22px; }
    .delivery-man { min-height: 280px; }
    .delivery-man img { max-height: 260px; }
    .delivery-float { position: relative; right: auto; top: auto; transform: none; margin: 16px auto 0; width: fit-content; animation: none; }
    .final-box { padding: 40px 24px; }
    .final-box h2 { font-size: 1.7rem; }
    .fp-new { font-size: 2.6rem; }
}

@media (max-width: 480px) {
    .urgency-bar { font-size: 0.78rem; padding: 10px 12px; }
    .logo-name { font-size: 1.2rem; }
    .logo-tag { font-size: 0.65rem; }
    .hook { padding: 30px 0 50px; }
    .hook-text h1 { font-size: 2rem; }
    .hook-sub { font-size: 0.95rem; }
    .btn-whatsapp { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 24px; }
    .btn-whatsapp--large { font-size: 1.1rem; padding: 18px 32px; }
    .whatsapp-sticky { padding: 12px 18px; font-size: 0.85rem; }
    .whatsapp-sticky svg { width: 18px; height: 18px; }
    .story, .before-after, .real-women, .benefits, .ingredients, .proof, .delivery-section, .final-cta { padding: 60px 0; }
    .story-header h2, .before-after h2, .real-women h2, .benefits h2, .ingredients h2, .proof h2, .delivery-section h2 { font-size: 1.6rem; margin-bottom: 32px; }
    .story-block h3 { font-size: 1.2rem; }
    .story-block p { font-size: 0.95rem; }
    .ba-caption h4 { font-size: 1rem; }
    .rw-content h4 { font-size: 1.1rem; }
    .rw-fear, .rw-result { font-size: 0.85rem; }
    .trans-card li { font-size: 0.9rem; }
    .proof-card { padding: 28px 22px; }
    .dcard { padding: 32px 24px; }
    .dprice { font-size: 1.5rem; }
    footer { padding: 40px 0 28px; }
    .footer-brand { font-size: 1.2rem; }
}
