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

body {
    font-family: 'Montserrat', sans-serif;
    color: #2D2D2D;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8f5f5 0%, #f0f0f0 100%);
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    padding: 40px;
    max-width: 800px;
    text-align: center;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.hero h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a5f5f;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1rem;
    line-height: 1.7;
    color: #2D2D2D;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-green {
    background: #1a5f5f;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-white {
    background: white;
    color: #2D2D2D;
    padding: 14px 28px;
    border: 2px solid #2D2D2D;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.hero-image {
    display: none;
}

/* Intelligence Banner Section */
.intelligence-banner {
    background: #1a4a4a;
    padding: 60px 0;
    margin-top: 0;
}

.intelligence-banner .intelligence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.intelligence-banner .intelligence-card {
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
}

.intelligence-banner .intelligence-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.intelligence-banner .intelligence-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: #2D2D2D;
}

/* Services Section */
.services {
    background: white;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.section-title-white {
    color: white;
    margin-bottom: 30px;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #2D2D2D;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    text-align: center;
    padding: 20px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #1a5f5f;
    margin: 0 auto 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Industries Section */
.industries {
    background: white;
    padding: 60px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.industry-item {
    text-align: center;
}

.industry-icon {
    width: 90px;
    height: 90px;
    border: 3px solid #1a5f5f;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: white;
}

.industry-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2D2D2D;
}

/* Powered By Section */
.powered {
    background: #C8A861;
    padding: 40px 0;
    text-align: center;
}

.powered h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.powered p {
    font-size: 1rem;
    font-weight: 500;
    color: #2D2D2D;
}

/* Capabilities Section */
.capabilities {
    background: white;
    padding: 60px 0;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.capability-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ddd;
}

.capability-list {
    list-style: none;
}

.capability-list li {
    padding: 12px 0;
    font-size: 1rem;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    gap: 10px;
}

.capability-list li:before {
    content: '✓';
    color: #1a5f5f;
    font-weight: bold;
    font-size: 1.3rem;
}

/* CTA Section */
.cta {
    background: #1a4a4a;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-orange {
    background: #E8983D;
    color: #000;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-white-cta {
    background: white;
    color: #000;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

/* Footer */
footer {
    background: #1a4a4a;
    padding: 30px 0;
    text-align: center;
    color: white;
    border-top: 3px solid #C8A861;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-badges span:not(:last-child)::after {
    content: '|';
    margin-left: 30px;
    opacity: 0.5;
}

.footer-bottom {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    border: none;
    background: none;
    color: #666;
}

.modal h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal .subtitle {
    color: #666;
    margin-bottom: 30px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2D2D2D;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5f5f;
}

.submit-btn {
    width: 100%;
    background: #1a5f5f;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.timezone-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 968px) {
    .hero {
        padding: 40px 0;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .intelligence-banner .intelligence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .intelligence-banner .intelligence-grid {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-buttons, .cta-buttons {
        flex-direction: column;
    }
}
