/* ================= DESIGN SYSTEM & VARIABLES ================= */
:root {
    --bg-dark: #090014;
    --bg-secondary: #13002a;
    --primary-purple: #7000FF;
    --dark-purple: #4B0082;
    --neon-orange: #FF9900;
    --neon-yellow: #FFCC00;
    --neon-purple: #a855f7;
    --cta-green: #00E676;
    --cta-green-hover: #00C853;
    --text-main: #F3E8FF;
    --text-muted: #A899C8;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    
    --shadow-soft: 0 8px 32px rgba(112, 0, 255, 0.15);
    --shadow-glow: 0 0 35px rgba(112, 0, 255, 0.25);
    --shadow-cta: 0 0 25px rgba(0, 230, 118, 0.35);
}

/* ================= RESET & BASICS ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= TYPOGRAPHY ================= */
h1, h2, h3, h4, h5 {
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, var(--white), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ================= COMMON ELEMENTS ================= */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.glow-border {
    border: 2px solid var(--primary-purple);
    box-shadow: 0 0 40px rgba(112, 0, 255, 0.2), inset 0 0 20px rgba(112, 0, 255, 0.08);
}

.glow-effect {
    position: absolute;
    width: 250px;
    height: 250px;
    background: var(--primary-purple);
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.badge {
    background: rgba(112, 0, 255, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.4);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.badge i {
    width: 14px;
    height: 14px;
    color: var(--neon-orange);
}

/* CTAs */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: var(--cta-green);
    color: #01280d;
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.cta-button:hover {
    background: var(--cta-green-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-cta);
}

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

@keyframes cta-pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(0, 230, 118, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.large-pulse {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

/* ================= 1. PRECEL & QUIZ WRAPPER ================= */
.quiz-funnel-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top right, var(--bg-secondary), var(--bg-dark));
    padding: 2rem 0;
}

.funnel-container {
    max-width: 680px;
    width: 100%;
}

.funnel-step {
    width: 100%;
}

/* Precel Card */
.precel-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.precel-card .badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.precel-card h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 30%, var(--neon-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-subtitle {
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.precel-card .subheadline {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.precel-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.precel-mockup {
    max-width: 320px;
    border-radius: 12px;
    z-index: 1;
    filter: drop-shadow(0 15px 30px rgba(112, 0, 255, 0.3));
}

/* Quiz Card & Progress */
.quiz-progress-wrapper {
    margin-bottom: 2rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.quiz-progress-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.quiz-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-purple), var(--neon-orange));
    border-radius: 10px;
    transition: width 0.4s ease-out;
}

/* Question Container */
.question-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    text-align: center;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1.2rem 1.5rem;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.25s ease-out;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.option-btn:hover {
    background: rgba(112, 0, 255, 0.12);
    border-color: var(--primary-purple);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.1);
}

.option-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 700;
}

.option-btn:hover .option-letter {
    background: var(--primary-purple);
    color: var(--white);
}

/* ================= 2. FEEDBACK SCREENS ================= */
.feedback-card {
    text-align: center;
    padding: 3rem;
}

.feedback-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-success {
    font-size: 4rem;
    width: 64px;
    height: 64px;
    color: var(--cta-green);
}

.feedback-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--white);
}

.feedback-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* Animations scale */
.scale-up {
    animation: scale-up 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes scale-up {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* ================= 3. LOADING/PROCESSING SCREEN ================= */
.processing-card {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(112, 0, 255, 0.15);
    border-top: 5px solid var(--neon-orange);
    border-radius: 50%;
    margin: 0 auto 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.processing-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 1.5rem auto 1rem;
    overflow: hidden;
}

.processing-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-orange), var(--cta-green));
    width: 0%;
}

.processing-status {
    font-size: 1.1rem;
    color: var(--neon-yellow);
    font-weight: 700;
    margin-bottom: 2rem;
}

.processing-bullets {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    list-style: none;
}

.processing-bullets li {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.processing-bullets li.active {
    opacity: 1;
    color: var(--white);
}

.processing-bullets li.active i {
    color: var(--cta-green);
}

/* ================= 4. URGENCY BAR ================= */
.urgency-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #7000FF;
    border-bottom: 2px solid var(--neon-orange);
    padding: 0.75rem 0;
}

.urgency-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.urgency-text {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.urgency-flash-dot {
    width: 8px;
    height: 8px;
    background: var(--neon-orange);
    border-radius: 50%;
    animation: flash 1s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

.countdown-timer {
    background: var(--bg-dark);
    color: var(--neon-orange);
    font-size: 0.95rem;
    font-weight: 900;
    padding: 0.2rem 0.8rem;
    border-radius: 5px;
    border: 1px solid var(--neon-orange);
}

/* ================= 5. SALES PAGE COMPONENTS ================= */

/* Diagnostic Custom Header */
.diagnostic-result-section {
    padding: 4rem 0 2rem;
    background: radial-gradient(circle at bottom, var(--bg-secondary), var(--bg-dark));
}

.diagnostic-result-card {
    position: relative;
    overflow: hidden;
}

.result-badge {
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-purple));
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.result-profile-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.highlight-orange {
    color: var(--neon-orange);
    text-shadow: 0 0 20px rgba(255, 153, 0, 0.2);
}

.profile-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

.profile-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.critical-alert {
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.25);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.critical-alert i {
    width: 24px;
    height: 24px;
    color: #FF4444;
    flex-shrink: 0;
}

.critical-alert span {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Metrics */
.profile-metric-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 18px;
}

.profile-metric-box h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.metric-item {
    margin-bottom: 1.2rem;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.metric-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 5px;
    overflow: hidden;
}

.metric-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease-in-out;
}

.diagnostic-cta-wrapper {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
}

.cta-anchor-text {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Sales Hero */
.sales-hero {
    padding: 4rem 0 6rem;
    background: var(--bg-dark);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.25rem;
    margin-bottom: 1.5rem;
}

.hero-content .subheadline {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    font-size: 1.1rem;
    margin-bottom: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.hero-bullets li i {
    width: 22px;
    height: 22px;
    color: var(--neon-orange);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.floating-mockup {
    max-width: 440px;
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 20px 45px rgba(112, 0, 255, 0.4));
    animation: float 6s ease-in-out infinite;
}

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

/* ================= 6. PAIN SECTION ================= */
.pain-section {
    padding: 6rem 0;
    background: #06000e;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pain-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.8rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: transform 0.3s;
}

.pain-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.icon-danger {
    color: #FF4444;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.pain-conclusion {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
}

.big-statement {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.15), rgba(255, 153, 0, 0.08));
    border-radius: 20px;
    border: 1px solid rgba(112, 0, 255, 0.25);
}

.big-statement h3 {
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.3;
}

/* ================= 7. DIFFERENTIAL SECTION ================= */
.differential-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

.comparison-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.comp-box {
    flex: 1;
    min-width: 320px;
    max-width: 480px;
    padding: 3rem 2.5rem;
    border-radius: 24px;
}

.comp-box.bad {
    background: rgba(255, 68, 68, 0.02);
    border: 1px solid rgba(255, 68, 68, 0.15);
}

.comp-box.good {
    background: rgba(0, 230, 118, 0.02);
    border: 2px solid var(--cta-green);
    box-shadow: 0 0 35px rgba(0, 230, 118, 0.08);
    position: relative;
}

.comp-box h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.comp-box.bad h3 { color: #FF4444; }
.comp-box.good h3 { color: var(--cta-green); }

.comp-box ul {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    list-style: none;
}

.comp-box li {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.05rem;
    text-align: center;
    color: var(--text-main);
}

.comp-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-muted);
}

.diff-conclusion {
    text-align: center;
    font-size: 1.4rem;
    color: var(--white);
    margin-top: 3rem;
}

.diff-conclusion strong {
    font-size: 2.2rem;
    color: var(--neon-orange);
    display: block;
    margin-top: 0.5rem;
}

/* ================= 8. MODULES SECTION ================= */
.modules-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.module-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-soft);
    transform: translateY(-5px);
}

.module-header {
    background: rgba(112, 0, 255, 0.12);
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.module-num {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--neon-orange);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.module-header h3 {
    font-size: 1.5rem;
}

.module-body {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.module-items {
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 1.05rem;
    list-style: none;
}

.module-items li {
    margin-bottom: 0.4rem;
}

.module-details {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.5;
    flex-grow: 1;
}

.module-highlight {
    font-style: italic;
    color: var(--neon-yellow);
    font-weight: 600;
    text-align: center;
    padding: 0.88rem;
    background: rgba(255, 204, 0, 0.05);
    border-radius: 12px;
}

/* ================= 9. BONUS SECTION ================= */
.bonus-section {
    padding: 6rem 0;
    background: var(--bg-dark);
}

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

.premium-bonus-card {
    background: linear-gradient(145deg, rgba(112, 0, 255, 0.08), transparent);
    border: 1px solid rgba(112, 0, 255, 0.25);
    padding: 2.2rem 1.8rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
}

.premium-bonus-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-orange);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.25rem 1rem;
    border-radius: 30px;
}

.bonus-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(112, 0, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem auto 1.5rem;
}

.bonus-icon-wrapper i {
    width: 28px;
    height: 28px;
    color: var(--neon-orange);
}

.premium-bonus-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.premium-bonus-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.bonus-price {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
}

.bonus-old-val {
    text-decoration: line-through;
    color: #FF4444;
    font-size: 0.85rem;
}

.bonus-free-val {
    color: var(--cta-green);
    font-weight: 800;
    font-size: 1.05rem;
}

/* ================= 10. TESTIMONIALS & STORIES ================= */
.testimonials-section {
    padding: 6rem 0;
    background: #070010;
}

/* Stories Style */
.stories-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 4rem;
}

.stories-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.stories-subtitle i {
    color: #FF007A;
    width: 20px;
    height: 20px;
}

.stories-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.story-ring {
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.story-ring.active {
    background: linear-gradient(45deg, #f99f1b, #dd2a7b, #812a2b, #515ec4);
    animation: ring-pulse 2s infinite alternate;
}

.story-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 800;
    border: 3px solid var(--bg-dark);
}

.story-username {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

@keyframes ring-pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

/* WhatsApp Chats Simulation */
.whatsapp-chats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 2rem;
}

.whatsapp-chat-card {
    background: #0b141a;
    border-radius: 16px;
    border: 1px solid #202c33;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.wa-header {
    background: #202c33;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.95rem;
}

.wa-contact-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wa-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.wa-status {
    font-size: 0.75rem;
    color: #8696a0;
}

.wa-header-icons {
    display: flex;
    gap: 1rem;
    color: #aebac1;
}

.wa-header-icons i {
    width: 18px;
    height: 18px;
}

.wa-body {
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: cover;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 260px;
}

.wa-date-divider {
    align-self: center;
    background: #182229;
    color: #8696a0;
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.wa-bubble {
    max-width: 85%;
    padding: 0.6rem 0.88rem;
    border-radius: 10px;
    font-size: 0.92rem;
    position: relative;
    line-height: 1.4;
    word-break: break-word;
    color: #e9edef;
}

.wa-bubble.received {
    align-self: flex-start;
    background: #202c33;
    border-top-left-radius: 0;
}

.wa-bubble.sent {
    align-self: flex-end;
    background: #005c4b;
    border-top-right-radius: 0;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 0.68rem;
    color: #8696a0;
    margin-top: 0.25rem;
}

.blue-check {
    width: 14px;
    height: 14px;
    color: #53bdeb;
    display: inline-block;
    vertical-align: middle;
}

/* ================= 11. OFFER SECTION ================= */
.offer-section {
    padding: 6rem 0;
    background: #040008;
}

.offer-card {
    max-width: 780px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-dark) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
}

.offer-badge {
    background: rgba(0, 230, 118, 0.1);
    border: 1px solid var(--cta-green);
    padding: 0.4rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cta-green);
    margin-bottom: 2rem;
}

.offer-title {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.price-container {
    margin-bottom: 3rem;
}

.old-price {
    display: block;
    color: #FF4444;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.new-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-right: 0.4rem;
    color: var(--white);
}

.value {
    font-size: 5.5rem;
    font-weight: 900;
    color: var(--neon-orange);
    text-shadow: 0 0 25px rgba(255, 153, 0, 0.3);
}

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

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

.offer-benefits li {
    font-size: 1.15rem;
    margin-bottom: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.offer-benefits i {
    color: var(--cta-green);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.guarantee-security {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 2rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.gs-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.gs-item i {
    color: var(--primary-purple);
    width: 16px;
    height: 16px;
}

/* Guarantee Block */
.guarantee-section {
    padding: 4rem 0;
    background: var(--bg-dark);
}

.guarantee-container {
    max-width: 780px;
    text-align: center;
    border: 1px dashed rgba(112, 0, 255, 0.4);
    padding: 3rem;
    border-radius: 20px;
    background: rgba(112, 0, 255, 0.02);
}

.guarantee-badge {
    width: 60px;
    height: 60px;
    background: rgba(112, 0, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.guarantee-badge i {
    width: 28px;
    height: 28px;
    color: var(--neon-orange);
}

.guarantee-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.guarantee-container p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* ================= 12. FAQ (ACCORDION) ================= */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 1rem;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item[open] {
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item summary {
    padding: 1.5rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--neon-orange);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.5;
}

/* ================= 13. FOOTER ================= */
.footer {
    background: #040008;
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
}

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

.footer-logo {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.disclaimer {
    color: rgba(168, 153, 200, 0.4);
    font-size: 0.72rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ================= 14. STICKY FLOATING CTA ================= */
.floating-cta-button {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 99;
    width: 90%;
    max-width: 480px;
    background: var(--cta-green);
    color: #01280d;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 1.1rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 230, 118, 0.4);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.floating-cta-button.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.floating-cta-button:hover {
    background: var(--cta-green-hover);
    box-shadow: var(--shadow-cta);
}

/* ================= 15. STORIES LIGHTBOX MODAL ================= */
.story-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-modal-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.story-modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 90%;
    max-height: 720px;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    z-index: 2;
}

.story-progress-bar {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
}

.story-progress {
    height: 100%;
    background: var(--white);
    width: 0%;
}

.story-modal-header {
    position: absolute;
    top: 20px;
    left: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
}

.story-modal-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    font-size: 0.9rem;
}

.story-modal-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-modal-username {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--white);
}

.story-modal-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.story-modal-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.story-modal-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-video-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.story-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 3rem 1.5rem 2rem;
    z-index: 3;
}

.story-caption {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

/* ================= 16. RESPONSIVENESS (MOBILE FIRST FOCUS) ================= */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-bullets {
        max-width: 480px;
        margin: 0 auto 2.5rem;
    }
    
    .hero-bullets li {
        text-align: left;
    }
    
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comp-divider {
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .precel-card h1 {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.85rem;
        margin-bottom: 2rem;
    }
    
    .glass-card {
        padding: 1.75rem;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .diagnostic-result-card {
        padding: 1.75rem;
    }
    
    .result-profile-title {
        font-size: 1.75rem;
    }
    
    .offer-card {
        padding: 2.5rem 1.5rem;
    }
    
    .value {
        font-size: 4rem;
    }
    
    .guarantee-container {
        padding: 1.8rem;
    }
    
    .urgency-text {
        font-size: 0.78rem;
    }
}

@media (max-width: 480px) {
    .badges .badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.8rem;
    }
    
    .option-btn {
        padding: 1rem 1.1rem;
        font-size: 0.98rem;
    }
    
    .question-title {
        font-size: 1.35rem;
    }
    
    .feedback-title {
        font-size: 1.5rem;
    }
    
    .feedback-text {
        font-size: 0.98rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .floating-cta-button {
        font-size: 0.88rem;
        padding: 1rem;
    }
}
