:root {
    --bg: #f6f8fc;
    --bg-soft: #edf2fb;
    --surface: #ffffff;
    --surface-2: #f8faff;
    --text: #112e75;
    --muted: #4e618f;
    --line: #d7e0f2;
    --line-strong: #b5c4e5;
    --primary: #123a8c;
    --primary-dark: #0e2e73;
    --accent: #eb8b23;
    --accent-2: #1aa7d7;
    --sun: #f4bc3d;
    --success: #129a67;
    --danger: #c92a4f;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Plus Jakarta Sans", "Inter", sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}


h1,
h2,
h3,
h4 {
    margin: 0 0 .62rem;
    line-height: 1.2;
    font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
    letter-spacing: -.01em;
}

p {
    margin: 0 0 1rem;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1160px, calc(100% - 2.4rem));
    margin: 0 auto;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 10%, rgba(18, 58, 140, .12), transparent 36%),
        radial-gradient(circle at 90% 14%, rgba(26, 167, 215, .1), transparent 40%),
        radial-gradient(circle at 84% 84%, rgba(235, 139, 35, .09), transparent 42%),
        linear-gradient(180deg, #fbfcff 0%, #f3f7ff 46%, #eef3fc 100%);
}

.site-topbar {
    background: #0f2f78;
    color: #dbe7ff;
    font-size: .9rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .72rem 0;
}

.topbar-note,
.topbar-links {
    display: flex;
    align-items: center;
    gap: .72rem;
    flex-wrap: wrap;
}

.topbar-badge {
    display: inline-flex;
    align-items: center;
    padding: .28rem .65rem;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
    color: #0f2f78;
    background: #ffd59c;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.topbar-links a {
    color: #f2f7ff;
    font-weight: 700;
}

.topbar-links a:hover {
    color: #9be4ff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(146, 170, 223, .25);
    background: rgba(249, 252, 255, .9);
    transition: box-shadow .22s ease, background-color .22s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 22px rgba(16, 45, 113, .1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .9rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
}

.brand img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(14, 42, 110, .16);
}

.brand-text strong {
    display: block;
    font-size: 1.04rem;
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-size: .78rem;
    margin-top: -.12rem;
}

.global-search {
    flex: 1;
    max-width: 470px;
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .22rem;
    border: 1px solid #b9cbee;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(17, 53, 130, .08);
}

.global-search:focus-within {
    border-color: #5f8fe0;
    box-shadow: 0 0 0 3px rgba(26, 167, 215, .16);
}

.global-search input {
    flex: 1;
    border: 0;
    min-width: 0;
    padding: .58rem .8rem .58rem .95rem;
    background: transparent;
    color: var(--text);
    font: inherit;
}

.global-search input::placeholder {
    color: #6e80a8;
}

.global-search input:focus {
    outline: none;
}

.global-search button {
    border: 0;
    min-width: 96px;
    padding: .58rem .95rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #1b4daf);
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .01em;
    box-shadow: 0 8px 14px rgba(18, 58, 140, .24);
    transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
    cursor: pointer;
}

.global-search button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 10px 16px rgba(18, 58, 140, .28);
}

.global-search button:active {
    transform: translateY(0);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.nav-link {
    padding: .64rem .92rem;
    border-radius: 999px;
    color: #1f376d;
    font-weight: 700;
    transition: all .15s ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: #0f2f78;
    background: #e6eefc;
}

.portal-link {
    margin-left: .45rem;
    padding: .74rem 1rem;
    border-radius: 999px;
    font-size: .88rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, #1b4daf 100%);
    box-shadow: 0 12px 20px rgba(18, 58, 140, .23);
}


.portal-link-secondary {
    background: linear-gradient(135deg, #d57612 0%, var(--accent) 100%);
    box-shadow: 0 12px 20px rgba(235, 139, 35, .22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    background: #e6eeff;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: #27458d;
}

.site-main {
    padding-bottom: 3rem;
}

.hero-slider-wrap {
    padding: .9rem 0 .45rem;
}

.hero-slider-fullbleed {
    width: 100%;
}

.hero-banner-slider .slider-track {
    min-height: 420px;
}

.hero-banner-slider {
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
}

.hero-banner-slider .slide img {
    height: 420px;
}

.hero-banner-slider .slide figcaption {
    display: grid;
    gap: .18rem;
    padding: 1rem 1.1rem;
}

.hero-banner-slider figcaption strong {
    font-size: 1.2rem;
}

.hero-banner-slider figcaption span {
    color: #d7e9ff;
}

.hero-udemy {
    padding: .8rem 0 1rem;
}

.hero-shell {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 1rem;
    align-items: stretch;
}

.hero-shell-single {
    grid-template-columns: 1fr;
}

.hero-left {
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: clamp(1.2rem, 2.4vw, 2rem);
    background:
        radial-gradient(circle at 90% 10%, rgba(244, 188, 61, .23), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.learn-panel {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1rem;
    align-items: start;
}

.hero-left h1 {
    font-size: clamp(1.75rem, 3.2vw, 2.7rem);
    max-width: 16ch;
}

.hero-subtext {
    color: var(--muted);
    max-width: 55ch;
}

.hero-search {
    margin: .9rem 0 .8rem;
    display: flex;
    border: 1px solid #c0d1ef;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    max-width: 620px;
}

.hero-search input {
    flex: 1;
    border: 0;
    padding: .85rem .95rem;
    font: inherit;
}

.hero-search input:focus {
    outline: none;
}

.hero-search button {
    border: 0;
    min-width: 130px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #1b4daf);
    font-weight: 800;
    cursor: pointer;
}

.quick-topics {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.quick-topics a {
    display: inline-flex;
    align-items: center;
    padding: .38rem .75rem;
    border-radius: 999px;
    border: 1px solid #cad8f2;
    color: #234380;
    background: #fff;
    font-size: .82rem;
    font-weight: 700;
}

.learn-points {
    list-style: none;
    margin: 0;
    padding: .2rem 0 0;
    display: grid;
    gap: .62rem;
}

.learn-points li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: .42rem;
    align-items: start;
    padding-bottom: .55rem;
    border-bottom: 1px solid #d7e4f7;
}

.learn-points li:last-child {
    border-bottom: 0;
}

.learn-points span {
    color: #2e477b;
    font-size: .92rem;
}

.hero-right {
    display: grid;
    gap: .8rem;
    align-content: start;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    min-height: 300px;
}

.hero-metrics {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
}

.hero-metrics li {
    display: grid;
    gap: .12rem;
    padding-top: .35rem;
    border-top: 2px solid #cfdcf3;
}

.hero-metrics span {
    font-size: .83rem;
    color: var(--muted);
}

.hero-metrics .stat-value {
    margin: 0;
    color: var(--primary);
}

.hero-highlight {
    margin-top: 0;
    border-radius: 0;
    border: 0;
    background: transparent;
    padding: 0;
}

.hero-highlight strong {
    line-height: 1.4;
    margin-bottom: 0;
}

.hero-highlight p {
    margin: 0;
    color: var(--muted);
}

.trusted-rail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .9rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: .7rem 0;
}

.trusted-rail p {
    margin: 0;
    color: #2a467d;
    font-weight: 700;
}

.trusted-rail div {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.trusted-rail span {
    display: inline-flex;
    align-items: center;
    padding: .2rem .2rem;
    color: #26457f;
    font-size: .8rem;
    font-weight: 700;
}

.journey-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.journey-strip article {
    padding-bottom: .7rem;
    border-bottom: 2px solid #cfdcf3;
}

.journey-strip p {
    color: var(--muted);
    margin: 0;
}

.testimonial-slider {
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
}

.testimonial-slider .slider-track {
    min-height: 255px;
}

.testimonial-slide {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 1.15rem;
}

.testimonial-quote {
    margin: 0;
    color: #25437a;
    font-size: 1.05rem;
    line-height: 1.65;
}

.testimonial-carousel {
    display: grid;
    gap: .75rem;
}

.testimonial-viewport {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: .8rem;
}

.testimonial-track {
    display: flex;
    gap: .8rem;
    transition: transform .3s ease;
    will-change: transform;
}

.testimonial-carousel .testimonial-card {
    flex: 0 0 calc((100% - 1.6rem) / 3);
    min-width: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: flex-end;
    gap: .45rem;
}

.testimonial-controls .slider-btn {
    position: static;
    transform: none;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), #1b4daf);
}

.testimonial-controls .slider-btn:disabled {
    opacity: .4;
    cursor: not-allowed;
}

.hero {
    padding: 2.6rem 0 1.6rem;
}

.hero-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1.08fr .92fr;
}

.hero-copy {
    border-radius: 26px;
    padding: clamp(1.5rem, 2.8vw, 2.3rem);
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(255,255,255,.15), transparent 30%),
        linear-gradient(126deg, #10337f 0%, #1547a2 58%, #1a96c7 100%);
    box-shadow: 0 24px 36px rgba(18, 58, 140, .24);
}

.hero-copy h1 {
    font-size: clamp(1.7rem, 3.2vw, 2.8rem);
}

.hero-copy p {
    color: rgba(239, 247, 255, .95);
}

.hero-actions {
    margin-top: 1.2rem;
    display: flex;
    gap: .7rem;
    flex-wrap: wrap;
}

.hero-badges {
    margin-top: 1rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(245, 188, 61, .18);
    padding: .38rem .7rem;
    font-size: .82rem;
    font-weight: 700;
}

.hero-panel {
    border-radius: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    padding: .85rem;
    box-shadow: 0 18px 30px rgba(13, 42, 100, .11);
}

.image-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #cdddfb;
    background: #f2f7ff;
}

.slider-track {
    min-height: 320px;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease;
    margin: 0;
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.slide figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: .85rem 1rem;
    color: #eaf3ff;
    font-size: .92rem;
    background: linear-gradient(180deg, rgba(8, 23, 55, .04), rgba(8, 23, 55, .86));
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    color: #fff;
    background: rgba(13, 40, 102, .8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.slider-btn:hover {
    background: rgba(16, 47, 120, .94);
}

.slider-btn .ui-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    flex: 0 0 24px;
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 46px;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: .4rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    background: rgba(255,255,255,.55);
}

.slider-dot.is-active {
    background: #9dd8ff;
}

.stats {
    margin: .3rem 0 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .85rem;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: var(--surface);
}

.metric {
    padding: .95rem 1rem;
    border-right: 1px solid var(--line);
}

.metric:last-child {
    border-right: 0;
}

.metric .stat-value {
    margin-bottom: .15rem;
}

.goal-strip,
.service-lines,
.values-list,
.process-steps,
.info-list {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.goal-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.goal-item {
    padding: 1rem;
    border-right: 1px solid var(--line);
}

.goal-item:last-child {
    border-right: 0;
}

.goal-item h3 {
    margin-bottom: .35rem;
}

.goal-item p {
    margin: 0;
    color: var(--muted);
}

.stat-card {
    border-radius: 18px;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 1rem;
    box-shadow: none;
}

.stat-value {
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    color: #123377;
    margin-bottom: .2rem;
}

.stat-label {
    color: var(--muted);
    margin-bottom: 0;
}

.section {
    padding: 1.9rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255,255,255,.58) 0%, rgba(242, 246, 255, .92) 100%);
}

.section-head {
    margin-bottom: 1rem;
}

.kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: .75rem;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #d67818;
    font-weight: 800;
}

.home-lead {
    color: #2f4270;
    max-width: 66ch;
}

.feature-grid,
.course-grid,
.category-grid,
.value-grid,
.contact-service-grid,
.mission-grid,
.timeline,
.trust-strip,
.testimonial-grid {
    display: grid;
    gap: .85rem;
}

.feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.course-grid-wide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-grid,
.value-grid,
.contact-service-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
    grid-template-columns: 1fr;
}

.feature-card,
.course-card,
.testimonial-card,
.category-card,
.value-card,
.service-card,
.info-card,
.contact-form-wrap,
.mission-card,
.filter-panel {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: none;
}

.card-title {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.ui-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    color: #123a8c;
    background: linear-gradient(150deg, #eaf0fd 0%, #e5f6ff 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
}

.ui-icon svg {
    display: block;
}

.course-card {
    display: flex;
    flex-direction: column;
    padding: .72rem;
    border-radius: 16px;
}

.testimonial-card {
    display: grid;
    gap: .85rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    padding: 1rem;
}

.testimonial-card p {
    margin: 0;
    color: #23437a;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.testimonial-user img {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-user strong {
    display: block;
    line-height: 1.2;
}

.testimonial-user span {
    font-size: .83rem;
    color: var(--muted);
}

.course-media {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d4e0f5;
    margin-bottom: .72rem;
}

.course-media img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.course-card h3 {
    font-size: 1.03rem;
    margin-bottom: .35rem;
}

.course-card .btn {
    width: 100%;
}

.course-card.with-thumb {
    padding: .72rem;
}

.course-thumb {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #cfe0ff;
    background: #eef5ff;
    margin-bottom: .72rem;
}

.course-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-category {
    color: #0f7ba0;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
    margin-bottom: .35rem;
}

.course-description,
.feature-card p,
.category-card p,
.value-card p,
.service-card p,
.mission-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.course-meta {
    margin-top: .9rem;
    display: flex;
    justify-content: space-between;
    gap: .5rem;
    font-weight: 700;
    color: #123a8c;
}

.course-actions {
    margin-top: auto;
    padding-top: .9rem;
}

.card-inline-action {
    margin-top: .8rem;
}

.course-list {
    display: grid;
    gap: .72rem;
}

.partner-band {
    display: grid;
    gap: .8rem;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: .9rem 0;
}

.partner-band > p {
    margin: 0;
    font-weight: 700;
    color: #2a467d;
}

.partner-logos {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.partner-logos span {
    display: inline-flex;
    align-items: center;
    padding: .36rem .72rem;
    border-radius: 999px;
    border: 1px solid #cdd8ec;
    background: #fff;
    font-size: .82rem;
    font-weight: 700;
    color: #2a467d;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
}

.purpose-item {
    padding-bottom: .8rem;
    border-bottom: 2px solid #cfdcf3;
}

.purpose-item h3 {
    margin-bottom: .35rem;
}

.purpose-item p {
    margin: 0;
    color: var(--muted);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: center;
}

.split-layout.reverse .split-media {
    order: 2;
}

.split-layout.reverse .split-content {
    order: 1;
}

.split-media {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: #fff;
}

.split-media img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}

.split-content h2 {
    margin-bottom: .65rem;
}

.split-content p {
    color: var(--muted);
}

.certificate-showcase {
    align-items: stretch;
}

.certificate-note {
    margin-top: 1rem;
    padding: .85rem 1rem;
    border: 1px solid #cfe0fb;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    color: #24457f;
    font-weight: 600;
}

.certificate-qr-panel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-qr-card {
    width: min(100%, 420px);
    padding: 1.1rem;
    border-radius: 24px;
    border: 1px solid #c8d8f5;
    background:
        radial-gradient(circle at top, rgba(26, 167, 215, .16), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    box-shadow: 0 18px 36px rgba(18, 58, 140, .12);
}

.certificate-qr-placeholder {
    min-height: 320px;
    border: 2px dashed #8aa9df;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: 1.2rem;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(18, 58, 140, .04) 0%, rgba(26, 167, 215, .08) 100%);
    color: #1d438d;
}

.certificate-qr-placeholder span {
    font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.certificate-qr-placeholder small {
    color: #4f6795;
    font-size: .92rem;
}

.clean-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--muted);
    display: grid;
    gap: .45rem;
}

.stats-line {
    margin-top: .7rem;
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
}

.stats-line span {
    font-size: .9rem;
    color: #234883;
}

.stats-line strong {
    color: var(--primary);
    font-size: 1.05rem;
}

.impact-lines {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.impact-lines article {
    border-top: 2px solid #cfdcf3;
    padding-top: .65rem;
}

.impact-lines p {
    margin: 0;
    color: var(--muted);
}

.support-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
}

.support-steps article {
    padding: .9rem 1rem;
    border-right: 1px solid var(--line);
}

.support-steps article:last-child {
    border-right: 0;
}

.support-steps strong {
    display: inline-block;
    margin-bottom: .35rem;
    color: #1a438e;
}

.support-steps p {
    margin: 0;
    color: var(--muted);
}

.form-panel {
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1rem;
    background: #fff;
}

.clean-info {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: .7rem 0;
}

.clean-info p {
    margin: .35rem 0;
    color: #2d487f;
}

.course-row {
    display: grid;
    grid-template-columns: 1.2fr auto auto auto;
    align-items: center;
    gap: .9rem;
    padding: .95rem 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.course-row h3 {
    margin: .15rem 0;
}

.course-row p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.course-row .course-meta {
    margin: 0;
    min-width: 115px;
}

.pill-cloud {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: .4rem .76rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .82rem;
    border: 1px solid #c8d5ef;
    background: #fff;
    color: #254888;
}

.section-action {
    text-align: center;
    margin-top: 1rem;
}

.page-hero {
    padding: 2.2rem 0 1rem;
}

.page-hero .container {
    border-radius: 24px;
    padding: clamp(1.4rem, 2.5vw, 2rem);
    background:
        radial-gradient(circle at 82% 20%, rgba(255,255,255,.16), transparent 32%),
        linear-gradient(126deg, #10337f 0%, #1547a2 58%, #1a96c7 100%);
    color: #fff;
    box-shadow: 0 20px 30px rgba(18, 58, 140, .22);
}

.page-hero .kicker {
    color: #bde2ff;
}

.page-hero p {
    color: rgba(235, 246, 255, .94);
    max-width: 70ch;
}

.impact-band {
    border-radius: 20px;
    background: linear-gradient(125deg, #10337f 0%, #1547a2 58%, #1a96c7 100%);
    color: #fff;
    padding: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.impact-band .kicker {
    color: #a7d8ff;
}

.impact-band p {
    color: rgba(238, 248, 255, .94);
}

.timeline-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: .9rem;
    align-items: start;
    padding: .9rem 0;
    border-bottom: 1px solid var(--line);
}

.timeline-item:last-child {
    border-bottom: 0;
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: .4rem .7rem;
    color: #fff;
    font-size: .84rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #2156b6);
}

.trust-item p,
.timeline-item p,
.info-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.trust-strip {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
    gap: 0;
}

.trust-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: .7rem;
    align-items: center;
    padding: 1rem;
    border-right: 1px solid var(--line);
}

.trust-item:last-child {
    border-right: 0;
}

.service-lines {
    display: grid;
}

.service-line {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .7rem;
    align-items: start;
    padding: .9rem 1rem;
    border-bottom: 1px solid var(--line);
}

.service-line:last-child {
    border-bottom: 0;
}

.service-line p {
    color: var(--muted);
    margin: 0;
}

.values-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.values-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .7rem;
    align-items: start;
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--line);
}

.values-list li:last-child {
    border-bottom: 0;
}

.values-list p {
    color: var(--muted);
    margin: .2rem 0 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-step {
    padding: 1rem;
    border-right: 1px solid var(--line);
}

.process-step:last-child {
    border-right: 0;
}

.process-step p {
    color: var(--muted);
    margin: .3rem 0 0;
}

.info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.info-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: .7rem;
    padding: .85rem 1rem;
    border-bottom: 1px solid var(--line);
}

.info-list li:last-child {
    border-bottom: 0;
}

.info-list p {
    color: var(--muted);
    margin: .15rem 0 0;
}

.filter-panel {
    display: grid;
    grid-template-columns: 1.2fr .9fr auto;
    align-items: end;
    gap: .72rem;
}

.filter-actions {
    display: flex;
    gap: .52rem;
    flex-wrap: wrap;
}

.chip-row {
    display: flex;
    gap: .55rem;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .44rem .86rem;
    border-radius: 999px;
    border: 1px solid #bfd2f9;
    background: #fff;
    color: #1b3d87;
    font-size: .84rem;
    font-weight: 700;
    transition: all .15s ease;
}

.chip:hover {
    border-color: #8eb2f3;
    background: #f4f8ff;
}

.chip.is-active {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), #1b4daf);
    box-shadow: 0 10px 18px rgba(18, 58, 140, .2);
}

.input-label {
    display: inline-flex;
    align-items: center;
    gap: .34rem;
    margin-bottom: .3rem;
    color: #36528e;
    font-size: .84rem;
    font-weight: 700;
}

.input-label .ui-icon {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    flex: 0 0 22px;
}

.input-field,
.select-field,
textarea.input-field {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    padding: .66rem .74rem;
    color: var(--text);
    background: var(--surface);
    font: inherit;
}

.input-field:focus,
.select-field:focus,
textarea.input-field:focus {
    outline: 2px solid rgba(26, 167, 215, .22);
    border-color: #4aa3db;
}

.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: .85rem;
    align-items: start;
}

.contact-map {
    display: grid;
    gap: .85rem;
}

.contact-map-copy {
    max-width: 62ch;
}

.contact-map-copy p:last-child {
    color: var(--muted);
    margin-bottom: 0;
}

.contact-map-frame {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(15, 43, 98, .08);
}

.contact-map-frame iframe {
    display: block;
    width: 100%;
    min-height: 380px;
    border: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .85rem;
}

.faq-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 10px 20px rgba(15, 43, 98, .07);
}

.faq-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.contact-info {
    display: grid;
    gap: .8rem;
}

.contact-form {
    display: grid;
    gap: .8rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .74rem;
}

.text-link {
    color: #1148a2;
    font-weight: 700;
}

.alert {
    border-radius: 12px;
    padding: .75rem .85rem;
    font-size: .93rem;
    border: 1px solid;
    margin-bottom: .9rem;
}

.alert.success {
    color: #0f6c4d;
    border-color: rgba(18, 154, 103, .35);
    background: rgba(196, 250, 231, .75);
}

.alert.error {
    color: #8e2140;
    border-color: rgba(201, 42, 79, .3);
    background: rgba(255, 228, 236, .8);
}

.alert.error ul {
    margin: 0;
    padding-left: 1.1rem;
}

.empty-state {
    color: var(--muted);
    border-style: dashed;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: .7rem 1.08rem;
    font-weight: 800;
    font-size: .89rem;
    cursor: pointer;
    transition: transform .13s ease, box-shadow .13s ease, background-color .13s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #1b4daf);
    box-shadow: 0 12px 20px rgba(18, 58, 140, .2);
}

.btn-outline {
    color: #123a8c;
    border-color: #b8cdf5;
    background: #fff;
}

.footer-cta {
    padding-top: 1.4rem;
}

.footer-cta-wrap {
    border-radius: 24px;
    padding: 1.5rem 1.45rem;
    color: #fff;
    background:
        radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
        radial-gradient(circle at 10% 90%, rgba(255, 213, 156, .12), transparent 28%),
        linear-gradient(125deg, #10337f 0%, #1547a2 56%, #1a96c7 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 18px 32px rgba(18, 58, 140, .22);
}

.footer-cta-copy {
    max-width: 60ch;
}

.footer-cta-wrap p {
    margin: 0;
    color: #e1efff;
}

.footer-cta-actions {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.site-footer {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    color: #dce8ff;
    padding: 2.2rem 0 1rem;
    background:
        radial-gradient(circle at 15% 8%, rgba(26, 167, 215, .18), transparent 22%),
        radial-gradient(circle at 90% 22%, rgba(235, 139, 35, .16), transparent 24%),
        linear-gradient(180deg, #0c255f 0%, #0f2f78 46%, #0b245d 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,.03), transparent 30%);
    pointer-events: none;
}

.footer-main {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1.35fr;
    gap: 1.4rem;
    align-items: start;
}

.footer-brand {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .95rem;
    align-items: start;
    padding-right: .5rem;
}

.footer-mark {
    display: inline-flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-brand img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 12px 20px rgba(8, 24, 65, .26);
}

.footer-brand-copy {
    display: grid;
    gap: .35rem;
}

.footer-brand-copy h3 {
    margin-bottom: .15rem;
    font-size: 1.45rem;
}

.footer-brand-copy p {
    margin: 0;
    color: #c0d3f7;
}

.footer-badges {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap;
    margin-top: .45rem;
}

.footer-badges span {
    display: inline-flex;
    align-items: center;
    padding: .34rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(205, 221, 251, .22);
    background: rgba(255, 255, 255, .08);
    color: #eff6ff;
    font-size: .76rem;
    font-weight: 700;
}

.footer-social {
    margin-top: .4rem;
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(199, 220, 255, .26);
    background: rgba(255, 255, 255, .1);
    color: #f2f8ff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(4, 14, 39, .16);
    transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

.footer-social a:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .16);
    border-color: rgba(255, 255, 255, .4);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-nav-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: .25rem 0 0;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
}

.site-footer p {
    color: #b6caef;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin: 0 0 .45rem;
}

.site-footer a {
    color: #deebff;
}

.footer-col {
    padding-left: .15rem;
}

.footer-col h4 {
    margin-bottom: .7rem;
    font-size: 1rem;
}

.footer-col ul {
    display: grid;
    gap: .45rem;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    color: #dceaff;
}

.footer-col a:hover {
    color: #9be4ff;
}

.footer-subscribe-bar {
    position: relative;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(173, 195, 240, .2);
    border-radius: 20px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(10px);
}

.footer-subscribe-copy {
    max-width: 54ch;
}

.footer-subscribe-copy h4 {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.45;
}

.footer-subscribe-copy .kicker {
    margin-bottom: .25rem;
}

.footer-subscribe {
    display: flex;
    gap: .45rem;
    align-items: stretch;
}

.footer-subscribe input {
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(196, 218, 255, .38);
    border-radius: 10px;
    padding: .55rem .65rem;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font: inherit;
}

.footer-subscribe input::placeholder {
    color: #c5d9ff;
}

.footer-subscribe button {
    border: 0;
    border-radius: 10px;
    padding: .55rem .8rem;
    color: #0f2f78;
    background: #ffd59c;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 8px 14px rgba(255, 213, 156, .16);
}

.footer-strip {
    position: relative;
    margin-top: .9rem;
    padding: .9rem 0 0;
    border-top: 1px solid rgba(173, 195, 240, .18);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .8rem;
}

.footer-strip > div {
    padding: .25rem 0;
}

.footer-strip span {
    display: block;
    color: #b6ccf7;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    margin-bottom: .25rem;
}

.footer-strip strong {
    color: #fff;
    font-size: .98rem;
    font-weight: 700;
}

.footer-bottom {
    position: relative;
    margin-top: .9rem;
    border-top: 1px solid rgba(173, 195, 240, .22);
    padding-top: .85rem;
    color: #9fb7e7;
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    flex-wrap: wrap;
}

.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #1b4daf);
    box-shadow: 0 10px 16px rgba(18, 58, 140, .28);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    z-index: 55;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .2s ease, transform .2s ease;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

[data-animate] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .45s ease, transform .45s ease;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-shell {
        grid-template-columns: 1fr;
    }

    .learn-panel {
        grid-template-columns: 1fr;
    }

    .trusted-rail {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-grid,
    .feature-grid,
    .feature-grid-4,
    .course-grid,
    .course-grid-wide,
    .testimonial-grid,
    .category-grid,
    .value-grid,
    .contact-service-grid,
    .trust-strip,
    .contact-layout,
    .mission-grid,
    .filter-panel,
    .footer-main,
    .footer-nav-grid,
    .footer-subscribe-bar,
    .footer-strip,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .stats-band,
    .goal-strip,
    .process-steps,
    .support-steps,
    .purpose-grid,
    .impact-lines,
    .split-layout,
    .journey-strip {
        grid-template-columns: 1fr;
    }

    .metric,
    .goal-item,
    .process-step,
    .trust-item,
    .support-steps article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .metric:last-child,
    .goal-item:last-child,
    .process-step:last-child,
    .trust-item:last-child,
    .support-steps article:last-child {
        border-bottom: 0;
    }

    .course-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .impact-band,
    .footer-cta-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-map-frame iframe {
        min-height: 320px;
    }
}

@media (max-width: 980px) {
    .global-search {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }

    .site-nav {
        position: absolute;
        right: 1rem;
        top: 74px;
        display: none;
        width: min(320px, calc(100% - 2rem));
        flex-direction: column;
        align-items: stretch;
        gap: .3rem;
        border-radius: 14px;
        border: 1px solid #cbdbfb;
        background: #fff;
        box-shadow: 0 16px 24px rgba(14, 41, 95, .18);
        padding: .7rem;
    }

    .site-nav.open {
        display: flex;
    }

    .portal-link {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .topbar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .container {
        width: calc(100% - 1.4rem);
    }

    .brand {
        gap: .45rem;
    }

    .brand img {
        display: none;
    }

    .brand-text {
        display: block;
    }

    .brand-text small {
        display: none;
    }

    .brand-text strong {
        font-size: .95rem;
    }

    .footer-main {
        gap: 1rem;
    }

    .footer-brand {
        grid-template-columns: 1fr;
        padding-right: 0;
    }

    .footer-mark {
        margin-bottom: .1rem;
    }

    .footer-brand img {
        width: 56px;
        height: 56px;
    }

    .footer-subscribe-bar {
        align-items: flex-start;
        padding: .95rem;
    }

    .hero-copy,
    .hero-left,
    .hero-right,
    .hero-panel,
    .feature-card,
    .course-card,
    .category-card,
    .value-card,
    .service-card,
    .info-card,
    .contact-form-wrap,
    .mission-card,
    .timeline-item,
    .trust-item,
    .filter-panel,
    .page-hero .container,
    .impact-band,
    .footer-cta-wrap {
        border-radius: 14px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .metric {
        padding: .8rem .9rem;
    }

    .slide img {
        height: 280px;
    }

    .hero-slider-wrap {
        padding-top: .55rem;
    }

    .hero-banner-slider .slider-track,
    .hero-banner-slider .slide img {
        min-height: 260px;
        height: 260px;
    }

    .hero-search {
        flex-direction: column;
        border-radius: 12px;
    }

    .hero-search button {
        width: 100%;
        min-height: 44px;
    }

    .hero-image {
        min-height: 220px;
    }

    .testimonial-carousel .testimonial-card {
        flex-basis: 100%;
    }

    .slider-dots {
        bottom: 38px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .footer-subscribe {
        flex-direction: column;
        width: 100%;
    }

    .footer-subscribe input,
    .footer-subscribe button {
        width: 100%;
    }

    .footer-strip {
        gap: .55rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-map-frame iframe {
        min-height: 280px;
    }
}
