/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f0f0f0;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 1rem;
}

.hero h1 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    /* Add text shadow */
    -webkit-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: clamp(1rem, 3vw, 1.5rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.button-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    background-color: #0044cc;
    color: white;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: background-color 0.3s ease;
    white-space: nowrap;
    width: fit-content;
    display: inline-block;
}

.btn:hover {
    background-color: #0033aa;
}

.btn-outline {
    border: 2px solid white;
    background: transparent;
}

.btn-outline:hover {
    background-color: white;
    color: #0044cc;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 1rem;
    background-color: #fff;
}

.feature {
    text-align: center;
    padding: 1rem;
}

.feature h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #0044cc;
}

.feature p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: #555;
}

/* Call-to-Action Section */
.call-to-action {
    background-color: #0044cc;
    color: white;
    text-align: center;
    padding: 4rem 1rem;
}

.call-to-action h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.call-to-action p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
}

.call-to-action .btn {
    background-color: #ff6f61;
    padding: 1rem 2rem;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.call-to-action .btn:hover {
    background-color: #e65c4f;
}

/* FAQ Section */
.faq {
    padding: 4rem 1rem;
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-icon {
    margin-bottom: 1.5rem;
}

.faq-item h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    color: #0044cc;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.feature-list li {
    margin: 0.8rem 0;
    color: #555;
    font-size: 1.1rem;
}

.insight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.chip {
    background: #e8f0fe;
    color: #0044cc;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.comparison {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.vs-box {
    padding: 0.8rem;
    border-radius: 8px;
    background: #f5f5f5;
    position: relative;
}

.vs-box.highlighted {
    background: #e8f0fe;
    color: #0044cc;
    font-weight: 500;
}

.vs-box .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.7;
    display: block;
    margin-bottom: 0.3rem;
}

/* Pricing Section */
.pricing {
    padding: 4rem 1rem;
    background-color: white;
    text-align: center;
}

.pricing h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #0044cc;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured {
    border: 2px solid #0044cc;
    box-shadow: 0 4px 20px rgba(0, 68, 204, 0.15);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2rem;
    font-weight: 600;
    color: #0044cc;
    margin-bottom: 2rem;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0044cc;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card {
        margin: 1rem 0;
    }
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 1rem;
    font-size: clamp(0.8rem, 2vw, 1rem);
}

/* Scroll Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

section {
    animation: fadeIn 1s ease-out;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding: 1rem;
    }

    .features {
        padding: 2rem 1rem;
    }

    .call-to-action {
        padding: 2rem 1rem;
    }

    .button-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
        text-align: center;
    }
}