/* ===== CSS VARIABLES ===== */
:root {
    --bg-void: #030303;
    --bg-primary: #0a0a0b;
    --bg-elevated: #111113;
    --bg-surface: #18181b;
    --fire-red: #22c55e;
    --fire-orange: #16a34a;
    --fire-yellow: #4ade80;
    --ember-glow: #15803d;
    --text-white: #fafafa;
    --text-gray: #a1a1aa;
    --text-muted: #71717a;
    --text-dark: #52525b;
    --success: #22c55e;
    --gold: #fbbf24;
    --gradient-fire: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #4ade80 100%);
    --gradient-metal: linear-gradient(180deg, #27272a 0%, #18181b 100%);
    --glow-red: 0 0 60px rgba(34, 197, 94, 0.4);
    --glow-intense: 0 0 120px rgba(34, 197, 94, 0.6);
    --shadow-lg: 0 25px 60px -15px rgba(0, 0, 0, 0.5);
    --shadow-fire: 0 20px 60px -10px rgba(34, 197, 94, 0.3);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-void);
    color: var(--text-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    min-height: -webkit-fill-available;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-void);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 8px;
    color: var(--text-white);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.loading-line {
    width: 100%;
    max-width: 200px;
    transform: scaleX(0);
    transform-origin: left;
    height: 3px;
    margin-top: 16px;
    background: var(--gradient-fire);
    animation: drawLine 1.5s ease forwards 0.8s;
}

.loading-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    height: 3px;
    background: var(--gradient-fire);
    box-shadow: 0 0 20px var(--fire-red);
    animation: loadProgress 2s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes drawLine {
    to {
        transform: scaleX(1);
    }
}

@keyframes loadProgress {
    to {
        transform: scaleX(1);
    }
}

/* ===== NOISE OVERLAY ===== */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
}

/* ===== URGENCY BAR ===== */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: 52px;
    background: rgba(17, 17, 19, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.urgency-bar-glow {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
    animation: shimmerPass 3s infinite;
}

@keyframes shimmerPass {
    to {
        transform: translateX(100%);
    }
}

.urgency-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-indicator {
    display: flex;
    align-items: center;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fire-red);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 10px var(--fire-red);
}

@keyframes pulse {
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

.offer-text {
    font-size: 13px;
    font-weight: 600;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 6px;
}

.price-old-label {
    font-size: 13px;
    color: var(--text-muted);
}

.price-old {
    font-size: 14px;
    color: var(--text-muted);
    /* text-decoration: line-through; */
    position: relative;
}

.price-sep {
    font-size: 13px;
    color: var(--text-gray);
}

.price-new {
    font-size: 15px;
    font-weight: 700;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.urgency-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
}

.countdown-container {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
}

.countdown {
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 52px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    background: url('/hero-bg.webp') center/cover;
    filter: grayscale(100%) brightness(30%);
    opacity: 0.4;
    will-change: transform;
    content-visibility: auto;
}

@keyframes slowZoom {
    to {
        transform: scale(1.1);
    }
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 30% 40%, transparent 0%, var(--bg-void) 70%),
        linear-gradient(180deg, var(--bg-void) 0%, transparent 30%, transparent 70%, var(--bg-void) 100%);
}

.hero-volumetric-light {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.05), transparent 70%);
    filter: blur(100px);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-orb {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent 70%);
    filter: blur(120px);
    animation: orb 6s ease-in-out infinite;
}

@keyframes orb {
    50% {
        transform: scale(1.1);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    position: relative;
    z-index: 10;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    position: relative;
}

/* Social Proof Badge */
.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 28px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.avatar-stack {
    display: flex;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-elevated);
    margin-left: -10px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.badge-text {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Headlines */
.pre-headline {
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.headline {
    margin-bottom: 28px;
}

.headline-line1 {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    letter-spacing: 2px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.headline-line2 {
    display: block;
    position: relative;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.headline-line2::after {
    content: 'EM POUCO TEMPO.';
    position: absolute;
    left: 0;
    top: 0;
    filter: blur(40px);
    opacity: 0.5;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes revealText {
    from {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }

    to {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.subheadline {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 480px;
}

/* CTA Area */
.cta-area {
    margin-top: 48px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: 340px;
    height: 68px;
    padding: 0 24px;
    background: var(--gradient-fire);
    border-radius: 14px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 20px 50px -10px rgba(34, 197, 94, 0.5);
    transition: all 0.3s var(--ease-smooth);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px -10px rgba(34, 197, 94, 0.6), 0 0 30px rgba(34, 197, 94, 0.3);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 2.5s infinite;
}


.cta-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-sep {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.cta-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: white;
}

.cta-arrow {
    width: 18px;
    height: 18px;
    color: white;
    position: absolute;
    right: 24px;
    animation: arrowBounce 1s infinite;
}

@keyframes arrowBounce {
    50% {
        transform: translateX(5px);
    }
}

.trust-indicators {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-icon {
    width: 16px;
    height: 16px;
    color: var(--success);
}

.trust-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 500px;
}

.phone-composition {
    position: relative;
    perspective: 1500px;
}

.orbit-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(34, 197, 94, 0.15);
    border-radius: 50%;
}

.orbit-1 {
    width: 400px;
    height: 400px;
    animation: rotate 60s linear infinite;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    animation: rotate 80s linear infinite reverse;
}

.orbit-3 {
    width: 600px;
    height: 600px;
    animation: rotate 100s linear infinite;
}

@keyframes rotate {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.phone-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.2), transparent 70%);
    filter: blur(60px);
    animation: breathe 3s ease-in-out infinite;
}

.phone-mockup {
    position: relative;
    z-index: 10;
    width: 280px;
    padding: 12px;
    background: linear-gradient(145deg, #2a2a2e, #1a1a1c);
    border-radius: 40px;
    box-shadow: 0 60px 100px -20px rgba(0, 0, 0, 0.7), 0 0 80px rgba(34, 197, 94, 0.2);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    50% {
        transform: translateY(-15px) rotateY(2deg);
    }
}

.phone-screen {
    background: var(--bg-void);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 9/19;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.app-interface {
    padding: 20px;
}

.app-header {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
}

.app-content {
    padding-top: 20px;
}

.app-card {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.app-card-label {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.app-card-title {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-bottom: 4px;
}

.app-card-time {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

.app-progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-app {
    width: 65%;
    height: 100%;
    background: var(--gradient-fire);
    border-radius: 100px;
}

.app-streak {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--fire-orange);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    z-index: 20;
    background: rgba(17, 17, 19, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.floating-card:hover {
    transform: rotate(0deg) scale(1.05);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-icon {
    width: 20px;
    height: 20px;
    color: var(--fire-red);
}

.card-1 {
    top: 10%;
    left: -80px;
    transform: rotate(-5deg);
    animation: floatCard1 5s ease-in-out infinite;
}

.card-2 {
    bottom: 15%;
    right: -100px;
    transform: rotate(5deg);
    flex-direction: column;
    align-items: flex-start;
    animation: floatCard2 6s ease-in-out infinite;
}

.card-3 {
    top: 40%;
    left: -100px;
    flex-direction: column;
    align-items: center;
    animation: floatCard3 4s ease-in-out infinite;
}

@keyframes floatCard1 {
    50% {
        transform: rotate(-5deg) translateY(-10px);
    }
}

@keyframes floatCard2 {
    50% {
        transform: rotate(5deg) translateY(-12px);
    }
}

@keyframes floatCard3 {
    50% {
        transform: translateY(-8px);
    }
}

.card-1 span {
    font-size: 14px;
    font-weight: 600;
}

.big-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card-label {
    font-size: 11px;
    color: var(--text-muted);
}

.stars {
    color: var(--gold);
    font-size: 14px;
}

.rating {
    font-size: 16px;
    font-weight: 700;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

.scroll-text {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-dark);
}

.chevrons {
    display: flex;
    flex-direction: column;
    gap: -8px;
}

.chevrons svg {
    width: 16px;
    height: 16px;
    color: var(--text-dark);
    animation: bounceChevron 1.5s infinite;
}

.chevrons svg:nth-child(2) {
    animation-delay: 0.15s;
    opacity: 0.5;
}

@keyframes bounceChevron {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

/* ===== PROBLEM BAR ===== */
.problem-bar {
    height: 80px;
    position: relative;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 5;
}

.problem-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.1) 10px, rgba(0, 0, 0, 0.1) 20px);
}

.problem-bar-shimmer {
    position: absolute;
    top: 0;
    left: -200px;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmerPass 4s infinite;
}

.problem-items {
    display: flex;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.problem-x {
    font-size: 18px;
}
\n/* ===== PAIN SECTION RED OVERRIDES ===== */

/* Mini problem tags dentro da pain section */
.pain-tags {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    margin: 28px 0 48px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 5px;
}
.pain-tags::-webkit-scrollbar {
    display: none;
}
.pain-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(225, 29, 72, 0.1);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 999px;
    color: #fb7185;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Ícones dos cards de dor → vermelho */
.pain-section .pain-icon {
    background: rgba(225, 29, 72, 0.1) !important;
    border-color: rgba(225, 29, 72, 0.2) !important;
    color: #e11d48 !important;
}
.pain-section .pain-icon svg {
    color: #e11d48;
    stroke: #e11d48;
}

/* Borda dos cards de dor → linha vermelha no hover */
.pain-section .pain-card {
    border-color: rgba(225, 29, 72, 0.08) !important;
}
.pain-section .pain-card:hover {
    border-color: rgba(225, 29, 72, 0.3) !important;
    box-shadow: 0 20px 40px -10px rgba(225, 29, 72, 0.15) !important;
}

/* Número data-number dos cards → vermelho */
.pain-section .pain-card::before {
    color: rgba(225, 29, 72, 0.12) !important;
}

/* Quote de transição → vermelho */
.pain-section .transition-quote {
    border-color: rgba(225, 29, 72, 0.4) !important;
    background: rgba(225, 29, 72, 0.05) !important;
}
.pain-section .transition-quote strong {
    color: #fb7185 !important;
}
.pain-section .quote-icon {
    color: rgba(225, 29, 72, 0.3) !important;
}

/* ===== PAIN SECTION ===== */

.pain-section {
    padding: 140px 0;
    position: relative;
    background: var(--bg-primary);
    z-index: 5;
    overflow: hidden;
}

.section-bg-text {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 180px;
    color: rgba(255, 255, 255, 0.02);
    user-select: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 100px;
    padding: 10px 24px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--fire-red);
    margin-bottom: 24px;
}

.section-headline {
    text-align: center;
    margin-bottom: 64px;
}

.headline-sm {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text-muted);
    letter-spacing: 4px;
}

.headline-lg {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pain-card {
    background: linear-gradient(135deg, var(--bg-elevated) 0%, var(--bg-primary) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
}

.pain-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
}

.pain-card::after {
    content: attr(data-number);
    position: absolute;
    top: -20px;
    right: -10px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 140px;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.pain-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4), 0 0 40px rgba(34, 197, 94, 0.1);
}

.pain-card:hover::before {
    opacity: 1;
}

.pain-icon {
    width: 64px;
    height: 64px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-icon svg {
    width: 28px;
    height: 28px;
    color: var(--fire-red);
}

.pain-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

.transition-quote {
    max-width: 700px;
    margin: 80px auto 0;
    background: var(--bg-elevated);
    border-left: 4px solid var(--fire-red);
    border-radius: 0 16px 16px 0;
    padding: 32px 40px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    color: rgba(34, 197, 94, 0.1);
    font-family: Georgia, serif;
}

.transition-quote p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
}

.transition-quote strong {
    font-weight: 700;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
    padding: 160px 0;
    position: relative;
    background: var(--bg-elevated);
    z-index: 5;
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.product-title {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px;
    letter-spacing: 6px;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 50%, #ffffff 100%);
    background-size: 100% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}


.product-subtitle {
    text-align: center;
    font-size: 20px;
    color: var(--text-gray);
    margin-top: 16px;
    margin-bottom: 80px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.product-visual {
    position: relative;
}

.phone-stage {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1500px;
}

.spotlight {
    position: absolute;
    top: -100px;
    width: 300px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.stage-shadow {
    position: absolute;
    bottom: -30px;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4), transparent 70%);
}

.phone-primary {
    position: relative;
    z-index: 3;
    width: 360px;
    padding: 10px;
    background: linear-gradient(145deg, #2a2a2e, #1a1a1c);
    border-radius: 36px;
    box-shadow: var(--shadow-lg), 0 0 60px rgba(34, 197, 94, 0.15);
    animation: float 4s ease-in-out infinite;
}

.phone-secondary {
    position: absolute;
    top: 50%;
    width: 220px;
    padding: 8px;
    background: linear-gradient(145deg, #2a2a2e, #1a1a1c);
    border-radius: 32px;
    opacity: 0.7;
    filter: blur(1px);
}

.phone-secondary.left {
    left: -20%;
    z-index: 1;
    transform: translateY(-50%) translateZ(-100px) rotateY(25deg);
}

.phone-secondary.right {
    right: -20%;
    z-index: 2;
    transform: translateY(-50%) translateZ(-100px) rotateY(-25deg);
}

.app-interface.mini {
    padding: 12px;
}

.app-header.mini {
    font-size: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-cards {
    padding-top: 12px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
    font-size: 10px;
    margin-bottom: 6px;
}

.mini-chart {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 80px;
    padding-top: 12px;
}

.chart-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px 4px 0 0;
}

.chart-bar.active {
    background: var(--gradient-fire);
}

.app-card.featured {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(22, 163, 74, 0.15));
}

.app-stats {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.stat {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
}

.stat-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label,
.stat .stat-label {
    font-size: 10px;
    color: var(--text-muted);
}

.product-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.product-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
}

.product-badge svg {
    width: 18px;
    height: 18px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 28px;
    border-radius: 20px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(10px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: var(--gradient-fire);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px -10px rgba(34, 197, 94, 0.4);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 20px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-content h3 {
    font-size: 22px;
    font-weight: 700;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 8px;
    max-width: 320px;
}

/* ===== HOW SECTION ===== */
.how-section {
    padding: 140px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 5;
    text-align: center;
}

.section-title-center {
    text-align: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
}

.steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-top: 80px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.steps-line {
    position: absolute;
    top: 70px;
    left: 20%;
    right: 20%;
    height: 3px;
    background: var(--gradient-fire);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 280px;
    position: relative;
}

.step-circle {
    width: 140px;
    height: 140px;
    background: var(--bg-elevated);
    border: 3px solid var(--fire-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.2);
}

.step-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-glow {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--fire-red), transparent 30%, transparent 70%, var(--fire-red));
    animation: rotateGlow 3s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

@keyframes rotateGlow {
    to {
        transform: rotate(360deg);
    }
}

.step-icon {
    position: absolute;
    bottom: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-fire);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.step-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.step h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    margin-top: 32px;
    position: relative;
    z-index: 2;
}

.step p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-top: 12px;
    position: relative;
    z-index: 2;
}

/* ===== SOCIAL SECTION ===== */
.social-section {
    padding: 140px 0;
    background: var(--bg-elevated);
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: var(--fire-red);
}

.stat-item .stat-number.stars {
    color: var(--gold);
}

.stat-plus,
.stat-percent {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
}

.stat-stars {
    color: var(--gold);
    display: block;
    font-size: 20px;
}

.stat-item .stat-label {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonials-carousel {
    margin-top: 64px;
    position: relative;
}

.carousel-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 10;
    pointer-events: none;
}

.carousel-mask.left {
    left: 0;
    background: linear-gradient(90deg, var(--bg-elevated), transparent);
}

.carousel-mask.right {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-elevated), transparent);
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-elevated) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 36px;
    scroll-snap-align: center;
    transition: all 0.4s;
}

.testimonial-card:hover {
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.quote-mark {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.1);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 24px;
}

.testimonial-text strong {
    font-weight: 600;
    color: white;
}

.testimonial-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-fire);
    margin: 28px 0;
}

.testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid var(--fire-red);
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
}

.author-detail {
    font-size: 13px;
    color: var(--text-muted);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

/* ===== OFFER SECTION ===== */
.offer-section {
    padding: 160px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 5;
}

.offer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08), transparent 70%);
    pointer-events: none;
}

.offer-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.05) 0%, rgba(24, 24, 27, 0.8) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-top: 2px solid var(--fire-red);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 56px;
    position: relative;
    overflow: visible;
    box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.9), 0 0 100px rgba(34, 197, 94, 0.2), inset 0 2px 30px rgba(34, 197, 94, 0.15);
    
}

.offer-border-glow {
    position: absolute;
    inset: -2px;
    border-radius: 32px;
    background: conic-gradient(from 0deg, #22c55e, transparent 20%, transparent 80%, #22c55e);
    animation: rotateGlow 6s linear infinite;
    opacity: 0.5;
    z-index: -1;
}

.offer-top-light {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 100px;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.03), transparent 70%);
    pointer-events: none;
}

.offer-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-fire);
    padding: 14px 32px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: white;
}

.offer-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.offer-label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-gray);
}

.offer-sublabel {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.offer-price {
    position: relative;
    margin-top: 16px;
}

.price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pricePulse 2s ease-in-out infinite;
}

@keyframes pricePulse {
    50% {
        transform: scale(1.02);
    }
}

.price-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background: var(--fire-red);
    filter: blur(80px);
    opacity: 0.3;
    z-index: -1;
}

.savings-tag {
    display: inline-block;
    margin-top: 12px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
    letter-spacing: 1px;
}

.offer-divider {
    width: 60%;
    height: 1px;
    margin: 32px auto;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.offer-includes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.include-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    transition: all 0.3s;
}

.include-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateX(4px);
}

.include-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--success), #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.include-item span {
    font-size: 14px;
    font-weight: 600;
}

.price-comparison {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    text-align: center;
}

.comparison-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.price-crossed {
    display: block;
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: line-through;
    margin-top: 8px;
    position: relative;
}

.arrow-down {
    font-size: 32px;
    color: var(--text-muted);
    animation: bounceArrow 1s infinite;
    margin: 16px 0;
}

@keyframes bounceArrow {
    50% {
        transform: translateY(5px);
    }
}

.final-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
}

.final-price {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    margin-top: 4px;
}

.offer-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 76px;
    margin-top: 40px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(34, 197, 94, 0.5);
    transition: all 0.3s;
}

.offer-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -10px rgba(34, 197, 94, 0.6), 0 0 40px rgba(34, 197, 94, 0.3);
}

.offer-cta .cta-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.security-item svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.security-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.payment-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
}

.payment-logos span {
    font-size: 12px;
    color: var(--text-dark);
    opacity: 0.5;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    padding: 120px 0;
    background: var(--bg-elevated);
    position: relative;
    z-index: 5;
}

.guarantee-layout {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-seal {
    width: 220px;
    height: 220px;
    position: relative;
    flex-shrink: 0;
}

.seal-border {
    position: absolute;
    inset: 0;
    border: 4px solid var(--success);
    border-radius: 50%;
}

.seal-border::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 4px dashed var(--success);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotateGlow 30s linear infinite;
}

.seal-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(34, 197, 94, 0.2);
}

.seal-content svg {
    width: 48px;
    height: 48px;
    color: var(--success);
}

.seal-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--success);
    margin-top: 12px;
}

.seal-days {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
}

.seal-subtext {
    font-size: 12px;
    color: var(--text-gray);
}

.guarantee-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1.2;
}

.guarantee-text p {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 24px;
}

.guarantee-highlight {
    margin-top: 24px;
    padding: 20px 24px;
    background: rgba(34, 197, 94, 0.05);
    border-left: 4px solid var(--success);
    border-radius: 0 12px 12px 0;
}

.guarantee-highlight span {
    font-size: 16px;
    font-weight: 600;
    color: var(--success);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 140px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 5;
}

.faq-accordion {
    max-width: 700px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.open {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.3);
}

.faq-header {
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question {
    font-size: 17px;
    font-weight: 600;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.faq-icon svg {
    color: var(--fire-red);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.open .faq-body {
    max-height: 300px;
}

.faq-body p {
    padding: 0 32px 28px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 180px 0;
    position: relative;
    background: var(--bg-elevated);
    overflow: hidden;
    z-index: 5;
}

.final-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=1920') center/cover;
    filter: grayscale(100%) brightness(20%);
    opacity: 0.3;
}

.final-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(34, 197, 94, 0.1), transparent 60%);
}

.final-cta-section .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.final-headline {
    margin-bottom: 40px;
}

.headline-muted {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--text-gray);
}

.headline-bold {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.final-text {
    max-width: 600px;
    margin: 0 auto;
}

.final-text p {
    font-size: 19px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.final-text strong {
    font-weight: 700;
    color: white;
}

.final-cta-button {
    display: inline-block;
    position: relative;
    padding: 24px 48px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--gradient-fire);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes ctaGlow {
    50% {
        box-shadow: 0 30px 80px -10px rgba(34, 197, 94, 0.7), 0 0 60px rgba(34, 197, 94, 0.4);
    }
}

.final-cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.final-cta-button .cta-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 3px;
    color: white;
}

.final-cta-button .cta-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: white;
    opacity: 0.8;
}

.cta-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.final-info {
    margin-top: 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
}

.final-countdown {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 20px 32px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.fire-icon {
    font-size: 28px;
    animation: fireShake 0.5s ease-in-out infinite;
}

@keyframes fireShake {
    50% {
        transform: rotate(5deg) scale(1.1);
    }
}

.countdown-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-gray);
}

.final-countdown .countdown {
    font-family: 'JetBrains Mono', monospace;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
}

/* ===== FOOTER ===== */
.footer {
    padding: 60px 0;
    background: var(--bg-void);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    z-index: 5;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 4px;
    opacity: 0.3;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    max-width: 500px;
    margin: 32px auto 0;
    font-size: 11px;
    color: #3f3f46;
    line-height: 1.6;
}

.footer-copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #3f3f46;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        min-height: 0;
    }

    .social-proof-badge {
        margin: 0 auto 28px;
    }

    .subheadline {
        margin: 0 auto;
    }

    .cta-area {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .product-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .product-features {
        order: 2;
    }

    .phone-secondary {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        gap: 60px;
    }

    .steps-line {
        display: none;
    }

    .guarantee-layout {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {

    /* Urgency Bar Mobile */
    .urgency-bar {
        height: 44px;
        padding: 0 12px;
    }

    .urgency-content {
        gap: 6px;
        font-size: 10px;
        width: 100%;
        justify-content: center;
    }

    .offer-text {
        display: none;
    }

    .live-indicator {
        display: none;
    }

    .price-display {
        gap: 4px;
    }

    .price-old-label {
        font-size: 11px;
    }

    .price-old {
        font-size: 12px;
    }

    .price-sep {
        font-size: 11px;
    }

    .price-new {
        font-size: 14px;
    }

    .urgency-sep {
        height: 16px;
    }

    .countdown-container {
        padding: 4px 10px;
        border-radius: 6px;
    }

    .countdown {
        font-size: 13px;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 56px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-content {
        gap: 40px;
    }

    .social-proof-badge {
        padding: 8px 14px;
        margin-bottom: 20px;
    }

    .avatar {
        width: 26px;
        height: 26px;
        margin-left: -8px;
    }

    .badge-text {
        font-size: 11px;
    }

    .pre-headline {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .headline {
        margin-bottom: 20px;
    }

    /* Phone Visual Mobile */
    .hero-visual {
        min-height: 0;
        display: none;
    }

    .phone-mockup {
        width: 240px;
        padding: 10px;
        border-radius: 32px;
    }

    .phone-screen {
        border-radius: 26px;
    }

    .app-interface {
        padding: 14px;
    }

    .app-logo {
        font-size: 12px;
    }

    .app-card {
        padding: 14px;
        border-radius: 12px;
        margin-bottom: 12px;
    }

    .app-card-label {
        font-size: 9px;
    }

    .app-card-title {
        font-size: 18px;
    }

    .app-card-time {
        font-size: 10px;
    }

    .app-progress {
        height: 5px;
        margin-bottom: 10px;
    }

    .app-streak {
        font-size: 10px;
    }

    .headline-line1 {
        font-size: 36px;
        letter-spacing: 1px;
    }

    .headline-line2 {
        font-size: 42px;
    }

    .subheadline {
        font-size: 15px;
        padding: 0 10px;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        height: 64px;
        border-radius: 12px;
    }

    .cta-text {
        font-size: 16px !important;
        letter-spacing: 1px;
    }

    .cta-price {
        font-size: 18px !important;
    }

    .cta-sep {
        display: none;
    }

    .cta-arrow {
        display: none;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .problem-items {
        flex-direction: column;
        gap: 12px;
    }

    .problem-bar {
        height: auto;
        padding: 16px;
    }

    .problem-item {
        font-size: 13px;
        justify-content: center;
    }

    .pain-section,
    .product-section,
    .how-section,
    .social-section,
    .offer-section,
    .guarantee-section,
    .faq-section {
        padding: 60px 0;
    }

    .container {
        padding: 0 16px;
    }

    .section-badge {
        font-size: 10px;
        padding: 8px 16px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pain-card {
        padding: 24px;
        border-radius: 16px;
    }

    .pain-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }

    .pain-icon svg {
        width: 22px;
        height: 22px;
    }

    .pain-card h3 {
        font-size: 17px;
        margin-top: 16px;
    }

    .pain-card p {
        font-size: 14px;
    }

    .headline-sm {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .headline-lg {
        font-size: 32px;
    }

    .transition-quote {
        padding: 20px 24px;
        margin-top: 40px;
    }

    .transition-quote p {
        font-size: 16px;
    }

    .quote-icon {
        font-size: 60px;
        top: -10px;
        left: 10px;
    }

    .product-title {
        font-size: 36px;
        letter-spacing: 3px;
    }

    .product-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .phone-primary {
        width: 220px;
        padding: 8px;
        border-radius: 28px;
    }

    .product-badges {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .product-badge {
        font-size: 11px;
        padding: 8px 14px;
    }

    .product-badge svg {
        width: 14px;
        height: 14px;
    }

    .feature-item {
        padding: 16px;
        gap: 16px;
        margin-bottom: 16px;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

    .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .feature-content h3 {
        font-size: 17px;
    }

    .feature-content p {
        font-size: 13px;
        margin-top: 4px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .steps-container {
        gap: 50px;
        margin-top: 40px;
        padding: 0 20px;
        width: 100%;
        align-items: center;
    }

    .step {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-circle {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .step-number {
        font-size: 36px;
    }

    .step-icon {
        width: 32px;
        height: 32px;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: -16px;
        margin-bottom: 16px;
    }

    .step-icon svg {
        width: 14px;
        height: 14px;
    }

    .step h3 {
        font-size: 18px;
        margin-top: 8px;
        padding: 0 10px;
    }

    .step p {
        font-size: 13px;
        padding: 0 20px;
        max-width: 280px;
    }

    .stats-row {
        flex-direction: column;
        gap: 32px;
    }

    .stat-item .stat-number {
        font-size: 42px;
    }

    .stat-plus,
    .stat-percent {
        font-size: 32px;
    }

    .stat-stars {
        font-size: 16px;
    }

    .stat-item .stat-label {
        font-size: 12px;
    }

    .testimonials-carousel {
        margin-top: 40px;
    }

    .carousel-mask {
        width: 40px;
    }

    .testimonial-card {
        width: 280px;
        padding: 24px;
        border-radius: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .author-photo {
        width: 44px;
        height: 44px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-detail {
        font-size: 11px;
    }

    .offer-card {
        padding: 28px 20px;
        border-radius: 24px;
    }

    .offer-badge {
        font-size: 12px;
        padding: 10px 20px;
        top: -16px;
    }

    .offer-header {
        margin-bottom: 24px;
    }

    .offer-label {
        font-size: 15px;
    }

    .offer-sublabel {
        font-size: 12px;
    }

    .offer-includes {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .include-item {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .include-check {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .include-item span {
        font-size: 13px;
    }

    .price-value {
        font-size: 56px;
    }

    .savings-tag {
        font-size: 10px;
        padding: 6px 14px;
    }

    .price-comparison {
        margin-top: 24px;
        padding-top: 24px;
    }

    .comparison-label {
        font-size: 12px;
    }

    .price-crossed {
        font-size: 20px;
    }

    .final-label {
        font-size: 12px;
    }

    .final-price {
        font-size: 36px;
    }

    .offer-cta {
        height: 64px;
        margin-top: 24px;
        border-radius: 14px;
    }

    .offer-cta .cta-text {
        font-size: 16px;
        letter-spacing: 1px;
    }

    .security-badges {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        margin-top: 20px;
    }

    .security-item {
        font-size: 12px;
    }

    .security-item svg {
        width: 16px;
        height: 16px;
    }

    .payment-logos {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .payment-logos span {
        font-size: 10px;
    }

    .guarantee-layout {
        gap: 40px;
    }

    .guarantee-seal {
        width: 140px;
        height: 140px;
    }

    .seal-content svg {
        width: 36px;
        height: 36px;
    }

    .seal-text {
        font-size: 11px;
        letter-spacing: 2px;
        margin-top: 8px;
    }

    .seal-days {
        font-size: 28px;
    }

    .seal-subtext {
        font-size: 10px;
    }

    .guarantee-text h2 {
        font-size: 26px;
    }

    .guarantee-text p {
        font-size: 14px;
        margin-top: 16px;
    }

    .guarantee-highlight {
        padding: 14px 18px;
        margin-top: 16px;
    }

    .guarantee-highlight span {
        font-size: 14px;
    }

    .faq-accordion {
        margin-top: 40px;
        gap: 12px;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-header {
        padding: 20px 20px;
    }

    .faq-question {
        font-size: 15px;
        padding-right: 10px;
    }

    .faq-icon {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }

    .faq-body p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .headline-muted {
        font-size: 28px;
    }

    .headline-bold {
        font-size: 40px;
    }

    .final-cta-section {
        padding: 80px 0;
    }

    .final-text p {
        font-size: 15px;
    }

    .final-cta-button {
    display: inline-block;
    position: relative;
    padding: 24px 48px;
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-white);
    background: var(--gradient-fire);
    border-radius: 12px;
    text-decoration: none;
    overflow: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    .final-cta-button .cta-text {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .final-cta-button .cta-price {
        font-size: 18px;
    }

    .final-info {
        font-size: 13px;
    }

    .final-countdown {
        padding: 14px 20px;
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fire-icon {
        font-size: 22px;
    }

    .countdown-text {
        font-size: 14px;
    }

    .final-countdown .countdown {
        font-size: 18px;
    }

    .footer {
        padding: 40px 0;
    }

    .footer-logo {
        font-size: 18px;
        letter-spacing: 3px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }

    .footer-disclaimer {
        font-size: 10px;
        padding: 0 16px;
    }

    .footer-copyright {
        font-size: 10px;
    }

    /* Hide decorative elements on mobile for cleaner look */
    .section-bg-text {
        display: none;
    }

    .orbit-circle {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }
}\n
@keyframes shimmer {
  0% { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(200%) skewX(-20deg); }
}

@keyframes metalShine {
  0%   { transform: translateX(-100%) skewX(-15deg); }
  100% { transform: translateX(300%) skewX(-15deg); }
}
.product-title {
  position: relative;
  overflow: hidden;
}
.product-title::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  animation: metalShine 3s ease-in-out infinite;
  will-change: transform;
}
/* =========================================
   TESTIMONIALS SLIDER REDESIGN
   ========================================= */
.testimonials-slider {
    margin-top: 40px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0 40px 40px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.testimonials-slider::-webkit-scrollbar {
    display: none;
}

.testimonials-track {
    display: inline-flex;
    gap: 20px;
    padding-bottom: 20px;
}

.testimonial-box {
    width: 320px;
    flex-shrink: 0;
    background: var(--bg-elevated);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    scroll-snap-align: center;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--fire-red);
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.testimonial-sub {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 4px;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-texto {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
}

@media (min-width: 1024px) {
    .testimonial-box {
        width: 380px;
        padding: 32px;
    }
}
