/* ==========================================================================
   DESIGN SYSTEM & VARIABLES (CLEAN LIGHT THEME)
   ========================================================================== */
:root {
    --bg-main: #f8fafc;         /* Sleek, clean light-gray background */
    --bg-card: #ffffff;         /* Pure white for premium cards */
    --bg-card-hover: #f1f5f9;   /* Subtle slate-grey hover background */
    --color-primary: #10b981;   /* Performance Green */
    --color-primary-rgb: 16, 185, 129;
    --color-secondary: #f97316; /* Energetic Orange */
    --color-secondary-rgb: 249, 115, 22;
    
    --text-title: #0f172a;      /* Slate-900 for high-contrast headers */
    --text-main: #334155;       /* Slate-700 for readable body text */
    --text-muted: #64748b;      /* Slate-500 for secondary text */
    --text-white: #ffffff;      /* Pure white for button texts and labels */
    
    --border-color: rgba(0, 0, 0, 0.08);
    --border-color-highlight: rgba(16, 185, 129, 0.3);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 25px rgba(16, 185, 129, 0.08);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Helpers */
.text-center { text-align: center; }
.text-green { color: var(--color-primary); }
.text-orange { color: var(--color-secondary); }
.mt-5 { margin-top: 3rem; }

/* ==========================================================================
   TYPOGRAPHY & HEADINGS
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-title);
    font-weight: 700;
    line-height: 1.25;
}

.gradient-green {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Section Header */
.section-header {
    margin-bottom: 3.5rem;
}

.section-pre-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.125rem 2.25rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
    width: 100%;
}

.btn-large {
    font-size: 1.125rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, #059669 100%);
    color: var(--text-white);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #34d399 0%, var(--color-primary) 100%);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.05);
    color: var(--text-title);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.btn-subtext {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* Pulse animation on main buttons */
.btn-pulse {
    animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   TOP BAR (RED FOR HIGH URGENCY)
   ========================================================================== */
.top-bar {
    background: linear-gradient(90deg, #dc2626 0%, #b91c1c 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 0;
    position: relative;
    z-index: 100;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-family: var(--font-heading);
}

.top-bar-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar-text {
    color: var(--text-white);
    font-weight: 600;
}

.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--text-white);
    background: rgba(0, 0, 0, 0.25);
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
}

.countdown-timer strong {
    color: #fef08a; /* Vibrant yellow for high visibility on the ticking time */
}

/* ==========================================================================
   SEÇÃO 1: HERO
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
    background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
}

.hero-background-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.25;
}

.orb-1 {
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(16, 185, 129, 0.2);
}

.orb-2 {
    bottom: 20%;
    right: -10%;
    width: 450px;
    height: 450px;
    background-color: rgba(249, 115, 22, 0.15);
}

.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.trust-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.trust-pill {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.hero-pre-headline {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    background: rgba(249, 115, 22, 0.06);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.hero-title {
    font-size: 2.25rem;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    letter-spacing: -0.02em;
    font-weight: 800;
    color: var(--text-title);
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 2.5rem;
}

.hero-inclusions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1050px;
    margin: 0 auto 3.5rem;
    text-align: left;
}

.inclusion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.15rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.02);
    transition: var(--transition-smooth);
}

.inclusion-item:hover {
    transform: translateY(-2px);
    border-color: rgba(16, 185, 129, 0.2);
    box-shadow: var(--shadow-premium);
}

.bonus-inc {
    border: 1px dashed var(--color-secondary);
    background: #fffbf7;
}

.bonus-inc:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.08);
}

.inclusion-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-green {
    background: rgba(16, 185, 129, 0.08);
    color: var(--color-primary);
}

.icon-orange {
    background: rgba(249, 115, 22, 0.08);
    color: var(--color-secondary);
}

.inclusion-content {
    display: flex;
    flex-direction: column;
}

.inclusion-content strong {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-title);
    line-height: 1.2;
}

.inclusion-content span {
    font-size: 0.825rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.hero-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 1rem;
}

.hero-mockup-container {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
    width: 100%;
}

.hero-mockup-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
    aspect-ratio: 1.25;
}

.hero-mockup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%; /* Focuses on the colored sheets cards while clipping blurry margins */
    transition: transform 0.5s ease;
}

.hero-mockup-wrapper:hover .hero-mockup-img {
    transform: scale(1.04);
}

.mockup-badge {
    position: absolute;
    bottom: -10px;
    right: 20px;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ea580c 100%);
    color: var(--text-white);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.25);
    border: 1px solid rgba(255,255,255,0.15);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-action-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}

.pricing-card {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-badge {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--border-color-highlight);
    color: #059669;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.price-retail {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-main {
    margin: 0.25rem 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.4rem;
}

.price-currency {
    font-size: 1.125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-title);
    line-height: 1;
}

.price-cash {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
}

.cta-buttons-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    flex-wrap: wrap;
}

.pay-icon {
    height: 20px;
    width: auto;
}

.secure-checkout-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
}

/* ==========================================================================
   SEÇÃO 2: O PROBLEMA
   ========================================================================== */
.problem-section {
    padding: 5rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.problem-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-smooth);
}

.problem-card:hover {
    border-color: rgba(249, 115, 22, 0.4);
    background: #fff7ed;
    transform: translateX(5px);
}

.problem-icon-wrapper {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.problem-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-title);
}

.problem-conclusion {
    background: #fff7ed;
    border: 1.5px dashed var(--color-secondary);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.conclusion-icon {
    font-size: 2rem;
    color: var(--color-secondary);
}

.conclusion-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-title);
    font-style: italic;
    line-height: 1.4;
}

/* ==========================================================================
   SEÇÃO 3: A SOLUÇÃO
   ========================================================================== */
.solution-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.solution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.25rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    background: var(--bg-card);
    transform: translateY(-5px);
    border-color: var(--border-color-highlight);
    box-shadow: var(--shadow-premium), 0 10px 20px rgba(16, 185, 129, 0.04);
}

.solution-card:hover::before {
    opacity: 1;
}

.sol-card-icon {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-title);
}

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

/* ==========================================================================
   SEÇÃO 4: O QUE VOCÊ RECEBE
   ========================================================================== */
.what-you-receive-section {
    padding: 5rem 0;
    background: #f1f5f9;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.receive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.receive-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.01);
}

.receive-card:hover {
    border-color: rgba(16, 185, 129, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-premium);
}

.receive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

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

.receive-value-badge {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-title);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}

.bonus-card {
    border: 1px dashed var(--color-secondary);
    background: #fffaf7;
}

.bonus-card:hover {
    border-color: var(--color-secondary);
    background: #fff7ed;
}

.bonus-badge {
    background: rgba(249, 115, 22, 0.1);
    color: var(--color-secondary);
    border-color: rgba(249, 115, 22, 0.2);
}

.receive-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-title);
}

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

/* Pricing Comparison Area */
.pricing-comparison-box {
    margin-top: 4.5rem;
    background: #ffffff;
    border: 1px solid var(--border-color-highlight);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.pricing-comparison-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

.pricing-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
}

.summary-item span {
    color: var(--text-muted);
}

.summary-item strong {
    color: var(--text-title);
}

.total-crossed {
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: none;
    padding-top: 0.5rem;
}

.total-crossed del {
    color: #ef4444;
}

.pricing-offer-block {
    text-align: center;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
}

.offer-seal {
    background: var(--color-primary);
    color: var(--text-white);
    font-weight: 900;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.offer-period {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.price-large {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.price-split {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-title);
    line-height: 1;
}

.price-full-value {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.btn-buy {
    margin-bottom: 1.25rem;
}

.security-guarantee-text {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   SEÇÃO 5: BENEFÍCIOS
   ========================================================================== */
.benefits-section {
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 2.25rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.01);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-premium);
}

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--text-title);
}

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

/* ==========================================================================
   SEÇÃO 6: PROVA SOCIAL
   ========================================================================== */
.social-proof-section {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Testimonial Carousel Styles */
.carousel-container {
    max-width: 700px;
    margin: 0 auto 5rem;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.testimonial-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color-highlight);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.testimonial-card::after {
    content: '“';
    position: absolute;
    top: 15px;
    right: 35px;
    font-size: 6rem;
    color: rgba(16, 185, 129, 0.06);
    font-family: serif;
    line-height: 1;
}

.stars {
    color: #eab308;
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.stars i {
    color: #facc15;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-title);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.user-info {
    text-align: left;
}

.user-name {
    display: block;
    font-weight: 700;
    color: var(--text-title);
    font-size: 0.95rem;
}

.user-role {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-bullet.active {
    background: var(--color-primary);
    width: 25px;
    border-radius: 10px;
}

/* Counters Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   SEÇÃO 7: GARANTIA
   ========================================================================== */
.guarantee-section {
    padding: 6rem 0;
}

.guarantee-box {
    background: #ffffff;
    border: 1px solid var(--border-color-highlight);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
}

.guarantee-badge-container {
    flex-shrink: 0;
}

/* CSS Seal design */
.badge-seal {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, var(--color-primary) 0%, #047857 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.seal-inner {
    text-align: center;
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.seal-number {
    font-size: 3rem;
    font-weight: 950;
    font-family: var(--font-heading);
}

.seal-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.seal-sub {
    font-size: 0.6rem;
    font-weight: 600;
    opacity: 0.9;
}

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

.guarantee-pre-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.75rem;
}

.guarantee-title {
    font-size: 1.85rem;
    margin-bottom: 1.25rem;
    color: var(--text-title);
}

.guarantee-text {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
}

.guarantee-text strong {
    color: var(--text-title);
}

/* ==========================================================================
   SEÇÃO 8: ESCASSEZ
   ========================================================================== */
.scarcity-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%); /* Light orange tint */
    border-top: 1px solid rgba(249, 115, 22, 0.15);
    border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.scarcity-title {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-title);
}

.scarcity-subtitle {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.scarcity-timer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3.5rem;
}

.timer-box {
    background: #ffffff;
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 16px;
    padding: 1.25rem;
    min-width: 80px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.02);
}

.timer-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.timer-separator {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ==========================================================================
   SEÇÃO 9: FAQ
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(15, 23, 42, 0.01);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--text-title);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-toggle-icon {
    font-size: 0.9rem;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-main);
    font-size: 0.95rem;
    padding-bottom: 1.5rem;
    line-height: 1.6;
}

.faq-item.active {
    border-color: var(--border-color-highlight);
    background: var(--bg-card);
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   SEÇÃO 10: CTA FINAL
   ========================================================================== */
.final-cta-section {
    padding: 7rem 0;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.04) 0%, var(--bg-main) 100%);
    border-top: 1px solid var(--border-color);
    position: relative;
}

.final-cta-title {
    font-size: 2.25rem;
    max-width: 800px;
    margin: 0 auto 1rem;
    color: var(--text-title);
}

.final-cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.final-cta-btn {
    max-width: 400px;
    margin: 0 auto 3.5rem;
}

.final-security-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.security-badge {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   FOOTER (DARK REMAINS FOR STABILITY AND ANCHORING)
   ========================================================================== */
.main-footer {
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

.copyright {
    color: var(--text-white);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-links a {
    color: #94a3b8;
    transition: var(--transition-smooth);
    margin: 0 0.5rem;
}

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

/* ==========================================================================
   STICKY MOBILE CTA BAR
   ========================================================================== */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(10px);
    z-index: 99;
    padding: 0.75rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 20px rgba(15, 23, 42, 0.05);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    gap: 1rem;
}

.sticky-price-info {
    display: flex;
    flex-direction: column;
}

.sticky-price-label {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.sticky-price-value {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--text-title);
    font-family: var(--font-heading);
}

.sticky-cta-button {
    flex-grow: 1;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    flex-direction: row;
    gap: 0.5rem;
}

/* ==========================================================================
   DYNAMIC LIVE PROOF TOAST
   ========================================================================== */
.live-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-color-highlight);
    border-radius: 12px;
    padding: 0.9rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06), var(--shadow-glow);
    z-index: 101;
    transform: translateY(150px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), bottom 0.3s ease;
    max-width: 320px;
    backdrop-filter: blur(10px);
}

.live-proof-popup.visible {
    transform: translateY(0);
}

.live-proof-avatar {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.live-proof-body {
    display: flex;
    flex-direction: column;
}

.live-proof-message {
    font-size: 0.85rem;
    color: var(--text-title);
    line-height: 1.3;
}

.live-proof-time {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ==========================================================================
   EXIT INTENT POPUP MODAL
   ========================================================================== */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.exit-popup-overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.exit-popup {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 450px;
    width: 100%;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-popup-overlay.visible .exit-popup {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
}

.exit-popup-close:hover {
    color: var(--text-title);
}

.exit-popup-icon {
    font-size: 3rem;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
}

.exit-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    color: var(--text-title);
}

.exit-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
}

.exit-discount-box {
    background: #fff7ed;
    border: 2px dashed var(--color-secondary);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.exit-discount-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.exit-discount-code {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
}

.exit-discount-value {
    font-size: 0.8rem;
    color: var(--text-title);
    font-weight: 700;
}

.exit-subtext {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Pulse animation for orange elements */
.animate-pulse-orange {
    animation: orangePulse 1.5s infinite;
}

@keyframes orangePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ==========================================================================
   VEJA O QUE VOCÊ VAI APRENDER E RECEBER SECTION
   ========================================================================== */
.learning-section {
    background-color: #ffffff; /* Clean light theme background */
    padding: 5.5rem 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.section-highlight-orange {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
}

.learning-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 3.5rem;
}

.learning-card {
    background: var(--bg-card); /* White */
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.75rem 2rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
}

.learning-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-highlight);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.15); /* Green theme glow hover */
}

.learning-circle-wrapper {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 2.25rem;
}

.learning-circle-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); /* Green-orange themed glow matching the page accents */
    opacity: 0.7;
    filter: blur(4px);
    z-index: 1;
    animation: fireGlow 3s infinite alternate ease-in-out;
}

.learning-circle {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--bg-card);
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.learning-circle-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.8) 100%); /* Green-tinted glass overlay */
    z-index: 3;
}

.learning-circle-text {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-align: center;
    padding: 1rem;
    width: 100%;
}

.decor-arrow {
    color: var(--color-secondary);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    display: inline-block;
    margin-bottom: 0.15rem;
    text-shadow: 0 0 8px rgba(249, 115, 22, 0.8);
}

.circle-title-label {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(249, 115, 22, 0.5);
}

.circle-title-label-desafio {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(249, 115, 22, 0.5);
    line-height: 1.2;
    max-width: 90%;
}

.learning-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

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

@keyframes fireGlow {
    0% { transform: scale(0.98); filter: blur(3px); opacity: 0.7; }
    100% { transform: scale(1.03); filter: blur(6px); opacity: 0.9; }
}


/* ==========================================================================
   +3 BÔNUS EXCLUSIVOS SECTION
   ========================================================================== */
.bonus-wrapper-container {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid var(--border-color);
}

.bonus-badge-top {
    background: var(--color-secondary);
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.bonus-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.25rem;
    margin-top: 3.5rem;
}

.bonus-card-new {
    background: var(--bg-card); /* White */
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.bonus-card-new:hover {
    transform: translateY(-6px);
    border-color: var(--border-color-highlight);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.1);
}

.bonus-card-top {
    background: var(--bg-main); /* Standardized light-grey background instead of black */
    padding: 3rem 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.bonus-number-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-secondary);
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    z-index: 10;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}

.bonus-metallic-circle {
    position: relative;
    width: 175px;
    height: 175px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid #cbd5e1; /* Slate-300 light border */
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bonus-metallic-circle::before {
    content: '';
    position: absolute;
    top: -2px; left: -2px; right: -2px; bottom: -2px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    pointer-events: none;
    z-index: 3;
}

.bonus-circle-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.75) 85%); /* Green to dark slate theme overlay */
    z-index: 2;
}

.bonus-circle-content-text {
    position: relative;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-white);
    width: 100%;
}

.bonus-circle-qty {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}

.bonus-circle-desc {
    font-family: var(--font-body);
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.9);
    opacity: 0.95;
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 0.25rem;
    width: 75%;
    text-align: center;
}

.bonus-card-bottom {
    padding: 2.25rem 2rem;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bonus-card-bottom h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-title);
    margin-bottom: 0.5rem;
}

.card-divider-orange {
    width: 40px;
    height: 3px;
    background: var(--color-secondary);
    margin: 0.75rem auto 1.25rem;
    border-radius: 2px;
}

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


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

/* Large Tablets (768px and up) */
@media (min-width: 768px) {
    /* Typography */
    .section-title {
        font-size: 2.75rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-inclusions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Grid split */
    .hero-content-grid {
        grid-template-columns: 1.1fr 0.9fr;
        text-align: left;
        gap: 2.5rem;
        margin-top: 3rem;
    }
    
    .hero-container {
        text-align: left;
    }
    
    .hero-title, .hero-subtitle {
        margin-left: 0;
    }
    
    .trust-pills {
        justify-content: flex-start;
    }
    
    .hero-action-box {
        margin: 0;
    }
    
    /* Problem Grid */
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    /* Solution Grid */
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Receive Grid */
    .receive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Learning Grid */
    .learning-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Bonus Grid */
    .bonus-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-comparison-box {
        padding: 3.5rem;
    }
    
    .pricing-content {
        grid-template-columns: 1.1fr 0.9fr;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Stats Grid */
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Guarantee block split */
    .guarantee-box {
        flex-direction: row;
        text-align: left;
        padding: 4rem;
    }
    
    .guarantee-content {
        text-align: left;
    }
    
    /* Scarcity timer boxes */
    .timer-box {
        min-width: 110px;
        padding: 1.5rem;
    }
    
    .timer-number {
        font-size: 3.5rem;
    }
}

/* Desktops (1024px and up) */
@media (min-width: 1024px) {
    /* Hero Title scale */
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-inclusions {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Grids to 3 and 4 columns */
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .receive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .learning-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bonus-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* Hide mobile sticky CTA on desktop */
    .sticky-mobile-cta {
        display: none;
    }
}

/* Adjust padding on mobile devices for the sticky CTA bar */
@media (max-width: 1023px) {
    body {
        padding-bottom: 75px; /* Ensure content isn't covered by sticky CTA */
    }
    
    /* Position live proof toast at the top on mobile to avoid blocking the sticky CTA at the bottom */
    .live-proof-popup {
        bottom: auto !important;
        top: 20px !important;
        left: 50% !important;
        transform: translate(-50%, -150px) !important;
        max-width: calc(100% - 32px) !important;
        width: 100% !important;
    }
    
    .live-proof-popup.visible {
        transform: translate(-50%, 0) !important;
    }
}

/* Social Proof Header at the top of Hero */
.social-proof-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05);
    flex-wrap: wrap;
}

.stars-group {
    display: flex;
    gap: 2px;
    font-size: 0.75rem;
}

.stars-group i {
    color: #facc15 !important;
}

.rating-text {
    font-size: 0.775rem;
    font-weight: 500;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.rating-text strong {
    color: var(--color-primary);
    font-weight: 700;
}

.btn-pill-cta {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #ea580c 100%);
    color: #ffffff !important;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.35rem 0.85rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.15);
    text-decoration: none;
    font-family: var(--font-heading);
}

.btn-pill-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.25);
    background: linear-gradient(135deg, #ea580c 0%, var(--color-secondary) 100%);
}

@media (max-width: 767px) {
    .social-proof-header {
        flex-direction: column;
        border-radius: 20px;
        padding: 1rem;
        gap: 0.5rem;
        width: 100%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }
    
    .rating-text {
        text-align: center;
    }
}
