/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #0A0A0A;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #FFD700;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.8) 0%,
        rgba(139, 0, 0, 0.6) 50%,
        rgba(10, 10, 10, 0.9) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem 0;
}

.hero-hook {
    margin-bottom: 2rem;
}

.hook-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 215, 0, 0.8); }
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.title-highlight {
    background: linear-gradient(135deg, #FFD700, #FF4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 0.5rem;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* CTA Buttons */
.cta-container {
    margin: 2rem 0;
}

.cta-button {
    display: inline-block;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #0A0A0A;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, #FFA500, #FFD700);
}

.cta-button.large {
    padding: 2rem 4rem;
    font-size: 1.5rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Urgency Banner */
.urgency-banner {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B0000, #4A0000);
    border: 2px solid #FFD700;
    border-radius: 25px;
    display: inline-block;
    animation: pulse 2s infinite;
}

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

.urgency-text {
    font-weight: 600;
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Identification Section */
.identification-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1A1A, #0A0A0A);
}

.identification-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.identification-item {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2), rgba(26, 26, 26, 0.8));
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.identification-item:hover {
    transform: translateY(-5px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.identification-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.identification-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.transition-text {
    text-align: center;
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.1));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.highlight {
    color: #FFD700;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Authority Section */
.authority-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
}

.authority-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.authority-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.power-symbol {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    border: 3px solid #FFD700;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.power-symbol:hover {
    transform: scale(1.05);
    box-shadow: 0 0 70px rgba(255, 215, 0, 0.5);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1A1A, rgba(139, 0, 0, 0.1));
    position: relative;
    background-attachment: fixed;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.benefits-section .container {
    position: relative;
    z-index: 2;
}

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

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.benefit-card:hover::before {
    opacity: 1;
    animation: shine 1s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
}

.benefit-card p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Urgency Section */
.urgency-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8B0000, #4A0000);
    border-top: 3px solid #FFD700;
    border-bottom: 3px solid #FFD700;
}

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

.urgency-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.urgency-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.urgency-reasons {
    background: rgba(10, 10, 10, 0.5);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.urgency-reasons h3 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.urgency-reasons ul {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.urgency-reasons li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.urgency-reasons li::before {
    content: '🔥';
    position: absolute;
    left: 0;
}

.urgency-warning {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.1));
    border-radius: 15px;
    border: 2px solid #FFD700;
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0A0A, #1A1A1A);
    position: relative;
    background-attachment: fixed;
}

.offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.offer-section .container {
    position: relative;
    z-index: 2;
}

.main-program {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #FFD700;
    margin-bottom: 3rem;
}

.main-program h3 {
    color: #FFD700;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.program-details {
    display: grid;
    gap: 2rem;
}

.detail-item h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.detail-item ul, .detail-item ol {
    padding-left: 2rem;
}

.detail-item li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Bonus Section */
.bonus-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1A1A, rgba(139, 0, 0, 0.2));
    position: relative;
    background-attachment: fixed;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.bonus-section .container {
    position: relative;
    z-index: 2;
}

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

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #FFD700;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.bonus-number {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #0A0A0A;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
}

.bonus-card h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.bonus-value {
    color: #FF4500;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bonus-card p {
    font-size: 1rem;
    line-height: 1.6;
}

.bonus-total {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #8B0000, #4A0000);
    border-radius: 15px;
    border: 3px solid #FFD700;
}

.bonus-total h3 {
    font-size: 2rem;
    color: #FFFFFF;
}

.total-value {
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0A0A0A, rgba(255, 215, 0, 0.05));
}

.guarantee-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.guarantee-title {
    color: #FFD700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.guarantee-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.badge-content {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(212, 175, 55, 0.9));
    color: #0A0A0A;
    padding: 2rem;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    animation: pulse 3s infinite;
    position: relative;
    z-index: 2;
}

.badge-text {
    font-size: 1.2rem;
    font-weight: 700;
}

.badge-days {
    font-size: 2rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.badge-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A1A1A, #0A0A0A);
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(26, 26, 26, 0.9));
    margin-bottom: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #FFD700;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.1);
}

.faq-question h4 {
    color: #FFD700;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #FFD700;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #8B0000, #4A0000);
    border-top: 3px solid #FFD700;
}

.final-cta-content {
    text-align: center;
}

.final-title {
    font-size: 3.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.final-subtitle {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.final-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.final-text p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.final-reminders {
    background: rgba(10, 10, 10, 0.5);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 600px;
    border: 2px solid #FFD700;
}

.final-reminders h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.final-reminders ul {
    list-style: none;
    text-align: left;
}

.final-reminders li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #FFFFFF;
}

.final-cta-container {
    margin-top: 3rem;
}

.cta-title {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

/* Footer */
.footer {
    background: #0A0A0A;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.3);
}

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

.footer-security {
    margin-bottom: 2rem;
}

.footer-security h4 {
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.footer-links {
    margin-bottom: 2rem;
}

.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .authority-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .power-symbol {
        width: 200px;
        height: 200px;
    }
    
    .identification-grid,
    .benefits-grid,
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .cta-button.large {
        padding: 1.5rem 2.5rem;
        font-size: 1.3rem;
    }
    
    .final-title {
        font-size: 2.5rem;
    }
    
    .final-subtitle {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .identification-item,
    .benefit-card,
    .bonus-card {
        padding: 1.5rem;
    }
    
    .power-symbol {
        width: 150px;
        height: 150px;
    }
    
    .badge-content {
        width: 150px;
        height: 150px;
    }
}

