/* style.css - 23 Técnicas */
:root {
    --primary: #ff0000;
    /* pure red */
    --primary-hover: #cc0000;
    /* darker pure red */
    --secondary: #111;
    --bg-color: #050505;
    --surface: #1a1a1a;
    --surface-hover: #222;
    --text: #e5e5e5;
    --text-muted: #9ca3af;
    --accent: #ff0000;
    /* pure red */
    --green: #22c55e;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    line-height: 1.2;
}

.highlight {
    color: var(--accent);
}

.text-green {
    color: var(--green);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.section-desc {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 1.2rem;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    text-align: center;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.4);
    border-bottom: 4px solid #8B0000;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.6);
    background: var(--primary-hover);
}

.btn-primary:active {
    transform: translateY(2px);
    border-bottom-width: 0px;
    margin-top: 4px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
        box-shadow: 0 0 25px rgba(220, 38, 38, 0.6);
    }

    100% {
        transform: scale(1);
    }
}

.large {
    font-size: 1.15rem;
    padding: 16px 28px;
    max-width: 600px;
}

/* Urgency Banner */
.urgency-banner {
    background-color: var(--primary);
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
    padding: 40px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
}

.main-headline {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .main-headline {
        font-size: 3.5rem;
    }
}

.sub-headline {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    aspect-ratio: 16 / 9;
    background-color: #000;
}

.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    top: 0;
    left: 0;
}

.audio-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.audio-hint svg {
    width: 18px;
    height: 18px;
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.secure-badge svg {
    width: 16px;
    height: 16px;
    color: var(--green);
}

/* Sections General */
section {
    padding: 60px 0;
}



.cards-grid {
    display: grid;
    gap: 20px;
}

.grid-3 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-2 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Problem/Solution */
.stat-highlight {
    font-size: 4rem;
    color: var(--primary);
    line-height: 1;
}

.comparison-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: var(--surface);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.bad-card {
    border-top: 4px solid var(--primary);
    background: linear-gradient(to bottom, #1a0a0a, var(--surface));
}

.good-card {
    border-top: 4px solid var(--green);
    background: linear-gradient(to bottom, #0a1a10, var(--surface));
}

.card-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.bad-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.good-list li svg {
    color: var(--green);
    flex-shrink: 0;
}

/* Demo Showcase */
.demo-showcase {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    background: var(--surface);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .demo-showcase {
        flex-direction: row;
        padding: 40px;
    }
}

.demo-video-wrapper {
    width: 100%;
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.demo-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.3s;
}

/* No hover dim effects - images always vivid */

.play-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
}

.play-overlay svg {
    width: 14px;
    height: 14px;
}

.demo-benefits {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.icon-red {
    color: var(--primary);
    flex-shrink: 0;
    width: 28px;
    height: 28px;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Techniques Preview */
.technique-card {
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s;
}

.technique-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.4);
}

.img-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.technique-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.lock-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.technique-card:hover .lock-overlay {
    background: transparent;
}

.lock-overlay svg {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.7);
}

.technique-card:hover .lock-overlay svg {
    opacity: 0;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tag {
    font-size: 0.65rem;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-family: var(--font-main);
    font-weight: bold;
}

.tag-beginner {
    background: rgba(220, 38, 38, 0.2);
    color: #ef4444;
}

.tag-advanced {
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
}

.tag-secret {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
}

.card-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* WhatsApp Mockup */
.whatsapp-prints {
    background-image: radial-gradient(circle at center, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
}

.wpp-mockup {
    max-width: 400px;
    margin: 0 auto;
    background: #0b141a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    border: 4px solid #333;
}

.wpp-header {
    background: #202c33;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wpp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.wpp-info {
    flex: 1;
}

.wpp-info strong {
    display: block;
    font-size: 1rem;
    color: #e9edef;
}

.wpp-info span {
    font-size: 0.8rem;
    color: #8696a0;
}

.wpp-actions {
    display: flex;
    gap: 15px;
    color: #8696a0;
}

.wpp-actions svg {
    width: 20px;
    height: 20px;
}

.wpp-body {
    background: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: contain;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 250px;
}

.wpp-msg {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    position: relative;
    color: #e9edef;
}

.wpp-msg.received {
    align-self: flex-start;
    background: #202c33;
    border-top-left-radius: 0;
}

.wpp-msg.sent {
    align-self: flex-end;
    background: #005c4b;
    border-top-right-radius: 0;
}

.wpp-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    float: right;
    margin-top: 5px;
    margin-left: 10px;
}

.read-receipt {
    width: 14px;
    height: 14px;
    color: #53bdeb;
    float: right;
    margin-top: 5px;
    margin-left: 4px;
}

.audio-msg {
    display: flex;
    align-items: center;
    gap: 10px;
}

.play-btn {
    width: 30px;
    height: 30px;
    color: #8696a0;
}

.audio-wave {
    width: 100px;
    height: 20px;
    background: linear-gradient(90deg, #53bdeb 40%, #8696a0 40%);
    mask: repeating-linear-gradient(90deg, #000 0px, #000 3px, transparent 3px, transparent 5px);
    -webkit-mask: repeating-linear-gradient(90deg, #000 0px, #000 3px, transparent 3px, transparent 5px);
}

.audio-time {
    font-size: 0.7rem;
    color: #8696a0;
}

/* Author Section */
.author-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
    gap: 30px;
}

@media (min-width: 768px) {
    .author-card {
        flex-direction: row;
        text-align: left;
    }
}

.author-img-wrapper {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.author-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.author-info h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.author-role {
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.divider {
    width: 50px;
    height: 3px;
    background: var(--primary);
    margin: 15px 0;
}

@media (max-width: 767px) {
    .divider {
        margin: 15px auto;
    }
}

.author-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
}

/* Video Testimonials */
.testimonial-video {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 9/16;
    max-width: 300px;
    margin: 0 auto;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.testimonial-video:hover img {
    transform: scale(1.05);
}

.play-btn-large {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
    transition: 0.3s;
}

.testimonial-video:hover .play-btn-large {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-btn-large svg {
    width: 30px;
    height: 30px;
    margin-left: 4px;
}

/* Offer Section */
.offer-section {
    padding: 80px 0;
    text-align: center;
}

.offer-box {
    background: linear-gradient(to bottom, var(--surface), #0a0a0a);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.2);
}

.offer-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto 30px;
}

.offer-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.offer-list li svg {
    color: var(--green);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.por-apenas {
    font-size: 1rem;
    color: var(--text);
    margin-top: 5px;
}

.new-price {
    font-size: 4rem;
    font-family: var(--font-display);
    font-weight: 900;
    color: #22c55e;
    line-height: 1;
}

.price-details {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.secure-payments {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Guarantee Section */
.guarantee-box {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    background: var(--surface);
    padding: 40px;
    border-radius: 20px;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

@media (min-width: 768px) {
    .guarantee-box {
        flex-direction: row;
        text-align: left;
    }
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
    color: #eab308;
}

.guarantee-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.guarantee-text p {
    color: var(--text-muted);
}

/* Bonus Section */
.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.bonus-card {
    background: var(--surface);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 16px;
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.bonus-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

.bonus-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.bonus-header h4 {
    font-size: 1.2rem;
    color: white;
}

.bonus-badge {
    background: var(--green);
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.bonus-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.bonus-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.bonus-price span {
    text-decoration: line-through;
    color: var(--primary);
    margin-left: 5px;
    font-size: 1.15rem;
    font-weight: bold;
}

/* FAQ Accordion */
.faq-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.15rem;
    font-weight: 500;
    font-family: var(--font-main);
    text-align: left;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin: 0 auto 20px;
}

.copyright {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Carousel specific styles */
.testimonial-carousel-section {
    padding: 20px 0 60px;
    background-image: radial-gradient(circle at center, rgba(220, 38, 38, 0.05) 0%, transparent 70%);
}

.carousel-title {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    font-family: var(--font-main);
    font-weight: normal;
    font-style: italic;
    margin-bottom: 25px;
}

.carousel-wrapper {
    max-width: 450px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary);
}

/* ===================== */
/* Pricing Cards Section */
/* ===================== */

.pricing-cards-decision {
    text-align: center;
    font-size: 1.3rem;
    color: #fbbf24;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.pricing-cards-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .pricing-cards-wrapper {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.pricing-card {
    background: linear-gradient(to bottom, var(--surface), #0a0a0a);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px 24px;
    position: relative;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
}

/* Featured / Recommended Card */
.pricing-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.25), 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(1.03);
}

.pricing-card.featured:hover {
    transform: scale(1.05);
}

.pricing-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 0.75rem;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.pricing-card-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 6px;
    margin-top: 10px;
}

.pricing-card-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card-old-price {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.pricing-card-price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card-price-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.pricing-card-divider {
    width: 60%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 auto 20px;
}

.pricing-card-features {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
    padding: 0;
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.pricing-card-features li .icon-check {
    color: var(--green);
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.pricing-card-features li .icon-x {
    color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    font-size: 1.1rem;
    line-height: 1.4;
}

.pricing-card-features li.disabled {
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
}

.pricing-card .btn {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 14px 20px;
}

.pricing-card.featured .btn {
    font-size: 1.05rem;
}

/* ============= */
/* Upsell Popup  */
/* ============= */

.upsell-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.upsell-overlay.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.upsell-modal {
    background: linear-gradient(to bottom, #1a1a1a, #0a0a0a);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 35px 25px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.upsell-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.upsell-close:hover {
    color: white;
}

.upsell-modal h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: #eab308;
    margin-bottom: 8px;
}

.upsell-modal .upsell-subtitle {
    font-size: 1rem;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.5;
}

.upsell-bonus-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 24px;
}

.upsell-bonus-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text);
}

.upsell-bonus-list li .icon-check {
    color: var(--green);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.upsell-price-box {
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.upsell-price-old {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.upsell-price-new {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
}

.upsell-price-detail {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.upsell-modal .btn {
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
}

.upsell-decline {
    display: inline-block;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.upsell-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}