/* ----- styles/styles.css ----- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

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

/* Header Section */
.hero-section {
    background: linear-gradient(135deg, #0A74DA 0%, #1ABC9C 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.video-section {
    padding: 60px 0;
    background-color: #F5F5F5;
    text-align: center;
}

.video-placeholder {
    background-color: #333333;
    border-radius: 12px;
    padding: 100px 40px;
    color: white;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    border: 3px dashed #0A74DA;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.benefits-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #0A74DA;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    padding: 30px;
    background-color: #F5F5F5;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10, 116, 218, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
    color: #1ABC9C;
    margin-right: 15px;
    margin-top: 2px;
}

.benefit-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, #16A085 0%, #1ABC9C 100%);
}

.cta-section {
    text-align: center;
    padding: 40px 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.testimonials-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: #0A74DA;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #666666;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #1ABC9C;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    color: #444444;
}

.testimonial-author {
    font-weight: 600;
    color: #0A74DA;
    font-size: 1rem;
}

.testimonial-company {
    color: #666666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.company-logo {
    width: 40px;
    height: 40px;
    background-color: #F5F5F5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #0A74DA;
    font-size: 0.8rem;
    border: 2px solid #E0E0E0;
}

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

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333333;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #FAFAFA;
}

.form-input:focus {
    outline: none;
    border-color: #0A74DA;
    background-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .headline {
        font-size: 2.2rem;
    }

    .subheadline {
        font-size: 1.2rem;
    }

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

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

    .form-container {
        margin: 0 20px;
        padding: 30px 25px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.8rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .benefits-section,
    .testimonials-section,
    .form-section {
        padding: 60px 0;
    }
}

