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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e4d3b 0%, #2d6a4f 50%, #40916c 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero Background Video */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0.15;
    filter: blur(2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(30, 77, 59, 0.9) 0%,
        rgba(45, 106, 79, 0.85) 50%,
        rgba(64, 145, 108, 0.8) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"><animate attributeName="cy" values="50;20;50" dur="3s" repeatCount="indefinite"/></circle><circle cx="20" cy="30" r="1.5" fill="white" opacity="0.15"><animate attributeName="cy" values="30;60;30" dur="4s" repeatCount="indefinite"/></circle><circle cx="80" cy="70" r="1" fill="white" opacity="0.1"><animate attributeName="cy" values="70;40;70" dur="5s" repeatCount="indefinite"/></circle></svg>');
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: #a7f3d0;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-text .tagline {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button {
    background: linear-gradient(45deg, #f97316, #ea580c);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.6);
}

.hero-visual {
    position: relative;
    height: 500px;
    background: linear-gradient(45deg, #059669, #10b981);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.visual-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(5, 150, 105, 0.3),
        rgba(16, 185, 129, 0.2));
    z-index: 1;
    mix-blend-mode: multiply;
}



/* Stats Banner */
.stats-banner {
    background: #f8fafc;
    padding: 40px 0;
    text-align: center;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e4d3b;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e4d3b;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

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

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e4d3b;
    margin-bottom: 15px;
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.story-visual {
    background: linear-gradient(45deg, #f97316, #ea580c);
    width: 100%;
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    overflow: hidden;
}

.story-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e4d3b;
    margin-bottom: 15px;
}

.faq-answer {
    color: #64748b;
    line-height: 1.6;
}

/* Countdown Section */
.countdown-section {
    background: #fef3c7;
    padding: 60px 0;
    text-align: center;
}

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

.countdown-title {
    font-size: 2rem;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.countdown-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 80px;
}

.countdown-number {
    font-size: 2rem;
    font-weight: 900;
    color: #92400e;
    display: block;
}

.countdown-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Signup Section */
.signup-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.signup-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.signup-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.signup-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 300px;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    outline: none;
}

.signup-button {
    background: #f97316;
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.signup-button:hover {
    background: #ea580c;
    transform: translateY(-2px);
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    max-width: 500px;
    margin: 0 auto;
}

/* Form Success Message */
.form-success-message {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50px;
    max-width: fit-content;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.form-success-message p {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.success-checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f97316;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(249, 115, 22, 0.6);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.success-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.success-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e4d3b;
    margin-bottom: 15px;
}

.success-content p {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.close-success {
    background: #10b981;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-success:hover {
    background: #059669;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .countdown-timer {
        gap: 15px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 15px;
    }

    .signup-form {
        flex-direction: column;
        align-items: center;
    }

    .email-input {
        min-width: auto;
        width: 100%;
        max-width: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .floating-cta {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .countdown-timer {
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 10px;
    }

    .countdown-number {
        font-size: 1.5rem;
    }
}

/* Animation utilities */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease-out forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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