/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.logo {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border: 7px dashed #d9bf76;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.headline {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.headline .highlight {
    color: #ffd700;
    font-size: 3.5rem;
    font-style: italic;
}

.headline .highlight-underline {
    color: #ffd700;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.subheadline {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 40px;
    font-weight: 400;
}

/* CTA Box */
.cta-box {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 40px auto;
    max-width: 700px;
}

.cta-heading {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 30px;
    font-weight: 700;
}

.form-container {
    margin: 30px 0;
}

.form-note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 20px;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.6);
}

.benefit-icon {
    font-size: 2rem;
    color: #7ecea8;
    font-weight: 900;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(126, 206, 168, 0.2);
    border-radius: 50%;
}

.benefit-content h3 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 10px;
    font-weight: 700;
}

.benefit-content p {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 300;
}

/* Secondary CTA */
.secondary-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-button-secondary {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 800;
    padding: 25px 50px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.6);
}

.urgency-text {
    margin-top: 20px;
    font-size: 1.1rem;
    color: #ffd700;
    font-weight: 600;
    font-style: italic;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #d9bf76 0%, #c4a961 100%);
    padding: 40px 20px;
    text-align: center;
}

.footer-brand {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 500;
}

.footer-links {
    font-size: 0.95rem;
    color: #1a1a2e;
}

.footer-links a {
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #667eea;
    text-decoration: underline;
}

.footer-links span {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2rem;
    }
    
    .headline .highlight {
        font-size: 2.3rem;
    }
    
    .subheadline {
        font-size: 1.1rem;
    }
    
    .hide-mobile {
        display: none;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-heading {
        font-size: 1.4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-button-secondary {
        font-size: 1.3rem;
        padding: 20px 30px;
    }
    
    .logo {
        max-width: 350px;
        padding: 15px;
        border-width: 5px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.5rem;
    }
    
    .headline .highlight {
        font-size: 1.8rem;
    }
    
    .cta-heading {
        font-size: 1.2rem;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .logo {
        max-width: 280px;
        padding: 12px;
        border-width: 4px;
        border-radius: 15px;
    }
}

@media (max-width: 360px) {
    .logo {
        max-width: 240px;
        padding: 10px;
        border-width: 3px;
        border-radius: 12px;
    }
    
    .headline {
        font-size: 1.3rem;
    }
    
    .headline .highlight {
        font-size: 1.6rem;
    }
}

/* Custom Optin Form Styles */
.optin-form {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-input::placeholder {
    color: #999;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(245, 87, 108, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(245, 87, 108, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: none;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
