/* ================================================
   MÉTODO VIDA SOLAR — Premium Landing Page Styles
   ================================================ */

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Orange Accent Palette (ref: Máquina V4) */
    --orange-50: #FFF4E6;
    --orange-100: #FFE0B3;
    --orange-200: #FFCC80;
    --orange-300: #FFB84D;
    --orange-400: #F5A623;
    --orange-500: #EA8600;
    --orange-600: #CC7500;
    --orange-700: #A85F00;
    --orange-800: #8C4E00;
    --orange-900: #6B3B00;

    /* Dark backgrounds */
    --bg-primary: #131313;
    --bg-secondary: #1B1B1B;
    --bg-card: #1E1E1E;
    --bg-card-hover: #282828;
    --bg-elevated: #2B2B2B;

    /* Light backgrounds */
    --bg-light: #FFFFFF;
    --bg-light-alt: #F8F8F8;
    --bg-light-card: #FFFFFF;
    --border-light: #E5E5E5;

    /* Text — dark bg */
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --text-muted: #7A7A7A;

    /* Text — light bg */
    --text-dark: #131313;
    --text-dark-secondary: #464646;
    --text-dark-muted: #888888;

    /* Accent */
    --accent: #EA8600;
    --accent-light: #F5A623;
    --accent-glow: rgba(234, 134, 0, 0.25);

    /* CTA Green */
    --cta-green: #00A300;
    --cta-green-hover: #00B800;
    --cta-green-glow: rgba(0, 163, 0, 0.3);

    /* Danger */
    --danger: #FF6B6B;
    --danger-dark: #3D1A1A;

    /* Gradients */
    --gradient-orange: linear-gradient(135deg, #F5A623, #EA8600, #CC7500);
    --gradient-hero: linear-gradient(180deg, rgba(19, 19, 19, 0.3) 0%, rgba(19, 19, 19, 0.85) 50%, #131313 100%);
    --gradient-glow: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(234, 134, 0, 0.06), transparent 60%);

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1100px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --transition-base: 0.3s var(--ease-smooth);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px rgba(0, 163, 0, 0.3), 0 0 60px rgba(0, 163, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 50px rgba(0, 163, 0, 0.5), 0 0 100px rgba(0, 163, 0, 0.2);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.animate-fade-up {
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-smooth) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === TEXT GRADIENT === */
.text-gradient {
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-danger {
    color: var(--danger);
}

/* === SECTION LABELS === */
.section-label {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.section-label span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    padding: 6px 18px;
    border: 1px solid rgba(234, 134, 0, 0.2);
    border-radius: 100px;
    background: rgba(234, 134, 0, 0.06);
}

.section-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 56px;
    color: var(--text-primary);
}

/* === SECTION BASE === */
.section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background: var(--bg-secondary);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg-primary);
    padding: 120px 0 80px;
}

/* hero-bg-overlay is defined in the light sections block with orange tones */

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: float 6s infinite ease-in-out;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(245, 166, 35, 0.08);
    border: 1px solid rgba(245, 166, 35, 0.15);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 32px;
}

.badge-icon {
    font-size: 1.1rem;
}

.hero-pre-headline {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--accent-light);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.hero-hr {
    border: none;
    height: 1px;
    width: 400px;
    margin: 0 auto 28px;
    background: var(--gradient-orange);
    opacity: 0.5;
}

.hero-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 16px;
}

.hero-trust svg {
    color: var(--accent);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.scroll-line {
    width: 100%;
    height: 100%;
    background: var(--accent);
    animation: scroll-line 2s ease-in-out infinite;
}

/* ========================================
   CTA BUTTON
   ======================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--cta-green);
    color: #FFFFFF;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 24px var(--cta-green-glow);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--cta-green-hover);
    box-shadow: 0 8px 40px rgba(0, 163, 0, 0.45);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button-large {
    padding: 20px 48px;
    font-size: 1.15rem;
    border-radius: 100px;
    animation: pulse-glow 3s infinite;
}

/* ========================================
   PAIN / PROBLEM SECTION
   ======================================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}

.pain-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.pain-card:hover {
    border-color: rgba(234, 134, 0, 0.15);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pain-empathy {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 32px;
    background: rgba(234, 134, 0, 0.04);
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
}

/* ========================================
   AGITATION SECTION
   ======================================== */
.section-warning {
    background: linear-gradient(180deg, var(--bg-secondary), var(--bg-primary));
}

.agitation-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.agitation-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.agitation-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.3;
}

.agitation-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.agitation-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.15rem;
    color: var(--text-secondary);
}

.agitation-arrow {
    color: var(--danger);
    font-size: 1.3rem;
    font-weight: 700;
}

.agitation-warning {
    font-size: 1.2rem;
    color: var(--danger);
    padding: 20px;
    background: var(--danger-dark);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 12px;
}

/* ========================================
   SOLUTION SECTION
   ======================================== */
.section-solution {
    background: var(--bg-primary);
    padding: 120px 0;
    text-align: center;
}

.solution-intro {
    max-width: 700px;
    margin: 0 auto;
}

.solution-pre {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.solution-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.sun-icon {
    font-size: 3rem;
    animation: float 3s ease-in-out infinite;
}

.solution-logo h2 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 700;
}

.solution-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   9 PILARES SECTION
   ======================================== */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.pillar-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px 24px 28px;
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-orange);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.pillar-card:hover {
    border-color: rgba(234, 134, 0, 0.15);
    background: var(--bg-card-hover);
    transform: translateY(-6px);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-number {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: 0.5;
}

.pillar-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.pillar-card h3 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.pillar-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pillars-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    padding: 24px 32px;
    background: rgba(234, 134, 0, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(234, 134, 0, 0.1);
}

/* ========================================
   RESULTS SECTION
   ======================================== */
.section-results {
    background: var(--bg-primary);
    position: relative;
}

.section-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05), transparent 70%);
    pointer-events: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: all var(--transition-base);
}

.result-item:hover {
    border-color: rgba(234, 134, 0, 0.15);
    background: var(--bg-card-hover);
    transform: translateX(4px);
}

.result-check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(234, 134, 0, 0.1);
    border-radius: 8px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.result-item span {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ========================================
   PACKAGE / CONTENT SECTION
   ======================================== */
.package-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.package-main {
    background: var(--bg-card);
    border: 1px solid rgba(234, 134, 0, 0.15);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.package-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-orange);
}

.package-header {
    text-align: center;
    margin-bottom: 32px;
}

.package-badge {
    display: inline-block;
    padding: 5px 16px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(234, 134, 0, 0.1);
    border-radius: 100px;
    margin-bottom: 12px;
}

.package-header h3 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--text-secondary);
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: background var(--transition-base);
}

.package-list li:hover {
    background: rgba(255, 255, 255, 0.04);
}

.package-list li svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* Bonus */
.bonus-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.bonus-card {
    background: var(--bg-card);
    border: 1px solid rgba(234, 134, 0, 0.1);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all var(--transition-base);
}

.bonus-card:hover {
    border-color: rgba(234, 134, 0, 0.25);
    transform: translateY(-4px);
}

.bonus-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--accent);
    background: rgba(234, 134, 0, 0.08);
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.bonus-card h4 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.bonus-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ========================================
   GUARANTEE SECTION
   ======================================== */
.section-guarantee {
    background: var(--bg-primary);
}

.guarantee-card {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px;
    background: var(--bg-card);
    border: 1px solid rgba(234, 134, 0, 0.12);
    border-radius: 24px;
    position: relative;
}

.guarantee-shield {
    margin-bottom: 24px;
    color: var(--accent);
}

.guarantee-card h2 {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.guarantee-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ========================================
   OFFER / CTA SECTION
   ======================================== */
.section-offer {
    background: var(--bg-secondary);
    padding: 120px 0;
}

.offer-wrapper {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.offer-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(234, 134, 0, 0.08), transparent 70%);
    pointer-events: none;
}

.offer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(234, 134, 0, 0.15);
    border-radius: 28px;
    padding: 56px 40px;
}

.offer-title {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 40px;
}

/* Price Block */
.price-block {
    margin-bottom: 32px;
}

.price-original {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-old {
    text-decoration: line-through;
    color: var(--danger);
    font-weight: 600;
}

.price-current {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.price-currency {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent);
}

.price-amount {
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    background: var(--gradient-orange);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

/* Offer includes */
.offer-includes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 36px;
}

.offer-include-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 8px 12px;
    background: rgba(234, 134, 0, 0.04);
    border-radius: 8px;
}

.offer-include-item svg {
    flex-shrink: 0;
    color: var(--accent);
}

/* Security badges */
.offer-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.security-item svg {
    color: var(--text-muted);
    opacity: 0.7;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 48px 0;
    text-align: center;
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter Tight', 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.sun-icon-small {
    font-size: 1.2rem;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 12px;
    line-height: 1.6;
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.6;
}

/* ========================================
   LIGHT SECTIONS (Alternância Branco/Escuro)
   ======================================== */
.section-light {
    background: var(--bg-light) !important;
    color: var(--text-dark);
}

.section-light-alt {
    background: var(--bg-light-alt) !important;
    color: var(--text-dark);
}

/* Text overrides in light sections */
.section-light .section-title,
.section-light-alt .section-title {
    color: var(--text-dark);
}

.section-light .section-label span,
.section-light-alt .section-label span {
    color: var(--accent);
    border-color: rgba(234, 134, 0, 0.25);
    background: rgba(234, 134, 0, 0.08);
}

/* Pain cards on light */
.section-light .pain-card {
    background: var(--bg-light-alt);
    border: 1px solid var(--border-light);
}

.section-light .pain-card:hover {
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.section-light .pain-card p {
    color: var(--text-dark-secondary);
}

.section-light .pain-card p strong {
    color: var(--text-dark);
}

.section-light .pain-empathy {
    color: var(--text-dark-secondary);
    background: rgba(234, 134, 0, 0.06);
    border-left-color: var(--accent);
}

.section-light .pain-empathy strong {
    color: var(--text-dark);
}

/* Agitation on light */
.section-light .agitation-title {
    color: var(--text-dark);
}

.section-light .agitation-item {
    color: var(--text-dark-secondary);
}

.section-light .agitation-item strong {
    color: var(--text-dark);
}

.section-light .agitation-warning {
    background: #FFF0F0;
    border-color: rgba(255, 107, 107, 0.3);
    color: #CC3333;
}

/* Pillar cards on light */
.section-light .pillar-card,
.section-light-alt .pillar-card {
    background: var(--bg-light-card);
    border: 1px solid var(--border-light);
}

.section-light .pillar-card:hover,
.section-light-alt .pillar-card:hover {
    border-color: var(--accent);
    background: #FFFFFF;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.section-light .pillar-card h3,
.section-light-alt .pillar-card h3 {
    color: var(--text-dark);
}

.section-light .pillar-card p,
.section-light-alt .pillar-card p {
    color: var(--text-dark-muted);
}

.section-light .pillar-number,
.section-light-alt .pillar-number {
    color: var(--text-dark-muted);
}

.section-light .pillars-note,
.section-light-alt .pillars-note {
    color: var(--text-dark-secondary);
    background: rgba(234, 134, 0, 0.06);
    border-color: rgba(234, 134, 0, 0.15);
}

.section-light .pillars-note strong,
.section-light-alt .pillars-note strong {
    color: var(--text-dark);
}

/* Package / Content on light */
.section-light .package-main {
    background: var(--bg-light-card);
    border-color: var(--border-light);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.section-light .package-main::before {
    background: var(--gradient-orange);
}

.section-light .package-header h3 {
    color: var(--text-dark);
}

.section-light .package-list li {
    color: var(--text-dark-secondary);
    background: var(--bg-light-alt);
}

.section-light .package-list li:hover {
    background: #F0F0F0;
}

.section-light .package-list li strong {
    color: var(--text-dark);
}

.section-light .bonus-label {
    color: var(--accent);
}

.section-light .bonus-card {
    background: var(--bg-light-card);
    border-color: var(--border-light);
}

.section-light .bonus-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.section-light .bonus-card h4 {
    color: var(--text-dark);
}

.section-light .bonus-card p {
    color: var(--text-dark-muted);
}

.section-light .bonus-tag {
    color: var(--accent);
    background: rgba(234, 134, 0, 0.08);
}

/* Result items on light — keep these dark for contrast */

/* Hero bg overlay with orange tones */
.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(234, 134, 0, 0.08), transparent 70%),
        radial-gradient(ellipse 50% 40% at 30% 80%, rgba(234, 134, 0, 0.04), transparent),
        var(--bg-primary);
    z-index: 1;
}

/* Video container — responsive */
.video-container-vertical {
    width: 100%;
    max-width: 640px;
    margin: 24px auto 0;
    aspect-ratio: 4 / 3;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.video-container-vertical iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video container styling for light sections */
.section-light .video-container-vertical {
    background: transparent;
}

/* ========================================
   RESPONSIVE
   ======================================== */

/* --- Tablet (≤ 768px) --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 60px;
        min-height: auto;
    }

    .hero-pre-headline {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .hero-badge {
        margin-bottom: 24px;
        font-size: 0.8rem;
    }

    .hero-hr {
        width: 80px;
        margin-bottom: 20px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }

    /* Pain */
    .pain-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .pain-card {
        padding: 20px 16px;
    }

    .pain-empathy {
        font-size: 1rem;
        padding: 20px 24px;
    }

    /* Agitation */
    .agitation-title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    .agitation-item {
        font-size: 1.05rem;
    }

    /* Solution */
    .section-solution {
        padding: 80px 0;
    }

    .solution-logo h2 {
        font-size: 2rem;
    }

    .sun-icon {
        font-size: 2.2rem;
    }

    /* Pillars */
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .pillar-card {
        padding: 24px 16px 20px;
    }

    .pillar-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .pillar-card h3 {
        font-size: 1rem;
    }

    .pillar-card p {
        font-size: 0.82rem;
    }

    .pillars-note {
        font-size: 0.95rem;
        padding: 20px 20px;
    }

    /* Results */
    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-item {
        padding: 16px 18px;
    }

    /* Package */
    .package-main {
        padding: 28px 20px;
    }

    .package-header h3 {
        font-size: 1.5rem;
    }

    .package-list li {
        font-size: 0.92rem;
        padding: 10px 12px;
    }

    .bonus-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Guarantee */
    .guarantee-card {
        padding: 40px 24px;
    }

    .guarantee-shield svg {
        width: 48px;
        height: 48px;
    }

    .guarantee-card h2 {
        font-size: 1.4rem;
    }

    .guarantee-card p {
        font-size: 0.92rem;
    }

    /* Offer */
    .section-offer {
        padding: 80px 0;
    }

    .offer-content {
        padding: 36px 24px;
        border-radius: 20px;
    }

    .offer-title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .price-currency {
        font-size: 1.3rem;
    }

    .offer-includes {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .offer-security {
        flex-direction: column;
        gap: 8px;
    }

    /* Glow overflow fix */
    .offer-glow {
        width: 300px;
        height: 300px;
    }

    .section-results::before {
        width: 300px;
        height: 300px;
    }
}

/* --- Mobile (≤ 480px) --- */
@media (max-width: 480px) {
    :root {
        --section-padding: 56px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* Hero */
    .hero {
        padding: 80px 0 48px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }

    .hero-pre-headline {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .hero-hr {
        width: 60px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 1.45rem;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .hero-trust {
        font-size: 0.78rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.35rem;
        margin-bottom: 32px;
    }

    .section-label span {
        font-size: 0.7rem;
        padding: 5px 14px;
        letter-spacing: 1.5px;
    }

    /* Pain */
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pain-card {
        padding: 18px 16px;
        display: flex;
        align-items: center;
        gap: 14px;
        text-align: left;
    }

    .pain-icon {
        font-size: 1.6rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .pain-card p {
        font-size: 0.9rem;
    }

    .pain-empathy {
        font-size: 0.92rem;
        padding: 18px 18px;
    }

    /* Agitation */
    .agitation-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .agitation-icon {
        font-size: 2rem;
    }

    .agitation-item {
        font-size: 1rem;
    }

    .agitation-warning {
        font-size: 1rem;
        padding: 16px;
    }

    /* Solution */
    .section-solution {
        padding: 64px 0;
    }

    .solution-pre {
        font-size: 0.95rem;
    }

    .solution-logo {
        gap: 10px;
        margin-bottom: 18px;
    }

    .solution-logo h2 {
        font-size: 1.75rem;
    }

    .sun-icon {
        font-size: 1.8rem;
    }

    .solution-desc {
        font-size: 1rem;
    }

    /* Pillars */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pillar-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 16px;
    }

    .pillar-number {
        top: 10px;
        right: 12px;
        font-size: 0.65rem;
    }

    .pillar-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .pillar-card h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }

    .pillar-card p {
        font-size: 0.82rem;
    }

    .pillars-note {
        font-size: 0.88rem;
        padding: 16px;
    }

    /* Results */
    .result-item {
        padding: 14px 16px;
        gap: 12px;
    }

    .result-check {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }

    .result-item span {
        font-size: 0.88rem;
    }

    /* Package */
    .package-main {
        padding: 24px 16px;
        border-radius: 18px;
    }

    .package-header h3 {
        font-size: 1.3rem;
    }

    .package-list li {
        font-size: 0.88rem;
        padding: 10px 10px;
        gap: 10px;
    }

    .package-list li svg {
        width: 16px;
        height: 16px;
    }

    .bonus-card {
        padding: 20px 16px;
    }

    .bonus-card h4 {
        font-size: 0.92rem;
    }

    .bonus-card p {
        font-size: 0.8rem;
    }

    /* Guarantee */
    .guarantee-card {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .guarantee-shield svg {
        width: 40px;
        height: 40px;
    }

    .guarantee-card h2 {
        font-size: 1.2rem;
    }

    .guarantee-card p {
        font-size: 0.88rem;
    }

    /* Offer */
    .section-offer {
        padding: 64px 0;
    }

    .offer-content {
        padding: 32px 18px;
        border-radius: 18px;
    }

    .offer-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    .price-amount {
        font-size: 3rem;
    }

    .price-currency {
        font-size: 1.1rem;
    }

    .price-period {
        font-size: 0.85rem;
    }

    .offer-include-item {
        font-size: 0.8rem;
        padding: 7px 10px;
    }

    /* CTA */
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 0.92rem;
        border-radius: 12px;
    }

    .cta-button-large {
        padding: 18px 20px;
        font-size: 0.95rem;
        border-radius: 14px;
    }

    /* Security */
    .security-item {
        font-size: 0.72rem;
    }

    /* Footer */
    .footer {
        padding: 36px 0;
    }

    .footer-brand {
        font-size: 0.95rem;
    }

    .footer-disclaimer {
        font-size: 0.72rem;
    }
}

/* --- Small phones (≤ 360px) --- */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .hero-pre-headline {
        font-size: 0.88rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .solution-logo h2 {
        font-size: 1.5rem;
    }

    .price-amount {
        font-size: 2.6rem;
    }

    .offer-content {
        padding: 28px 14px;
    }

    .offer-title {
        font-size: 1.15rem;
    }

    .agitation-title {
        font-size: 1.15rem;
    }

    .guarantee-card h2 {
        font-size: 1.1rem;
    }
}