/* MDS - Mayasoft Disability Solution — house styles
   Palette (per Mayasoft brand family + MDS accent):
     Navy:   #0C2340   (primary, Mayasoft family)
     Amber:  #D97706   (accent, Mayasoft family)
     Violet: #7C3AED   (MDS-distinctive accent)
     Text:   #0A0A0A   (body)
     Muted:  #4A5568
     Light:  #F7FAFC   (background)
*/

:root {
    --primary-navy: #0C2340;
    --accent-amber: #D97706;
    --accent-violet: #7C3AED;
    --text-body: #0A0A0A;
    --text-muted: #4A5568;
    --bg-light: #F7FAFC;
    --border-subtle: #E2E8F0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-body);
    line-height: 1.6;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: var(--primary-navy);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h1 { font-size: 2.75rem; line-height: 1.15; }
h2 { font-size: 2.15rem; margin-top: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-top: 1.5rem; }

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-subtle);
}

.navbar-brand { font-weight: 700; color: var(--primary-navy) !important; font-size: 1.25rem; }
.navbar .nav-link { color: var(--text-body) !important; font-weight: 500; }
.navbar .nav-link:hover, .navbar .nav-link.active { color: var(--accent-violet) !important; }

.btn-primary {
    background: var(--accent-violet);
    border-color: var(--accent-violet);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
}
.btn-primary:hover, .btn-primary:focus {
    background: #6B21A8;
    border-color: #6B21A8;
}

.btn-outline-primary {
    color: var(--accent-violet);
    border-color: var(--accent-violet);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
}
.btn-outline-primary:hover {
    background: var(--accent-violet);
    border-color: var(--accent-violet);
}

.hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3554 100%);
    color: white;
    padding: 6rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 60%; height: 200%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.hero h1 { color: white; margin-bottom: 1.5rem; }
.hero .lead { color: rgba(255, 255, 255, 0.85); font-size: 1.25rem; margin-bottom: 2rem; }
.hero .badge-family {
    background: rgba(124, 58, 237, 0.25);
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-padded { padding: 5rem 0; }
.section-alt { background: var(--bg-light); }

.feature-card {
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.feature-card .icon {
    width: 48px; height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-violet) 0%, var(--primary-navy) 100%);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.25rem;
    margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.25rem; margin-top: 0; margin-bottom: 0.5rem; }

.trust-strip {
    background: white;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.trust-strip .divider { color: var(--border-subtle); margin: 0 1rem; }

.cta-band {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--accent-violet) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}
.cta-band h2 { color: white; }
.cta-band .btn-primary {
    background: white;
    color: var(--primary-navy);
    border-color: white;
}
.cta-band .btn-primary:hover {
    background: var(--accent-amber);
    border-color: var(--accent-amber);
    color: white;
}

footer.site-footer {
    background: var(--primary-navy);
    color: rgba(255, 255, 255, 0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}
footer.site-footer a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
footer.site-footer a:hover { color: white; text-decoration: underline; }
footer.site-footer h4 { color: white; font-size: 1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
footer.site-footer .footer-strip {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.85rem;
}
footer.site-footer .footer-bottom {
    text-align: center;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
}
.form-control:focus {
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.answer-block {
    background: var(--bg-light);
    border-left: 4px solid var(--accent-violet);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

@media (max-width: 767px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero { padding: 4rem 0 3rem; }
    .section-padded { padding: 3rem 0; }
}
