/* Global Styles */
:root {
    --primary-color: #0d253f;
    /* Deep Navy Blue */
    --secondary-color: #c5a059;
    /* Gold/Bronze */
    --accent-color: #f5f7fa;
    /* Light Grey Blue */
    --text-color: #333333;
    --text-light: #ffffff;
    --success-color: #27ae60;
    --danger-color: #c0392b;
    /* Urgent Red */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1100px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography Utilities */
.text-center {
    text-align: center;
}

.text-red {
    color: var(--danger-color);
}

.text-gold {
    color: var(--secondary-color);
}

.bold {
    font-weight: 700;
}

.highlight {
    background-color: #fff9c4;
    padding: 0 5px;
}

.btn {
    display: inline-block;
    padding: 20px 40px;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(180deg, #2ecc71 0%, #27ae60 100%);
    color: var(--text-light);
    border: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.4);
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

section {
    padding: 60px 0;
}

/* Header / Warning Bar */
.warning-bar {
    background-color: var(--danger-color);
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: #fff;
    padding: 60px 0 40px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    max-width: 900px;
    margin: 0 auto 20px;
}

.subheadline {
    font-size: 1.4rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 500;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #444;
}

.high-text {
    color: var(--secondary-color);
}

.hero-image {
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-image-container {
    background: url('https://subtlepatterns.com/patterns/symphony.png');
    /* Light pattern */
    padding: 40px;
    border-radius: 20px;
    background-color: #f8f9fa;
    margin: 30px 0;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

/* Pain Section */
.pain-section {
    background-color: #fff;
    text-align: center;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pain-card {
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--danger-color);
    text-align: left;
}

.pain-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--danger-color);
}

/* Problem Section (The "Trap") */
.problem-section {
    background-color: #fff;
}

.story-box {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #444;
}

.story-box p {
    margin-bottom: 20px;
}

.alert-box {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alert-icon {
    font-size: 2rem;
}

/* Solution Section */
.solution-section {
    background-color: var(--accent-color);
}

.solution-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.solution-content {
    flex: 1;
}

.solution-image {
    flex: 1;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Mechanism / Solution */
.mechanism-section {
    background-color: var(--primary-color);
    color: white;
}

.mechanism-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mechanism-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mechanism-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Authority Section */
.authority-section {
    background-color: #fff;
    text-align: center;
}

.authority-box {
    background-color: var(--primary-color);
    color: white;
    padding: 40px;
    border-radius: 15px;
    max-width: 800px;
    margin: 0 auto;
}

/* Modules / What's Inside */
.modules-section {
    background-color: #f9f9f9;
}

.module-item {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid var(--primary-color);
}

.module-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ddd;
}

/* Bonuses */
.bonus-section {
    background-color: #fff;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 40px auto;
}

.bonus-card {
    border: 2px dashed var(--secondary-color);
    padding: 30px;
    border-radius: 15px;
    background: #fffdf5;
}

.bonus-tag {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

/* Offer Anchor */
.offer-section {
    background: #111;
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative glow */
.offer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--secondary-color);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--success-color);
    margin: 20px 0;
}

.price-tag span {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    display: block;
    margin-bottom: 5px;
    font-weight: 400;
}

.price-box {
    background: #fff;
    color: #333;
    max-width: 500px;
    margin: 40px auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.old-price {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--success-color);
    line-height: 1;
    margin: 10px 0;
}

.installments {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.guarantee-badge {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.guarantee-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.guarantee-seal {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

/* Logic & FAQ */
.faq-section {
    background: #f5f7fa;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    cursor: pointer;
}

.footer {
    background: #000;
    color: #777;
    padding: 40px 0;
    font-size: 0.8rem;
    text-align: center;
}

footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 40px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .module-item {
        flex-direction: column;
        text-align: center;
    }

    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }

    .solution-wrapper {
        flex-direction: column-reverse;
    }

    .offer-card {
        padding: 30px;
    }
}