/* CSS RESET & VARIABLES - LIGHT THEME */
:root {
    --bg-main: #f8fafc;
    --bg-alt: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --primary-gradient: linear-gradient(135deg, #FF136A 0%, #7000FF 100%);
    --card-bg: rgba(255, 255, 255, 0.7);
    --card-border: rgba(0, 0, 0, 0.08);
    --glass-blur: 16px;
    --rounded: 16px;
    --rounded-full: 999px;
    --trans-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 4rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* TYPOGRAPHY */
h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* UTIL CLASSES */
.glass-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border-radius: var(--rounded);
    padding: 2rem;
    transition: var(--trans-fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* BUTTONS */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: var(--rounded-full);
    box-shadow: 0 10px 25px rgba(112, 0, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 19, 106, 0.4);
    color: #fff;
}

.secondary-btn {
    background: rgba(0, 0, 0, 0.03);
    box-shadow: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
}

.secondary-btn:hover {
    background: rgba(0, 0, 0, 0.06);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* ANIMATIONS */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@keyframes pulse-dot-green {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
        background-color: #4ade80;
    }

    70% {
        box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
        background-color: #4ade80;
    }

    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
        background-color: #4ade80;
    }
}

.pulse-anim {
    animation: pulse 2s infinite;
}

.floating-anim {
    animation: float 6s ease-in-out infinite;
}

/* HERO SECTION */
.hero {
    position: relative;
    padding: 8rem 0 5rem;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(248, 250, 252, 0) 70%);
    z-index: -1;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 19, 106, 0.1);
    color: #ff136a;
    padding: 6px 16px;
    border-radius: var(--rounded-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 19, 106, 0.3);
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: #ff136a;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse-dot 2s infinite;
}

.video-container {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: var(--bg-alt);
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.85;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255, 19, 106, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
    backdrop-filter: blur(5px);
    transition: var(--trans-fast);
    box-shadow: 0 8px 25px rgba(255, 19, 106, 0.4);
}

.video-placeholder:hover .play-btn {
    transform: scale(1.1);
    background: rgba(255, 19, 106, 1);
}

.click-to-sound {
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: 20px;
}

.video-stats {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--bg-alt);
    padding: 8px 20px;
    border-radius: var(--rounded-full);
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    color: var(--text-main);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.red-dot {
    width: 8px;
    height: 8px;
    background: #ff0000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse-dot 2s infinite;
}

.social-proof-small {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
}

.social-proof-small .divider {
    color: rgba(0, 0, 0, 0.2);
    margin: 0 10px;
}

/* CARTOON MARQUEE REPLICA */
.cartoons-showcase-replica {
    padding: 5rem 0;
    background-color: #f8fafc;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.showcase-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.showcase-subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
}

.text-bold {
    font-weight: 700;
}

.image-marquee-wrapper {
    display: flex;
    overflow: hidden;
    margin-bottom: 1rem;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.image-marquee {
    display: flex;
    white-space: nowrap;
    animation: scroll-img 25s linear infinite;
    gap: 1rem;
    padding-left: 1rem;
}

.image-marquee-wrapper.reverse-scroll .image-marquee {
    animation-direction: reverse;
    animation-duration: 20s;
}

.showcase-img {
    height: 180px;
    width: auto;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes scroll-img {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

.tags-block {
    max-width: 650px;
    margin: 2rem auto 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 0 15px;
}

.tag-pill {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.and-more-text {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.text-gray {
    color: #64748b;
}

.highlight-p-replica {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* IDENTIFICATION SECTION REPLICA */
.identification-replica {
    padding: 6rem 0;
    background-color: #f1f5f9;
    /* pure light gray */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.id-headline {
    color: #111;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.id-sub {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.id-sub .text-yellow {
    color: #eab308;
    font-weight: 700;
}

.container-id {
    max-width: 500px;
    margin: 0 auto;
}

.id-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
}

.id-item-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    text-align: left;
}

.id-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: #ffe4e6;
    /* light rose/red background */
    color: #ef4444;
    /* red icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.id-item-text {
    flex: 1;
}

.id-item-text h3 {
    color: #0f172a;
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.id-item-text p {
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* WHAT YOU GET REPLICA */
.what-you-get-replica {
    padding: 6rem 0;
    background-color: #f1f5f9;
    /* light gray as in the image */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.wyg-headline {
    color: #111;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.wyg-headline .text-blue {
    color: #2563eb;
}

.wyg-sub {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.wyg-mockup {
    margin-bottom: 3rem;
}

.floating-mockup {
    max-width: 100%;
    width: 380px;
    height: auto;
    animation: float-anim 6s ease-in-out infinite;
}

.wyg-features-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 15px;
}

.wyg-feature-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.wyg-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #dcfce7;
    /* cool light green background */
    color: #22c55e;
    /* green icon */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.wyg-feature-card h3 {
    color: #111;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.wyg-feature-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes float-anim {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* BONUSES SECTION REPLICA */
.bonuses-replica {
    padding: 5rem 0;
    background-color: #f6f8f9;
}

.bonus-container {
    max-width: 480px;
    /* narrowed to match the image's stacked/mobile-first feel */
    margin: 0 auto;
}

.bonus-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #f59e0b;
    color: #000;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.bonus-headline {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.text-green {
    color: #16a34a;
}

.bonus-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.bonus-item-card {
    position: relative;
    background: #fff;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 2.5rem 1.5rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.bonus-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f59e0b;
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 12px;
    text-transform: uppercase;
}

.bonus-item-title {
    color: #111;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.bonus-item-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 8px;
    margin-bottom: 15px;
}

.bonus-item-desc {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.bonus-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 15px 0;
}

.bonus-price-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.bonus-old-price {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: line-through;
}

.bonus-free-text {
    color: #16a34a;
    font-weight: 900;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bonus Summary */
.bonus-summary-box {
    background-color: #e2e8f0;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    margin-top: 50px;
    box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.5), 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #cbd5e1;
}

.summary-top-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.summary-old-price {
    font-size: 1rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 5px;
}

.line-through-red {
    text-decoration: line-through;
    color: #ef4444;
}

.summary-new-price {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1e293b;
    margin-bottom: 15px;
}

.summary-new-price .text-green {
    font-size: 2.2rem;
    font-weight: 900;
    display: inline-block;
    margin-left: 5px;
}

.summary-free-badge {
    display: inline-block;
    background-color: #22c55e;
    color: #fff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.summary-disclaimer {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
}

.cta-green {
    display: inline-block;
    background-color: #16a34a;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 16px 30px;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.4);
    transition: transform 0.2s;
    width: 100%;
}

.cta-green:hover {
    transform: translateY(-2px);
    color: #fff;
}


/* TESTIMONIALS SECTION REPLICA */
.testimonials-replica {
    padding: 6rem 0;
    background-color: #f8fafc;
    /* light gray bg like image */
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.reviews-headline {
    color: #111;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.reviews-headline .text-blue {
    color: #2563eb;
}

.reviews-sub {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* CAROUSEL */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 700px;
    margin: 0 auto 2rem;
    position: relative;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    /* To mimic the card containing the image */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    max-width: 100%;
    border-radius: 8px;
    /* optional subtle shadow on the image itself */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.carousel-btn {
    background-color: #0ea5e9;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
    transition: transform 0.2s, background-color 0.2s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    transform: scale(1.1);
    background-color: #0284c7;
}

/* CAROUSEL DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #f59e0b;
    /* yellow */
}

/* PRICING SECTION REPLICA */
.pricing-replica {
    padding: 5rem 0;
    background-color: #f1f5f9;
    text-align: center;
}

.pricing-headline {
    color: #111;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-headline .text-blue {
    color: #007bff;
}

.pricing-sub {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 3rem;
}

.pricing-flex-replica {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* Base Price Card Styles */
.price-card-replica {
    background: #fff;
    padding: 2.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Basic Card Styles */
.basic-card {
    flex: 1;
    min-width: 320px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* very light */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-top: 2rem;
    margin-bottom: 2rem;
    z-index: 1;
}

/* Complete Card Styles */
.complete-card {
    flex: 1.1;
    min-width: 340px;
    border-radius: 16px;
    border: 2px solid #007bff;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
    z-index: 2;
    transform: scale(1.02);
}

.popular-badge-replica {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #007bff;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.plan-name-replica {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.mockup-pricing-replica {
    margin: 0 auto 1.5rem;
    max-width: 85%;
}

.img-mockup-pricing {
    width: 100%;
    height: auto;
}

.price-wrap-replica {
    margin-bottom: 1.5rem;
}

.old-price-replica {
    text-decoration: line-through;
    color: #ef4444;
    /* red */
    font-size: 1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.current-price-replica {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
}

.current-price-replica .text-green {
    color: #22c55e;
}

.billing-replica {
    color: #64748b;
    font-size: 0.95rem;
}

.social-proof-badge-replica {
    background: #eff6ff;
    color: #007bff;
    font-size: 0.8rem;
    padding: 8px 15px;
    border-radius: 6px;
    margin: 0 auto 1.5rem;
    display: inline-block;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.price-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 0 1.5rem 0;
}

.plan-features-replica {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features-replica li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

.plan-features-replica li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.gift-feature {
    color: #007bff !important;
    font-weight: 700 !important;
}

.gift-feature span {
    color: #007bff;
}

.disabled-feature {
    opacity: 0.5;
}

.disabled-feature span {
    text-decoration: line-through;
}

.cta-gray-replica {
    display: block;
    background-color: #e2e8f0;
    color: #475569;
    font-weight: 800;
    text-decoration: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.cta-gray-replica:hover {
    background-color: #cbd5e1;
    color: #334155;
}

.cta-blue-replica {
    display: block;
    background-color: #007bff;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all 0.2s;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.cta-blue-replica:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-2px);
}

/* Trust Badges - Replica */
.trust-badges-replica {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

.trust-item-replica {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #64748b;
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
}

.trust-item-replica svg {
    margin-bottom: 5px;
}

.trust-divider {
    height: 40px;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .pricing-flex-replica {
        gap: 2rem;
        padding: 0 15px;
    }

    .complete-card {
        transform: scale(1);
    }

    .basic-card {
        margin-top: 0;
        margin-bottom: 0;
    }

    .trust-badges-replica {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .trust-divider {
        display: none;
    }
}

/* FAQ SECTION REPLICA */
.faq-replica {
    padding: 6rem 0;
    background-color: #f1f5f9;
    /* pure light gray matching reference */
}

.faq-headline {
    color: #111;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.faq-headline .text-blue {
    color: #007bff;
    /* blue */
}

.faq-sub {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 3.5rem;
}

.faq-list-replica {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item-replica {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item-replica summary {
    padding: 1.5rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item-replica summary::-webkit-details-marker {
    display: none;
}

.faq-icon-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: #111;
}

.faq-item-replica[open] .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-item-replica p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cta-yellow-replica {
    display: inline-block;
    background-color: #eab308;
    /* yellow */
    color: #111;
    /* dark text */
    font-weight: 800;
    font-size: 1rem;
    padding: 18px 40px;
    border-radius: 40px;
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(234, 179, 8, 0.3);
}

.cta-yellow-replica:hover {
    transform: translateY(-2px);
    background-color: #ca8a04;
    color: #111;
}

/* FOOTER */
.site-footer {
    background: var(--bg-main);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: var(--rounded-full);
    font-weight: 700;
    margin: 2rem 0;
    transition: var(--trans-fast);
}

.instagram-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.3);
    color: #fff;
}

.footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .wyg-content {
        flex-direction: column;
    }

    .pricing-flex {
        flex-direction: column;
    }

    .highlighted-plan {
        transform: scale(1);
    }

    .highlighted-plan:hover {
        transform: translateY(-5px) scale(1.02);
    }

    h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
}

/* --- NEW HERO STYLES --- */
.top-promo-bar {
    background-color: #d11c1c;
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    width: 100%;
}

.hero-replica {
    background-color: #f6f8f9;
    padding: 2rem 0 3rem;
}

.hero-container {
    max-width: 900px;
}

.main-headline-replica {
    font-size: 2.5rem;
    /* a bit bigger to match the image impact */
    line-height: 1.1;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

.italic-heavy {
    font-style: italic;
    font-weight: 900;
}

.text-blue {
    color: #007bff;
}

.text-black {
    color: #111111;
}

.text-orange {
    color: #f59e0b;
}

.sub-headline-replica {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-mockup {
    position: relative;
    width: 280px;
    height: 480px;
    margin: 0 auto 2.5rem;
    border-radius: 20px;
    overflow: hidden;
    background-color: #7cd1d2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.video-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.viewers-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.sound-overlay-replica {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(30, 30, 30, 0.85);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-weight: 700;
    gap: 5px;
    min-width: 150px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.click-text,
.activate-text {
    margin: 0;
    font-size: 0.85rem;
}

.sound-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #f59e0b;
    color: #f59e0b;
    margin: 6px 0;
}

.progress-bar-blue {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 6px;
    width: 15%;
    background-color: #007bff;
}

.cta-primary {
    display: inline-block;
    background-color: #007bff;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 18px 45px;
    border-radius: 40px;
    margin-bottom: 20px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.cta-primary:hover {
    transform: translateY(-2px);
    background-color: #0056b3;
    color: white;
}

.social-proof-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.social-proof-footer .divider {
    color: #ccc;
}

@media (max-width: 768px) {
    .main-headline-replica {
        font-size: 1.8rem;
        padding: 0 10px;
    }
}

/* --- UPSELL MODAL STYLES --- */
.upsell-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.upsell-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.upsell-modal-box {
    background: #fff;
    width: 90%;
    max-width: 400px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.upsell-modal-overlay.active .upsell-modal-box {
    transform: scale(1) translateY(0);
}

.upsell-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    opacity: 0.8;
}

.upsell-close:hover {
    opacity: 1;
}

.upsell-header {
    background-color: #007bff;
    color: #fff;
    padding: 2.5rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.upsell-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffd700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.upsell-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.upsell-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    color: #fff;
}

.upsell-price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upsell-old-price {
    color: #ffb3b3;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: -5px;
}

.upsell-new-price {
    color: #4ade80;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.upsell-billing {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #fff;
}

.upsell-save-badge {
    background-color: #22c55e;
    color: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.upsell-body {
    padding: 1.5rem;
}

.upsell-body-title {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 600;
    text-align: center;
}

.upsell-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.upsell-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #334155;
    margin-bottom: 10px;
}

.upsell-features li svg {
    color: #22c55e;
    flex-shrink: 0;
}

.upsell-check {
    color: #22c55e;
    font-weight: 900;
    font-size: 1rem;
    display: inline-flex;
    width: 16px;
    justify-content: center;
}

.upsell-cta-btn {
    display: block;
    width: 100%;
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    transition: transform 0.2s;
    margin-bottom: 15px;
}

.upsell-cta-btn:hover {
    transform: translateY(-2px);
    color: #fff;
}

.upsell-decline-link {
    display: block;
    text-align: center;
    color: #64748b;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
}

.upsell-decline-link:hover {
    color: #111;
    text-decoration: underline;
}

/* SALES NOTIFICATION */
.sales-notification {
    position: fixed;
    top: 20px;
    right: -100%;
    /* Hidden initially offscreen */
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 12px;
    z-index: 9999;
    min-width: 260px;
    border-left: 4px solid #22c55e;
    transition: right 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sales-notification.show {
    right: 20px;
}

.sales-icon {
    background-color: #dcfce7;
    color: #22c55e;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sales-content {
    display: flex;
    flex-direction: column;
}

.sales-text {
    margin: 0;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.3;
}

.sales-text strong {
    color: #111;
    font-weight: 800;
}

.sales-text .text-blue {
    color: #007bff;
}

.sales-scarcity {
    margin: 3px 0 0 0;
    font-size: 0.8rem;
    color: #22c55e;
    font-weight: 800;
}

@media (max-width: 480px) {
    .sales-notification {
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 90%;
        min-width: auto;
        top: -100%;
        /* Mobile initial hidden */
        transition: top 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .sales-notification.show {
        top: 10px;
        right: auto;
    }
}