:root {
    --primary: #D4A373;
    /* Warm Gold/Paper */
    --primary-dark: #b08255;
    --secondary: #CCD5AE;
    /* Soft Sage */
    --accent: #E9EDC9;
    /* Cream */
    --text: #333333;
    --text-light: #666666;
    --bg: #FAFAF5;
    --white: #FFFFFF;
    --success: #2A9D8F;
    --cta: #E76F51;
    /* Vibrant Terra Cotta for buttons */
    --cta-hover: #d65d40;
    --urgency-bg: #E07A5F;
    /* Terracota para urgência */
    --chat-bg-sent: #DCF8C6;
    /* Verde WhatsApp */
    --chat-bg-received: #F0F0F0;
    /* Cinza claro */

    --font-heading: 'Lora', serif;
    --font-ui: 'Inter', sans-serif;
    /* Para elementos de UI como botões e badges */
    --font-body: 'Inter', sans-serif;

    /* Pesos de fonte */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    --radius: 12px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    /* Prevent horizontal scroll from animations */
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: #2C3E50;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--cta);
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(231, 111, 81, 0.3);
}

.btn-primary:hover {
    background-color: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 111, 81, 0.4);
}

.btn-large {
    font-size: 1.3rem;
    padding: 1.2rem 2.5rem;
    width: 100%;
    max-width: 400px;
    background-color: #27AE60;
    /* Green for final conversion */
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-large:hover {
    background-color: #219150;
    transform: scale(1.02);
}

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

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #FFFDF5 0%, #F0F4E3 100%);
    overflow: hidden;
    text-align: center;
    /* Centering everything in hero */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    /* Limit width for readability since it's centered */
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2C3E50;
}

.hero-image-container {
    margin: 1rem auto 2rem auto;
    /* Centered with auto margins */
    max-width: 400px;
    /* Control image size */
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    /* Essential for overlay positioning */
}

.hero-image-container img,
.hero-image-container video {
    box-shadow: var(--shadow-lg);
    border: 6px solid white;
    transform: rotate(-1deg);
    transition: transform 0.5s ease;
    margin: 0 auto;
    /* Ensure image itself is centered */
    border-radius: var(--radius);
    /* Ensure video has rounded corners too */
    max-width: 100%;
    /* Ensure responsiveness */
    height: auto;
    object-fit: cover;
    display: block;
}

.hero-image-container:hover img,
.hero-image-container:hover video {
    transform: rotate(0deg) scale(1.02);
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse-overlay 2s infinite;
}

.video-overlay:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translate(-50%, -50%) scale(1.05);
}

@keyframes pulse-overlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Brand Name */
.brand-name {
    display: block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

/* Hero Image Container Update for Badge */
.hero-image-container {
    margin: 1rem auto 2rem auto;
    max-width: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    /* Needed for absolute positioning of badge */
}

.bonus-badge {
    position: absolute;
    bottom: -15px;
    right: 10px;
    background: var(--cta);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    z-index: 10;
    border: 3px solid white;
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: rotate(5deg) translateY(0);
    }

    50% {
        transform: rotate(5deg) translateY(-5px);
    }
}

.hero-text .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.badge {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Hero Button */
.btn-hero {
    background: linear-gradient(135deg, #FF6F61 0%, #E64A19 100%);
    color: white;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-extrabold);
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(230, 74, 25, 0.4);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* Espaço entre texto e ícone */
    min-width: 320px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    line-height: 1.2;
    text-align: center;
}

/* Ajuste específico para o ícone flutuando no texto do botão */
.btn-hero i {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.btn-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn-hero:hover::after {
    left: 100%;
}

.btn-hero:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(230, 74, 25, 0.5);
    background: linear-gradient(135deg, #FF8A80 0%, #D84315 100%);
}

.cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.secure-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.secure-badge i {
    width: 16px;
    height: 16px;
}

/* Animation Classes */
.hidden-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}


/* Emotional Hook */
.emotional-hook {
    padding: 6rem 0;
    /* Soft gradient background */
    background: linear-gradient(180deg, #FFFFFF 0%, #FAFAF5 100%);
}

.hook-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Give more space to cards */
    gap: 4rem;
    align-items: center;
}

.hook-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-dark);
    line-height: 1.2;
}

/* Highlight Text Class */
.highlight-text {
    color: var(--cta);
    position: relative;
    white-space: nowrap;
    z-index: 1;
}

/* Underline effect for highlights */
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(231, 111, 81, 0.2);
    /* CTA with low opacity */
    z-index: -1;
    border-radius: 4px;
}


.hook-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-feature {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    /* Row layout: Icon | Content */
    gap: 1.5rem;
    align-items: flex-start;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.card-feature:hover {
    transform: translateX(10px);
    border-color: var(--secondary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon-box {
    background: var(--accent);
    min-width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
}

.feature-icon-box i {
    width: 24px;
    height: 24px;
}

.feature-content h3 {
    font-size: 1.15rem;
    margin: 0 0 0.5rem 0;
    color: var(--text);
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.feature-content strong {
    color: var(--cta);
    /* Make bold text pop */
}


@media (max-width: 900px) {
    .hook-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hook-text p {
        justify-content: center;
    }

    .card-feature:hover {
        transform: translateY(-5px);
        /* Vertical lift on mobile */
    }
}

/* Product Showcase */
.product-showcase {
    padding: 3rem 0;
    /* Reduced from 5rem */
    background-color: #F8F9FA;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    /* Reduced margin */
}

.section-header h2 {
    font-size: 2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    /* Reduced gap */
}

.feature-item {
    background: white;
    padding: 1.5rem;
    /* Reduced padding */
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.feature-icon {
    font-size: 2.5rem;
    /* Reduced icon size */
    margin-bottom: 0.5rem;
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Bonuses */
/* Bonuses */
/* Bonuses */
.bonuses {
    padding: 6rem 0;
    /* Clean background around the pop-up */
    background-color: #FAFAFA;
}

.bonuses-popup-box {
    /* Desktop: Make it a distinct section as requested */
    background: #F5F0E6;
    /* Beige background */
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    color: #333;
    /* Dark text */
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.bonuses-popup-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    pointer-events: none;
    display: block;
}

/* Update text colors for beige background on Desktop */
.bonuses-popup-box .section-header h2 {
    color: #5D4037;
    /* Brownish for theme */
}

.bonuses-popup-box .section-header p {
    color: #795548 !important;
}

.bonuses-popup-box .tag {
    background: rgba(93, 64, 55, 0.1);
    color: #5D4037;
    border: 1px solid rgba(93, 64, 55, 0.2);
}

.bonus-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    width: auto;
}

.bonus-card {
    background: white;
    border: none;
    /* Removed border */
    border-radius: 16px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 300px;
    /* Fixed width for desktop cards */
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    aspect-ratio: auto;
    /* Reset aspect ratio */
}

.bonus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.bonus-card-body {
    padding: 2rem 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

@media (min-width: 768px) {
    .bonus-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .bonus-content h4 {
        font-size: 1rem;
    }

    .bonus-card {
        width: 100%;
        max-width: 300px;
    }
}


.bonus-img-wrapper {
    width: 140px;
    /* Fixed size for desktop */
    height: 190px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    background: #f4f4f4;
    position: relative;
    aspect-ratio: auto;
}

.bonus-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-img-wrapper img {
    transform: scale(1.05);
}

.bonus-content h4 {
    color: var(--primary-dark);
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: none;
    -webkit-line-clamp: unset;
    overflow: visible;
}

.bonus-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 0;
    display: block;
    /* Visible on desktop */
}

.bonus-price-box {
    width: 100%;
    padding: 1rem;
    background: #F1F8E9;
    border-top: 1px dashed #C8E6C9;
    display: flex;
    /* Visible on desktop */
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.bonus-price-box .value {
    display: block;
    font-size: 0.85rem;
    color: #E57373;
    text-decoration: line-through;
    opacity: 0.9;
    font-weight: 600;
}

.bonus-price-box .free {
    color: #2E7D32;
    background: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.15);
    border: 1px solid #C8E6C9;
}

/* New Badge Default Style */
.new-badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: #FFD700;
    color: #333;
    padding: 5px 30px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

/* --- NOVOS ESTILOS PARA CORREÇÃO VISUAL CRO --- */

/* 1. Urgency Banner */
.urgency-banner {
    background-color: var(--urgency-bg) !important;
    /* Terracota */
    color: white !important;
    font-family: var(--font-ui) !important;
    font-weight: var(--font-medium) !important;
    padding: 12px 0;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid rgba(0, 0, 0, 0.1);
}

.urgency-track span {
    font-family: 'Inter', sans-serif;
    /* Garante fonte limpa */
    text-shadow: none;
    margin: 0 20px;
}

/* 2. Chat-style Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding-top: 2rem;
}

/* Estilo para parecer print de celular/chat */
.testimonial-chat-card {
    background-color: var(--chat-bg-sent);
    /* Verde WhatsApp suave */
    border-radius: 20px 20px 0 20px;
    /* Borda arredondada com "bico" no canto */
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    /* Sombra suave */
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
    max-width: 350px;
    margin-left: auto;
    /* Alinha à direita como mensagem enviada, ou margin: 0 auto para centralizar */
    margin-right: auto;
}

/* Variação para mensagem recebida (branca/cinza) */
.testimonial-chat-card.received {
    background-color: var(--white);
    border-radius: 20px 20px 20px 0;
    margin-right: auto;
    margin-left: auto;
    border: 1px solid #e0e0e0;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.chat-info h4 {
    font-size: 0.95rem;
    margin: 0;
    color: #075E54;
    /* Verde escuro do WhatsApp */
    font-family: var(--font-ui);
    font-weight: var(--font-bold);
}

.chat-info .stars {
    color: #FFC107;
    font-size: 0.8rem;
    letter-spacing: -2px;
}

.chat-body p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-ui);
}

.chat-time {
    display: block;
    text-align: right;
    font-size: 0.7rem;
    color: #999;
    margin-top: 8px;
}

/* 3. Elementos Flutuantes Hero */
.hero-floating-element {
    position: absolute;
    background: white;
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: var(--font-bold);
    color: var(--cta);
    z-index: 20;
    animation: float 4s ease-in-out infinite;
    top: 20px;
    right: -20px;
    transform: rotate(5deg);
    border: 2px solid white;
}

.hero-floating-element i {
    width: 18px;
    height: 18px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(5deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* 4. Realismo nos cards do que vem no kit */
.kit-card-img-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.kit-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kit-card:hover .kit-card-img-wrapper img {
    transform: scale(1.1);
}

/* Bold Words */
.bold-highlight {
    font-weight: var(--font-extrabold);
    color: var(--primary-dark);
}

@media (max-width: 767px) {
    .bonuses-popup-box {
        background: #F5F0E6;
        /* Beige background */
        padding: 1.5rem 0.8rem;
        /* Tighter padding */
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        color: #333;
        /* Dark text */
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Shine effect */
    .bonuses-popup-box::before {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
        pointer-events: none;
    }

    .bonuses-popup-box .section-header h2 {
        color: #5D4037;
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .bonuses-popup-box .section-header p {
        color: #795548;

        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .bonuses-popup-box .tag {
        background: rgba(93, 64, 55, 0.1);
        color: #5D4037;
        border: 1px solid rgba(93, 64, 55, 0.2);
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .bonus-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }

    .bonus-card {
        border-radius: 12px;
        padding: 0.6rem;
        width: 100%;
        border: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        background: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: 100%;
        position: relative;
    }

    .bonus-card-body {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0.5rem;
        flex-grow: 1;
    }

    .bonus-img-wrapper {
        width: 100%;
        /* Full width of the card's content area */
        height: auto;
        aspect-ratio: 1/1;
        /* Square image */
        border-radius: 8px;
        margin-bottom: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
        overflow: hidden;
    }

    .bonus-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bonus-content {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
        width: 100%;
        justify-content: flex-start;
    }

    .bonus-content h4 {
        font-size: 0.75rem;
        line-height: 1.25;
        margin: 0;
        color: #2c3e50;
        font-weight: 700;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 2.2rem;
        /* Reserve space for 2 lines */
    }

    .bonus-content p {
        display: block !important;
        font-size: 0.65rem;
        line-height: 1.3;
        color: #666;
        margin: 0;
        display: -webkit-box !important;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .bonus-price-box {
        display: none !important;
    }

    .new-badge {
        font-size: 0.5rem;
        padding: 3px 20px;
        right: -24px;
        top: 10px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }
}

/* Testimonials Carousel */
.testimonials {
    padding: 6rem 0;
    background-color: white;
    text-align: center;
    overflow: hidden;
}

.testimonials h2 {
    margin-bottom: 0.5rem;
}

.testimonials-subtitle {
    color: var(--text-light);
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    font-family: var(--font-heading);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-carousel {
    position: relative;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollTestimonials 60s linear infinite;
    padding: 1rem 0;
}

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

.testimonials-track .testimonial-chat-card {
    flex-shrink: 0;
    width: 350px;
    margin: 0;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonial-text-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 350px;
    flex-shrink: 0;
    text-align: left;
}

.testimonial-text-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.testimonial-text-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.testimonial-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 0.9rem;
    margin-top: 2px;
}

.testimonial-text-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
}

/* Offer Section */
.offer-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #445446 0%, #2D362F 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.offer-box {
    background: white;
    color: var(--text);
    width: 100%;
    /* Changed from max-width to width to work with flex */
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid #EEE;
    /* Default border */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.offer-box.highlight {
    border: 4px solid #FFD700;
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.25);
    z-index: 10;
    position: relative;
}

.offer-wrapper {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
}

@media (max-width: 768px) {
    .offer-wrapper {
        flex-direction: column;
        gap: 20px;
        /* Reduced gap */
        padding: 0 0.5rem;
        /* Reduced side padding */
    }

    .basic-design {
        order: 2;
    }

    .complete-design {
        order: 1;
    }

    .offer-box {
        width: 100%;
        max-width: none;
        margin: 0 auto;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid #eee;
        /* Lighter border for basic */
    }

    .offer-body {
        padding: 1.5rem 1rem;
        /* Much tighter padding */
        gap: 0.8rem;
        /* Reduced gap */
    }

    .offer-header {
        padding: 1rem;
        /* Reduced header padding */
    }

    .offer-header h3 {
        font-size: 1.5rem;
        /* Slightly smaller header */
    }

    /* Highlighted Offer Styles - POP OUT */
    .offer-box.highlight {
        transform: scale(1.02);
        border: 3px solid #FFD700;
        /* Stronger border */
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        z-index: 10;
        width: 100%;
        background: #fff;
    }

    .offer-box.highlight .offer-header {
        background: linear-gradient(135deg, var(--success) 0%, #176858 100%);
        padding: 1.2rem;
    }

    .offer-box.highlight .recommendation-badge {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    /* Price Highlighting */
    .new-price {
        font-size: 3rem;
        /* Slightly smaller but still big */
        font-weight: 800;
        color: var(--success);
        line-height: 1;
        margin-bottom: 2px;
    }

    .old-price {
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    /* Benefits List - Compact */
    .offer-content-wrapper {
        margin-bottom: 10px;
    }

    .offer-content-wrapper p {
        font-size: 1.05rem;
        margin-bottom: 5px;
    }

    .offer-content-wrapper li {
        margin-bottom: 4px !important;
        font-size: 1rem !important;
        /* Smaller font for list */
        line-height: 1.3;
        align-items: flex-start;
        gap: 6px;
    }

    /* Footer Group */
    .offer-footer-group {
        margin-top: 5px;
        gap: 4px;
    }

    .payment-info {
        font-size: 0.9rem !important;
        color: #666;
    }

    .guarantee-badge {
        font-size: 0.9rem !important;
        gap: 4px;
        color: #666;
    }

    .btn-large {
        padding: 1rem;
        font-size: 1.15rem;
        border-radius: 8px;
        margin-bottom: 5px;
    }

    /* Why Buy Box - Compact */
    .offer-body .why-buy-box {
        padding: 12px !important;
        margin-bottom: 12px !important;
        border-left-width: 3px !important;
    }

    .offer-body .why-buy-box p {
        font-size: 0.95rem !important;
        line-height: 1.4;
    }
}

.offer-header {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.offer-header h3 {
    color: white;
    margin: 0;
}

/* Shine Animation for Highlighted Title */
@keyframes titleShine {
    0% {
        background-position: -100% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.offer-box.highlight .offer-header h3 {
    background: linear-gradient(90deg, #ffffff 0%, #fffeb3 50%, #ffffff 100%);
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 3s linear infinite;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.recommendation-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: white;
    letter-spacing: 1px;
}

.offer-body {
    padding: 2.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.offer-summary {
    font-size: 1.2rem;
    font-weight: 500;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.2rem;
}

.new-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--success);
    line-height: 1;
}

.payment-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 15px;
    /* Desktop default */
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 10px;
    /* Desktop default */
    font-size: 0.9rem;
    color: var(--text-light);
    justify-content: center;
    /* Center content */
}

.scarcity {
    color: #E74C3C;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* FAQ */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    background: var(--bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    cursor: pointer;
}

summary {
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: 1rem;
    color: var(--text-light);
}

/* Footer Styles */
.site-footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 4rem 0 2rem;
    font-size: 0.95rem;
    border-top: 5px solid var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-col p {
    margin-bottom: 0.8rem;
    color: #bdc3c7;
}

.payment-badges {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.badge-card {
    background: white;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.85rem;
}

.footer-copyright p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 2rem;
    }

    .footer-grid {
        text-align: center;
        gap: 2.5rem;
    }

    .social-links,
    .payment-badges {
        justify-content: center;
    }
}

/* Sales Popup */
.sales-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    max-width: 320px;
    border-left: 4px solid var(--success);
}

.sales-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.popup-icon {
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.popup-title {
    font-weight: 700;
    color: var(--text);
    font-size: 0.85rem;
}

.popup-text {
    color: var(--text-light);
    font-size: 0.8rem;
    line-height: 1.3;
}

.popup-time {
    font-size: 0.7rem;
    color: #999;
    margin-top: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

    .hero-content,
    .hook-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .cta-group {
        align-items: center;
    }

    .card-feature {
        text-align: left;
    }

    /* Mobile Bonus Carousel */
    .bonus-container {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding-bottom: 1.5rem;
        margin-top: 2rem;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar for cleaner look */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .bonus-container::-webkit-scrollbar {
        display: none;
    }

    .bonus-card {
        flex: 0 0 85%;
        /* Show 85% of the card to hint at more content */
        scroll-snap-align: center;
        margin-right: 0;
        /* Reset margin if any */
    }

    /* Adjusting for the new centered hero layout */
    .hero-image-container {
        max-width: 80%;
    }

    /* Force 2 columns on mobile for features */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature-item h3 {
        font-size: 1rem;
    }

    .feature-item p {
        font-size: 0.8rem;
    }

    .bonus-badge {
        right: 0;
        bottom: -10px;
        font-size: 0.9rem;
    }

    .sales-popup {
        left: 50%;
        transform: translate(-50%, 100px);
        /* Start below screen */
        bottom: 10px;
        width: 90%;
    }

    .sales-popup.show {
        transform: translate(-50%, 0);
        /* Center horizontally and show */
    }

    /* Reorder offers on mobile: Basic first (bottom in code), Complete second (top in code) */
    /* Since Basic is defined first in HTML, we might need to adjust or simply ensure natural flow */
    /* Checks HTML order: Basic is first, Complete is second. */
    /* User wants: 9.90 (Basic) BEFORE 19.90 (Complete). */
    /* Currently HTML is Basic then Complete. So natural flow is Basic then Complete. */
    /* Wait, usually upsells are highlighted. Let's check if there is any row-reverse or similar. */
    /* The design seems to be vertical stack on mobile. */
    /* If HTML is Basic -> Complete, then mobile will show Basic then Complete naturally. */
    /* Let's explicitely ensure order if they were side-by-side or reversed. */

    .offer-wrapper {
        display: flex;
        flex-direction: column;
    }
}

/* Urgency Banner */
.urgency-banner {
    background-color: #E74C3C;
    color: white;
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 2000;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.urgency-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.urgency-track span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Urgency Timer Section */
.urgency-timer-section {
    padding: 2rem 0;
    background-color: #fdf2f2;
    /* Light red background to bridge sections */
}

.urgency-card-timer {
    background: linear-gradient(135deg, #cb2d3e 0%, #ef473a 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(239, 71, 58, 0.3);
    border: 2px solid #fff;
    outline: 4px solid rgba(239, 71, 58, 0.2);
}

.urgency-content h2 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.countdown-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.2);
    padding: 1rem 2rem;
    border-radius: 12px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-item span:first-child {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-item .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 0.2rem;
}

.separator {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    /* Align with numbers */
    opacity: 0.6;
}

@media (max-width: 768px) {
    .urgency-card-timer {
        padding: 1.5rem;
    }

    .urgency-content h2 {
        font-size: 1.2rem;
    }

    .countdown-wrapper {
        padding: 0.8rem 1rem;
        gap: 0.5rem;
        width: 100%;
        justify-content: center;
    }

    .countdown-item span:first-child {
        font-size: 1.8rem;
    }

    .separator {
        font-size: 1.5rem;
    }
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    /* Changed from flex to none to ensure it's hidden */
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.exit-popup-overlay.show {
    display: flex;
    /* Show when active */
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid var(--success);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.exit-popup-overlay.show .exit-popup-content {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 768px) {
    .exit-popup-content {
        padding: 1.5rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .exit-title {
        font-size: 1.4rem;
    }

    .exit-description {
        font-size: 0.9rem;
    }

    .exit-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #eee;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #666;
    transition: background 0.2s;
}

.exit-popup-close:hover {
    background: #ddd;
    color: #333;
}

.exit-badge {
    background: #E74C3C;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.exit-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2C3E50;
}

.exit-description {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.exit-price-box {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.exit-from {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.exit-to {
    color: var(--success);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exit-save {
    color: #E74C3C;
    font-weight: bold;
    font-size: 1rem;
    display: block;
    margin-top: 0.2rem;
}

.exit-coupon {
    background: #fff;
    border: 2px dashed #ccc;
    padding: 0.8rem;
    margin: 1rem 0;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    letter-spacing: 1px;
}

/* Kit Showcase */
.kit-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, #F8F9FA 0%, #FFFFFF 100%);
    overflow: hidden;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.15rem;
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.kit-carousel {
    margin: 4rem 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.kit-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scrollKit 40s linear infinite;
}

.kit-track img {
    height: 320px;
    width: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    border: 4px solid white;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kit-track img:hover {
    transform: scale(1.05) translateY(-10px);
    z-index: 10;
}

@keyframes scrollKit {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.kit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1100px;
}

.kit-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #F0F0F0;
    transition: all 0.3s ease;
    position: relative;
}

.kit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.kit-card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.kit-icon {
    width: 32px;
    height: 32px;
}

.kit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

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

.kit-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #FFFFFF 0%, #FFFDF5 100%);
    box-shadow: 0 15px 35px rgba(212, 163, 115, 0.15);
}

.card-badge {
    position: absolute;
    top: -12px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(212, 163, 115, 0.3);
}


@media (max-width: 768px) {
    .kit-showcase {
        padding: 4rem 0;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .kit-carousel {
        margin: 2.5rem 0;
    }

    .kit-track img {
        height: 220px;
    }

    .kit-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .kit-card {
        padding: 1.5rem 1rem;
    }

    .kit-card-icon-wrapper {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .kit-icon {
        width: 24px;
        height: 24px;
    }

    .kit-card h3 {
        font-size: 1rem;
    }

    .kit-card p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .kit-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Upsell Popup Styles */
.upsell-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.upsell-popup-overlay.show {
    display: flex;
    opacity: 1;
}

.upsell-popup-content {
    background: white;
    width: 90%;
    max-width: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.upsell-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: white;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.upsell-popup-close:hover {
    background: rgba(0, 0, 0, 0.4);
}

.upsell-header {
    background: #176858;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    color: white;
}

.upsell-badge {
    background: #FFD700;
    color: #333;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.upsell-header h2 {
    color: white;
    font-size: 1.6rem;
    margin: 0;
    line-height: 1.3;
    font-family: 'Merriweather', serif;
    /* Assuming serif font from image */
}

.upsell-body {
    padding: 2rem;
}

.upsell-description {
    text-align: center;
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.upsell-list-container {
    background: #F8F9FA;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
}

.upsell-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

.upsell-item:last-child {
    margin-bottom: 0;
}

.check-icon-green {
    color: white;
    fill: #22C55E;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.upsell-price-box {
    border: 2px dashed #D4AF37;
    background: #FFFDF5;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.upsell-price-box .label {
    font-size: 0.9rem;
    color: #888;
}

.upsell-price-box .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #176858;
    /* Matching header green or success green */
    line-height: 1;
}

.btn-upsell-cta {
    background: #22C55E;
    color: white;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.btn-upsell-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    background: #16a34a;
}

.btn-link-subtle {
    display: block;
    text-align: center;
    color: #999;
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
}

.btn-link-subtle:hover {
    color: #666;
}

/* Mobile Optimization for Upsell Popup */
@media (max-width: 768px) {
    .upsell-popup-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .upsell-header {
        padding: 2rem 1rem 1.5rem;
    }

    .upsell-header h2 {
        font-size: 1.3rem;
    }

    .upsell-body {
        padding: 1.5rem;
    }

    .upsell-list-container {
        padding: 1rem;
    }

    .upsell-item {
        font-size: 0.9rem;
    }

    .upsell-price-box .price {
        font-size: 2rem;
    }

    .btn-upsell-cta {
        font-size: 1rem;
        padding: 0.9rem;
    }
}


/* New Offer Design */
.offer-box.basic-design,
.offer-box.complete-design {
    background: white;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: visible;
    /* Allow badges to pop out */
}

.offer-box.basic-design {
    border: 1px solid rgba(212, 163, 115, 0.2);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
}

.offer-box.complete-design {
    border: 2px solid var(--primary);
    transform: scale(1.05);
    z-index: 10;
    background: linear-gradient(135deg, #ffffff 0%, #fffdf5 100%);
    box-shadow: 0 20px 50px rgba(212, 163, 115, 0.2);
    animation: floatingBox 4s ease-in-out infinite;
}

@keyframes floatingBox {

    0%,
    100% {
        transform: scale(1.05) translateY(0);
    }

    50% {
        transform: scale(1.05) translateY(-10px);
    }
}

.offer-top {
    padding: 2rem 1.5rem 1rem;
    text-align: left;
}

.offer-box.complete-design .offer-top {
    padding-top: 2.5rem;
}

.offer-top h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.offer-box.complete-design .offer-top h3 {
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 700;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.price-row .old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.price-row .new-price {
    font-size: 3rem;
    font-weight: 800;
    color: #2C3E50;
    font-family: var(--font-heading);
}

.economize-badge {
    display: inline-block;
    background-color: #dcfce7;
    color: #166534;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.economize-badge.blue {
    background-color: var(--accent);
    color: var(--primary-dark);
    border: 1px solid rgba(212, 163, 115, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(212, 163, 115, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-features {
    padding: 1rem 1.5rem;
    flex-grow: 1;
}

.offer-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-features li {
    display: flex;
    align-items: flex-start;
    /* Align top for multi-line */
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.offer-box.basic-design .check-icon {
    color: #cbd5e1;
    /* Light gray/blue check */
    fill: #f1f5f9;
}

.offer-box.complete-design .check-icon {
    color: var(--primary);
    fill: var(--accent);
}

.offer-action {
    padding: 1.5rem;
    text-align: center;
}

.btn-basic-design {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--accent);
    color: var(--primary-dark);
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 163, 115, 0.2);
}

.btn-basic-design:hover {
    background-color: var(--secondary);
    color: #2C3E50;
    transform: translateY(-2px);
}

.btn-complete-design {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: linear-gradient(135deg, var(--cta) 0%, var(--cta-hover) 100%);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(231, 111, 81, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-complete-design::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: all 0.6s;
    animation: shine-btn 3s infinite;
}

@keyframes shine-btn {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.btn-complete-design:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(231, 111, 81, 0.4);
}

.guarantee-small {
    font-size: 0.8rem;
    color: #999;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* Mobile adjustments for new design */
@media (max-width: 768px) {
    .offer-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .offer-box.complete-design {
        transform: scale(1);
        order: 2;
        /* Ensure complete is second */
        margin-top: 20px;
        /* Space for badge */
    }

    .price-row .new-price {
        font-size: 2rem;
    }
}

/* Highlight Styles for Hero - Optimized for Multi-line */
.highlight-main {
    position: relative;
    display: inline;
    color: var(--primary-dark);
    z-index: 1;
    background-image: linear-gradient(rgba(204, 213, 174, 0.5), rgba(204, 213, 174, 0.5));
    background-size: 100% 30%;
    background-position: 0 85%;
    background-repeat: no-repeat;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
    padding: 0 4px;
    border-radius: 2px;
}

.highlight-main::after {
    content: none;
}

.highlight-sub {
    color: var(--cta);
    font-weight: 700;
}

/* Mobile Responsiveness for Hero Typography */
@media (max-width: 768px) {

    .h1,
    .hero-text h1 {
        font-size: 1.95rem;
        /* Adjusted for better fitting */
        line-height: 1.3;
        padding: 0 5px;
        margin-bottom: 25px;
    }

    .hero-subheadline {
        font-size: 1rem !important;
        padding: 0 10px;
        line-height: 1.6;
    }

    .hero-content {
        gap: 1.5rem;
        /* improved spacing */
    }
}

/* New Comparison Styles for Upsell */
.upsell-comparison-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    align-items: stretch;
}

.comparison-column {
    flex: 1;
    border-radius: 12px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.basic-col {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    opacity: 0.8;
}

.complete-col {
    background: #f0fdf4;
    /* Light green bg */
    border: 2px solid #22c55e;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
    position: relative;
    transform: scale(1.02);
}

.col-header {
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #333;
    text-transform: uppercase;
}

.col-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.col-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    margin-bottom: 6px;
    color: #555;
    line-height: 1.2;
}

.col-list li i {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.has-item {
    color: #333;
}

.no-item {
    color: #aaa;
    text-decoration: line-through;
}

.has-item i {
    color: #22c55e;
}

.no-item i {
    color: #cbd5e1;
}

.complete-col .col-list li.highlight {
    font-weight: 700;
    color: #15803d;
    background: rgba(34, 197, 94, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

.col-price {
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 10px;
    color: #666;
}

.col-price-box {
    text-align: center;
    margin-top: 10px;
    background: #dcfce7;
    padding: 8px;
    border-radius: 8px;
}

.col-price-box .old {
    display: block;
    text-decoration: line-through;
    color: #ef4444;
    font-size: 0.8rem;
}

.col-price-box .new {
    display: block;
    font-weight: 800;
    color: #15803d;
    font-size: 1.3rem;
}

.comparison-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    z-index: 2;
}

@media (max-width: 480px) {
    .upsell-comparison-container {
        gap: 5px;
    }

    .col-list li {
        font-size: 0.75rem;
    }

    .col-header {
        font-size: 0.8rem;
    }

    .col-price-box .new {
        font-size: 1.1rem;
    }
}

/* Digital Alert Box - Responsive Fix */
.digital-alert-box {
    background-color: #FFF3CD;
    color: #856404;
    border: 1px solid #FFEEBA;
    padding: 12px 20px;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 600px;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;

    text-align: left;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
}

.digital-alert-box i {
    flex-shrink: 0;
    min-width: 24px;
    color: #E76F51;
    margin-top: 2px;
}

.digital-alert-box span {
    flex: 1;
    word-break: break-word;
}

@media (max-width: 480px) {
    .digital-alert-box {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

/* Mobile Reordering for Main Content */
@media (max-width: 768px) {
    .main-content-wrapper {
        display: flex;
        flex-direction: column;
    }

    .bonuses {
        order: 1;
    }

    .offer-section {
        order: 2;
        margin-top: 0;
        /* Reset margins if needed */
        margin-bottom: 2rem;
        /* Add spacing below offer */
    }

    .testimonials {
        order: 3;
    }

    .manual-therapy {
        order: 4;
    }

    .urgency-timer-section {
        order: 5;
    }

    .guarantee-section {
        order: 6;
    }
}