/* css/style.css */
:root {
    --primary: #007664;
    /* Deeper Teal from mockup */
    --primary-dark: #005a4d;
    --secondary: #0a192f;
    /* Dark Navy for background sections */
    --accent: #10b981;
    /* Emerald for highlights */
    --text-main: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: var(--white);
    padding: 1.25rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: rgba(0, 118, 100, 0.05);
    transform: translateY(-1px);
}

.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
}

.hero-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    background: white;
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Feature Cards */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #ecfdf5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Compliance Section */
.compliance-section {
    background: var(--secondary);
    color: var(--white);
}

.compliance-section h2 {
    color: var(--white);
}

.dashboard-mockup {
    background: #112240;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Testimonial */
.testimonial-section {
    background: #f8fafc;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.testimonial-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 700;
    color: var(--text-main);
}

/* Bottom CTA */
.bottom-cta {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.bottom-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.bottom-cta .btn-white {
    background: var(--white);
    color: var(--primary);
}

.bottom-cta .btn-outline-white {
    border: 1.5px solid var(--white);
    color: var(--white);
}

footer {
    background: #020617;
    color: #94a3b8;
    padding: 4rem 0 2rem;
}

@media (max-width: 768px) {
    .hero-flex {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}