:root {
    --bg-dark: #070707;
    --bg-surface: rgba(20, 20, 20, 0.7);
    --text-main: #FFFFFF;
    --text-muted: #A3A3A3;
    --primary-red: #E10A0A;
    --primary-red-glow: rgba(225, 10, 10, 0.6);
    --secondary-red: #FF3333;
    --glass-border: rgba(255, 255, 255, 0.05);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

body {
    position: relative;
    overflow-x: hidden;
}

/* Background Effects */
.glow-bg {
    position: fixed;
    top: -10vh;
    left: -10vw;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, var(--primary-red-glow), transparent 70%);
    opacity: 0.08;
    z-index: -1;
    filter: blur(150px);
}

/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
    position: relative;
}

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

/* Typography */
h1, h2, h3, .price-box .value {
    font-family: 'Outfit', sans-serif;
}

h1.headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

h1.headline span {
    color: var(--primary-red);
    text-shadow: 0 0 20px var(--primary-red-glow);
}

.sub-headline {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

h2.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 50px;
    text-align: center;
}

h2.section-title span {
    color: var(--secondary-red);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 150px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red) 0%, #8a0000 100%);
    color: white;
    text-decoration: none;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(225, 10, 10, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(225, 10, 10, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(225, 10, 10, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(225, 10, 10, 0); }
    100% { box-shadow: 0 0 0 0 rgba(225, 10, 10, 0); }
}

/* Pain Section */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pain-card {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.pain-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-red);
}

.pain-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.pain-conclusion {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 600;
}

/* Solution Section */
.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-block p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #e0e0e0;
}

.benefits-list li span {
    color: var(--primary-red);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.3rem;
}

.mockup-placeholder {
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.8), 0 20px 50px rgba(0,0,0,0.5);
}

.neon-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    filter: drop-shadow(0 0 15px var(--primary-red));
    animation: rotate-circle 10s linear infinite;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

@keyframes rotate-circle {
    100% { transform: rotate(360deg); }
}

.mockup-placeholder p {
    position: relative;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.mockup-placeholder p strong {
    font-size: 3rem;
    color: var(--primary-red);
    text-shadow: 0 0 10px var(--primary-red-glow);
    display: block;
    margin: 10px 0;
}

.mockup-placeholder p span {
    font-size: 1rem;
    color: var(--text-muted);
    letter-spacing: 5px;
}

/* FAQ Section */
.faq-section {
    background-color: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-surface);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 51, 51, 0.4);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 20px 25px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question.active {
    color: var(--primary-red);
}

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

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Offer Section */
.offer-section {
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(30, 0, 0, 0.5) 100%);
    border-top: 1px solid var(--glass-border);
}

.offer-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px;
}

.old-price {
    font-size: 1.5rem;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-box {
    margin-bottom: 20px;
    color: white;
}

.price-box .currency {
    font-size: 2rem;
    vertical-align: top;
    margin-top: 15px;
    display: inline-block;
}

.price-box .value {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 10px 30px rgba(225, 10, 10, 0.3);
}

.price-box .cents {
    font-size: 2rem;
    vertical-align: top;
    margin-top: 15px;
    display: inline-block;
}

.urgency {
    color: var(--secondary-red);
    font-weight: 600;
    margin-bottom: 40px;
}

.guarantee {
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
footer {
    padding: 30px 0;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Animations Triggered by JS */
.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .solution-content {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding-top: 100px;
        min-height: 80vh;
    }

    .cta-button {
        padding: 16px 30px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
    }
    
    .price-box .value {
        font-size: 5rem;
    }
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red) !important;
}
