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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Color Variables */
:root {
    --navy: #0E2A47;
    --petrol: #1D7A85;
    --amber: #FFC857;
    --light-gray: #F8FAFC;
    --success-green: #22C55E;
    --white: #ffffff;
    --gray-600: #6B7280;
    --gray-700: #374151;
    --gray-800: #1F2937;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, var(--amber) 0%, #FFB627 100%);
    color: var(--navy);
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.urgency-icon {
    margin-right: 8px;
}

.countdown {
    font-weight: 700;
    font-size: 16px;
    margin: 0 4px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    color: var(--white);
    padding: 60px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--light-gray);
}

/* Live Updates Box */
.live-updates {
    background: var(--navy);
    border: 2px solid rgba(29, 122, 133, 0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.live-updates-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.live-icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.live-updates h3 {
    color: var(--light-gray);
    font-weight: 700;
    font-size: 1.1rem;
}

.live-text {
    color: var(--light-gray);
    margin-bottom: 12px;
    font-size: 1rem;
}

.highlight {
    color: var(--amber);
    font-weight: 700;
}

.live-details {
    color: var(--light-gray);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Value Propositions */
.value-props {
    margin-bottom: 40px;
}

.value-prop {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--success-green);
    margin-right: 12px;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: left;
}

.btn-primary {
    background: var(--amber);
    color: var(--navy);
    border: none;
    padding: 18px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(255, 200, 87, 0.3);
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
}

.btn-primary:hover {
    background: #FFB627;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 200, 87, 0.4);
}

.btn-icon {
    margin-right: 8px;
}

.cta-note {
    color: var(--light-gray);
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 32px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

/* PDF Preview */
.pdf-preview {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.pdf-image {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.pdf-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.pdf-preview h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pdf-preview p {
    color: var(--light-gray);
    opacity: 0.9;
}

/* Value Section */
.value-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--white);
    border: 2px solid rgba(255, 200, 87, 0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: rgba(255, 200, 87, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.value-card.featured {
    border-color: var(--amber);
    background: linear-gradient(135deg, #FFF9E6 0%, var(--white) 100%);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.value-price {
    margin-bottom: 16px;
}

.original-price {
    color: var(--gray-600);
    text-decoration: line-through;
    margin-right: 12px;
}

.free-badge {
    background: var(--success-green);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 60px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 32px;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.trust-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.trust-item p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--petrol) 100%);
    color: var(--white);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 40px;
}

.email-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px;
}

.form-group {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
    outline: none;
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    background: var(--amber);
    color: var(--navy);
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.btn-submit:hover {
    background: #FFB627;
    transform: translateY(-2px);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--light-gray);
}

.checkbox-group a {
    color: var(--amber);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Success Message */
.success-message {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid var(--success-green);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.success-icon {
    font-size: 3rem;
    color: var(--success-green);
    margin-bottom: 16px;
}

.success-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--white);
}

.success-message p {
    color: var(--light-gray);
    margin-bottom: 8px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--gray-700);
    line-height: 1.6;
}

/* Social Proof */
.social-proof {
    padding: 40px 0;
    background: var(--white);
    text-align: center;
}

.social-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--amber);
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amber);
}

.disclaimer {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-gray);
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .email-input {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-container h2 {
        font-size: 2rem;
    }
    
    .value-grid,
    .trust-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .urgency-banner {
        font-size: 12px;
        padding: 10px 0;
    }
    
    .countdown {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-primary,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .live-updates,
    .email-form {
        padding: 20px;
    }
    
    .value-card,
    .faq-item {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

