/* ========================================
   RESET & BASE
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --background: hsl(240, 60%, 99%);
    --foreground: hsl(0, 0%, 20%);
    --primary: hsl(28, 100%, 50%);
    --accent: hsl(45, 100%, 58%);
    --cta-green: #22c55e;
    --cta-green-gradient-from: #00D094;
    --cta-green-gradient-to: #00B682;
    --orange: #f97316;
    --yellow: #facc15;
    --dark: #1f2937;
    --muted: hsl(0, 0%, 45.1%);
    --card-bg: #ffffff;
    --border: hsl(0, 0%, 89.8%);
    --radius: 0.8rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========================================
   TOP BANNER
   ======================================== */
.top-banner {
    background: linear-gradient(to right, #f97316, #eab308);
    padding: 10px 0;
    text-align: center;
    position: relative;
    z-index: 100;
}

.top-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.top-banner-content svg {
    flex-shrink: 0;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background: linear-gradient(180deg, hsl(220, 20%, 95%) 0%, hsl(210, 40%, 96%) 100%);
    padding: 60px 0 50px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.text-yellow {
    color: var(--yellow);
    font-style: italic;
    font-size: 2.3rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    max-width: 500px;
    margin: 0 auto 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    cursor: pointer;
}

.unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 16px;
    pointer-events: none;
}

.unmute-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: auto;
    animation: pulse-unmute 2s ease-in-out infinite;
}

@keyframes pulse-unmute {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.cta-button {
    display: inline-block;
    background: var(--cta-green);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    padding: 18px 50px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.4);
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34, 197, 94, 0.5);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    text-align: center;
    color: var(--dark);
    margin-bottom: 8px;
    font-style: italic;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--orange);
    margin: 0 auto 40px;
    border-radius: 2px;
}

/* ========================================
   FEATURE CARDS GRID
   ======================================== */
.receive-section,
.benefits-section {
    padding: 60px 0;
    background: linear-gradient(180deg, hsl(210, 40%, 96%) 0%, hsl(220, 60%, 97%) 100%);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f97316, #eab308);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
}

/* ========================================
   BONUS SECTION
   ======================================== */
.bonus-section {
    padding: 60px 0;
    background: linear-gradient(180deg, hsl(220, 60%, 97%) 0%, hsl(210, 40%, 96%) 100%);
}

.bonus-subtitle {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    font-style: italic;
}

.text-red {
    color: #ef4444;
}

.line-through {
    text-decoration: line-through;
}

.text-dark {
    color: var(--dark);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.bonus-card {
    background: var(--card-bg);
    border: 2px solid var(--orange);
    border-radius: 16px;
    padding: 0 16px 24px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15);
}

.bonus-image-wrapper {
    margin: 0 -16px;
    overflow: hidden;
}

.bonus-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.bonus-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 12px 0 4px;
}

.bonus-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ef4444;
    margin-bottom: 8px;
}

.bonus-price s {
    text-decoration: line-through;
}

.bonus-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.4;
}

.bonus-total {
    text-align: center;
    background: linear-gradient(to right, var(--cta-green-gradient-from), var(--cta-green-gradient-to));
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 30px rgba(0, 208, 148, 0.3);
}

.bonus-total-highlight {
    font-weight: 900;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, hsl(220, 15%, 20%) 0%, hsl(220, 15%, 15%) 100%);
}

.pricing-section .section-title {
    color: white;
}

.pricing-section .section-divider {
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card-premium {
    border-color: var(--orange);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #f97316, #eab308);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    font-style: italic;
}

.plan-anchor-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0;
}

.plan-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cta-green);
    margin-bottom: 4px;
    font-style: italic;
}

.plan-price-premium {
    color: var(--cta-green);
}

.plan-period {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 20px;
    font-style: italic;
}

.social-proof-badge {
    font-size: 0.75rem;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--dark);
}

.plan-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.bonus-emoji {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.plan-button-basic {
    background: linear-gradient(to right, var(--cta-green-gradient-from), var(--cta-green-gradient-to));
    color: white;
    box-shadow: 0 8px 24px rgba(0, 208, 148, 0.3);
}

.plan-button-premium {
    background: linear-gradient(to right, var(--cta-green-gradient-from), var(--cta-green-gradient-to));
    color: white;
    box-shadow: 0 8px 30px rgba(0, 208, 148, 0.4);
}

.plan-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 208, 148, 0.5);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, hsl(210, 40%, 96%) 0%, hsl(220, 60%, 97%) 100%);
}

.stars-rating {
    text-align: center;
    margin-bottom: 40px;
}

.stars {
    color: #facc15;
    font-size: 1.3rem;
    margin-right: 8px;
}

.rating-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--foreground);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ========================================
   AUTHOR SECTION
   ======================================== */
.author-section {
    padding: 80px 0;
    background: linear-gradient(180deg, hsl(220, 60%, 97%) 0%, hsl(210, 40%, 96%) 100%);
}

.author-content {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.author-image-wrapper {
    flex-shrink: 0;
    width: 280px;
}

.author-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.author-role {
    font-size: 1rem;
    color: var(--cta-green);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 24px;
}

.author-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.stat {
    text-align: center;
    background: var(--card-bg);
    border-radius: 12px;
    padding: 16px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--orange);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

.author-quote {
    margin-top: 24px;
    padding-left: 20px;
    border-left: 4px solid var(--orange);
}

.author-quote p {
    font-style: italic;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.guarantee-section {
    padding: 80px 0;
    background: linear-gradient(180deg, hsl(210, 40%, 96%) 0%, hsl(220, 60%, 97%) 100%);
    text-align: center;
}

.guarantee-title {
    font-size: 1.75rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.guarantee-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.guarantee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.guarantee-icon {
    margin-bottom: 16px;
}

.guarantee-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.guarantee-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

.cta-button-guarantee {
    font-size: 1rem;
    padding: 16px 40px;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, hsl(220, 60%, 97%) 0%, hsl(210, 40%, 96%) 100%);
}

.faq-subtitle {
    text-align: center;
    color: var(--muted);
    margin-bottom: 40px;
    font-size: 1rem;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: rgba(0, 0, 0, 0.02);
}

.faq-chevron {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.faq-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-open .faq-answer {
    max-height: 300px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 24px 0;
    text-align: center;
    background: hsl(220, 15%, 12%);
    color: hsl(0, 0%, 60%);
    font-size: 0.8rem;
}

/* ========================================
   UPSELL MODAL
   ======================================== */
.upsell-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.upsell-modal {
    background: white;
    border-radius: 20px;
    padding: 36px 30px;
    max-width: 450px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upsell-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--muted);
    cursor: pointer;
    line-height: 1;
}

.upsell-badge {
    display: inline-block;
    background: linear-gradient(to right, #f97316, #eab308);
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.upsell-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.upsell-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.upsell-anchor {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 0;
}

.upsell-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--cta-green);
    margin-bottom: 4px;
    font-style: italic;
}

.upsell-period {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 20px;
}

.upsell-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.upsell-features li {
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--dark);
}

.upsell-accept-btn {
    display: block;
    background: linear-gradient(to right, var(--cta-green-gradient-from), var(--cta-green-gradient-to));
    color: white;
    font-weight: 800;
    font-size: 1rem;
    padding: 16px 24px;
    border-radius: 50px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(0, 208, 148, 0.3);
    transition: all 0.3s ease;
}

.upsell-accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 208, 148, 0.5);
}

.upsell-decline-btn {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    text-decoration: underline;
    cursor: pointer;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .cards-grid,
    .bonus-grid,
    .testimonials-grid,
    .guarantee-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .author-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cards-grid,
    .bonus-grid,
    .pricing-grid,
    .testimonials-grid,
    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-grid {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .author-content {
        flex-direction: column;
        text-align: center;
    }

    .author-image-wrapper {
        width: 200px;
    }

    .author-image {
        height: 260px;
    }

    .author-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .video-wrapper {
        max-width: 360px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 15px 35px;
    }

    .cta-button-guarantee {
        font-size: 0.9rem;
        padding: 14px 28px;
    }

    .bonus-subtitle {
        font-size: 1.4rem;
    }

    .guarantee-title {
        font-size: 1.4rem;
    }

    .hero-section,
    .receive-section,
    .benefits-section,
    .bonus-section,
    .testimonials-section,
    .author-section,
    .guarantee-section,
    .faq-section {
        padding: 50px 0;
    }

    .pricing-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .container {
        padding: 0 1rem;
    }

    .plan-price {
        font-size: 2.5rem;
    }

    .top-banner-content {
        font-size: 0.7rem;
    }

    .author-stats {
        gap: 8px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }
}