@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/*
    original red #CC1B1B
*/
:root {
    --red : #f97575;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #F0F4F8;
}

/* HEADER — deep forest green */
header {
    background: linear-gradient(135deg, #1A1F3C 0%, #2e3668 100%);
    border-bottom: 4px solid #3B4AC8;
    padding: 0 48px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logos img {
    height: 70px;
    width: auto;
    /*border-radius: 50%;
    background: white;*/
    padding: 2px;
    object-fit: contain;
}

.brand-text h1 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
}

.brand-text p {
    font-size: 11px;
    color: #9BA3C8;
    margin-top: 2px;
    letter-spacing: 0.02em;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9BA3C8;
    text-decoration: none;
    transition: color 0.15s;
}

nav a:hover {
    color: #fff;
}

nav a.active {
    color: #fff;
}

/* GOLD STRIPE */
.stripe {
    background: linear-gradient(90deg, #3B4AC8, #6776f1, #3B4AC8);
    height: 5px;
}

/* ── PAGE HERO ── */
.page-hero {
    background: linear-gradient(135deg, #1A1F3C 0%, #2A3270 100%);
    padding: 52px 48px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'%3E%3Cpolygon points='60,2 114,30 114,74 60,102 6,74 6,30' fill='none' stroke='%233B4AC8' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 120px 104px;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero .badge {
    display: inline-block;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.page-hero h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.page-hero h2 span {
    color: #7B8FFF;
}

.page-hero p {
    font-size: 14px;
    color: #9BA3C8;
}

/* MAIN */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 34px 40px;
    background: #F0F4F8;
}

.hero {
    text-align: center;
    margin-bottom: 44px;
}

.hero-badge {
    display: inline-block;
    background: var(--red);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.hero h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1A1F3C;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 12px;
}

.hero h2 span {
    color: #3B4AC8;
}

.hero p {
    font-size: 14px;
    color: #6B7A99;
    letter-spacing: 0.01em;
}

.prompt {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8896B0;
    margin-bottom: 24px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
    max-width: 740px;
}

.card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
    border: 1px solid #E2EAF2;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 18px 18px 0 0;
}

.card-school::before {
    background: #3B4AC8;
}

.card-office::before {
    background: var(--red);
}

.card:hover {
    /*transform: translateY(-5px);*/
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 4px;
}

.card-school .card-icon {
    background: #F0F4F8;
}

.card-office .card-icon {
    background: #F0F4F8;
}

.card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1A1F3C;
    letter-spacing: -0.01em;
}

.card p {
    font-size: 13px;
    color: #6B7A99;
    line-height: 1.65;
    flex: 1;
}

.card-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    border-radius: 10px;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 12px;
    text-decoration: none;
    transition: filter 0.15s, transform 0.1s;
}

.card-school .card-btn {
    background: #3B4AC8;
    color: #ffffff;
}

.card-office .card-btn {
    background: var(--red);
    color: #ffffff;
}

.card-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.card-btn svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/* HELP PAGE */

/* Search bar */
.search-wrap {
    position: relative;
    margin-bottom: 40px;
}

.search-wrap input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: 12px;
    border: 1.5px solid #D0DAE8;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1A1F3C;
    outline: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: border-color 0.2s;
}

.search-wrap input:focus {
    border-color: #3B4AC8;
}

.search-wrap input::placeholder {
    color: #9BA3C8;
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9BA3C8;
}

/* Category tabs */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tab {
    padding: 8px 18px;
    border-radius: 30px;
    border: 1.5px solid #D0DAE8;
    background: #fff;
    font-size: 12px;
    font-weight: 600;
    color: #6B7A99;
    cursor: pointer;
    transition: all 0.15s;
    font-family: 'Inter', sans-serif;
}

.tab:hover {
    border-color: #3B4AC8;
    color: #3B4AC8;
}

.tab.active {
    background: #3B4AC8;
    border-color: #3B4AC8;
    color: #fff;
}

/* Section title */
.section-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9BA3C8;
    margin-bottom: 16px;
    padding-left: 4px;
}

/* FAQ group */
.faq-group {
    margin-bottom: 40px;
}

.faq-group-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1A1F3C;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #E2EAF2;
}

.faq-group-label .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-blue {
    background: #3B4AC8;
}

.dot-red {
    background: var(--red);
}

.dot-green {
    background: #008C3C;
}

/* FAQ item */
.faq-item {
    background: #fff;
    border-radius: 12px;
    border: 1.5px solid #E2EAF2;
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    font-family: 'Inter', sans-serif;
}

.faq-question span {
    font-size: 14px;
    font-weight: 600;
    color: #1A1F3C;
    line-height: 1.4;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #F0F4F8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.3s;
}

.faq-icon svg {
    width: 14px;
    height: 14px;
    color: #3B4AC8;
    transition: transform 0.3s;
}

.faq-item.open .faq-icon {
    background: #3B4AC8;
}

.faq-item.open .faq-icon svg {
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-inner {
    padding: 0 22px 20px;
    font-size: 13.5px;
    color: #6B7A99;
    line-height: 1.7;
    border-top: 1px solid #F0F4F8;
    padding-top: 14px;
    text-align: justify;
}

/* Still need help */
.help-banner {
    background: linear-gradient(135deg, #1A1F3C 0%, #2A3270 100%);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 16px;
}

.help-banner-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.help-banner-text p {
    font-size: 13px;
    color: #9BA3C8;
}

.help-banner-btn {
    background: #FAA014;
    color: #1A1F3C;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: filter 0.15s;
}

.help-banner-btn:hover {
    filter: brightness(1.1);
}

/* ── GRID ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 28px;
    align-items: start;
}

/* ── LEFT — info cards ── */
.info-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #E2EAF2;
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.1);
}

.info-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.icon-blue {
    background: #EEF1FF;
}

.icon-green {
    background: #EAF7EE;
}

.icon-gold {
    background: #FFF5E0;
}

.info-body h3 {
    font-size: 13px;
    font-weight: 700;
    color: #9BA3C8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-body a, .info-body p {
    font-size: 16px;
    font-weight: 700;
    color: #1A1F3C;
    text-decoration: none;
    line-height: 1.4;
}

.info-body a:hover {
    color: #3B4AC8;
}

.info-body .sub {
    font-size: 12px;
    font-weight: 400;
    color: #9BA3C8;
    margin-top: 4px;
}

/* Dept info card */
.dept-card {
    background: linear-gradient(135deg, #1A1F3C 0%, #2A3270 100%);
    border-radius: 16px;
    padding: 28px 24px;
    color: #fff;
    box-shadow: 0 4px 20px rgba(26, 31, 60, 0.3);
}

.dept-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.dept-card p {
    font-size: 13px;
    color: #9BA3C8;
    line-height: 1.7;
}

.dept-card .hours {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #FAA014;
    font-weight: 600;
}

/* ── RIGHT — form ── */
.form-card {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #E2EAF2;
    padding: 36px 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1A1F3C;
    margin-bottom: 6px;
}

.form-card .form-sub {
    font-size: 13px;
    color: #9BA3C8;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.field label {
    font-size: 12px;
    font-weight: 600;
    color: #6B7A99;
    letter-spacing: 0.04em;
}

.field input,
.field select,
.field textarea {
    padding: 13px 16px;
    border-radius: 10px;
    border: 1.5px solid #D0DAE8;
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #1A1F3C;
    outline: none;
    transition: border-color 0.2s;
    background: #F8FAFB;
    width: 100%;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: #3B4AC8;
    background: #fff;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #B0BAD0;
}

.field textarea {
    resize: vertical;
    min-height: 110px;
}

.submit-btn {
    width: 100%;
    background: #3B4AC8;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter 0.15s, transform 0.1s;
    margin-top: 4px;
}

.submit-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

/* Success message */
.success-msg {
    display: none;
    background: #EAF7EE;
    border: 1.5px solid #008C3C;
    border-radius: 10px;
    padding: 14px 18px;
    color: #005C28;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin-top: 16px;
}

/* ABOUT */

/* ── SECTION LABEL ── */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3B4AC8;
    margin-bottom: 14px;
}

.section-label::before {
    content: '';
    width: 28px;
    height: 3px;
    background: #3B4AC8;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ── INTRO SECTION ── */
.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 56px;
}

.intro-text h3 {
    font-size: 28px;
    font-weight: 800;
    color: #1A1F3C;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.intro-text h3 span {
    color: #3B4AC8;
}

.intro-text p {
    font-size: 14px;
    color: #6B7A99;
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: justify;
}

.intro-visual {
    background: linear-gradient(135deg, #1A1F3C 0%, #2A3270 100%);
    border-radius: 20px;
    padding: 36px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.intro-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='69' viewBox='0 0 80 69'%3E%3Cpolygon points='40,2 76,20 76,49 40,67 4,49 4,20' fill='none' stroke='%233B4AC8' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 69px;
    opacity: 0.2;
}

.intro-visual-content {
    position: relative;
    z-index: 1;
}

.intro-visual .label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #FAA014;
    margin-bottom: 12px;
}

.intro-visual h4 {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.intro-visual p {
    font-size: 13px;
    color: #9BA3C8;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: rgba(59, 74, 200, 0.3);
    border: 1px solid rgba(59, 74, 200, 0.5);
    color: #A0AAFF;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

/* ── WHAT WE DO ── */
/*.section {
    margin-bottom: 56px;
}*/

.section h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1A1F3C;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #E2EAF2;
    padding: 26px 22px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 14px;
    width: 52px;
    height: 52px;
    background: #F0F4F8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1A1F3C;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12.5px;
    color: #6B7A99;
    line-height: 1.65;
    text-align: justify;
}

/* ── MISSION / VISION ── */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 56px;
}

.mv-card {
    border-radius: 16px;
    padding: 30px 26px;
    position: relative;
    overflow: hidden;
}

.mv-card.mission {
    background: linear-gradient(135deg, #3B4AC8 0%, #2A3AA0 100%);
    color: #fff;
}

.mv-card.vision {
    background: linear-gradient(135deg, #008C3C 0%, #006028 100%);
    color: #fff;
}

.mv-card .mv-icon {
    font-size: 32px;
    margin-bottom: 14px;
    display: block;
}

.mv-card h4 {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.85;
}

.mv-card p {
    font-size: 13.5px;
    line-height: 1.75;
    opacity: 0.9;
    text-align: justify;
}

/* ── STAKEHOLDERS ── */
.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}

.stakeholder-card {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #E2EAF2;
    padding: 28px 18px 22px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.stakeholder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 14px 14px 0 0;
}

.sc-1::before {
    background: #3B4AC8;
}

.sc-2::before {
    background: #008C3C;
}

.sc-3::before {
    background: #FAA014;
}

.sc-4::before {
    background: var(--red);
}

.stakeholder-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.stakeholder-icon {
    font-size: 34px;
    margin-bottom: 12px;
    display: block;
}

.stakeholder-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1A1F3C;
    margin-bottom: 6px;
}

.stakeholder-card p {
    font-size: 12px;
    color: #9BA3C8;
    line-height: 1.5;
    text-align: justify;
}

/* ── TIMELINE ── */
.timeline {
    position: relative;
    padding-left: 32px;
    margin-bottom: 56px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #E2EAF2;
}

.tl-item {
    position: relative;
    margin-bottom: 28px;
}

.tl-dot {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3B4AC8;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #3B4AC8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-dot span {
    font-size: 9px;
    color: #fff;
    font-weight: 700;
}

.tl-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1A1F3C;
    margin-bottom: 4px;
}

.tl-item p {
    font-size: 13px;
    color: #6B7A99;
    line-height: 1.65;
    text-align: justify;
}

/* ── STATS BANNER ── */
.stats-banner {
    background: linear-gradient(135deg, #1A1F3C 0%, #2A3270 100%);
    border-radius: 20px;
    padding: 40px 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 56px;
    position: relative;
    overflow: hidden;
    margin: 30px 30px;
}

.stats-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='69' viewBox='0 0 80 69'%3E%3Cpolygon points='40,2 76,20 76,49 40,67 4,49 4,20' fill='none' stroke='%233B4AC8' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 80px 69px;
    opacity: 0.12;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item .num {
    font-size: 36px;
    font-weight: 800;
    color: #FAA014;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .lbl {
    font-size: 12px;
    font-weight: 600;
    color: #9BA3C8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}
/* ============================================================
   Contact Us  –  Extra styles for CI3 view
   ============================================================ */

/* Alert boxes */
.alert {
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}
.alert-success {
    background: #EAF7EE;
    border: 1.5px solid #008C3C;
    color: #005C28;
}
.alert-danger {
    background: #FFF0F0;
    border: 1.5px solid #CC1B1B;
    color: #8B0000;
}

/* Field error text */
.field-error {
    display: block;
    font-size: 11.5px;
    color: #CC1B1B;
    margin-top: 4px;
    font-weight: 500;
}

/* Input error highlight */
.input-error {
    border-color: #CC1B1B !important;
    background: #FFF8F8 !important;
}

/* Required star */
.req { color: #CC1B1B; }

/* Spinner inside button */
.spinner {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }


/* FOOTER */
footer {
    background: #1A1F3C;
    border-top: 4px solid #3B4AC8;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

footer p {
    font-size: 12px;
    /*color: #6B7899;*/
    color: #ffffff;
    letter-spacing: 0.03em;
    line-height: 1.5;
}

.footer-right {
    font-size: 12px;
    /*color: #6B7899;*/
    color: #ffffff;
    letter-spacing: 0.03em;
    text-align: right;
    white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Large tablets / small laptops ── */
@media (max-width: 1024px) {
    .stakeholders-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-banner {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Tablets ── */
@media (max-width: 900px) {
    header {
        padding: 0 24px;
    }

    nav {
        gap: 18px;
    }

    .page-hero {
        padding: 40px 24px 36px;
    }

    .page-hero h2 {
        font-size: 28px;
    }

    main {
        padding: 32px 24px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .intro-visual {
        order: -1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .stats-banner {
        margin: 24px 16px;
        padding: 32px 24px;
    }
}

/* ── Phones (landscape / large) ── */
@media (max-width: 700px) {
    header {
        height: auto;
        min-height: 74px;
        flex-wrap: wrap;
        gap: 10px;
        padding: 14px 20px;
    }

    nav {
        gap: 14px;
        flex-wrap: wrap;
        width: 100%;
        justify-content: flex-start;
    }

    .logos img {
        height: 48px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .hero h2,
    .page-hero h2 {
        font-size: 26px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .help-banner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .help-banner-btn {
        width: 100%;
        text-align: center;
    }

    .stakeholders-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-banner {
        grid-template-columns: 1fr 1fr;
        gap: 20px 16px;
    }

    .form-card {
        padding: 28px 20px;
    }

    .info-card {
        padding: 22px 18px;
    }
}

/* ── Small phones ── */
@media (max-width: 480px) {
    .brand-text h1 {
        font-size: 14px;
    }

    .brand-text p {
        display: none;
    }

    .hero h2,
    .page-hero h2 {
        font-size: 22px;
    }

    .intro-text h3 {
        font-size: 22px;
    }

    .section h3 {
        font-size: 20px;
    }

    .stats-banner {
        grid-template-columns: 1fr;
        margin: 16px 10px;
        padding: 24px 20px;
    }

    .stat-item .num {
        font-size: 28px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 16px 20px;
    }

    .footer-right {
        text-align: center;
    }
}