/* KNLCA — Nursery & Primary | ACE Curriculum (Rwanda) */
:root {
    --navy: #1A2E4E;
    --navy-dark: #0B2545;
    --navy-soft: #2A4572;
    --primary: #F9A825;
    --primary-dark: #E09410;
    --primary-light: rgba(249, 168, 37, 0.22);
    --accent-mint: #3DB8A8;
    --accent-coral: #FF7F50;
    --accent-sky: #5B9BD5;
    --cream: #FFF9F0;
    --cream-dark: #F5EDE0;
    --black: #000;
    --realblack: #2D3436;
    --text-muted: #636E72;
    --white: #fff;
    --grey: #ccc;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 999px;
    --shadow-card: 0 4px 24px rgba(26, 46, 78, 0.08);
    --shadow-soft: 0 8px 32px rgba(26, 46, 78, 0.12);
    --section-pad: clamp(48px, 8vw, 72px);
    --navbar-height: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    color: var(--realblack);
    overflow-x: hidden;
    line-height: 1.6;
    background: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
}
p { margin-bottom: 1em; color: var(--realblack); }
p:last-child { margin-bottom: 0; }
.text-muted { color: var(--text-muted); }
.lead {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 42rem;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.main-content {
    width: 100%;
}

.content {
    width: 100%;
    padding: 0 30px;
}
@media (max-width: 500px) { .content { padding: 0 20px; } }

/* Site loader — friendly school book animation */
#site-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
#site-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-school {
    width: 72px;
    height: 72px;
    color: var(--navy);
    animation: loaderBounce 1.2s ease-in-out infinite;
}
.loader-school__book {
    fill: var(--primary);
    opacity: 0.9;
}
.loader-school__cap {
    fill: var(--navy);
}
.loader-school__text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy-soft);
}
@keyframes loaderBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ACE badge in top bar */
.topheader__ace {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(249, 168, 37, 0.2);
    border: 1px solid rgba(249, 168, 37, 0.45);
    border-radius: var(--radius-pill);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary);
    white-space: nowrap;
}
.topheader__ace-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-mint);
    flex-shrink: 0;
}

/* Top bar */
.topheader {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 20px;
    background: var(--navy);
    color: var(--white);
}
.topheader a { color: var(--white); text-decoration: none; }
.topheader .top-left { display: flex; align-items: center; gap: 20px; font-size: 0.8rem; }
.topheader .top-left svg { width: 17px; height: 17px; margin-right: 5px; fill: var(--white); vertical-align: middle; }
.topheader .top-right { display: flex; align-items: center; gap: 20px; }
.topheader .top-right a { display: inline-flex; }
.topheader .top-right svg { width: 17px; height: 17px; fill: var(--white); }
@media (max-width: 600px) { .topheader { padding: 7px 10px; } .topheader .top-left { font-size: 0.7rem; } }
@media (max-width: 430px) { .topheader { display: none; } }

/* Navbar — navy single-row bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--navy);
    box-shadow: 0 4px 24px rgba(11, 37, 69, 0.28);
    height: var(--navbar-height);
}
.navbar__inner {
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}
.navbar-brand__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
}
.navbar-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}
.navbar-brand__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}
.navbar-brand__subtitle {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}
.navbar-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}
.navbar-links .nav-link {
    position: relative;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 8px 10px;
    transition: color 0.2s;
    white-space: nowrap;
}
.navbar-links .nav-link::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.navbar-links .nav-link:hover { color: var(--white); }
.navbar-links .nav-link:hover::after,
.navbar-links .nav-link.active::after { transform: scaleX(1); }
.navbar-links .nav-link.active { color: var(--white); }
.nav-dropdown { position: relative; }
.nav-dropdown .nav-link { display: inline-flex; }
.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 200px;
    padding: 8px 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(11, 37, 69, 0.18);
    z-index: 1000;
    border: 1px solid rgba(26, 46, 78, 0.06);
}
.nav-dropdown__item {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: var(--realblack);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown__item:hover { background: var(--primary-light); color: var(--navy); }
.nav-dropdown__item.is-active { background: var(--primary-light); color: var(--navy); font-weight: 600; }
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.btn-appointment {
    padding: 10px 22px;
    border: none;
    border-radius: var(--radius-pill);
    background: var(--primary);
    color: var(--white) !important;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 16px rgba(249, 168, 37, 0.35);
}
.btn-appointment:hover {
    background: var(--primary-dark);
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.45);
}

/* Mobile navigation */
.navbar-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}
.navbar-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.navbar-toggle[aria-expanded="true"] .navbar-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.navbar-toggle[aria-expanded="true"] .navbar-toggle__bar:nth-child(2) { opacity: 0; }
.navbar-toggle[aria-expanded="true"] .navbar-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.navbar-mobile-panel {
    display: none;
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    background: var(--navy-dark);
    overflow-y: auto;
    padding: 12px 24px 40px;
    box-shadow: var(--shadow-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar-mobile-panel.is-open { display: block; }
.navbar-mobile-panel a {
    display: block;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.navbar-mobile-panel a:hover,
.navbar-mobile-panel a.active { color: var(--primary); }
.navbar-mobile-panel__group-title {
    display: block;
    margin-top: 16px;
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}
.navbar-mobile-panel .btn-appointment {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 14px;
    border-radius: var(--radius-pill);
}

@media (max-width: 1100px) {
    .navbar-links .nav-link--secondary { display: none; }
}
@media (max-width: 991px) {
    :root { --navbar-height: 68px; }
    .navbar__inner { padding: 0 16px; gap: 12px; }
    .navbar-brand__logo { width: 42px; height: 42px; }
    .navbar-brand__title { font-size: 1.15rem; }
    .navbar-brand__subtitle { max-width: 140px; font-size: 0.55rem; }
    .navbar-links { display: none; }
    .navbar-toggle { display: flex; }
    .navbar-actions .btn-appointment { display: none; }
}
@media (min-width: 992px) and (max-width: 1180px) {
    .navbar-links { gap: 0; }
    .navbar-links .nav-link { font-size: 0.82rem; padding: 8px 7px; }
    .navbar-links .nav-link::after { left: 7px; right: 7px; }
    .navbar-brand__subtitle { max-width: 160px; }
}

/* Page locator (hero strip) - full viewport width, dark overlay, title above caption */
.locator-outer {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    box-sizing: border-box;
}
.locator {
    width: 100%;
    /* Full viewport below main menu */
    --locator-height: calc(100vh - var(--navbar-height));
    min-height: var(--locator-height);
    height: var(--locator-height);
    max-height: var(--locator-height);
    position: relative;
    overflow: hidden;
}
@supports (height: 100svh) {
    .locator {
        --locator-height: calc(100svh - var(--navbar-height));
    }
}
.locator-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
}
.locator-wave svg {
    display: block;
    width: 100%;
    height: 48px;
}
.locator-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    margin-bottom: 12px;
    background: rgba(249, 168, 37, 0.25);
    border: 1px solid rgba(249, 168, 37, 0.5);
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}
.locator-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
@keyframes locator-zoom-in {
    from { transform: scale(1); }
    to { transform: scale(1.12); }
}
.locator img,
.locator-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: locator-zoom-in 5s ease-out forwards;
}
.locator-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}
.locator-text {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 28px 48px;
    text-align: center;
}
.locator-text--with-caption {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 28px 40px;
    text-align: left;
    max-width: 1080px;
    margin: 0 auto;
    left: 0;
    right: 0;
}
.locator-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.locator-text--with-caption .locator-left {
    width: auto;
    flex: 1 1 260px;
    max-width: 520px;
    align-items: flex-start;
}
.locator-title {
    font-weight: 700;
    color: #fff;
    font-size: 2.25rem;
    margin: 0 0 10px 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}
.locator-accent {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}
.locator-right {
    width: 100%;
    max-width: 640px;
}
.locator-text--with-caption .locator-right {
    flex: 1 1 280px;
    max-width: 460px;
    padding-left: 0;
    border-left: none;
}
@media (min-width: 900px) {
    .locator-text--with-caption .locator-right {
        padding-left: 36px;
        border-left: 1px solid rgba(255,255,255,0.22);
    }
}
.locator-caption {
    font-size: 1.05rem;
    font-style: italic;
    color: #fff;
    margin: 0;
    line-height: 1.65;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.locator-caption,
.locator-caption * {
    color: #fff !important;
}
@media (max-width: 768px) {
    .locator-text { padding: 20px 24px; gap: 12px; }
    .locator-text--with-caption { flex-direction: column; text-align: center; }
    .locator-text--with-caption .locator-left { align-items: center; max-width: none; }
    .locator-text--with-caption .locator-right { padding-left: 0; border-left: none; max-width: none; }
    .locator-title { font-size: 1.65rem; }
    .locator-caption { font-size: 0.95rem; }
}

/* Section headings — consistent across pages */
.section-heading {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 12px;
    line-height: 1.25;
}
.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.65;
    max-width: 36rem;
}
.section-sub--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header { text-align: center; margin-bottom: 36px; }
.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ACE curriculum highlight strip */
.ace-strip {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
    color: var(--white);
    padding: var(--section-pad) 30px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    box-sizing: border-box;
}
.ace-strip__inner { max-width: 1100px; margin: 0 auto; }
.ace-strip__intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px;
}
.ace-strip__intro h2 {
    color: var(--white);
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    margin-bottom: 12px;
}
.ace-strip__intro p { color: rgba(255,255,255,0.88); margin: 0; }
.ace-pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
@media (max-width: 991px) { .ace-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .ace-pillars { grid-template-columns: 1fr; } }
.ace-pillar {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s, background 0.2s;
}
.ace-pillar:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.12);
}
.ace-pillar__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 14px;
    color: var(--primary);
}
.ace-pillar__icon svg { width: 100%; height: 100%; }
.ace-pillar h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}
.ace-pillar p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin: 0;
    line-height: 1.5;
}

/* Buttons — unified system */
.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 12px 26px;
    border-radius: var(--radius-pill);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid transparent;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(249, 168, 37, 0.35);
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-secondary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-secondary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}
.btn-outline--light {
    color: var(--white);
    border-color: rgba(255,255,255,0.85);
}
.btn-outline--light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Page content sections */
.page-section {
    padding: var(--section-pad) 0;
}
.page-section--cream {
    background: var(--cream);
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding-left: max(30px, calc(50vw - 800px));
    padding-right: max(30px, calc(50vw - 800px));
    box-sizing: border-box;
}

/* Footer */
.footer {
    width: 100%;
    margin-top: 0;
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.9);
}
.footer__main {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.1fr;
    gap: 40px 32px;
    padding: clamp(48px, 7vw, 72px) 28px 40px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}
.footer__col { min-width: 0; }
.footer__col--brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-right: 12px;
}
.footer__logo {
    display: inline-flex;
    text-decoration: none;
    margin-bottom: 14px;
}
.footer__logo-img {
    max-width: 64px;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.footer__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}
.footer__brand-name {
    margin: 0 0 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.footer__vision {
    margin: 0 0 18px;
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
    max-width: 280px;
}
.footer__social--brand {
    margin-top: 4px;
}
.footer__heading {
    position: relative;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    padding: 0 0 12px;
    border-bottom: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer__heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
}
.footer__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.footer__nav a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    transition: color 0.2s;
}
.footer__nav a:hover { color: var(--primary); }
.footer__col--contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    width: 100%;
}
.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
}
.footer__contact-icon {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}
.footer__contact-item a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    word-break: break-word;
    transition: color 0.2s;
}
.footer__contact-item a:hover { color: var(--primary); }
.footer__register-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: var(--primary);
    color: #fff !important;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    width: auto;
    min-width: 140px;
    box-shadow: 0 8px 20px rgba(249, 168, 37, 0.28);
}
.footer__register-btn:hover {
    background: var(--primary-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(249, 168, 37, 0.38);
}

/* Footer partners — soft, not bright white cards */
.footer__col--partners {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.partners-panel--footer { width: 100%; }
.partners-panel--footer .partners-panel__heading,
.partners-panel__heading--footer {
    position: relative;
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px;
    padding: 0 0 12px;
    border-bottom: none;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.partners-panel--footer .partners-panel__heading::after,
.partners-panel__heading--footer::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    border-radius: 2px;
    background: var(--primary);
}
.partners-panel__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.partners-panel__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: none;
}
.partners-panel__item:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}
.partners-panel__item--static { cursor: default; }
.partners-panel__item img {
    max-width: 100%;
    max-height: 36px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
}
.partners-panel__item:hover img { opacity: 1; }
.partners-panel__fallback {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    line-height: 1.3;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 28px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 1140px;
    margin: 0 auto;
}
.footer__copyright,
.footer__developed {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}
.footer__developed a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}
.footer__developed a:hover { color: #fff; }
.footer__social {
    display: flex;
    gap: 10px;
}
.footer__social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: color 0.2s, background 0.2s, transform 0.2s, border-color 0.2s;
}
.footer__social-icon:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
@media (max-width: 1100px) {
    .footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 28px;
    }
}
@media (max-width: 640px) {
    .footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 20px 28px;
    }
    .footer__vision { max-width: none; }
    .footer__nav { grid-template-columns: 1fr 1fr; max-width: 320px; }
    .footer__bottom {
        padding: 16px 20px;
        flex-direction: column;
        text-align: center;
    }
    .footer__register-btn { width: 100%; max-width: 280px; }
}


/* Floating WhatsApp button (left lower side) */
.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    color: var(--white);
}
@media (max-width: 600px) {
    .whatsapp-float { left: 16px; bottom: 16px; width: 50px; height: 50px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* Wire navigate progress bar (optional) */
 [x-cloak] { display: none !important; }

.main-content { width: 100%; }
