/* Global variables & Reset */
:root {
    --bg-color: #0d0f14;
    --text-color: #e0e6ed;
    --accent-gold: #D4AF37;
    --accent-glow: rgba(212, 175, 55, 0.4);
    --primary-blue: #2563eb;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Inter', sans-serif;
    --bege-claro: #fdfaf5;
    --text-dark: #2d3748;
    --accent-cta: #10b981;
    /* Emerald green for contrast */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden !important;
    touch-action: manipulation;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
    background:
        linear-gradient(rgba(13, 15, 20, 0.2), rgba(13, 15, 20, 0.3)),
        url('background-new.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}


/* Typography & Layout Utilities */
h1,
h2,
h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reverse-mobile {
    /* Utility to flip order on mobile if needed, handled in media query */
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.narrow-container {
    max-width: 800px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-8 {
    margin-top: 4rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta {
    background: var(--accent-cta);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    border: none;
    font-size: 1.2rem;
    padding: 20px 40px;
}

.btn-cta:hover {
    background: #059669;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
    color: #fff;
}

.btn-primary {
    background: linear-gradient(90deg, var(--accent-gold), #b8962e);
    color: #000;
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background: var(--accent-gold);
    color: #000;
}

.cta-dual-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.cta-dual-row .btn {
    min-width: 250px;
}

/* General Light Box for Copy */
.copy-box-light {
    background: var(--bege-claro);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.copy-box-light .highlight-title {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.copy-box-light p,
.copy-box-light .benefit-row p {
    color: #4a5568;
}

.copy-box-light .benefit-row strong {
    color: var(--text-dark);
}

/* Hero Box Redesign */
.hero-copy-box {
    background: var(--bege-claro);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 850px;
    margin: 0 auto;
    color: var(--text-dark);
    text-align: center;
}

.hero-copy-box h1 {
    color: var(--text-dark);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-copy-box h1 .gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subheadline {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    color: #4a5568;
    font-weight: 500;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 2.5rem auto;
    display: inline-block;
    text-align: left;
}

.hero-bullets li {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-bullets li::before {
    content: '✔';
    color: var(--accent-cta);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-copy-box {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .hero-copy-box h1 {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-bullets li {
        font-size: 1rem;
    }
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--glass-border);
}

/* Bonus Showcase Styles (Static) */
.bonus-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bonus-item {
    max-width: 220px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-align: center;
}

.bonus-item img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #eee;
}

.bonus-item figcaption {
    font-family: 'Indie Flower', cursive, sans-serif;
    /* Handwriting style if available, defaults to sans */
    color: #444;
    margin-top: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.rotate-left {
    transform: rotate(-5deg);
    z-index: 1;
}

.rotate-right {
    transform: rotate(5deg);
    z-index: 2;
    margin-top: 20px;
}

.bonus-item:hover {
    transform: scale(1.1) rotate(0deg);
    z-index: 10;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    z-index: 1000;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-gold);
}

.btn-nav {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--accent-gold);
    color: black;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    /* Reduced slightly to peek content below */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 4rem;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: #a0aec0;
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.large-text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: #fff;
}

.pain-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
    margin: 2rem auto;
    font-size: 1.2rem;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.highlight-title {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.benefit-row {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check-icon {
    font-size: 1.4rem;
    min-width: 24px;
}

.mockup-placeholder {
    width: 100%;
    height: 500px;
    /* Taller */
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.glass-card {
    padding: 1rem;
    border-radius: 16px;
}

/* Pricing Section */
.pricing-section {
    text-align: center;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

.section-header {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.premium {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
    transform: scale(1.02);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-gold);
    color: black;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.pricing-card:hover {
    transform: translateY(-8px);
}

.pricing-card.premium:hover {
    transform: translateY(-8px) scale(1.02);
}

.card-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--text-color);
}

.subtitle {
    font-size: 0.9rem;
    color: #a0aec0;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.highlight {
    color: var(--accent-gold);
    font-weight: bold;
}

/* FAQ Styles */
summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0.5rem;
    border-radius: 8px;
    list-style: none;
    transition: 0.3s;
}

summary:hover {
    background: rgba(255, 255, 255, 0.08);
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary {
    color: var(--accent-gold);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

details p {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 1rem;
    color: #cbd5e0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    animation: fadeIn 0.8s ease 0.2s forwards;
    opacity: 0;
}

.fade-in-delay-2 {
    animation: fadeIn 0.8s ease 0.4s forwards;
    opacity: 0;
}

.fade-in-delay-3 {
    animation: fadeIn 0.8s ease 0.6s forwards;
    opacity: 0;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Footer */
.footer {
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

/* Mobile Media Query - Aggressive Mobile Optimization */
@media (max-width: 768px) {
    :root {
        font-size: 14px;
        /* Smaller base font for the entire mobile site */
    }

    /* Maximize width for text */
    .container {
        padding: 0 15px;
        /* Thinner gutters */
    }

    .narrow-container {
        width: 100%;
    }

    .section {
        padding: 3rem 0;
        /* Tighter sections */
    }

    /* Buttons mobile adjustment */
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Headings */
    h1,
    .hero h1 {
        font-size: 1.6rem !important;
        /* Force smaller h1 */
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.8rem;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    /* Body Text */
    p {
        font-size: 1rem;
        line-height: 1.5;
        text-align: left;
        /* Easier to read on mobile than center */
    }

    .hero p {
        font-size: 1rem;
        color: #d1d5db;
        /* Lighter for contrast */
        margin-bottom: 1.5rem;
    }

    .large-text {
        font-size: 1.1rem !important;
        /* Drastically reduce from 1.5rem */
        line-height: 1.4;
    }

    /* Target Image Reduction */
    .responsive-img {
        max-width: 75% !important;
        /* Even smaller as per user urgency */
        height: auto;
        display: block;
        margin: 0 auto 1.5rem auto;
        border-radius: 12px;
    }

    /* Layout Components */
    .pain-box,
    .filter-box,
    .guarantee-box,
    .glass-card {
        padding: 1.2rem;
        /* Compact boxes */
        margin: 1.5rem 0;
    }

    /* Benefits & Lists */
    .benefit-row {
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 1.2rem;
    }

    .check-icon {
        font-size: 1.2rem;
        min-width: 20px;
    }

    /* Center usually text-centered sections for headers only, keep body left */
    .text-center p {
        text-align: left;
    }

    /* Exceptions for true center items */
    .hero-content,
    .hero-content p,
    .pricing-card p,
    .card-header p,
    .footer p,
    .guarantee-box p {
        text-align: center;
    }

    /* Adjust Badge */
    .badge,
    .badge-bonus {
        font-size: 0.75rem;
        padding: 4px 12px;
    }

    /* Navbar compacting */
    .navbar {
        width: 100%;
        top: 0;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;
        background: rgba(13, 15, 20, 0.95);
        /* Solid background for readability */
        padding: 10px 15px;
    }

    /* Stack layouts */
    .split-layout,
    .pricing-grid,
    .testimonials-grid,
    .filter-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Pricing tweaks */
    .pricing-card.premium {
        transform: none;
        margin-bottom: 2rem;
        border: 2px solid var(--accent-gold);
        /* Make sure it pops without the scale */
    }

    .pricing-card.premium:hover {
        transform: none;
        box-shadow: none;
    }

    .bonus-showcase {
        gap: 1.5rem;
    }

    .bonus-item {
        max-width: 140px;
    }

    /* Fix background for mobile */
    body {
        background-attachment: scroll !important;
        background-position: center 20% !important;
        /* Adjust positioning to show top of image better */
        background-size: cover;
    }
}

/* Bonus Section Styles */
.highlight-bg {
    background: radial-gradient(circle at 80% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
}



.badge-bonus {
    background: var(--accent-gold);
    color: #000;
    padding: 6px 14px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.bonus-box {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.clean-list {
    list-style: none;
}

.clean-list li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.price-anchor {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.strike {
    text-decoration: line-through;
    color: #a0aec0;
    font-size: 0.9rem;
}

.free-tag {
    color: #4ade80;
    /* Success Green */
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.2rem;
}

/* Coloring Book Visuals */
.coloring-book-mockup {
    width: 100%;
    height: 450px;
    background: #fff;
    border-radius: 12px;
    /* Paper-like */
    transform: rotate(-3deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 8px solid #f0f0f0;
}

.page-preview {
    border: 2px dashed #ccc;
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: 'Comic Sans MS', 'Chalkboard SE', sans-serif;
    /* Playful font for mockup */
}

.crayons-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 4rem;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.3));
    transform: rotate(15deg);
}

/* Filter/Warning Section */
.highlight-red {
    color: #ef4444;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.4);
}

.filter-box {
    background: linear-gradient(145deg, rgba(20, 20, 25, 0.9), rgba(30, 30, 40, 0.9));
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.filter-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.filter-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.filter-list li strong {
    color: #fff;
    font-weight: 600;
}

.icon-cross {
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .filter-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-box {
        padding: 1.5rem;
    }
}



/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: #e2e8f0;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.author {
    font-weight: bold;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author {
    font-weight: bold;
    color: var(--accent-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Guarantee Section */
.guarantee-box {
    padding: 3rem;
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

.shield-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.5));
}



/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(145deg, #1a1c23 0%, #0d0f14 100%);
    padding: 1rem;
    /* Ultra compact padding */
    border-radius: 20px;
    border: 1px solid var(--accent-gold);
    max-width: 360px;
    /* even smaller width */
    width: 92%;
    max-height: 90svh !important;
    height: auto !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    text-align: center;
    position: relative;
    z-index: 10000;
    transform: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-content * {
    max-width: 100%;
    /* Impede zoom/scale estranho em filhos */
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--accent-red);
    opacity: 1;
}

.offer-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.8rem;
    /* more compact */
    border-radius: 10px;
    border: 1px dashed var(--accent-gold);
    margin: 1rem 0;
    /* less margin */
}

.new-price {
    font-size: 1.8rem;
    /* slightly smaller */
    font-weight: bold;
    color: #4ade80;
}

.width-100 {
    width: 100%;
    display: block;
}

.btn-link {
    background: none;
    border: none;
    color: #a0aec0;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    transition: 0.3s;
    padding: 10px;
    display: inline-block;
    width: 100%;
}

.btn-link.strong-link {
    color: var(--accent-gold);
    font-weight: bold;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    margin-top: 5px;
}

.btn-link.strong-link:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Tweaks */
/* Mobile Tweaks - Specific Components */
@media (max-width: 768px) {
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .empty-side {
        display: none;
    }

    .coloring-book-mockup {
        height: 250px;
        /* Smaller height */
        transform: rotate(0);
        margin-bottom: 1.5rem;
    }

    /* Body lock when modal is open */
    body.modal-open {
        overflow: hidden;
        height: 100vh;
        width: 100%;
        position: fixed;
    }

    .btn,
    .btn-cta,
    .btn-primary,
    .btn-secondary {
        width: 90% !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        margin-bottom: 1rem;
    }

    .cta-dual-row {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .modal-content {
        padding: 1rem !important;
        /* Force ultra compact padding */
        width: 92%;
        margin: auto;
        max-height: 90svh !important;
    }

    .close-modal {
        top: 10px;
        right: 15px;
    }

    /* Ensure images don't overflow */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Deliverables Section */
.deliverables-container {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.deliverables-box {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    border: 1px solid var(--accent-gold);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.05) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.deliverables-box h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.deliverables-list {
    list-style: none;
    padding: 0;
}

.deliverables-list li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width: 768px) {
    .deliverables-box {
        padding: 1.5rem;
    }

    .deliverables-list li {
        font-size: 1.1rem;
        align-items: flex-start;
    }

    .deliverables-box h3 {
        font-size: 1.3rem;
    }
}

/* Announcement Bar */
.announcement-bar {
    background: var(--accent-gold);
    color: #000;
    padding: 12px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar {
    top: 60px;
    /* Adjust based on bar height */
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.9rem;
        padding: 10px 15px;
    }

    .navbar {
        top: 55px;
    }
}