/* ========================================
   Les Prépas de Mathilde - Landing Page V3
   Modern Classroom / Playful Education Design
   Colorful, Joyful, Educational
   ======================================== */

/* Variables */
:root {
    /* Main Colors - Vibrant & Joyful */
    --orange: #FF6B35;
    --orange-light: #FF8F5C;
    --orange-pale: #FFF0EB;

    --turquoise: #00C9B7;
    --turquoise-light: #5DDFD0;
    --turquoise-pale: #E6FAF8;

    --pink: #FF8FAB;
    --pink-light: #FFB3C6;
    --pink-pale: #FFF0F4;

    --yellow: #FFD166;
    --yellow-light: #FFE08A;
    --yellow-pale: #FFFBEB;

    --purple: #9B5DE5;
    --purple-light: #B88AEE;
    --purple-pale: #F5EEFF;

    --green: #06D6A0;
    --green-light: #4DE8BF;
    --green-pale: #E6FBF5;

    /* Neutrals */
    --white: #FFFFFF;
    --cream: #FFFCF7;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-500: #6C757D;
    --gray-700: #495057;
    --gray-900: #212529;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);

    /* Color Shadows */
    --shadow-orange: 0 10px 40px rgba(255, 107, 53, 0.25);
    --shadow-turquoise: 0 10px 40px rgba(0, 201, 183, 0.25);
    --shadow-pink: 0 10px 40px rgba(255, 143, 171, 0.25);
    --shadow-yellow: 0 10px 40px rgba(255, 209, 102, 0.3);
    --shadow-purple: 0 10px 40px rgba(155, 93, 229, 0.25);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Floating Elements Background
   ======================================== */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.08;
    animation: floatAround 20s ease-in-out infinite;
}

.float-pencil { top: 10%; left: 5%; animation-delay: 0s; }
.float-star { top: 20%; right: 8%; animation-delay: 2s; }
.float-book { top: 50%; left: 3%; animation-delay: 4s; }
.float-apple { top: 70%; right: 5%; animation-delay: 6s; }
.float-ruler { bottom: 20%; left: 10%; animation-delay: 8s; }
.float-heart { bottom: 30%; right: 12%; animation-delay: 10s; }

@keyframes floatAround {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(0) rotate(-3deg); }
    75% { transform: translateY(20px) rotate(3deg); }
}



/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), all 0.3s ease;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-text {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.nav-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.35);
}

.nav-cta-arrow {
    transition: transform 0.3s ease;
}

.nav-cta:hover .nav-cta-arrow {
    transform: translateX(4px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--orange-pale) 30%, var(--pink-pale) 60%, var(--turquoise-pale) 100%);
    overflow: hidden;
}

/* Hero Decorative Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
}

.shape-circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--orange-light) 0%, transparent 70%);
    top: -150px;
    right: -100px;
    opacity: 0.3;
    animation: pulse 8s ease-in-out infinite;
}

.shape-circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--turquoise-light) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    opacity: 0.3;
    animation: pulse 6s ease-in-out infinite reverse;
}

.shape-blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pink-light) 0%, transparent 70%);
    top: 40%;
    right: 20%;
    opacity: 0.25;
    animation: pulse 7s ease-in-out infinite 1s;
}

.shape-dots {
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--yellow) 3px, transparent 3px);
    background-size: 20px 20px;
    top: 20%;
    left: 10%;
    opacity: 0.3;
    animation: rotate 30s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
}

.hero-content {
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.tag-emoji {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 2.6rem;
    color: var(--gray-900);
    margin-bottom: 24px;
    line-height: 1.25;
}

.highlight {
    position: relative;
    color: var(--orange);
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -5px;
    right: -5px;
    height: 14px;
    background: linear-gradient(90deg, var(--yellow), var(--orange-light));
    opacity: 0.35;
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-3deg);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--turquoise), var(--green));
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    margin-left: 10px;
    box-shadow: var(--shadow-turquoise);
}

.badge-small {
    font-size: 0.75rem;
    padding: 4px 14px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin-bottom: 28px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.badge-orange {
    background: var(--orange-pale);
    color: var(--orange);
    border: 2px solid var(--orange-light);
}

.badge-turquoise {
    background: var(--turquoise-pale);
    color: var(--turquoise);
    border: 2px solid var(--turquoise-light);
}

.badge-pink {
    background: var(--pink-pale);
    color: var(--pink);
    border: 2px solid var(--pink-light);
}

.hero-badge:hover {
    transform: translateY(-3px) scale(1.02);
}

.badge-icon {
    font-size: 1.2rem;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-orange);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
}

.cta-icon {
    font-size: 1.3rem;
}

.cta-sparkles {
    animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.3); }
}

.cta-subtext {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--gray-700);
    font-weight: 600;
}

.subtext-icon {
    color: var(--orange);
}

.hero-promises {
    margin-top: 28px;
}

.promise {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: var(--turquoise);
    margin-bottom: 8px;
    font-weight: 600;
}

.promise-arrow {
    color: var(--orange);
}

/* Hero Visual / Video */
.hero-visual {
    position: relative;
    z-index: 1;
}

/* Hero Product Image */
.hero-product-image {
    position: relative;
    margin-bottom: 30px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotate(-2deg);
    transition: all 0.4s ease;
}

.hero-product-image:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 25px 70px rgba(255, 107, 53, 0.3);
}

.hero-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gray-700);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image-badge span {
    font-size: 1.2rem;
}

.video-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Stickers around video */
.sticker {
    position: absolute;
    font-size: 3rem;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
    animation: stickerBounce 3s ease-in-out infinite;
    z-index: 5;
}

@keyframes stickerBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.sticker-star {
    top: 0;
    right: 40px;
    animation-delay: 0s;
}

.sticker-pencil {
    bottom: 80px;
    left: 20px;
    animation-delay: 0.5s;
}

.sticker-heart {
    top: 40%;
    right: 10px;
    font-size: 2.5rem;
    animation-delay: 1s;
}

.sticker-check {
    bottom: 120px;
    right: 60px;
    font-size: 2rem;
    background: var(--green);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    animation-delay: 1.5s;
}

/* Phone Frame */
.phone-wrapper {
    position: relative;
    background: linear-gradient(135deg, var(--orange), var(--pink), var(--purple));
    padding: 8px;
    border-radius: 52px;
    box-shadow: var(--shadow-xl);
}

.phone-frame {
    position: relative;
    width: 270px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 45px;
    padding: 10px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.phone-notch {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 25px;
    background: #0a0a0f;
    border-radius: 15px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 38px;
    overflow: hidden;
}

.phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.phone-home-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

/* Info Pills */
.info-pill {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gray-700);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    animation: pillFloat 4s ease-in-out infinite;
}

@keyframes pillFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pill-icon {
    font-size: 1.2rem;
}

.pill-left {
    top: 80px;
    left: -30px;
    border: 2px solid var(--orange-light);
}

.pill-right {
    bottom: 100px;
    right: -20px;
    border: 2px solid var(--turquoise-light);
    animation-delay: 0.5s;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   Section Base Styles
   ======================================== */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-emoji {
    display: inline-block;
    font-size: 3rem;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-title {
    font-size: 2.2rem;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.3;
}

.section-subtitle {
    font-size: 1.4rem;
    color: var(--orange);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 700px;
    margin: 0 auto;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.card-orange {
    border-color: var(--orange-light);
    box-shadow: var(--shadow-md);
}

.card-turquoise {
    border-color: var(--turquoise-light);
    box-shadow: var(--shadow-md);
}

.card-pink {
    border-color: var(--pink-light);
    box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.card-orange:hover { box-shadow: var(--shadow-orange); }
.card-turquoise:hover { box-shadow: var(--shadow-turquoise); }
.card-pink:hover { box-shadow: var(--shadow-pink); }

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 24px;
    font-family: 'Baloo 2', cursive;
    font-size: 4rem;
    line-height: 1;
    opacity: 0.3;
}

.card-orange .testimonial-quote { color: var(--orange); }
.card-turquoise .testimonial-quote { color: var(--turquoise); }
.card-pink .testimonial-quote { color: var(--pink); }

.testimonial-placeholder {
    height: 200px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 600;
    border: 2px dashed var(--gray-300);
}

/* ========================================
   Problem Section
   ======================================== */
.problem-section {
    background: linear-gradient(135deg, var(--pink-pale) 0%, var(--orange-pale) 100%);
    position: relative;
    overflow: hidden;
}

.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, var(--pink-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--orange-light) 0%, transparent 50%);
    opacity: 0.3;
    pointer-events: none;
}

.problem-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 24px;
    color: var(--gray-700);
}

.problem-text {
    text-align: center;
    margin-bottom: 16px;
    color: var(--gray-700);
}

.problems-list {
    max-width: 650px;
    margin: 32px auto;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--pink);
    transition: all 0.3s ease;
}

.problem-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 1.2rem;
}

.result-box {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    max-width: 520px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-orange);
}

.result-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.result-box h4 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.result-items p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ========================================
   Content/Features Section
   ======================================== */
.content-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:nth-child(1):hover { box-shadow: var(--shadow-orange); border-color: var(--orange-light); }
.feature-card:nth-child(2):hover { box-shadow: var(--shadow-turquoise); border-color: var(--turquoise-light); }
.feature-card:nth-child(3):hover { box-shadow: var(--shadow-pink); border-color: var(--pink-light); }
.feature-card:nth-child(4):hover { box-shadow: var(--shadow-yellow); border-color: var(--yellow-light); }
.feature-card:nth-child(5):hover { box-shadow: var(--shadow-purple); border-color: var(--purple-light); }
.feature-card:nth-child(6):hover { border-color: var(--green-light); }

.feature-icon-box {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.box-orange { background: var(--orange-pale); }
.box-turquoise { background: var(--turquoise-pale); }
.box-pink { background: var(--pink-pale); }
.box-yellow { background: var(--yellow-pale); }
.box-purple { background: var(--purple-pale); }
.box-green { background: var(--green-pale); }

.feature-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.feature-card ul {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.feature-card li {
    margin-bottom: 8px;
    padding-left: 8px;
}

/* ========================================
   Story Section
   ======================================== */
.story-section {
    background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--orange-pale) 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

.image-frame {
    position: relative;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.frame-decoration {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.frame-top-left { top: -10px; left: -10px; background: var(--orange); }
.frame-top-right { top: -10px; right: -10px; background: var(--pink); }
.frame-bottom-left { bottom: -10px; left: -10px; background: var(--turquoise); }
.frame-bottom-right { bottom: -10px; right: -10px; background: var(--yellow); }

.story-placeholder {
    height: 300px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 600;
    border: 2px dashed var(--gray-300);
}

.story-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.image-frame:hover .story-img {
    transform: scale(1.03);
}

.story-name-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: 'Baloo 2', cursive;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 16px;
    box-shadow: var(--shadow-orange);
}

.story-quote {
    position: relative;
    font-size: 1.3rem;
    color: var(--gray-700);
    font-style: italic;
    background: var(--white);
    padding: 24px 24px 24px 40px;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
    border-left: 5px solid var(--orange);
    box-shadow: var(--shadow-sm);
}

.quote-mark {
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: 'Baloo 2', cursive;
    font-size: 3rem;
    color: var(--orange);
    opacity: 0.3;
    line-height: 1;
}

.story-quote cite {
    display: block;
    font-size: 1rem;
    margin-top: 12px;
    font-style: normal;
    font-weight: 700;
    color: var(--orange);
}

.story-subtext {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.story-text p {
    margin-bottom: 14px;
    color: var(--gray-700);
}

.story-highlight {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    margin: 20px 0;
    border: 2px solid var(--yellow-light);
}

.story-list {
    margin: 16px 0 0 8px;
}

.story-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.list-bullet {
    color: var(--orange);
    font-weight: bold;
}

/* ========================================
   Before/After Section
   ======================================== */
.before-after-section {
    background: var(--white);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    margin-top: 40px;
    align-items: start;
}

.comparison-card {
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: all 0.3s ease;
}

.comparison-card.before {
    background: linear-gradient(135deg, var(--pink-pale), var(--white));
    border: 3px solid var(--pink-light);
}

.comparison-card.after {
    background: linear-gradient(135deg, var(--green-pale), var(--white));
    border: 3px solid var(--green-light);
}

.comparison-card:hover {
    transform: translateY(-5px);
}

.comparison-card.before:hover { box-shadow: var(--shadow-pink); }
.comparison-card.after:hover { box-shadow: 0 10px 40px rgba(6, 214, 160, 0.25); }

.comparison-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.comparison-emoji {
    font-size: 2rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
}

.comparison-card.before .comparison-header h3 { color: var(--pink); }
.comparison-card.after .comparison-header h3 { color: var(--green); }

.comparison-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 150px;
}

.comparison-vs span {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 50%;
    box-shadow: var(--shadow-orange);
}

.comparison-image {
    margin-bottom: 20px;
}

.before-placeholder, .after-placeholder {
    height: 160px;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 600;
}

.before-placeholder {
    background: var(--pink-pale);
    border: 2px dashed var(--pink);
}

.after-placeholder {
    background: var(--green-pale);
    border: 2px dashed var(--green);
}

.comparison-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.comparison-card:hover .comparison-img {
    transform: scale(1.03);
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.icon-bad { color: var(--pink); }
.icon-good { color: var(--green); }

/* ========================================
   Benefits Section
   ======================================== */
.benefits-section {
    background: linear-gradient(135deg, var(--turquoise-pale) 0%, var(--purple-pale) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-bg-shapes {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 10% 20%, var(--turquoise-light) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, var(--purple-light) 0%, transparent 40%);
    opacity: 0.2;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--turquoise-light);
}

.benefit-item.highlight {
    background: linear-gradient(135deg, var(--turquoise-pale), var(--white));
    border-color: var(--turquoise-light);
}

.benefit-icon {
    color: var(--turquoise);
    font-size: 1.4rem;
    font-weight: bold;
}

.benefits-conclusion {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
    color: var(--purple);
    position: relative;
    z-index: 1;
}

/* ========================================
   Audience Section
   ======================================== */
.audience-section {
    background: var(--white);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.audience-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.audience-card:hover {
    transform: translateY(-10px);
}

.audience-card:nth-child(1):hover { box-shadow: var(--shadow-orange); border-color: var(--orange-light); }
.audience-card:nth-child(2):hover { box-shadow: var(--shadow-turquoise); border-color: var(--turquoise-light); }
.audience-card:nth-child(3):hover { box-shadow: var(--shadow-pink); border-color: var(--pink-light); }
.audience-card:nth-child(4):hover { box-shadow: var(--shadow-yellow); border-color: var(--yellow-light); }
.audience-card:nth-child(5):hover { box-shadow: var(--shadow-purple); border-color: var(--purple-light); }

.audience-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrap-orange { background: var(--orange-pale); }
.wrap-turquoise { background: var(--turquoise-pale); }
.wrap-pink { background: var(--pink-pale); }
.wrap-yellow { background: var(--yellow-pale); }
.wrap-purple { background: var(--purple-pale); }

.audience-icon {
    font-size: 2.2rem;
}

.audience-card h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ========================================
   Examples Section
   ======================================== */
.examples-section {
    background: linear-gradient(135deg, var(--purple-pale) 0%, var(--pink-pale) 100%);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.example-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.example-card:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: var(--shadow-lg);
}

.example-tag {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--purple), var(--pink));
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.example-placeholder {
    height: 220px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 600;
    border: 2px dashed var(--gray-300);
}

.example-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease;
}

.example-card:hover .example-img {
    transform: scale(1.05);
}

/* Example card zoom hint */
.example-zoom-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.75);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    backdrop-filter: blur(10px);
}

.example-card:hover .example-zoom-hint {
    opacity: 1;
    bottom: 40px;
}

.zoom-icon {
    font-size: 1.1rem;
}

.example-card {
    cursor: pointer;
}

/* ========================================
   Lightbox / Image Viewer
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: rotate(90deg) scale(1.1);
}

/* Navigation arrows */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:hover {
    padding-right: 4px;
}

.lightbox-next:hover {
    padding-left: 4px;
}

/* Image content area */
.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    cursor: grab;
    background: var(--gray-900);
}

.lightbox-image-wrapper:active {
    cursor: grabbing;
}

.lightbox-image {
    display: block;
    max-width: 85vw;
    max-height: 70vh;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.15s ease-out;
    user-select: none;
    -webkit-user-drag: none;
    transform-origin: center center;
}

/* Caption */
.lightbox-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.lightbox-title {
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-size: 1.1rem;
    font-weight: 600;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

/* Zoom controls */
.lightbox-zoom-controls {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.zoom-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.zoom-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
}

.zoom-level {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    min-width: 50px;
    text-align: center;
}

.zoom-reset {
    margin-left: 8px;
}

/* Hint at bottom */
.lightbox-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-align: center;
}

/* Loading state */
.lightbox-image-wrapper.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-wrapper.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--orange);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 5;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Lightbox animations */
.lightbox .lightbox-image {
    transform: scale(0.9);
    opacity: 0;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.lightbox .lightbox-caption,
.lightbox .lightbox-zoom-controls,
.lightbox .lightbox-hint {
    opacity: 0;
    transform: translateY(20px);
}

.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease 0.2s;
}

.lightbox.active .lightbox-zoom-controls {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition: all 0.4s ease 0.3s;
}

.lightbox.active .lightbox-hint {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    transition: all 0.4s ease 0.4s;
}

/* Responsive lightbox */
@media (max-width: 768px) {
    .lightbox-container {
        padding: 60px 20px;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        width: 44px;
        height: 44px;
        top: 15px;
        right: 15px;
    }

    .lightbox-image {
        max-width: 95vw;
        max-height: 60vh;
    }

    .lightbox-zoom-controls {
        bottom: 80px;
        padding: 8px 16px;
        gap: 8px;
    }

    .zoom-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .lightbox-hint {
        bottom: 20px;
        font-size: 0.75rem;
        padding: 0 20px;
    }

    .lightbox-caption {
        flex-direction: column;
        gap: 8px;
        padding: 12px 20px;
    }

    .lightbox-counter {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 480px) {
    .lightbox-nav {
        width: 40px;
        height: 40px;
    }

    .lightbox-zoom-controls {
        bottom: 70px;
    }

    .example-zoom-hint {
        font-size: 0.75rem;
        padding: 8px 14px;
    }
}

/* ========================================
   Urgency Section
   ======================================== */
.urgency-section {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.urgency-content {
    position: relative;
    z-index: 1;
}

.urgency-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: shake 1s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-15deg); }
    75% { transform: rotate(15deg); }
}

.urgency-section .section-title {
    color: var(--white);
}

.urgency-text {
    font-size: 1.3rem;
    margin-bottom: 16px;
    opacity: 0.95;
}

.urgency-highlight {
    font-size: 1.2rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px 28px;
    border-radius: var(--radius-lg);
    display: inline-block;
}

/* ========================================
   Reviews / Social Proof Section
   ======================================== */
.reviews-section {
    background: linear-gradient(135deg, var(--yellow-pale) 0%, var(--cream) 50%, var(--green-pale) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, var(--yellow-light) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, var(--green-light) 0%, transparent 30%);
    opacity: 0.15;
    pointer-events: none;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.review-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    transform-origin: center bottom;
}

.review-card-1 {
    border-color: var(--orange-light);
    transform: rotate(-2deg);
}

.review-card-2 {
    border-color: var(--turquoise-light);
    transform: translateY(-10px);
}

.review-card-3 {
    border-color: var(--pink-light);
    transform: rotate(2deg);
}

.review-card:hover {
    transform: translateY(-15px) rotate(0deg) scale(1.03);
    z-index: 10;
}

.review-card-1:hover {
    box-shadow: var(--shadow-orange);
}

.review-card-2:hover {
    box-shadow: var(--shadow-turquoise);
}

.review-card-3:hover {
    box-shadow: var(--shadow-pink);
}

.review-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--green), var(--turquoise));
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    z-index: 5;
}

.review-badge-icon {
    font-size: 1rem;
}

.review-image-wrapper {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.review-screenshot {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.review-card:hover .review-screenshot {
    transform: scale(1.02);
}

.review-highlight {
    margin-top: 16px;
    text-align: center;
}

.highlight-quote {
    display: inline-block;
    background: linear-gradient(135deg, var(--yellow-pale), var(--orange-pale));
    color: var(--gray-900);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    font-weight: 700;
    border: 2px solid var(--yellow-light);
}

.review-card-1 .highlight-quote {
    background: linear-gradient(135deg, var(--orange-pale), var(--pink-pale));
    border-color: var(--orange-light);
}

.review-card-2 .highlight-quote {
    background: linear-gradient(135deg, var(--turquoise-pale), var(--green-pale));
    border-color: var(--turquoise-light);
}

.review-card-3 .highlight-quote {
    background: linear-gradient(135deg, var(--pink-pale), var(--purple-pale));
    border-color: var(--pink-light);
}

/* Trust Indicators */
.reviews-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-200);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--yellow-light);
}

.trust-icon {
    font-size: 1.5rem;
}

.trust-text {
    font-weight: 700;
    color: var(--gray-700);
    font-size: 1rem;
}

/* Reviews Responsive */
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .review-card {
        padding: 20px;
    }

    .review-card-1,
    .review-card-2,
    .review-card-3 {
        transform: none;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 80px 0;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
        gap: 30px;
    }

    .review-card {
        transform: none !important;
    }

    .reviews-trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .trust-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 60px 0;
    }

    .review-card {
        padding: 16px;
    }

    .review-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
        top: -10px;
        right: 12px;
    }

    .highlight-quote {
        font-size: 0.9rem;
        padding: 8px 18px;
    }

    .trust-item {
        padding: 12px 20px;
    }

    .trust-text {
        font-size: 0.9rem;
    }
}

/* ========================================
   Offers Section
   ======================================== */
.offers-section {
    background: var(--white);
    padding: 100px 0;
}

.offers-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.offer-badge {
    background: var(--gray-100);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 50px auto 0;
    align-items: start;
}

.offer-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid var(--gray-200);
    box-shadow: var(--shadow-md);
}

.offer-card:hover {
    transform: translateY(-10px);
}

.offer-card:nth-child(1):hover { box-shadow: var(--shadow-orange); border-color: var(--orange-light); }
.offer-card:nth-child(3):hover { box-shadow: var(--shadow-turquoise); border-color: var(--turquoise-light); }

.offer-card.featured {
    border: 4px solid var(--yellow);
    transform: scale(1.05);
    box-shadow: var(--shadow-yellow);
    z-index: 10;
    background: linear-gradient(to bottom, var(--yellow-pale), var(--white));
}

.offer-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.offer-ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 28px;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.ribbon-orange { background: linear-gradient(135deg, var(--orange), var(--orange-light)); }
.ribbon-turquoise { background: linear-gradient(135deg, var(--turquoise), var(--turquoise-light)); }
.ribbon-gold {
    background: linear-gradient(135deg, var(--yellow), var(--orange));
    color: var(--gray-900);
    padding: 10px 32px;
    font-size: 1rem;
}

.best-value-tag {
    position: absolute;
    top: 50px;
    right: -10px;
    background: var(--green);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(3deg);
    box-shadow: var(--shadow-sm);
}

/* Price Row with Discount */
.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.price-row .price-old {
    margin-bottom: 0;
    display: inline;
}

/* Discount Tag - Inline with price */
.discount-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4757, #ff6b81);
    color: var(--white);
    font-family: 'Baloo 2', cursive;
    font-size: 0.95rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    box-shadow: 0 3px 10px rgba(255, 71, 87, 0.3);
    animation: pulseBadge 2s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Bigger discount tag for featured */
.discount-tag-big {
    font-size: 1.1rem;
    padding: 6px 14px;
    background: linear-gradient(135deg, #ff4757, #c0392b);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
    animation: pulseBadgeFeatured 1.5s ease-in-out infinite;
}

@keyframes pulseBadgeFeatured {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

/* Savings Tag */
.savings-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--green), var(--turquoise));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-top: 8px;
    box-shadow: 0 3px 12px rgba(6, 214, 160, 0.25);
}

.offer-header h3 {
    font-size: 1.8rem;
    margin: 20px 0 8px;
    color: var(--gray-900);
}

.offer-levels {
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 20px;
}

.offer-image {
    margin-bottom: 24px;
}

.offer-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.offer-placeholder {
    height: 160px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-weight: 600;
    border: 2px dashed var(--gray-300);
}

.offer-features {
    text-align: left;
    margin-bottom: 24px;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 0.95rem;
}

.check {
    color: var(--green);
    font-weight: bold;
}

.offer-price {
    margin-bottom: 24px;
}

.price-old {
    font-size: 1.2rem;
    color: var(--gray-500);
    text-decoration: line-through;
    opacity: 0.7;
    display: block;
    margin-bottom: 4px;
}

.price {
    font-family: 'Baloo 2', cursive;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--gray-900);
}

.price-featured {
    color: var(--orange);
    font-size: 3.2rem;
}

.offer-cta {
    display: block;
    background: linear-gradient(135deg, var(--gray-700), var(--gray-900));
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    transition: all 0.3s ease;
}

.offer-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.cta-featured {
    background: linear-gradient(135deg, var(--orange), var(--pink));
    font-size: 1.1rem;
    padding: 18px 32px;
    box-shadow: var(--shadow-orange);
}

.cta-featured:hover {
    box-shadow: 0 15px 45px rgba(255, 107, 53, 0.4);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    background: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
    border-color: var(--orange-light);
}

.faq-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.faq-content {
    flex: 1;
}

.faq-question {
    font-size: 1.1rem;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.faq-answer {
    color: var(--turquoise);
    font-weight: 600;
}

/* ========================================
   Final CTA Section
   ======================================== */
.final-cta-section {
    background: linear-gradient(135deg, var(--turquoise), var(--purple));
    color: var(--white);
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    background: var(--white);
    top: -100px;
    left: -50px;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    background: var(--yellow);
    bottom: -50px;
    right: 10%;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    background: var(--pink);
    top: 30%;
    right: -30px;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta-section .section-title {
    color: var(--white);
}

.final-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.final-badges span {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-large {
    padding: 22px 50px;
    font-size: 1.3rem;
    background: var(--white);
    color: var(--purple);
}

.cta-large:hover {
    background: var(--yellow);
    color: var(--gray-900);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-large:hover .cta-arrow {
    transform: translateX(6px);
}

.support-text {
    margin-top: 24px;
    opacity: 0.9;
    font-size: 1rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Baloo 2', cursive;
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.footer-icon {
    font-size: 1.8rem;
}

.footer-heart {
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-text {
    opacity: 0.7;
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-signature {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-product-image {
        max-width: 500px;
        margin: 0 auto 24px;
        transform: rotate(0deg);
    }

    .hero-main-img {
        height: 250px;
    }

    .hero-badges {
        justify-content: center;
    }

    .cta-subtext {
        justify-content: center;
    }

    .hero-promises {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .image-frame {
        max-width: 320px;
        margin: 0 auto;
    }

    .story-text {
        text-align: left;
    }

    .offers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .pill-left, .pill-right {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

    .pill-left {
        top: 60px;
        left: 0;
    }

    .pill-right {
        bottom: 60px;
        right: 0;
    }

    .pill-icon {
        font-size: 1rem;
    }
}

@media (max-width: 900px) {
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 50px auto 0;
    }

    .offer-card.featured {
        transform: scale(1);
        order: -1;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .comparison-vs {
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-emoji {
        font-size: 2.5rem;
    }

    .features-grid,
    .testimonials-grid,
    .examples-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

    .hero-main-img {
        height: 220px;
    }

    .story-img {
        height: 280px;
    }

    .comparison-img {
        height: 180px;
    }

    .example-img {
        height: 200px;
    }

    .sticker {
        font-size: 2rem;
    }

    .sticker-check {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        padding: 90px 0 60px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .phone-wrapper {
        padding: 6px;
    }

    .phone-frame {
        width: 220px;
        height: 460px;
        border-radius: 38px;
    }

    .hero-product-image {
        margin-bottom: 20px;
    }

    .hero-main-img {
        height: 200px;
    }

    .hero-image-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
        bottom: 10px;
        left: 10px;
    }

    .story-img {
        height: 250px;
    }

    .comparison-img {
        height: 160px;
    }

    .example-img {
        height: 180px;
    }

    .cta-button {
        padding: 16px 28px;
        font-size: 1rem;
    }

    .sticker-heart {
        font-size: 1.5rem;
        right: 5px;
    }

    .sticker-check {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
        bottom: 80px;
        right: 30px;
    }

    .sticker-star {
        right: 20px;
        top: -10px;
    }

    .sticker-pencil {
        left: 10px;
        bottom: 60px;
    }

    .pill-left, .pill-right {
        font-size: 0.7rem;
        padding: 6px 10px;
    }

    .pill-left {
        top: 40px;
        left: -5px;
    }

    .pill-right {
        bottom: 40px;
        right: -5px;
    }

    .pill-icon {
        font-size: 0.9rem;
    }
}

/* ========================================
   Animations
   ======================================== */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
}

.fade-up {
    transform: translateY(40px);
}

.fade-up.animate-in {
    transform: translateY(0);
}

.slide-right {
    transform: translateX(-40px);
}

.slide-right.animate-in {
    transform: translateX(0);
}

.slide-left {
    transform: translateX(40px);
}

.slide-left.animate-in {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.animate-in {
    transform: scale(1);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gray-200);
    z-index: 9999;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--orange), var(--pink), var(--turquoise));
    width: 0;
    transition: width 0.1s ease;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
