/* SYSTEM INTERFACE ROOT DESIGN TOKENS */
:root {
    --brand-primary-deep: #1B1464;
    --brand-primary-light: #4A3BB1;
    --brand-bg-soft-purple: #F6F3FC;
    --brand-accent-orange: #F37023;
    --brand-orange-text: #B54E18; /* WCAG-AA accessible orange for small text on light bg */
    --brand-text-dark: #2D3142;
    --brand-text-muted: #6C757D;
    --ui-white: #FFFFFF;
    
    /* Layout structural widths */
    --canvas-max-width: 1200px;
}

/* SYSTEM CSS OVERRIDE CORE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    color: var(--brand-text-dark);
    background-color: #FAFAFC;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Fredoka', sans-serif;
    color: var(--brand-primary-deep);
    font-weight: 700;
}

/* APPLICATION HEADER LAYOUT ENGINE */
.app-header {
    background: var(--ui-white);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(27, 20, 100, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}
.header-container {
    max-width: var(--canvas-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}
.logo-main {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--brand-primary-deep);
    letter-spacing: 0.5px;
}
.site-logo {
    height: 46px;
    width: auto;
    display: block;
}
@media (max-width: 680px) {
    .site-logo { height: 36px; }
}
.logo-accent { color: var(--brand-accent-orange); }
.logo-tag {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    color: var(--brand-text-muted);
    margin-top: -3px;
}
.nav-menu .nav-link {
    text-decoration: none;
    color: var(--brand-text-dark);
    margin: 0 14px;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s ease;
}
.nav-menu .nav-link.active, .nav-menu .nav-link:hover {
    color: var(--brand-primary-light);
}
.cta-phone-btn {
    background: var(--brand-primary-deep);
    color: var(--ui-white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(27, 20, 100, 0.15);
    transition: transform 0.2s, background 0.2s;
}
.cta-phone-btn:hover {
    background: var(--brand-primary-light);
    transform: translateY(-1px);
}

/* HERO FLEX-GRID DESIGN INTERFACE */
.hero-section {
    background: radial-gradient(circle at 85% 50%, #FFF4EE 0%, var(--ui-white) 70%);
    padding: 70px 0;
    overflow: hidden;
}
.hero-container {
    max-width: var(--canvas-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    padding: 0 24px;
    gap: 48px;
}
.hero-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
}
.color-accent { color: var(--brand-accent-orange); }
.hero-description {
    font-size: 17px;
    color: var(--brand-text-muted);
    margin-bottom: 32px;
    font-weight: 500;
}
.competency-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.matrix-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 15px;
    color: var(--brand-text-dark);
}
.matrix-item i { color: var(--brand-primary-light); font-size: 20px; }

.hero-action-row {
    display: flex;
    align-items: center;
    gap: 32px;
}
.primary-action-btn {
    background: var(--brand-primary-deep);
    color: var(--ui-white);
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(27, 20, 100, 0.2);
}
.hero-motto {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-text-muted);
    font-size: 14px;
    font-weight: 600;
}
.hero-motto i { color: var(--brand-accent-orange); font-size: 16px; }

.hero-visual-frame {
    display: flex;
    justify-content: center;
    position: relative;
}
.asymmetric-image-container {
    width: 400px;
    height: 400px;
    border-radius: 50% 50% 25% 50%;
    overflow: hidden;
    border: 10px solid var(--ui-white);
    box-shadow: 0 15px 35px rgba(27, 20, 100, 0.1);
}
.asymmetric-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.floating-statement-card {
    background: var(--brand-primary-deep);
    color: var(--ui-white);
    padding: 24px;
    border-radius: 24px;
    width: 280px;
    position: absolute;
    bottom: -15px;
    right: -10px;
    box-shadow: 0 10px 30px rgba(27, 20, 100, 0.2);
}
.floating-statement-card i { font-size: 24px; color: var(--brand-accent-orange); margin-bottom: 8px; }
.floating-statement-card p { font-size: 13px; font-weight: 600; line-height: 1.5; }

/* BRAND METRICS RIBBON LAYER */
.value-ribbon {
    background: var(--ui-white);
    padding: 24px 0;
    border-top: 1px solid #E9ECEF;
    border-bottom: 1px solid #E9ECEF;
}
.ribbon-wrapper {
    max-width: var(--canvas-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px 24px;
    padding: 0 24px;
}
@media (max-width: 880px) {
    .ribbon-wrapper { justify-content: flex-start; }
    .ribbon-node { flex: 1 1 40%; }
}
@media (max-width: 560px) {
    .ribbon-node { flex: 1 1 100%; }
}
.ribbon-node {
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-primary-deep);
}
.ribbon-node i { color: var(--brand-accent-orange); font-size: 16px; }

/* DIAGNOSTIC COMPONENT MATRIX (SIGNS OF AUTISM) */
.diagnostic-overview-section {
    padding: 70px 24px;
    max-width: var(--canvas-max-width);
    margin: 0 auto;
}
.signs-container-card {
    background: var(--brand-bg-soft-purple);
    border-radius: 36px;
    padding: 48px;
    display: flex;
    gap: 48px;
}
.signs-branding-column { flex: 0.9; }
.section-title-dark { font-size: 36px; margin-bottom: 16px; }
.section-desc-dark { margin-bottom: 32px; color: var(--brand-text-muted); font-weight: 600; }
.secondary-dark-btn {
    background: var(--brand-primary-deep);
    color: var(--ui-white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}
.signs-grid-layout {
    flex: 21.1px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.sign-node-box {
    background: var(--ui-white);
    padding: 24px 16px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(27, 20, 100, 0.02);
}
.node-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
}
.node-label { font-size: 13px; font-weight: 700; color: var(--brand-text-dark); }

/* CHROMATIC PALETTE MAPPING FOR DIAGNOSTIC BOXES */
.color-purple { background: #EFE9FF; color: #6C5CE7; }
.color-pink { background: #FFEAF2; color: #FD79A8; }
.color-orange { background: #FFEFE5; color: #E17055; }
.color-green { background: #E3FAF3; color: #00B894; }
.color-blue { background: #E4F2FE; color: #0984E3; }
.color-maroon { background: #FCE8F3; color: #6D214F; }

/* CLINICAL OFFERINGS GRID SYSTEM */
.offerings-matrix-section {
    padding: 70px 24px;
    max-width: var(--canvas-max-width);
    margin: 0 auto;
}
.centered-heading-block {
    text-align: center;
    margin-bottom: 56px;
}
.matrix-main-title { font-size: 38px; margin-bottom: 12px; }
.matrix-subtitle { font-size: 16px; color: var(--brand-text-muted); max-width: 700px; margin: 0 auto; font-weight: 500; }
.offerings-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.offering-card {
    background: var(--ui-white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 6px solid var(--brand-primary-deep);
}
.offering-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.offering-icon { font-size: 28px; }
.offering-title { font-size: 18px; font-weight: 700; line-height: 1.3; }
.offering-body-text { font-size: 14px; color: var(--brand-text-muted); font-weight: 500; margin-bottom: 24px; min-height: 66px; }
.offering-graphic-frame {
    height: 140px;
    background: #F1F3F5;
    border-radius: 16px;
    overflow: hidden;
}
.offering-graphic-frame img { width: 100%; height: 100%; object-fit: cover; }
.offering-graphic-frame.icon-frame {
    display: flex; align-items: center; justify-content: center;
    background: var(--brand-bg-soft-purple);
}
.offering-graphic-frame.icon-frame i { font-size: 48px; color: var(--brand-primary-light); }
.color-variant-2 .icon-frame { background: #FFEAF2; }
.color-variant-2 .icon-frame i { color: #FD79A8; }
.color-variant-3 .icon-frame { background: #FFEFE5; }
.color-variant-3 .icon-frame i { color: #E17055; }
.color-variant-4 .icon-frame { background: #E3FAF3; }
.color-variant-4 .icon-frame i { color: #00B894; }
.color-variant-5 .icon-frame { background: #E4F2FE; }
.color-variant-5 .icon-frame i { color: #0984E3; }
.color-variant-6 .icon-frame { background: #FCE8F3; }
.color-variant-6 .icon-frame i { color: #6D214F; }

/* OFFERING STRUCTURAL VARIANT BORDERS */
.color-variant-1 { border-top-color: #6C5CE7; .offering-icon { color: #6C5CE7; } }
.color-variant-2 { border-top-color: #FD79A8; .offering-icon { color: #FD79A8; } }
.color-variant-3 { border-top-color: #E17055; .offering-icon { color: #E17055; } }
.color-variant-4 { border-top-color: #00B894; .offering-icon { color: #00B894; } }
.color-variant-5 { border-top-color: #0984E3; .offering-icon { color: #0984E3; } }
.color-variant-6 { border-top-color: #6D214F; .offering-icon { color: #6D214F; } }

.assessment-status-infobar {
    background: #FFFBF7;
    border: 1.5px dashed var(--brand-accent-orange);
    padding: 16px;
    border-radius: 16px;
    text-align: center;
    margin-top: 40px;
    font-weight: 700;
    color: var(--brand-primary-deep);
}

/* CORPORATE BIOGRAPHY SECTION ARCHITECTURE */
.corporate-profile-section {
    padding: 70px 24px;
    max-width: var(--canvas-max-width);
    margin: 0 auto;
}
.profile-layout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
}
.director-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}
.director-avatar-wrapper {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.director-avatar-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.director-name { font-size: 26px; }
.director-tagline { font-size: 14px; color: var(--brand-orange-text); font-weight: 700; }
.director-synopsis { font-size: 16px; font-weight: 600; margin-bottom: 20px; color: var(--brand-text-dark); }
.director-credentials-list, .differentiators-list { list-style: none; }
.director-credentials-list li, .differentiators-list li {
    margin-bottom: 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-weight: 600;
    font-size: 15px;
}
.director-credentials-list i { color: var(--brand-primary-light); margin-top: 4px; font-size: 16px; }
.brand-differentiators-card {
    background: var(--ui-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(27, 20, 100, 0.02);
}
.differentiators-title { font-size: 22px; margin-bottom: 24px; }
.promise-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px;
    max-width: 800px; margin: 0 auto; list-style: none;
}
@media (max-width: 680px) { .promise-list { grid-template-columns: 1fr; } }

.pathway-grid { grid-template-columns: repeat(5,1fr); gap: 18px; }
.pathway-card { text-align: center; }
.pathway-card h3 { font-size: 16px; }
.pathway-card p { font-size: 13px; }
@media (max-width: 1024px) { .pathway-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 680px) { .pathway-grid { grid-template-columns: 1fr 1fr; } }
.differentiators-list i { color: #00B894; margin-top: 4px; font-size: 16px; }

/* CALL TO ACTION HIGH-CONVERSION FOOTER LAYER */
.application-footer {
    background: var(--brand-primary-deep);
    color: var(--ui-white);
    padding: 80px 24px 24px;
    margin-top: 80px;
}
.footer-primary-layout {
    max-width: var(--canvas-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 56px;
}
.footer-brand-info { flex: 1.2; }
.footer-quick-links { flex: 0.7; }
.footer-quick-links h4 { color: var(--ui-white); font-size: 15px; margin-bottom: 18px; }
.footer-quick-links a {
    display: block; color: #C7C4E0; text-decoration: none; font-weight: 600;
    font-size: 14.5px; margin-bottom: 12px;
}
.footer-quick-links a:hover { color: var(--ui-white); }
@media (max-width: 1024px) { .footer-quick-links { order: 3; } }
.footer-cta-headline { color: var(--ui-white); font-size: 34px; margin-bottom: 16px; }
.footer-cta-sub { color: #B3B0D6; font-size: 16px; font-weight: 500; margin-bottom: 32px; }
.footer-contact-matrix .contact-line {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #E2E1F0;
}
.footer-contact-matrix .contact-line i { color: var(--brand-accent-orange); font-size: 18px; }

.footer-cta-card-wrapper { flex: 0.8; display: flex; justify-content: flex-end; }
.conversion-white-card {
    background: var(--ui-white);
    color: var(--brand-text-dark);
    padding: 40px;
    border-radius: 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.card-conversion-title { color: var(--brand-primary-deep); font-size: 22px; margin-bottom: 10px; }
.card-conversion-desc { color: var(--brand-text-muted); font-size: 14px; font-weight: 600; }
.conversion-orange-btn {
    background: var(--brand-accent-orange);
    color: var(--ui-white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 24px;
    text-align: center;
    width: 100%;
    box-shadow: 0 6px 15px rgba(243, 112, 35, 0.3);
}

.footer-compliance-ribbon {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: var(--canvas-max-width);
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #A3A0CD;
}
.compliance-node i { color: var(--brand-accent-orange); margin-right: 6px; }

/* CROSS-COMPONENT RESPONSIVE ENGINE VIEWPORT BREAKPOINTS */
@media (max-width: 1024px) {
    .hero-container, .signs-container-card, .profile-layout-grid, .footer-primary-layout {
        grid-template-columns: 1fr;
        flex-direction: column;
        gap: 40px;
    }
    .offerings-grid-container, .signs-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-cta-card-wrapper { justify-content: flex-start; }
}

@media (max-width: 680px) {
    .offerings-grid-container, .signs-grid-layout, .competency-matrix {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 36px; }
    .footer-compliance-ribbon { flex-direction: column; gap: 16px; }
}

/* ============================================================
   MOBILE NAV TOGGLE
   ============================================================ */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10000;
}
.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--brand-primary-deep);
    margin: 5px 0;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 680px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        width: 78%;
        max-width: 320px;
        background: var(--ui-white);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 32px 32px;
        gap: 8px;
        transform: translateX(100%);
        transition: transform .28s ease;
        box-shadow: -10px 0 40px rgba(27,20,100,0.15);
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-menu .nav-link {
        margin: 0;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid #EEEAF7;
        font-size: 17px;
    }
    .nav-scrim {
        display: none;
        position: fixed; inset: 0;
        background: rgba(27,20,100,0.35);
        z-index: 9998;
    }
    .nav-scrim.open { display: block; }
    .header-container { position: relative; }
    .cta-phone-btn span.phone-text { display: none; }
    .cta-phone-btn { padding: 12px 16px; }
}

/* ============================================================
   INTERIOR PAGE HERO / BREADCRUMB
   ============================================================ */
.page-hero {
    background: radial-gradient(circle at 85% 30%, #FFF4EE 0%, var(--ui-white) 70%);
    padding: 56px 24px 24px;
}
.page-hero-inner {
    max-width: var(--canvas-max-width);
    margin: 0 auto;
}
.breadcrumb {
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-text-muted);
    margin-bottom: 14px;
}
.breadcrumb a { color: var(--brand-primary-light); text-decoration: none; }
.page-eyebrow {
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-orange-text);
    margin-bottom: 10px;
    display: block;
}
.page-title { font-size: 42px; margin-bottom: 16px; }
.page-lead { color: var(--brand-text-muted); font-weight: 500; font-size: 16.5px; max-width: 620px; }

/* ============================================================
   GENERIC SECTION HEAD (reused across interior pages)
   ============================================================ */
.generic-section { padding: 64px 24px; max-width: var(--canvas-max-width); margin: 0 auto; }
.generic-section.alt-bg { background: var(--brand-bg-soft-purple); border-radius: 36px; }
.section-head-block { max-width: 640px; margin-bottom: 40px; }
.section-head-block.center { margin: 0 auto 48px; text-align: center; }

/* ============================================================
   SERVICE CARDS (reuses offering-card look)
   ============================================================ */
.service-card {
    background: var(--ui-white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border-top: 6px solid var(--brand-primary-deep);
}
.service-card .offering-icon { font-size: 26px; color: var(--brand-primary-light); margin-bottom: 14px; }
.service-card h3 { font-size: 19px; margin-bottom: 10px; }
.service-card p { color: var(--brand-text-muted); font-weight: 500; font-size: 14.5px; margin: 0; }

/* ============================================================
   TIMELINE (About + Assessments process)
   ============================================================ */
.process-timeline { position: relative; padding-left: 40px; }
.process-timeline::before {
    content: "";
    position: absolute; left: 9px; top: 4px; bottom: 4px; width: 2px;
    background-image: linear-gradient(var(--brand-primary-light) 45%, transparent 0%);
    background-size: 2px 12px; background-repeat: repeat-y;
}
.timeline-step { position: relative; padding-bottom: 34px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
    content: "";
    position: absolute; left: -40px; top: 2px;
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--brand-accent-orange);
    border: 4px solid #FAFAFC;
}
.timeline-step h3 { font-size: 18px; margin-bottom: 6px; }
.timeline-step p { color: var(--brand-text-muted); font-weight: 500; font-size: 14.5px; margin: 0; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item { border-bottom: 1px solid #E9ECEF; padding: 20px 0; }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-family: 'Fredoka', sans-serif; font-weight: 700;
    font-size: 16.5px; color: var(--brand-primary-deep);
}
.faq-question .faq-icon { color: var(--brand-accent-orange); font-size: 18px; transition: transform .2s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
    color: var(--brand-text-muted); font-weight: 500; font-size: 14.5px;
}
.faq-item.open .faq-answer { max-height: 300px; margin-top: 12px; }

/* ============================================================
   RESOURCE CARDS
   ============================================================ */
.resource-card {
    background: var(--ui-white);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.resource-tag {
    display: inline-block;
    background: var(--brand-bg-soft-purple);
    color: var(--brand-primary-light);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
    padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
}
.resource-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.resource-card p { color: var(--brand-text-muted); font-weight: 500; font-size: 14px; margin-bottom: 14px; }
.resource-card a { color: var(--brand-primary-light); font-weight: 700; font-size: 14px; text-decoration: none; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-layout {
    display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: flex-start;
}
.contact-form-card {
    background: var(--ui-white);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}
.form-grid { display: grid; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid label {
    font-size: 13px; font-weight: 700; color: var(--brand-text-dark);
    margin-bottom: 6px; display: block;
}
.form-grid input, .form-grid select, .form-grid textarea {
    width: 100%; padding: 13px 16px; border-radius: 12px;
    border: 1.5px solid #E4E1F0; font-family: 'Quicksand', sans-serif;
    font-size: 15px; color: var(--brand-text-dark); background: #FCFCFE;
}
.form-grid textarea { resize: vertical; min-height: 120px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
    outline: none; border-color: var(--brand-primary-light);
    box-shadow: 0 0 0 3px var(--brand-bg-soft-purple);
}
.form-submit-btn {
    background: var(--brand-primary-deep); color: var(--ui-white);
    border: none; padding: 16px; border-radius: 50px; font-weight: 700;
    font-size: 15px; font-family: 'Quicksand', sans-serif; cursor: pointer;
    width: 100%; box-shadow: 0 6px 20px rgba(27,20,100,0.2);
    transition: background .2s ease, transform .2s ease;
}
.form-submit-btn:hover { background: var(--brand-primary-light); transform: translateY(-1px); }
.form-note { font-size: 12.5px; color: var(--brand-text-muted); margin: 0; }
.form-status { font-size: 14px; padding: 12px 16px; border-radius: 10px; display: none; font-weight: 600; }
.form-status.ok { background: #E3FAF3; color: #00845E; display: block; }
.form-status.err { background: #FCE8E8; color: #C0392B; display: block; }

.contact-info-card {
    background: var(--brand-bg-soft-purple);
    border-radius: 28px;
    padding: 32px;
    margin-bottom: 20px;
}
.contact-info-card h3 { font-size: 19px; margin-bottom: 16px; }
.contact-info-card .contact-line {
    display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
    font-weight: 600; font-size: 14.5px; color: var(--brand-text-dark);
}
.contact-info-card .contact-line i { color: var(--brand-accent-orange); font-size: 16px; width: 18px; }
.contact-info-card .contact-line a { color: var(--brand-text-dark); text-decoration: none; }

@media (max-width: 1024px) {
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
    .form-row-2 { grid-template-columns: 1fr; }
    .page-title { font-size: 30px; }
    .contact-form-card { padding: 24px; }
}

/* ============================================================
   WHATSAPP CLIENT INFO MODAL
   ============================================================ */
.wa-modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(27,20,100,0.45);
    z-index: 20000;
    align-items: center; justify-content: center;
    padding: 20px;
}
.wa-modal-overlay.open { display: flex; }
.wa-modal {
    background: #fff;
    border-radius: 28px;
    padding: 36px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.wa-modal-close {
    position: absolute; top: 18px; right: 18px;
    background: var(--brand-bg-soft-purple);
    border: none; width: 34px; height: 34px; border-radius: 50%;
    font-size: 20px; line-height: 1; color: var(--brand-primary-deep);
    cursor: pointer;
}
.wa-modal h3 {
    font-size: 22px; margin-bottom: 8px; padding-right: 30px;
    display: flex; align-items: center; gap: 10px;
}
.wa-modal h3 i { color: #25D366; }
.wa-modal-sub { color: var(--brand-text-muted); font-weight: 500; font-size: 14px; margin-bottom: 22px; }
.wa-modal .form-submit-btn { background: #25D366; box-shadow: 0 6px 20px rgba(37,211,102,0.3); }
.wa-modal .form-submit-btn:hover { background: #1DA851; }
.wa-modal .form-submit-btn i { margin-right: 8px; }

@media (max-width: 560px) {
    .wa-modal { padding: 26px; border-radius: 22px; }
}

/* ============================================================
   DIRECTOR BADGE & INTERNATIONAL EXPERIENCE
   ============================================================ */
.director-badge {
    width: 96px; height: 96px; border-radius: 50%;
    background: var(--brand-bg-soft-purple);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.director-badge i { font-size: 34px; color: var(--brand-primary-deep); }
.director-stat {
    background: var(--brand-bg-soft-purple);
    border-radius: 20px;
    padding: 22px 26px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 18px;
}
.director-stat .stat-number {
    font-family: 'Fredoka', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--brand-primary-deep);
    white-space: nowrap;
}
.director-stat p { margin: 0; font-size: 14px; color: var(--brand-text-muted); font-weight: 500; }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.experience-card {
    background: var(--ui-white);
    border-radius: 20px;
    padding: 22px;
    border-top: 5px solid var(--brand-accent-orange);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.experience-card.variant-2 { border-top-color: var(--brand-primary-light); }
.experience-card.variant-3 { border-top-color: #00B894; }
.experience-card h4 { font-size: 15px; margin-bottom: 8px; color: var(--brand-primary-deep); }
.experience-card p { font-size: 13.5px; color: var(--brand-text-muted); font-weight: 500; margin: 0; }
.director-closing {
    display: flex; align-items: center; gap: 10px;
    margin-top: 24px; font-weight: 600; color: var(--brand-primary-deep);
    font-size: 14.5px;
}
.director-closing i { color: var(--brand-accent-orange); }

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