/* ===== DESIGN SYSTEM (PLAYFUL) ===== */
:root {
    --bg-page: #f8fafc;
    --bg-white: #ffffff;
    --bg-accent: #eff6ff;
    
    --primary: #3b82f6; /* Playful Blue */
    --primary-soft: #dbeafe;
    
    --secondary: #f97316; /* Vibrant Orange */
    --secondary-soft: #ffedd5;
    
    --tertiary: #10b981; /* Fresh Green */
    --tertiary-soft: #d1fae5;
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    --border: #e2e8f0;
    --shadow-soft: 0 20px 40px rgba(59, 130, 246, 0.08);
    --shadow-hover: 0 30px 60px rgba(59, 130, 246, 0.15);
    
    --font-family: 'Outfit', sans-serif;
    --radius-pill: 100px;
    --radius-round: 40px;
    --radius-card: 32px;
    --bonus-bg: #f8fafc;
    --bonus-border: #fee2e2; /* Soft Pink */
    
    --transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ===== BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: var(--font-family);
    background-color: var(--bg-page);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    border-radius: var(--radius-pill);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    gap: 12px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.4);
}

.btn-orange {
    background: var(--secondary);
    color: #fff;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-orange:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

/* ===== HERO ===== */
.hero {
    padding: 60px 0 100px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero::after {
    display: none; /* Removed the fade gradient to tighten space */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    background: linear-gradient(135deg, var(--primary-soft), #fff);
    color: var(--primary);
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 32px;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-main);
}

.text-blue { color: var(--primary); }
.text-orange { color: var(--secondary); }

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 90%;
}

/* ===== DYNAMIC EFFECTS ===== */
#hero-bubbles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    animation: float-rise var(--duration) linear infinite;
    opacity: 0;
}

@keyframes float-rise {
    0% { transform: translateY(110vh) scale(1); opacity: 0; }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

.blob-deco {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.15;
    animation: move-blobs 20s infinite alternate;
}

.blob-1 {
    width: 600px; height: 600px;
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    top: -200px; right: -100px;
}

.blob-2 {
    width: 500px; height: 500px;
    background: linear-gradient(135deg, var(--secondary), #fb923c);
    bottom: -150px; left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    position: absolute;
    width: 400px; height: 400px;
    background: linear-gradient(135deg, var(--tertiary), #34d399);
    top: 30%; left: 40%;
    filter: blur(100px);
    opacity: 0.1;
    z-index: 0;
    animation: move-blobs 25s infinite alternate-reverse;
}

@keyframes move-blobs {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(100px, 50px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-50px, 100px) rotate(240deg) scale(0.9); }
    100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 110%; height: 110%;
    background: var(--primary-soft);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: -1;
    animation: morph 6s linear infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

.hero-img {
    width: 100%;
    border-radius: var(--radius-round);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
    border: 12px solid #fff;
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-img:hover { transform: rotate(0) scale(1.02); }

/* GLASSMORPHISM CARD */
.worksheet-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 100%;
    max-width: 320px;
    border-radius: 32px;
    padding: 40px 32px;
    min-height: 520px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    position: relative;
    margin-bottom: 24px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    animation: slideUp 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* BUTTON ENHANCEMENTS */
.btn-primary, .btn-orange {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-orange::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-150%) rotate(45deg); }
    100% { transform: translateX(150%) rotate(45deg); }
}

.pulse-button {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0); }
}

.hero-float-badge {
    position: absolute;
    background: #fff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 4s ease-in-out infinite;
}

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

/* ===== SECTIONS ===== */
section { padding: 20px 0; } /* Minimized Section Padding */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-pretitle {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-main);
    position: relative;
}

.section-title span {
    position: relative;
    z-index: 1;
}

.section-title .highlight-orange {
    color: var(--secondary);
}

.section-title .highlight-orange::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 12px;
    background: var(--secondary-soft);
    z-index: -1;
    transform: skewX(-15deg);
}

/* ===== CARDS ===== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.play-card {
    background: #fff;
    padding: 48px;
    border-radius: var(--radius-round);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.play-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    width: 80px; height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 32px;
}


/* ===== PRICING ===== */
.pricing-wrap {
    background: #fff;
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-round);
    padding: 60px;
    border: 3px dashed var(--primary-soft);
    position: relative;
}

.pricing-strike { text-decoration: line-through; color: var(--text-muted); font-size: 1.5rem; }
.pricing-main { font-size: 5rem; font-weight: 900; color: var(--primary); line-height: 1; margin: 10px 0; }

/* ===== FAQ ===== */
.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 20px;
    padding: 24px 32px;
    border: 1px solid var(--border);
}

/* Responsiveness */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
}

/* WORKSHEET CARD INNER ELEMENTS */
.worksheet-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #FFD700;
    color: #000;
    font-weight: 900;
    padding: 6px 12px;
    border-radius: 8px;
    transform: rotate(5deg);
    font-size: 0.7rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.worksheet-header h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.worksheet-header p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.option-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(241, 245, 249, 0.5);
    padding: 10px 16px;
    border-radius: 12px;
    margin-bottom: 8px;
    font-size: 0.75rem;
    font-weight: 600;
}

.option-letter {
    background: #fff;
    width: 24px; height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bonus-badge {
    display: inline-block;
    background: #FFD700;
    color: #000;
    padding: 10px 30px;
    border-radius: 100px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.bonus-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.bonus-card {
    background: #fff;
    border: 2px solid var(--bonus-border);
    border-radius: 32px;
    padding: 0; /* REMOVED PADDING FOR FULL IMAGE */
    text-align: center;
    transition: var(--transition);
    overflow: hidden; /* PROTECT RADIUS */
}

.bonus-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.1);
}

.bonus-img-placeholder {
    width: 100%;
    margin-bottom: 0; /* NO MARGIN SO BODY TOUCHES */
    border: none;
    border-radius: 0;
    overflow: hidden;
}

.bonus-body {
    padding: 24px 30px 30px;
}

.bonus-card h4 {
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    color: var(--text-main);
}

.bonus-value {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
}

.btn-bonus {
    background: #FFB300;
    color: #000;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-bonus:hover {
    background: #FFA000;
    transform: scale(1.05);
}

/* ===== UPSELL MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 40px;
    padding: 40px;
    position: relative;
    text-align: center;
    transform: translateY(50px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.upsell-badge {
    background: var(--secondary);
    color: #fff;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 900;
    display: inline-block;
    margin-bottom: 20px;
}

.upsell-title {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.1;
    color: var(--text-main);
}

.upsell-price-old {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.upsell-price-new {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    margin: 10px 0;
}

.upsell-list {
    text-align: left;
    background: var(--primary-soft);
    padding: 20px;
    border-radius: 20px;
    margin: 24px 0;
    list-style: none;
}

.upsell-list li {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

body.modal-open {
    overflow: hidden; /* NO SCROLL */
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }
    .upsell-title { font-size: 1.8rem; }
    .upsell-price-new { font-size: 2.8rem; }
}

/* ===== TESTIMONIAL CAROUSEL ===== */
.carousel-container {
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.carousel-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 350px;
    flex-shrink: 0;
    background: #fff;
    padding: 30px;
    border-radius: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 480px) {
    .testimonial-card { width: 280px; padding: 20px; }
}

.pricing-main {
    font-weight: 900;
    line-height: 1;
    margin: 20px 0;
    white-space: nowrap;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
}

.pricing-main span {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 10px;
}
