/* ================================
   VitalOfferFlow - Main Stylesheet
   ================================ */

/* Reset and Base Styles */
body { 
    font-family: Arial, sans-serif; 
    margin: 0; 
    padding: 0; 
    line-height: 1.6; 
    background-color: #ffffff; 
    color: #222; 
}

/* Layout */
.container { 
    width: 90%; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
}

.section { 
    margin: 40px 0; 
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 40px;
}

.hero h1 { 
    font-size: 28px; 
    margin-bottom: 10px; 
    color: #2c5aa0;
}

/* Video Container */
.video-container {
    margin: 30px 0; 
    max-width: 100%; 
    position: relative;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    width: 100%;
    height: 0;
}

.video-wrapper iframe {
    border: 0; 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 100%;
}

/* Pre-form Content */
.preform-content {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    max-width: 700px;
    line-height: 1.6;
    text-align: left;
}

.preform-content ul {
    list-style: none;
    padding: 0;
}

.preform-content li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.preform-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* Lead Magnet Section */
.lead-magnet-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    border: 2px solid #2c5aa0;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.lead-magnet-section h2 {
    color: #2c5aa0;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Email Form */
.email-form {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #2c5aa0;
    outline: none;
}

/* CTA Button */
.cta-btn { 
    background: linear-gradient(135deg, #dc3545 0%, #b71c1c 100%);
    color: white; 
    padding: 16px 32px; 
    font-size: 18px; 
    font-weight: bold;
    text-decoration: none; 
    display: inline-block; 
    margin: 20px 0; 
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
    font-size: 14px;
    color: #666;
}

.trust-indicator {
    text-align: center;
    margin: 10px;
}

/* Benefits Section */
.benefits {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.benefits li:before {
    content: "?";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 18px;
}

/* Testimonials */
.testimonials {
    background: #fff;
    border-left: 4px solid #2c5aa0;
    padding: 20px;
    margin: 20px 0;
}

.testimonials p {
    font-style: italic;
    margin: 15px 0;
    color: #555;
}

/* Privacy and Legal */
.privacy-note {
    background: #e8f5e8;
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #2d5930;
    margin-top: 15px;
}

.disclaimer-section {
    text-align: center; 
    padding: 20px; 
    background: #f8f9fa; 
    border-radius: 8px;
}

.disclaimer-text {
    color: #666; 
    font-size: 11px; 
    margin-bottom: 15px;
}

.footer-links {
    margin-top: 40px;
}

/* Typography Helpers */
.small-text {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 15px;
}

.link-style {
    color: #2c5aa0;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .lead-magnet-section {
        padding: 20px;
    }
    
    .trust-indicators {
        flex-direction: column;
    }
    
    .preform-content {
        padding: 20px;
    }
}