:root {
    --bg-dark: #09090b;
    --bg-darker: #000000;
    --gold-primary: #eab308;
    --gold-light: #fef08a;
    --gold-dark: #a16207;
    --text-white: #fafafa;
    --text-gray: #a1a1aa;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 15% 50%, rgba(234, 179, 8, 0.03), transparent 25%),
                      radial-gradient(circle at 85% 30%, rgba(234, 179, 8, 0.03), transparent 25%);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

h2, h3, .pre-headline, .pre-title {
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

/* Playfair Display specifically for H1 to give theological/editorial feel */
.main-headline {
    font-family: 'Playfair Display', serif;
    font-size: 4.2rem;
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 800;
}
.main-headline .highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-primary), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Topbar */
.topbar {
    background: linear-gradient(90deg, #18181b, #27272a, #18181b);
    color: var(--text-gray);
    text-align: center;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid var(--glass-border);
}
.topbar .highlight-text {
    color: var(--gold-primary);
    font-weight: 700;
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
}
.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}
.pre-headline {
    color: var(--gold-primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}
.sub-headline {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 25px;
    font-weight: 400;
}

.benefits-list {
    list-style: none;
    margin-bottom: 35px;
}
.benefits-list li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: #e4e4e7;
}
.benefits-list .icon {
    font-size: 1.2rem;
}

.currency-alert {
    font-size: 0.85rem;
    color: #e4e4e7;
    margin-top: 12px;
    opacity: 1;
    font-weight: 500;
}

.hero-cta-full {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-mockup-img {
    width: 100%;
    max-width: 380px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8)) drop-shadow(0 0 100px rgba(234, 179, 8, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Stats */
.stats-bar {
    padding: 60px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0,0,0,0.2);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}
.stat-num {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
}
.stat-label {
    color: var(--gold-primary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Categories Grid */
.app-categories-section { padding: 80px 0; }
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 40px;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.cat-card {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.cat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 179, 8, 0.4);
}
.cat-icon { font-size: 2.5rem; margin-bottom: 15px; }
.cat-card h4 { font-size: 1.2rem; margin-bottom: 5px; font-weight: 600; color: var(--gold-light); }
.cat-card p { color: var(--text-gray); font-size: 0.9rem; }
.authority-banner p { font-size: 1.1rem; color: #e4e4e7; }

/* PAS Section (Emotional Pain) */
.problem-solution-section { padding: 80px 0; background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, transparent 100%); }
.pas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.pas-card {
    padding: 40px 30px;
    transition: transform 0.3s ease;
    text-align: center;
}
.pas-card:hover { transform: translateY(-10px); }
.highlight-card {
    border-color: rgba(234, 179, 8, 0.3);
    background: rgba(234, 179, 8, 0.02);
    box-shadow: 0 0 40px rgba(234, 179, 8, 0.05);
}
.pas-icon { font-size: 3rem; margin-bottom: 25px; }
.pas-card h3 { font-size: 1.3rem; margin-bottom: 15px; font-weight: 700; color: var(--gold-light); }
.pas-card p { color: var(--text-gray); font-size: 0.95rem; }

/* Value Stack Section */
.value-stack-section { padding: 80px 0; }
.stack-panel {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px;
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 0 50px rgba(234, 179, 8, 0.05);
}
.stack-list { margin-bottom: 30px; }
.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px dashed var(--glass-border);
}
.stack-item.border-bottom { border-bottom: 2px solid rgba(255,255,255,0.1); padding-bottom: 25px; }
.s-check { color: #22c55e; margin-right: 15px; font-size: 1.2rem; }
.s-text { flex: 1; font-size: 1.05rem; font-weight: 500; }
.s-value { font-family: monospace; font-size: 1.1rem; color: var(--text-gray); }

.stack-total { text-align: center; margin-top: 30px; }
.total-strike { font-size: 1.2rem; color: var(--text-gray); text-decoration: line-through; margin-bottom: 5px; }
.total-today { font-size: 2.2rem; font-weight: 900; color: var(--gold-primary); line-height: 1.1; }
.total-today span { font-size: 1rem; color: var(--text-white); font-weight: 400; display: block; margin-top: 5px; }

/* Testimonials WhatsApp Audio */
.testimonials-section { padding: 80px 0; }
.whatsapp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.chat-bubble {
    padding: 25px;
    position: relative;
    border-bottom-left-radius: 4px; /* classic chat bubble look */
}
.chat-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    margin-right: 15px;
}
.chat-author strong { display: block; font-size: 1rem; color: var(--text-white); }
.chat-author span { display: block; font-size: 0.8rem; color: var(--text-gray); }

/* WhatsApp Audio Component */
.wa-audio-component {
    display: flex;
    align-items: center;
    background: transparent;
    margin-top: 15px;
    gap: 15px;
}
.wa-avatar-container {
    position: relative;
}
.wa-avatar-default {
    width: 50px;
    height: 50px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.wa-avatar-default svg { width: 40px; height: 40px; fill: #fff; margin-top: 5px; }
.wa-mic {
    position: absolute;
    bottom: -2px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-dark);
}
.wa-mic svg { width: 14px; height: 14px; fill: #fff; }
.wa-player-body { flex: 1; }
.wa-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}
.wa-play {
    background: none;
    border: none;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}
.wa-play svg { width: 35px; height: 35px; fill: #8696a0; transition: fill 0.2s; }
.wa-play:hover svg { fill: #aebac1; }
.wa-waveform-container {
    flex: 1;
    height: 30px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.wa-waveform {
    width: 100%;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #8696a0 0px,
        #8696a0 3px,
        transparent 3px,
        transparent 6px
    );
    opacity: 0.4;
    border-radius: 10px;
}
.wa-progress-bar {
    position: absolute;
    left: 0;
    top: 5px;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #53bdeb 0px,
        #53bdeb 3px,
        transparent 3px,
        transparent 6px
    );
    width: 0%;
    pointer-events: none;
    border-radius: 10px;
}
.wa-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-top: 5px;
    padding-left: 45px;
}
.wa-timestamp { color: var(--text-gray); }

/* Prints Carousel */
.prints-carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    position: relative;
}
.prints-track {
    display: flex;
    gap: 20px;
}
.wa-print {
    width: calc(50% - 10px);
    height: auto;
    flex-shrink: 0;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}

/* Offer Section */
.offer-section { padding: 100px 0; }
.offer-content {
    padding: 60px;
    text-align: center;
    border-color: rgba(234, 179, 8, 0.2);
    background: radial-gradient(circle at center, rgba(234, 179, 8, 0.05) 0%, transparent 70%);
}
.offer-content h2 { font-size: 3rem; margin-bottom: 20px; font-weight: 800; }
.anchor-text { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto 40px; }
.price-box { margin-bottom: 40px; }
.original-price { display: block; text-decoration: line-through; color: var(--text-gray); font-size: 1.5rem; }
.current-price { display: block; font-size: 5rem; font-weight: 900; color: var(--gold-primary); line-height: 1; margin: 10px 0; }
.one-time { color: var(--text-white); font-size: 1.1rem; font-weight: 600; }
.trust-badges { margin-top: 40px; display: flex; justify-content: center; gap: 30px; color: var(--text-gray); font-size: 0.95rem; }

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--gold-primary);
    color: #000;
    text-decoration: none;
    padding: 22px 45px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(234, 179, 8, 0.2);
    text-transform: uppercase;
    animation: pulse 2s infinite;
}
.cta-button:hover { box-shadow: 0 15px 40px rgba(234, 179, 8, 0.6); }
.text-center { text-align: center; }

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
@keyframes shine {
    0% { transform: translateX(-100%) skewX(-25deg); }
    20% { transform: translateX(300%) skewX(-25deg); }
    100% { transform: translateX(300%) skewX(-25deg); }
}
.shiny-button { position: relative; overflow: hidden; }
.shiny-button::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%) skewX(-25deg);
    animation: shine 3s infinite;
}

/* FAQ Section */
.faq-section { padding: 80px 0 120px; }
.faq-container { max-width: 800px; margin: 0 auto; margin-top: 50px; }
.faq-item { margin-bottom: 15px; overflow: hidden; }
.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}
.faq-question:hover { background: rgba(255,255,255,0.03); }
.faq-question h4 { font-size: 1.1rem; font-weight: 600; }
.faq-toggle { font-size: 1.5rem; color: var(--gold-primary); transition: transform 0.3s; }
.faq-answer { padding: 0 25px; max-height: 0; overflow: hidden; transition: all 0.3s ease; opacity: 0; }
.faq-answer p { color: var(--text-gray); margin-bottom: 25px; }
.faq-item.active .faq-answer { max-height: 300px; opacity: 1; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }

/* Footer */
footer { background-color: #000; padding: 40px 0; text-align: center; font-size: 0.85rem; color: #666; border-top: 1px solid var(--glass-border); }
footer p { margin-bottom: 10px; }
.footer-links { margin-bottom: 20px; display: flex; justify-content: center; gap: 20px; }
.footer-links a { color: var(--text-gray); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold-primary); text-decoration: underline; }

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .benefits-list { display: inline-block; text-align: left; }
    .main-headline { font-size: 3.5rem; }
    .stats-grid, .categories-grid, .whatsapp-grid, .pas-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-badges { flex-direction: column; gap: 15px; }
    .s-text { font-size: 0.95rem; }
}
@media (max-width: 768px) {
    .main-headline { font-size: 2.2rem; margin-bottom: 20px; line-height: 1.1; }
    .sub-headline { font-size: 1rem; }
    .section-title { font-size: 2rem; }
    .whatsapp-grid, .pas-grid { grid-template-columns: 1fr; }
    .stats-grid, .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .cat-card { padding: 20px 10px; }
    .cat-card h4 { font-size: 0.95rem; }
    .cat-icon { font-size: 2rem; margin-bottom: 10px; }
    .stat-num { font-size: 2.2rem; }
    .stat-label { font-size: 0.75rem; }
    .offer-content { padding: 40px 15px; }
    .current-price { font-size: 3rem; }
    .cta-button { font-size: 0.95rem; padding: 18px 20px; width: 100%; }
    .hero-section, .value-stack-section, .stats-bar, .app-categories-section, .problem-solution-section, .testimonials-section, .offer-section, .faq-section { padding: 50px 0; }
    
    .stack-panel { padding: 30px 15px; }
    .stack-item { flex-direction: column; align-items: flex-start; gap: 5px; }
    .s-value { align-self: flex-end; }
    .total-today { font-size: 1.5rem; }
    .footer-links { flex-direction: column; gap: 10px; }
    .wa-print { width: 100%; }

    .hero-visual { transform: scale(0.95); transform-origin: top center; height: auto; }
}

@media (max-width: 380px) {
    .main-headline { font-size: 1.9rem; }
    .hero-visual { transform: scale(0.85); height: auto; }
    .stat-num { font-size: 2rem; }
    .current-price { font-size: 2.5rem; }
}
