:root {
    --primary: #FF6B6B;
    --primary-dark: #E55050;
    --secondary: #4ECDC4;
    --accent: #FFE66D;
    --dark: #292F36;
    --light: #F7FFF7;
    --white: #FFFFFF;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --gradient: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --radius: 20px;
    --cta-gradient: linear-gradient(to right, #28a745, #218838);
    --cta-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .outfit {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    line-height: 1.2;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title.text-left {
    text-align: left;
}

.section-title.text-white {
    color: var(--white);
}

/* Buttons */
.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 450px;
    margin: 1.5rem auto;
    padding: 1.2rem 2rem;
    background: var(--cta-gradient);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    border-radius: 50px;
    box-shadow: var(--cta-shadow);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid #34ce57;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.6);
    filter: brightness(1.1);
}

.cta-button.super-giant {
    max-width: 700px;
    font-size: 1.5rem;
    padding: 1.5rem 2rem;
}

.pulse-btn {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(40, 167, 69, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* Header / Hero */
.hero {
    position: relative;
    padding: 2rem 0 4rem;
}

.split-bg {
    background: linear-gradient(to right, #ffffff 40%, #e8f7f5 40%);
}

@media (max-width: 768px) {
    .split-bg {
        background: #ffffff;
    }
}

.hero-inner {
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.logo {
    width: 100%;
    max-width: 140px;
    height: auto;
    margin-bottom: 1.5rem;
    display: block;
}

@media (max-width: 768px) {
    .logo {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-pill {
    display: inline-block;
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .hero-pill {
        display: table;
        margin-left: auto;
        margin-right: auto;
    }
}

.main-headline {
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.sub-headline {
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefits li {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.4;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.2s ease;
}

.hero-benefits li:hover {
    transform: translateX(5px);
}

.hero-benefits img {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
}

.hero-subtext {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-weight: 500;
}

.hero-social-proof {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text);
}

.hero-social-proof span {
    display: block;
    margin-top: 5px;
}

.hero-mockup {
    width: 100%;
    max-width: 500px;
    margin: 0.5rem auto 2rem;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

@media (max-width: 768px) {
    .hero-mockup {
        margin: 0rem auto 1.5rem;
        max-width: 320px;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

/* Why Need Section */
.why-need {
    background-color: var(--light);
    padding: 5rem 0;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    flex: 1 1 200px;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
    border-bottom: 4px solid var(--primary);
}

.card:hover {
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card p {
    font-weight: 600;
    font-size: 1.1rem;
}

.highlight-box {
    background: var(--accent);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

/* Brain Science */
.brain-science {
    padding: 5rem 0;
    background: var(--white);
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-layout > * {
    flex: 1;
}

.text-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.rounded-image {
    border-radius: var(--radius);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

/* Results */
.results {
    background: linear-gradient(135deg, #3bbbb2 0%, #4ecdc4 100%);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.results .section-title {
    color: var(--white);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    margin-bottom: 3.5rem;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    padding: 0 1rem;
}

.result-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.result-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.result-icon-wrapper {
    background: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    flex-shrink: 0;
}

.result-icon {
    font-size: 1.4rem;
}

.result-text {
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    line-height: 1.5;
    margin: 0;
    color: var(--white);
}

.result-card.highlight-card {
    background: var(--accent); /* beautiful warm yellow/gold */
    color: var(--dark);
    border: 1px solid rgba(0,0,0,0.02);
    transform: scale(1.03); /* slightly larger for importance */
    box-shadow: 0 8px 25px rgba(255, 230, 109, 0.3);
}

.result-card.highlight-card .result-text {
    color: var(--dark);
    font-weight: 800;
}

.highlight-icon-wrapper {
    background: var(--dark);
}

.highlight-icon-wrapper .result-icon {
    color: var(--accent);
}

.result-card.highlight-card:hover {
    transform: translateY(-4px) scale(1.05);
    background: var(--accent);
    box-shadow: 0 12px 30px rgba(255, 230, 109, 0.55);
}

@media (max-width: 576px) {
    .result-card {
        padding: 1rem 1.2rem;
        gap: 0.8rem;
    }
    .result-icon-wrapper {
        width: 38px;
        height: 38px;
    }
    .result-icon {
        font-size: 1.1rem;
    }
    .result-text {
        font-size: 1rem;
    }
    .result-card.highlight-card {
        transform: scale(1);
    }
    .result-card.highlight-card:hover {
        transform: translateY(-4px) scale(1.02);
    }
}

/* Features */
.features {
    padding: 5rem 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    background: var(--light);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* Target Audience */
.target-audience {
    background: var(--light);
    padding: 6rem 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.audience-card {
    background: var(--white);
    padding: 3.5rem 2rem 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: relative;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.02);
    border-bottom: 4px solid var(--secondary);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(78, 205, 196, 0.15);
    border-color: rgba(78, 205, 196, 0.2);
}

.card-emoji {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    margin-top: 0.5rem;
    display: inline-block;
    animation: wiggle 4s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(8deg); }
}

.audience-card .number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 800;
}

.audience-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Steps */
.steps {
    background: #fdfdfd;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.step-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    position: relative;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
    z-index: 2;
}

.step-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 900;
    padding: 4px 10px;
    border-radius: 5px;
    letter-spacing: 1px;
}

.step-card img {
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0 auto 1.2rem;
}

.step-card h3 {
    color: var(--secondary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Kit Showcase */
.kit-showcase {
    background: var(--white);
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: -2rem auto 3rem;
    font-weight: 500;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.level-card {
    background: var(--light);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    padding: 3rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.level-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: rgba(78, 205, 196, 0.2);
}

.level-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(78, 205, 196, 0.3);
}

.level-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.level-card:hover .level-image {
    transform: scale(1.05);
}

.level-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 800;
}

.level-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Gallery Showcase - Infinite Marquee Loop */
.preview-gallery-container {
    background: #fcfdfc;
    border: 2px dashed rgba(78, 205, 196, 0.3);
    border-radius: var(--radius);
    padding: 3rem 1.5rem;
    margin-top: 2rem;
    overflow: hidden;
}

.gallery-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
    color: var(--dark);
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 10px 0;
}

/* Gradient overlays for smooth fading edges */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #fcfdfc 0%, rgba(252, 253, 252, 0) 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #fcfdfc 0%, rgba(252, 253, 252, 0) 100%);
}

.marquee-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll-marquee 30s linear infinite;
}

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

.marquee-item {
    width: 320px; /* Wider for landscape images */
    aspect-ratio: 1.45 / 1; /* Force perfect horizontal aspect-ratio on all cards, making them completely uniform! */
    flex-shrink: 0;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: grab;
}

.marquee-item:active {
    cursor: grabbing;
}

.marquee-item:hover {
    transform: scale(1.05) translateY(-6px) rotate(1deg);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.gallery-image {
    width: 100%;
    height: 100%; /* Fill the entire card */
    display: block;
    object-fit: cover; /* Cover the card beautifully, clipping any baked-in white margins at the bottom */
    object-position: top; /* Align to the top of the worksheet to show all the title/exercises */
}

@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* calc scrolling exactly 50% offset by half of the 1.5rem gap (0.75rem) to ensure a perfectly seamless loop */
        transform: translateX(calc(-50% - 0.75rem));
    }
}

@media (max-width: 768px) {
    .preview-gallery-container {
        padding: 2rem 0.8rem;
    }
    .marquee-container::before,
    .marquee-container::after {
        width: 30px;
    }
    .marquee-item {
        width: 240px; /* Horizontal layout on mobile */
        aspect-ratio: 1.45 / 1; /* Maintain uniform horizontal aspect-ratio on mobile */
    }
    .marquee-track {
        gap: 1rem;
        animation-duration: 25s; /* Balanced scroll speed on mobile */
    }
    @keyframes scroll-marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-50% - 0.5rem)); /* Half of the 1rem gap on mobile */
        }
    }
}

/* Bonuses */
.bonuses {
    background: var(--primary);
    padding: 5rem 0;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.bonus-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.bonus-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.bonus-tag {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bonus-image {
    width: 100%;
    max-width: 220px;
    height: auto;
    margin: 1.5rem auto 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.bonus-item:hover .bonus-image {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.bonus-item h3 {
    margin: 1.5rem 0 1rem;
}

.price-strike {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-right: 10px;
}

.price-free {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.3rem;
}

/* Offer */
.offer {
    background: var(--dark);
    padding: 6rem 0;
}

.offer-box {
    background: var(--white);
    border-radius: 30px;
    padding: 4.5rem 2.5rem 3.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 25px 55px rgba(0,0,0,0.15), 0 0 40px rgba(255, 209, 102, 0.08);
    border: 3px solid var(--accent);
    position: relative;
}

.offer-mockup {
    width: 100%;
    max-width: 600px;
    margin: -8.5rem auto 1.5rem;
    display: block;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.2));
}

.offer-box h2 {
    margin-bottom: 2rem;
    color: var(--dark);
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 800;
}

.offer-top-text {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.pricing-area {
    margin: 2.5rem 0;
    padding: 2.2rem 1.5rem 1.8rem;
    background: linear-gradient(135deg, #fffdf8 0%, #fff8e3 100%);
    border-radius: 20px;
    border: 2px solid #ffd166;
    position: relative;
    box-shadow: 0 8px 25px rgba(255, 209, 102, 0.12);
}

.price-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
}

.price-original {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.price-original .strike {
    text-decoration: line-through;
    color: var(--primary);
    opacity: 0.8;
}

.price-main {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.price-big {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1px;
}

.price-cash {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 700;
    margin-top: 0.8rem;
    letter-spacing: 0.3px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem 0;
    opacity: 0.8;
}

.offer-list {
    list-style: none;
    max-width: 500px;
    margin: 0 auto 2rem;
    text-align: left;
}

.offer-list li {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list span.check {
    font-size: 1.5rem;
}

.offer-list li span:not(.check) {
    color: var(--text-light);
    font-weight: 400;
    font-size: 0.95rem;
    margin-left: auto;
}

.total-value {
    border-top: 2px solid #eee;
    padding-top: 1rem !important;
    margin-top: 1rem;
    color: var(--dark) !important;
    font-weight: 800 !important;
}

.total-value .strike {
    text-decoration: line-through;
    color: var(--primary);
    opacity: 0.7;
}

.guarantee-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
    text-align: left;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.guarantee-seal strong {
    display: block;
    font-size: 1rem;
    color: var(--dark);
}

.guarantee-seal p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.offer-highlight {
    display: inline-block;
    background: var(--secondary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.secure-checkout {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* FAQ */
.faq {
    background: var(--light);
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

details:hover {
    box-shadow: var(--shadow-lg);
}

summary {
    font-weight: 700;
    font-size: 1.2rem;
    outline: none;
    color: var(--dark);
    list-style-position: inside;
}

details p {
    margin-top: 1rem;
    color: var(--text);
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
}

/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 4rem 0 3rem;
}

.footer-logo {
    width: 150px;
    margin: 0 auto 2rem;
    opacity: 1;
}

.footer-links {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 2rem auto;
    font-size: 0.8rem;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
    padding: 0 1rem;
}

/* Sticky Footer CTA */
.sticky-footer {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 10px 0;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-top: 2px solid var(--accent);
}

.sticky-footer.visible {
    bottom: 0;
}

.sticky-content {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.sticky-affirmations {
    display: flex;
    gap: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
}

.sticky-btn {
    width: 100%;
    background: var(--cta-gradient);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: var(--cta-shadow);
    animation: pulse-green 2s infinite;
}

@media (max-width: 768px) {
    .sticky-affirmations {
        gap: 8px;
        font-size: 0.65rem;
    }
    .sticky-btn {
        font-size: 1rem;
        padding: 10px;
    }
}

/* WhatsApp Floating */
/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-benefits {
        text-align: left;
        display: inline-block;
    }
    .hero-benefits li {
        justify-content: flex-start;
    }
    .split-layout {
        flex-direction: column;
    }
    .main-headline {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .container {
        width: 92%;
        padding: 1.5rem 0;
    }
    .hero-inner {
        padding: 0;
    }
    .main-headline {
        font-size: 1.8rem;
        margin-top: 0.5rem;
    }
    .sub-headline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    .hero-benefits {
        margin-bottom: 1.5rem;
    }
    .hero-benefits li {
        font-size: 0.9rem;
        padding: 10px 15px;
        margin-bottom: 0.8rem;
        gap: 10px;
    }
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    .offer-box {
        padding: 5rem 1.2rem 2rem;
        margin-top: 4rem;
        border-width: 3px;
    }
    .price-big {
        font-size: 2.5rem;
    }
    .pricing-area {
        padding: 1rem;
    }
    .offer-mockup {
        margin-top: -8rem;
        max-width: 280px;
    }
    .card-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}
