:root {
    --navy-950: #10182f;
    --navy-900: #162145;
    --navy-800: #1c2a4c;
    --navy-700: #243764;
    --navy-600: #2f4375;
    --gold-500: #e6a100;
    --gold-400: #ffb300;
    --green-500: #88bf2f;
    --green-600: #5f9822;
    --orange-500: #ff7a2f;
    --cyan-400: #2ab6f0;
    --ink: #18213b;
    --muted: #64708a;
    --surface: #ffffff;
    --surface-2: #f4f7fb;
    --line: rgba(28, 42, 76, 0.12);
    --glass: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 18px 50px rgba(16, 24, 47, 0.12);
    --shadow-strong: 0 28px 80px rgba(16, 24, 47, 0.22);
    --radius: 8px;
    --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
    --font-display: "Space Grotesk", system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--surface-2);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    border: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    margin: 0;
    line-height: 1.05;
    letter-spacing: 0;
}

p {
    margin: 0;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 12px;
    top: -100px;
    padding: 10px 14px;
    background: var(--gold-500);
    color: var(--navy-950);
    z-index: 1000;
    border-radius: var(--radius);
    font-weight: 800;
}

.skip-link:focus {
    top: 12px;
}

.page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--navy-950);
    transition: opacity 0.55s ease, visibility 0.55s ease;
}

body.loaded .page-loader {
    opacity: 0;
    visibility: hidden;
}

.loader-mark {
    position: relative;
    width: 104px;
    height: 104px;
    display: grid;
    place-items: center;
}

.loader-mark img {
    width: 78px;
    height: 78px;
    border-radius: 50%;
}

.loader-mark span {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(255, 179, 0, 0.18);
    border-top-color: var(--gold-400);
    border-right-color: var(--green-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding-block: 16px;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(16, 24, 47, 0.84), rgba(16, 24, 47, 0.08));
    opacity: 1;
    pointer-events: none;
}

.site-header.scrolled {
    padding-block: 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(16, 24, 47, 0.12);
}

.site-header.scrolled::before {
    opacity: 0;
}

.nav-wrap {
    display: grid;
    grid-template-columns: minmax(245px, 1fr) auto minmax(160px, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 74px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

.site-header.scrolled .nav-wrap {
    min-height: 66px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(28, 42, 76, 0.1);
    box-shadow: 0 16px 42px rgba(16, 24, 47, 0.12);
}

.brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 5px 12px 5px 5px;
    border-radius: var(--radius);
    transition: background 0.25s ease, transform 0.25s ease;
}

.brand:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    padding: 4px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 26px rgba(230, 161, 0, 0.2);
    transition: width 0.3s ease, height 0.3s ease;
}

.site-header.scrolled .brand img {
    width: 52px;
    height: 52px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    color: #fff;
    font-weight: 800;
    font-size: 1.08rem;
}

.brand small {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    font-weight: 700;
}

.site-header.scrolled .brand strong {
    color: var(--navy-800);
}

.site-header.scrolled .brand small {
    color: var(--green-600);
}

.site-header.scrolled .brand {
    background: rgba(28, 42, 76, 0.04);
}

.desktop-nav {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-self: center;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
    backdrop-filter: blur(18px);
    border-radius: var(--radius);
    overflow: visible;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.premium-nav::before {
    content: "";
    position: absolute;
    inset: 6px auto 6px 6px;
    width: var(--nav-glow-width, 58px);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.28), rgba(136, 191, 47, 0.2));
    opacity: 0;
    transform: translateX(var(--nav-glow-x, 0));
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(.2,.9,.2,1), width 0.25s ease;
}

.premium-nav:hover::before {
    opacity: 1;
}

.desktop-nav a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 800;
    font-size: 0.9rem;
    line-height: 1;
    min-height: 42px;
    padding: 11px 13px;
    border-radius: 6px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.nav-actions {
    justify-self: end;
    display: flex;
    align-items: center;
}

.nav-register-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 54px;
    padding: 14px 20px;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    box-shadow: 0 18px 38px rgba(230, 161, 0, 0.3);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.nav-register-btn svg {
    width: 21px;
    height: 21px;
}

.nav-register-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    box-shadow: 0 16px 34px rgba(95, 152, 34, 0.32);
    transform: translateY(-2px);
}

.nav-register-btn.active {
    color: #fff;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    box-shadow: 0 16px 34px rgba(95, 152, 34, 0.32);
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--navy-950);
    background: var(--gold-400);
    transform: translateY(-2px);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--green-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    transform: scaleX(1);
}

.site-header.scrolled .desktop-nav {
    border-color: rgba(28, 42, 76, 0.08);
    background: rgba(28, 42, 76, 0.04);
}

.site-header.scrolled .desktop-nav a {
    color: var(--navy-800);
}

.site-header.scrolled .desktop-nav a:hover,
.site-header.scrolled .desktop-nav a.active {
    color: var(--navy-950);
}

.site-header.scrolled .nav-register-btn {
    color: var(--navy-950);
}

.site-header.scrolled .nav-register-btn:hover {
    color: #fff;
}

.site-header.scrolled .nav-register-btn.active {
    color: #fff;
}

.nav-dropdown {
    position: relative;
    z-index: 5;
}

.nav-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    width: 246px;
    display: grid;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(28, 42, 76, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 24px 68px rgba(16, 24, 47, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -15px;
    height: 15px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    justify-content: flex-start;
    min-height: 44px;
    color: var(--navy-900) !important;
    background: transparent;
    box-shadow: none;
    padding: 11px 12px;
}

.nav-dropdown-menu a svg {
    width: 18px;
    height: 18px;
    color: var(--green-600);
}

.nav-dropdown-menu a:hover {
    color: var(--navy-950) !important;
    background: rgba(230, 161, 0, 0.13);
    transform: translateX(3px);
}

.nav-dropdown-menu a::after {
    display: none;
}

.site-header.scrolled .icon-btn {
    color: #fff;
    background: var(--navy-900);
    border-color: rgba(28, 42, 76, 0.14);
}

.nav-call {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    padding: 12px 16px;
    border-radius: var(--radius);
    font-weight: 900;
    box-shadow: 0 16px 35px rgba(95, 152, 34, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(95, 152, 34, 0.34);
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.icon-btn:hover {
    transform: translateY(-2px);
    background: var(--gold-400);
    color: var(--navy-950);
}

.menu-toggle {
    display: none;
}

.mobile-panel {
    position: fixed;
    top: 96px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(16, 24, 47, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-height: calc(100vh - 116px);
    overflow: auto;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}

.mobile-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-panel a {
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    font-weight: 800;
}

.mobile-panel a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-subnav {
    display: grid;
    gap: 6px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-subnav-toggle {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    color: var(--gold-400);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    font-weight: 900;
}

.mobile-subnav-toggle span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mobile-subnav-toggle > svg:last-child {
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.mobile-subnav.open .mobile-subnav-toggle > svg:last-child {
    transform: rotate(180deg);
}

.mobile-subnav-links {
    display: grid;
    gap: 6px;
    padding-top: 4px;
}

.mobile-subnav-links[hidden] {
    display: none;
}

.mobile-subnav-links a {
    padding-left: 34px;
}

.mobile-panel .mobile-register {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
}

.mobile-panel .mobile-register.active {
    color: #fff;
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
}

.hero-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
    padding-block: 140px 96px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -4;
    background:
        radial-gradient(circle at 18% 28%, rgba(230, 161, 0, 0.22), transparent 23%),
        radial-gradient(circle at 76% 20%, rgba(136, 191, 47, 0.18), transparent 28%),
        linear-gradient(90deg, rgba(16, 24, 47, 0.97) 0%, rgba(28, 42, 76, 0.84) 52%, rgba(16, 24, 47, 0.66) 100%),
        url("../img/b1.jpg") center / cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 16s ease-in-out infinite alternate;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
    animation: gridMove 18s linear infinite;
}

.particle-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.75;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 42px;
}

.hero-copy {
    width: min(700px, 100%);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-400);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.76rem;
}

.hero-section .eyebrow {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.24);
    box-shadow: 0 14px 36px rgba(230, 161, 0, 0.12);
}

.hero-copy h1 {
    margin-top: 18px;
    font-size: 4.35rem;
    max-width: 780px;
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.typing-line {
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    font-weight: 800;
}

#typedText {
    color: var(--gold-400);
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1.1em;
    margin-left: 4px;
    background: var(--green-500);
    vertical-align: text-bottom;
    animation: blink 0.8s infinite;
}

.hero-lead {
    max-width: 620px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-weight: 900;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-950);
    box-shadow: 0 20px 45px rgba(230, 161, 0, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 24px 56px rgba(230, 161, 0, 0.36);
}

.btn-ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, 0.45);
}

.ripple {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    transform: translate(-50%, -50%) scale(1);
    animation: ripple 0.65s ease-out forwards;
    pointer-events: none;
    z-index: -1;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.hero-proof strong {
    color: var(--gold-400);
}

.hero-tech-orbit {
    --outer-radius: 198px;
    --inner-radius: 132px;
    position: relative;
    justify-self: end;
    width: 470px;
    max-width: 100%;
    aspect-ratio: 1;
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.24));
}

.hero-tech-orbit::before {
    content: "";
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 179, 0, 0.18), rgba(42, 182, 240, 0.08) 46%, transparent 68%);
}

.orbit-center {
    position: absolute;
    inset: 50% auto auto 50%;
    z-index: 4;
    width: 138px;
    min-height: 150px;
    display: grid;
    place-items: center;
    gap: 4px;
    padding: 14px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
    transform: translate(-50%, -50%);
}

.orbit-center img {
    width: 84px;
    height: 84px;
    object-fit: contain;
    padding: 6px;
    border-radius: var(--radius);
    background: #fff;
}

.orbit-center strong {
    color: var(--gold-400);
    font-family: var(--font-display);
    font-size: 1.15rem;
}

.orbit-center span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.22);
}

.orbit-ring-outer {
    inset: 4%;
}

.orbit-ring-inner {
    inset: 21%;
    border-color: rgba(255, 179, 0, 0.28);
}

.orbit-track {
    position: absolute;
    inset: 0;
    z-index: 3;
    animation: orbitSpin 30s linear infinite;
}

.orbit-track-inner {
    inset: 15%;
    animation-duration: 22s;
    animation-direction: reverse;
}

.tech-orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(var(--outer-radius)) rotate(calc(-1 * var(--angle)));
}

.orbit-track-inner .tech-orbit-item {
    transform: rotate(var(--angle)) translateX(var(--inner-radius)) rotate(calc(-1 * var(--angle)));
}

.tech-orbit-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 38px;
    padding: 9px 11px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.18);
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    animation: orbitCounter 30s linear infinite;
}

.orbit-track-inner .tech-orbit-label {
    animation-name: orbitCounterReverse;
    animation-duration: 22s;
}

.tech-orbit-label svg {
    width: 18px;
    height: 18px;
    color: var(--gold-400);
    flex: 0 0 auto;
}

.section {
    padding-block: 98px;
}

.section-heading {
    width: min(760px, 100%);
    margin-inline: auto;
    text-align: center;
    margin-bottom: 44px;
}

.section-heading.compact {
    margin-bottom: 26px;
}

.program-strip-section {
    padding-block: 58px;
    background: #fff;
}

.program-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.program-pill {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 251, 0.86)),
        radial-gradient(circle at top right, rgba(230, 161, 0, 0.18), transparent 40%);
    border: 1px solid rgba(28, 42, 76, 0.08);
    box-shadow: var(--shadow-soft);
    color: var(--navy-900);
    font-weight: 900;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.program-pill:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 161, 0, 0.34);
    box-shadow: var(--shadow-strong);
}

.program-pill svg,
.popular-icon svg {
    color: var(--gold-500);
}

.program-pill i,
.program-pill svg {
    flex: 0 0 auto;
}

.popular-section {
    background:
        radial-gradient(circle at top left, rgba(136, 191, 47, 0.1), transparent 32%),
        radial-gradient(circle at bottom right, rgba(230, 161, 0, 0.12), transparent 32%),
        var(--surface-2);
}

.popular-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.popular-card {
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(28, 42, 76, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.popular-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 161, 0, 0.1), transparent 42%, rgba(136, 191, 47, 0.12));
    opacity: 0;
    transition: opacity 0.25s ease;
}

.popular-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.popular-card:hover::before {
    opacity: 1;
}

.popular-card > * {
    position: relative;
    z-index: 1;
}

.popular-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--navy-900);
    box-shadow: 0 18px 34px rgba(16, 24, 47, 0.2);
}

.popular-card h3 {
    color: var(--navy-900);
    font-size: 1.35rem;
}

.popular-card p {
    color: var(--muted);
    font-weight: 650;
}

.popular-duration {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--navy-900);
    background: rgba(230, 161, 0, 0.12);
    border: 1px solid rgba(230, 161, 0, 0.24);
    font-size: 0.88rem;
    font-weight: 900;
}

.popular-duration svg {
    width: 17px;
    height: 17px;
    color: var(--gold-500);
}

.popular-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.course-view-section {
    padding-block: 68px;
    background: #fff;
}

.course-view-panel {
    width: min(780px, calc(100% - 40px));
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
}

.course-view-panel h2 {
    color: var(--navy-950);
    font-size: 2.4rem;
}

.course-view-panel p {
    width: min(680px, 100%);
    color: var(--muted);
    font-weight: 650;
}

.course-view-panel .btn {
    margin-top: 10px;
}

.course-menu-section {
    background: #fff;
}

.course-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.course-menu-card {
    min-width: 0;
    min-height: 184px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    padding: 24px;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, #fff, #f8fbff);
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: var(--shadow-soft);
    color: var(--navy-900);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.course-menu-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 161, 0, 0.34);
    box-shadow: var(--shadow-strong);
}

.course-menu-card > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.course-menu-card h3 {
    color: var(--navy-950);
    font-size: 1.13rem;
}

.course-menu-card p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 650;
}

.course-menu-card small {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--green-600);
    font-weight: 900;
}

.course-menu-card > svg {
    width: 20px;
    height: 20px;
    margin-top: 14px;
    color: var(--gold-500);
}

.all-course-catalogue {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 58%, #f4fbf8 100%);
}

.catalogue-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 28px;
    margin-bottom: 34px;
}

.catalogue-heading .section-heading {
    margin-bottom: 0;
    text-align: left;
}

.catalogue-heading .section-heading::after {
    margin-left: 0;
    margin-right: 0;
}

.catalogue-summary {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    max-width: 420px;
}

.catalogue-summary span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 9px 12px;
    border-radius: 999px;
    color: var(--navy-900);
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: 0 12px 28px rgba(16, 24, 47, 0.08);
    font-size: 0.86rem;
    font-weight: 900;
}

.catalogue-summary svg {
    color: var(--gold-500);
}

.all-course-catalogue .course-grid {
    margin-top: 0;
}

.all-course-catalogue .course-card {
    background: #fff;
}

@media (max-width: 900px) {
    .courses-page-hero {
        padding-block: 132px 72px;
    }

    .courses-hero-layout,
    .catalogue-heading {
        grid-template-columns: 1fr;
    }

    .courses-hero-copy,
    .catalogue-heading .section-heading {
        text-align: center;
    }

    .courses-hero-copy p {
        margin-inline: auto;
    }

    .courses-hero-actions,
    .catalogue-summary {
        justify-content: center;
    }

    .catalogue-heading .section-heading::after {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 700px) {
    .courses-page-hero {
        min-height: auto;
        padding-block: 120px 58px;
    }

    .courses-hero-copy h1 {
        font-size: 2.28rem;
    }

    .courses-hero-actions .btn {
        width: 100%;
    }

    .courses-hero-panel {
        padding: 22px;
    }

    .courses-hero-panel strong {
        font-size: 3.1rem;
    }

    .course-view-panel h2 {
        font-size: 2rem;
    }

    .course-view-panel .btn {
        width: 100%;
    }

    .popular-actions .btn {
        width: 100%;
    }

    .course-menu-card {
        grid-template-columns: auto minmax(0, 1fr);
        align-items: flex-start;
        min-height: 0;
    }

    .course-menu-card > svg {
        display: none;
    }

    .catalogue-summary {
        display: grid;
        grid-template-columns: 1fr;
    }
}

.short-course-section {
    padding-block: 72px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.96), rgba(28, 42, 76, 0.9)),
        url("../img/b6.jpg") center / cover;
}

.short-course-wrap {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 28px;
    align-items: center;
}

.short-course-wrap h2 {
    margin-top: 10px;
    color: #fff;
    font-size: 2.25rem;
}

.short-course-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.short-course-list a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 900;
    backdrop-filter: blur(14px);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.short-course-list a:hover {
    transform: translateY(-3px);
    color: var(--navy-950);
    background: var(--gold-400);
}

.section-heading.narrow {
    width: min(640px, 100%);
}

.section-heading h2,
.register-copy h2,
.faq-copy h2,
.cta-content h2,
.marquee-heading h2 {
    margin-top: 10px;
    color: var(--navy-900);
    font-size: 2.65rem;
}

.section-heading p,
.register-copy p,
.cta-content p {
    margin-top: 14px;
    color: var(--muted);
    font-weight: 600;
}

.course-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(136, 191, 47, 0.1), transparent 34%),
        radial-gradient(circle at bottom right, rgba(230, 161, 0, 0.12), transparent 34%),
        var(--surface-2);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.course-card,
.feature-card,
.testimonial-card,
.stat-card,
.faq-item {
    border-radius: var(--radius);
}

.course-card {
    position: relative;
    min-height: 295px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 22px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(28, 42, 76, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.course-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(230, 161, 0, 0.12), transparent 42%),
        linear-gradient(315deg, rgba(136, 191, 47, 0.12), transparent 48%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover {
    box-shadow: var(--shadow-strong);
    border-color: rgba(230, 161, 0, 0.35);
}

.course-card:hover::before {
    opacity: 1;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.55), transparent);
    transform: skewX(-18deg);
    transition: left 0.65s ease;
}

.course-card:hover .card-shine {
    left: 130%;
}

.course-icon,
.feature-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    border-radius: var(--radius);
    box-shadow: 0 18px 32px rgba(230, 161, 0, 0.22);
}

.course-content,
.course-meta,
.course-icon {
    position: relative;
    z-index: 1;
}

.course-content h3,
.feature-card h3 {
    font-size: 1.25rem;
    color: var(--navy-900);
}

.course-content p,
.feature-card p {
    margin-top: 12px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.94rem;
}

.course-topic-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.course-topic-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 650;
    line-height: 1.35;
}

.course-topic-list svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--green-600);
}

.course-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green-600);
    font-size: 0.86rem;
    font-weight: 900;
}

.mini-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 9px 12px;
    color: #fff;
    background: var(--navy-800);
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 900;
    transition: transform 0.25s ease, background 0.25s ease;
}

.mini-btn:hover {
    transform: translateY(-2px);
    background: var(--green-600);
}

.stats-section {
    position: relative;
    padding-block: 88px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.98), rgba(28, 42, 76, 0.94)),
        url("../img/b2.jpg") center / cover;
    color: #fff;
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(230, 161, 0, 0.1), transparent 32%, rgba(42, 182, 240, 0.09)),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: auto, 74px 74px, 74px 74px;
    opacity: 0.85;
    pointer-events: none;
}

.stats-heading,
.stats-shell {
    position: relative;
    z-index: 1;
}

.stats-heading {
    width: min(820px, 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin: 0 auto 38px;
    text-align: center;
}

.stats-heading h2 {
    margin-top: 10px;
    color: #fff;
    font-size: clamp(2rem, 3.2vw, 2.75rem);
    line-height: 1.12;
}

.stats-heading p {
    max-width: 720px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
    line-height: 1.7;
}

.stats-shell {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    padding: 18px;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 34px 95px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.stat-card {
    position: relative;
    min-height: 180px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    padding: 24px 16px;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045));
    border: 1px solid rgba(255, 255, 255, 0.13);
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 179, 0, 0.34);
    background:
        linear-gradient(160deg, rgba(255, 179, 0, 0.16), rgba(255, 255, 255, 0.06));
}

.stat-card svg {
    position: relative;
    width: 34px;
    height: 34px;
    color: var(--green-500);
}

.stat-card strong {
    position: relative;
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--gold-400);
    line-height: 1;
}

.stat-card strong .counter {
    color: inherit;
}

.stat-card > span:last-child {
    position: relative;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    font-size: 0.94rem;
}

.features-section {
    background:
        linear-gradient(180deg, #fff, #f8fbff);
}

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

.feature-card {
    position: relative;
    min-height: 230px;
    padding: 24px;
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.08);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--gold-400), var(--orange-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    margin-bottom: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
}

.register-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.95), rgba(28, 42, 76, 0.9)),
        url("../img/b2.jpg") center / cover fixed;
    color: #fff;
}

.register-layout {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 44px;
    align-items: center;
}

.register-copy h2 {
    color: #fff;
}

.register-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.02rem;
}

.registration-highlights {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.registration-highlights span {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    font-weight: 800;
    backdrop-filter: blur(16px);
}

.registration-highlights svg {
    color: var(--gold-400);
}

.registration-form {
    padding: 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.form-row.split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

label {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 800;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(16, 24, 47, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    outline: 0;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
    min-height: 126px;
    resize: vertical;
}

select option {
    color: var(--ink);
}

.custom-course-select-source {
    position: absolute;
    width: 1px;
    min-height: 0;
    height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.custom-course-select {
    position: relative;
    width: 100%;
}

.custom-course-select-button {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    color: #fff;
    text-align: left;
    background: rgba(16, 24, 47, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.custom-course-select-button.has-value {
    color: #fff;
}

.custom-course-select-button:focus-visible,
.custom-course-select.open .custom-course-select-button {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(230, 161, 0, 0.16);
    background: rgba(16, 24, 47, 0.68);
    outline: 0;
}

.custom-course-select-button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    color: var(--gold-400);
    transition: transform 0.2s ease;
}

.custom-course-select.open .custom-course-select-button svg {
    transform: rotate(180deg);
}

.custom-course-select-list {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 50;
    max-height: min(520px, calc(100vh - 140px));
    overflow-y: auto;
    padding: 8px;
    border: 1px solid rgba(28, 42, 76, 0.14);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 20px 45px rgba(16, 24, 47, 0.18);
}

.custom-course-select.open-up .custom-course-select-list {
    top: auto;
    bottom: calc(100% + 8px);
}

.custom-course-select-option {
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 6px;
    color: var(--navy-950);
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-weight: 750;
    line-height: 1.25;
}

.custom-course-select-option:hover,
.custom-course-select-option.selected {
    color: var(--navy-950);
    background: rgba(230, 161, 0, 0.14);
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold-400);
    box-shadow: 0 0 0 4px rgba(230, 161, 0, 0.16);
    background: rgba(16, 24, 47, 0.68);
}

.submit-btn {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.form-message {
    min-height: 24px;
    margin-top: 12px;
    color: var(--gold-400);
    font-weight: 800;
}

.form-message.error {
    color: #ff9b86;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(136, 191, 47, 0.12), transparent 30%),
        radial-gradient(circle at 84% 12%, rgba(42, 182, 240, 0.1), transparent 28%),
        linear-gradient(180deg, #f7fbff, #fff);
}

.testimonial-slider {
    position: relative;
    min-height: 360px;
}

.testimonial-card {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    min-height: 330px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 255, 0.98)),
        linear-gradient(135deg, rgba(230, 161, 0, 0.08), transparent 36%, rgba(136, 191, 47, 0.08));
    border: 1px solid rgba(28, 42, 76, 0.09);
    box-shadow: 0 24px 72px rgba(16, 24, 47, 0.11);
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.testimonial-card.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.testimonial-body {
    position: relative;
    display: grid;
    align-content: center;
    padding: 44px 110px 44px 44px;
}

.testimonial-body::before {
    content: "\201C";
    position: absolute;
    top: 18px;
    right: 42px;
    color: rgba(230, 161, 0, 0.14);
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
}

.review-tag {
    position: relative;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 8px 11px;
    border-radius: 999px;
    color: var(--navy-900);
    background: rgba(255, 179, 0, 0.14);
    border: 1px solid rgba(230, 161, 0, 0.24);
    font-size: 0.78rem;
    font-weight: 900;
}

.review-tag svg {
    width: 16px;
    height: 16px;
    color: var(--green-600);
}

.stars {
    position: relative;
    margin-top: 18px;
    color: var(--gold-500);
    font-size: 1.22rem;
    letter-spacing: 0;
}

.testimonial-body p {
    position: relative;
    max-width: 820px;
    margin-top: 18px;
    color: var(--ink);
    font-size: 1.22rem;
    font-weight: 800;
    line-height: 1.55;
}

.testimonial-person {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.testimonial-person > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
    font-family: var(--font-display);
    font-weight: 900;
}

.testimonial-person strong,
.testimonial-person small {
    display: block;
}

.testimonial-person strong {
    color: var(--navy-900);
    font-size: 1.05rem;
}

.testimonial-person small {
    color: var(--green-600);
    font-weight: 900;
    font-size: 0.92rem;
}

.testimonial-controls {
    position: absolute;
    right: 24px;
    bottom: 24px;
    display: flex;
    gap: 8px;
    z-index: 4;
}

.testimonial-controls .icon-btn {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.14);
}

.partners-section {
    position: relative;
    overflow: hidden;
    padding-block: 92px;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.98), rgba(20, 35, 66, 0.96)),
        url("../img/b6.jpg") center / cover;
    color: #fff;
}

.partners-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(230, 161, 0, 0.09), transparent 35%, rgba(136, 191, 47, 0.08)),
        linear-gradient(180deg, rgba(16, 24, 47, 0.18), rgba(16, 24, 47, 0.88));
    pointer-events: none;
}

.partners-section .container,
.logo-marquee {
    position: relative;
    z-index: 1;
}

.marquee-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.marquee-heading h2 {
    width: min(760px, 100%);
    margin-top: 10px;
    color: #fff;
    font-size: 2.35rem;
}

.marquee-heading p {
    width: min(430px, 100%);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
}

.logo-marquee {
    display: flex;
    overflow: hidden;
    border-block: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.logo-track {
    display: flex;
    gap: 18px;
    min-width: max-content;
    padding: 24px 18px;
    animation: marquee 30s linear infinite;
}

.partner-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 230px;
    min-height: 68px;
    padding: 16px 20px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.partner-logo svg {
    width: 24px;
    height: 24px;
    color: var(--gold-400);
}

.gallery-section {
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    min-height: 260px;
    padding: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy-900);
    box-shadow: var(--shadow-soft);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    opacity: 0.9;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.gallery-item span {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: block;
    padding: 10px 12px;
    color: #fff;
    background: rgba(16, 24, 47, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    backdrop-filter: blur(14px);
    font-weight: 900;
    text-align: left;
}

.faq-section {
    background:
        linear-gradient(180deg, #f8fbff, #fff);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    gap: 44px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: 0 12px 36px rgba(16, 24, 47, 0.08);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: #fff;
    color: var(--navy-900);
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item svg {
    color: var(--gold-500);
    transition: transform 0.25s ease;
}

.faq-item.open svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 18px;
    color: var(--muted);
    font-weight: 600;
}

.cta-banner {
    position: relative;
    min-height: auto;
    display: grid;
    place-items: center;
    padding-block: 70px 84px;
    overflow: hidden;
    color: var(--ink);
    background: #f6f8fc;
    border-top: 1px solid #e6ebf3;
    border-bottom: 0;
}

.cta-banner::before {
    display: none;
}

.cta-banner::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 18px;
    background: #fff;
    border-top: 1px solid #e6ebf3;
    pointer-events: none;
}

.cta-content {
    position: relative;
    text-align: center;
    width: min(920px, calc(100% - 40px));
}

.cta-content h2 {
    color: var(--navy-950);
    margin-top: 12px;
    font-size: 2.85rem;
}

.cta-content p {
    width: min(760px, 100%);
    margin-inline: auto;
    color: #526079;
    font-size: 1.08rem;
    font-weight: 700;
}

.cta-content .hero-actions {
    justify-content: center;
}

.cta-content .btn-ghost {
    color: var(--navy-950);
    background: #fff;
    border-color: #d9e1ed;
    box-shadow: none;
}

.cta-content .btn-ghost:hover {
    border-color: var(--gold-500);
    box-shadow: 0 14px 32px rgba(16, 24, 47, 0.1);
}

.cta-points {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.cta-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 13px;
    border-radius: var(--radius);
    color: var(--navy-900);
    background: #fff;
    border: 1px solid #d9e1ed;
    box-shadow: none;
    font-weight: 850;
}

.cta-points svg {
    color: var(--gold-400);
}

.site-footer {
    position: relative;
    overflow: hidden;
    background: #121b33;
    color: #fff;
    padding-block: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.enhanced-footer::before {
    display: none;
}

.enhanced-footer::after {
    display: none;
}

.footer-wave {
    display: none;
}

.footer-topline,
.footer-grid,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-topline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding-block: 42px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-topline h2 {
    width: min(680px, 100%);
    margin-top: 8px;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1.25;
}

.footer-topline .section-kicker {
    color: var(--gold-400);
}

.lite-form-message {
    min-height: 20px;
    margin-top: 8px;
    color: var(--gold-400) !important;
    font-size: 0.85rem;
}

.lite-form-message.error {
    color: #ff9b86 !important;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.7fr 0.95fr 1.15fr;
    gap: 34px;
    padding-block: 34px 28px;
}

.footer-brand img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    padding: 6px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: none;
}

.footer-brand h2 {
    margin-top: 14px;
    font-size: 1.4rem;
}

.footer-brand p,
.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 600;
}

.site-footer h3 {
    margin: 0 0 16px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
    transition: color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.site-footer a:hover {
    color: var(--gold-400);
}

.site-footer p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.site-footer p svg {
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--green-500);
}

.footer-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.footer-social-links a {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-social-links a:hover {
    color: var(--navy-950);
    background: var(--gold-400);
    transform: translateY(-2px);
}

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

.footer-links a,
.footer-program-links a {
    width: fit-content;
}

.footer-program-links a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-program-links svg {
    width: 17px;
    height: 17px;
    color: var(--green-500);
}

.footer-contact-card {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-contact-card .btn {
    display: inline-flex;
    margin-top: 14px;
    margin-bottom: 0;
}

.footer-contact-card p a {
    display: inline;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
}

.social-links a {
    margin: 0;
}

.site-footer .social-links .icon-btn {
    width: 46px;
    height: 46px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.26);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

.site-footer .social-links .icon-btn:hover {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form label {
    display: block;
    margin-bottom: 8px;
}

.newsletter-form div {
    display: flex;
    gap: 8px;
}

.newsletter-form .icon-btn {
    flex: 0 0 48px;
    height: 50px;
    border-radius: var(--radius);
    background: var(--gold-500);
    color: var(--navy-950);
}

.map-card {
    min-height: 240px;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.86) contrast(1.05);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 0;
    padding: 18px max(20px, calc((100% - 1180px) / 2));
    color: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--gold-400);
    font-weight: 900;
    margin-bottom: 0;
}

.whatsapp-float {
    --floating-rail-right: clamp(14px, 2.4vw, 28px);
    position: fixed;
    right: var(--floating-rail-right);
    bottom: 22px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
    animation: pulseWhatsApp 2.4s ease-in-out infinite;
}

.whatsapp-icon {
    width: 31px;
    height: 31px;
    display: block;
}

.back-to-top,
.chatbot-toggle {
    --floating-rail-right: clamp(14px, 2.4vw, 28px);
    position: fixed;
    right: var(--floating-rail-right);
    z-index: 900;
    width: 58px;
    height: 58px;
    color: var(--navy-950);
    background: var(--gold-400);
    box-shadow: 0 18px 38px rgba(230, 161, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.back-to-top {
    bottom: 174px;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.chatbot-toggle {
    bottom: 98px;
    opacity: 1;
    pointer-events: auto;
    overflow: visible;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
    color: #fff;
    transform: translateY(0);
}

.chatbot-toggle svg {
    width: 23px;
    height: 23px;
}

.chatbot-pulse-dot {
    position: absolute;
    right: 4px;
    top: 4px;
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 0 rgba(136, 191, 47, 0.52);
    animation: chatbotPing 1.8s ease-out infinite;
}

.chatbot-toggle.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px) scale(0.96);
}

.chatbot-panel {
    --floating-rail-right: clamp(14px, 2.4vw, 28px);
    position: fixed;
    right: var(--floating-rail-right);
    bottom: 98px;
    z-index: 1100;
    width: min(360px, calc(100vw - 24px));
    max-height: min(590px, calc(100vh - 116px));
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(28, 42, 76, 0.14);
    box-shadow: 0 24px 80px rgba(16, 24, 47, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(0.97);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
}

.chatbot-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.98), rgba(28, 42, 76, 0.94)),
        url("../img/b4.jpg") center / cover;
    font-weight: 900;
}

.chatbot-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chatbot-agent > span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
}

.chatbot-agent strong,
.chatbot-agent small {
    display: block;
}

.chatbot-agent strong {
    color: #fff;
    font-size: 0.96rem;
}

.chatbot-agent small {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
}

.chatbot-agent small span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-500);
}

.chatbot-close {
    width: 32px;
    height: 32px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.chatbot-intro {
    display: grid;
    gap: 7px;
    padding: 12px 12px 10px;
    background: linear-gradient(180deg, #fff, #f7fbff);
    border-bottom: 1px solid rgba(28, 42, 76, 0.08);
}

.chatbot-intro strong {
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1rem;
}

.chatbot-intro p {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 740;
}

.chatbot-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 4px;
}

.chatbot-quick-actions button {
    min-height: 30px;
    padding: 6px 9px;
    border-radius: 999px;
    color: var(--navy-900);
    background: rgba(255, 179, 0, 0.16);
    border: 1px solid rgba(230, 161, 0, 0.24);
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.chatbot-quick-actions button:hover {
    color: #fff;
    background: var(--navy-900);
    transform: translateY(-1px);
}

.chatbot-messages {
    display: grid;
    gap: 8px;
    flex: 1 1 auto;
    min-height: 92px;
    max-height: 160px;
    overflow: auto;
    padding: 12px;
    background:
        linear-gradient(rgba(28, 42, 76, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 42, 76, 0.035) 1px, transparent 1px),
        #fbfdff;
    background-size: 28px 28px;
}

.bot-bubble,
.user-bubble {
    width: fit-content;
    max-width: 92%;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.84rem;
    line-height: 1.45;
    box-shadow: 0 10px 26px rgba(16, 24, 47, 0.08);
}

.bot-bubble {
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.08);
}

.user-bubble {
    justify-self: end;
    color: #fff;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
}

.chatbot-form {
    display: grid;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid rgba(28, 42, 76, 0.08);
    background: #fff;
}

.chatbot-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.chatbot-form label {
    display: grid;
    gap: 6px;
}

.chatbot-form label > span {
    color: var(--navy-900);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.chatbot-form input {
    width: 100%;
    min-height: 38px;
    padding: 9px 11px;
    color: var(--ink);
    background: #f8fbff;
    border: 1px solid rgba(28, 42, 76, 0.14);
    border-radius: var(--radius);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-form input:focus {
    border-color: rgba(230, 161, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(230, 161, 0, 0.12);
}

.chatbot-message-field div {
    display: flex;
    gap: 8px;
}

.chatbot-form .icon-btn {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: var(--gold-400);
}

.chatbot-form.saving .icon-btn {
    opacity: 0.72;
    cursor: wait;
}

.chatbot-step-note {
    color: var(--navy-600);
    font-size: 0.72rem;
    font-weight: 900;
}

.chatbot-save-note {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
}

.chatbot-save-note svg {
    width: 15px;
    height: 15px;
    color: var(--green-600);
}

.inner-page {
    background: #fff;
}

.inner-header {
    position: sticky;
}

.inner-hero {
    min-height: 430px;
    display: grid;
    place-items: center;
    padding-top: 168px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.94), rgba(28, 42, 76, 0.84)),
        url("../img/b2.jpg") center / cover;
}

.about-hero {
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.94), rgba(28, 42, 76, 0.84)),
        url("../img/b5.jpg") center / cover;
}

.courses-hero {
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.94), rgba(28, 42, 76, 0.84)),
        url("../img/b1.jpg") center / cover;
}

.courses-page-hero {
    min-height: 570px;
    padding-block: 148px 86px;
    place-items: center;
}

.courses-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: center;
    gap: 48px;
}

.courses-hero-copy {
    width: min(720px, 100%);
}

.courses-page-hero .courses-hero-copy h1 {
    margin-top: 14px;
    color: #fff;
    font-size: 3.55rem;
}

.courses-page-hero .courses-hero-copy p {
    margin-top: 18px;
    width: min(660px, 100%);
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
}

.courses-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.courses-hero-panel {
    padding: 26px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.courses-hero-panel > span {
    color: var(--gold-400);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.courses-hero-panel strong {
    display: block;
    margin-top: 10px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1;
}

.courses-page-hero .courses-hero-panel p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 650;
}

.courses-hero-panel div {
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.courses-hero-panel small {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    font-weight: 850;
}

.courses-hero-panel svg {
    color: var(--gold-400);
}

@media (max-width: 900px) {
    .inner-hero.courses-page-hero {
        padding-block: 132px 72px;
    }

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

    .courses-hero-copy {
        text-align: center;
        margin-inline: auto;
    }

    .courses-page-hero .courses-hero-copy p {
        margin-inline: auto;
    }

    .courses-hero-actions {
        justify-content: center;
    }

    .courses-hero-panel {
        width: min(520px, 100%);
        margin-inline: auto;
    }
}

@media (max-width: 700px) {
    .inner-hero.courses-page-hero {
        min-height: auto;
        padding-block: 120px 58px;
    }

    .courses-page-hero .courses-hero-copy h1 {
        font-size: 2.28rem;
    }

    .courses-hero-actions .btn {
        width: 100%;
    }

    .courses-hero-panel {
        padding: 22px;
    }

    .courses-hero-panel strong {
        font-size: 3.1rem;
    }
}

.contact-hero,
.admin-hero {
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.94), rgba(28, 42, 76, 0.84)),
        url("../img/b4.jpg") center / cover;
}

.contact-hero {
    min-height: 520px;
    padding-bottom: 86px;
}

.contact-hero .inner-hero-content {
    width: min(1040px, calc(100% - 40px));
}

.inner-hero.contact-hero h1 {
    max-width: 980px;
    margin-inline: auto;
    font-size: 3.05rem;
    line-height: 1.12;
}

.inner-hero.contact-hero p {
    max-width: 760px;
    margin-inline: auto;
}

.contact-hero-meta {
    margin-top: 28px;
}

.registration-hero {
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.94), rgba(28, 42, 76, 0.84)),
        url("../img/b6.jpg") center / cover;
}

.inner-hero-content {
    text-align: center;
    width: min(820px, calc(100% - 40px));
}

.inner-hero h1 {
    margin-top: 12px;
    font-size: 3.3rem;
}

.inner-hero p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.program-page-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.program-page-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 850;
}

.program-page-meta svg {
    color: var(--gold-400);
}

.program-page .program-hero {
    min-height: 560px;
    padding: 188px 0 88px;
    background:
        linear-gradient(135deg, rgba(7, 29, 66, 0.97), rgba(28, 42, 76, 0.88)),
        url("../img/b1.jpg") center / cover;
}

.program-page .program-hero .inner-hero-content {
    width: min(900px, calc(100% - 40px));
}

.program-page .program-hero .section-kicker {
    margin-bottom: 20px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.24);
}

.program-page .program-hero h1 {
    max-width: 820px;
    margin-top: 0;
    margin-inline: auto;
    font-size: clamp(2.4rem, 3.6vw, 3.15rem);
    line-height: 1.14;
}

.program-page .program-hero p {
    max-width: 760px;
    margin-inline: auto;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.04rem;
    line-height: 1.7;
}

.program-page .program-page-meta {
    gap: 12px;
    margin-top: 30px;
}

.program-page .program-page-meta span {
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.11);
}

.program-page .program-course-section .course-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.program-page .program-course-section .course-card {
    min-height: 318px;
}

@media (max-width: 1100px) {
    .program-page .program-course-section .course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .program-page .program-hero {
        min-height: auto;
        padding: 150px 0 68px;
    }

    .program-page .program-hero h1 {
        font-size: 2.35rem;
    }
}

@media (max-width: 700px) {
    .program-page .program-course-section .course-grid {
        grid-template-columns: 1fr;
    }

    .program-page .program-hero {
        padding: 132px 0 56px;
    }

    .program-page .program-hero h1 {
        font-size: 2rem;
    }

    .program-page .program-page-meta {
        display: grid;
        grid-template-columns: 1fr;
    }

    .program-page .program-page-meta span {
        justify-content: center;
    }
}

.course-detail-page {
    background: #f6f9fd;
}

.syllabus-hero {
    min-height: 480px;
    padding: 168px 0 74px;
    background:
        linear-gradient(135deg, rgba(7, 29, 66, 0.96), rgba(28, 42, 76, 0.86)),
        url("../img/b1.jpg") center / cover;
}

.syllabus-hero .inner-hero-content {
    width: min(900px, calc(100% - 40px));
}

.syllabus-hero h1 {
    max-width: 880px;
    margin-inline: auto;
    font-size: clamp(2.35rem, 4vw, 3.35rem);
    line-height: 1.12;
}

.syllabus-hero p {
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.7;
}

.syllabus-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.syllabus-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.syllabus-summary,
.syllabus-main,
.coming-soon-card {
    border: 1px solid rgba(28, 42, 76, 0.1);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(7, 29, 66, 0.08);
}

.syllabus-summary {
    position: sticky;
    top: 118px;
    padding: 24px;
}

.syllabus-summary h2 {
    margin-top: 12px;
    color: var(--navy-900);
    font-size: 1.6rem;
}

.syllabus-summary p {
    margin-top: 12px;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.65;
}

.syllabus-summary-list {
    display: grid;
    gap: 10px;
    margin: 20px 0;
}

.syllabus-summary-list span {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--navy-900);
    background: #f6f9fd;
    border: 1px solid rgba(28, 42, 76, 0.08);
    font-weight: 900;
}

.syllabus-summary-list svg {
    width: 17px;
    height: 17px;
    color: var(--green-600);
}

.syllabus-summary .btn {
    width: 100%;
}

.syllabus-main {
    padding: 26px;
}

.syllabus-head {
    margin-bottom: 20px;
}

.syllabus-head h2 {
    margin-top: 10px;
    color: var(--navy-900);
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    line-height: 1.12;
}

.syllabus-module-list {
    counter-reset: syllabusModule;
    display: grid;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.syllabus-module {
    padding: 20px;
    border: 1px solid rgba(28, 42, 76, 0.09);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
}

.syllabus-module-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.syllabus-module-head > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 12px;
    color: #fff;
    background: var(--green-600);
    font-weight: 950;
}

.syllabus-module h3 {
    color: var(--navy-900);
    font-size: 1.13rem;
}

.syllabus-module ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.syllabus-module li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #526581;
    font-size: 0.92rem;
    font-weight: 650;
    line-height: 1.4;
}

.syllabus-module li svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    margin-top: 3px;
    color: var(--green-600);
}

.coming-soon-card {
    width: min(680px, 100%);
    margin-inline: auto;
    padding: 38px;
    text-align: center;
}

.coming-soon-card > span {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 18px;
    color: var(--navy-950);
    background: var(--gold-400);
}

.coming-soon-card > span svg {
    width: 32px;
    height: 32px;
}

.coming-soon-card h2 {
    color: var(--navy-900);
    font-size: clamp(2rem, 4vw, 3rem);
}

.coming-soon-card p {
    max-width: 520px;
    margin: 12px auto 0;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.7;
}

.coming-soon-card .hero-actions {
    justify-content: center;
    margin-top: 24px;
}

.coming-soon-card .btn-ghost {
    color: var(--navy-900);
    border-color: rgba(28, 42, 76, 0.16);
    background: #fff;
}

@media (max-width: 950px) {
    .syllabus-layout {
        grid-template-columns: 1fr;
    }

    .syllabus-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .syllabus-hero {
        min-height: auto;
        padding: 132px 0 58px;
    }

    .syllabus-main,
    .syllabus-summary,
    .coming-soon-card {
        padding: 22px;
        border-radius: 12px;
    }

    .syllabus-module {
        padding: 18px;
    }

    .syllabus-module ul {
        grid-template-columns: 1fr;
    }

    .coming-soon-card .hero-actions .btn {
        width: 100%;
    }
}

.contact-page-section,
.admin-login-section {
    background-attachment: scroll;
}

.contact-direct-section {
    padding-block: 58px 66px;
    background:
        linear-gradient(180deg, #fff, #f7fbff);
}

.contact-direct-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.contact-direct-card {
    min-height: 214px;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 24px;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.96));
    border: 1px solid rgba(28, 42, 76, 0.09);
    box-shadow: 0 18px 42px rgba(16, 24, 47, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-direct-card:hover {
    transform: translateY(-7px);
    border-color: rgba(230, 161, 0, 0.34);
    box-shadow: 0 30px 78px rgba(16, 24, 47, 0.16);
}

.contact-direct-card > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
}

.contact-direct-card small {
    color: var(--green-600);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.contact-direct-card strong {
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1vw, 1.16rem);
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.contact-direct-card[href^="mailto"] strong {
    font-size: clamp(0.9rem, 0.88vw, 1rem);
    line-height: 1.35;
    word-break: break-word;
}

.contact-direct-card em {
    color: var(--muted);
    font-style: normal;
    font-weight: 700;
}

.contact-page-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.97), rgba(28, 42, 76, 0.92)),
        url("../img/b2.jpg") center / cover;
    color: #fff;
}

.contact-page-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(230, 161, 0, 0.1), transparent 34%, rgba(42, 182, 240, 0.09)),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: auto, 70px 70px, 70px 70px;
    pointer-events: none;
}

.contact-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 42px;
    align-items: center;
}

.contact-copy-panel h2 {
    margin-top: 10px;
    color: #fff;
    font-size: 2.7rem;
}

.contact-copy-panel p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 700;
}

.contact-support-list {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.contact-support-list span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 11px 13px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(14px);
    font-weight: 850;
}

.contact-support-list svg,
.contact-mini-panel svg {
    color: var(--gold-400);
    flex: 0 0 auto;
}

.contact-mini-panel {
    display: flex;
    gap: 14px;
    margin-top: 30px;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(16px);
}

.contact-mini-panel strong {
    color: #fff;
    font-family: var(--font-display);
}

.contact-mini-panel p {
    margin-top: 4px;
    font-size: 0.92rem;
}

.contact-form-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
}

.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 161, 0, 0.12), transparent 46%);
    pointer-events: none;
}

.contact-form-card > * {
    position: relative;
    z-index: 1;
}

.contact-form-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.contact-form-heading > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.contact-form-heading h3 {
    color: #fff;
    font-size: 1.35rem;
}

.contact-form-heading p {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 700;
}

.contact-location-section {
    background: linear-gradient(180deg, #f7fbff, #fff);
}

.contact-location-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.contact-map-card {
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: 0 24px 72px rgba(16, 24, 47, 0.12);
}

.contact-map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(0.95) contrast(1.04);
}

.contact-location-copy {
    display: grid;
    align-content: center;
    padding: 30px;
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.96), rgba(28, 42, 76, 0.92)),
        url("../img/b4.jpg") center / cover;
    box-shadow: 0 24px 72px rgba(16, 24, 47, 0.14);
}

.contact-location-copy h2 {
    margin-top: 10px;
    color: #fff;
    font-size: 2.15rem;
}

.contact-location-copy > p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 700;
}

.contact-address-list {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-address-list p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.contact-address-list svg {
    color: var(--gold-400);
    flex: 0 0 auto;
    margin-top: 2px;
}

.contact-address-list a {
    color: inherit;
}

.contact-address-list a:hover {
    color: var(--gold-400);
}

.admin-login-wrap {
    width: min(520px, calc(100% - 40px));
}

.admin-login-form {
    width: 100%;
}

.admin-form-heading h3 {
    color: var(--navy-900);
}

.admin-form-heading p {
    color: var(--muted);
}

.admin-main {
    background: linear-gradient(180deg, #f6f9fd, #eef4fa);
}

.admin-dashboard-hero {
    padding-block: 122px 52px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.96), rgba(28, 42, 76, 0.88)),
        url("../img/b4.jpg") center / cover;
}

.admin-dashboard-hero.compact {
    padding-block: 112px 44px;
}

.admin-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
}

.admin-hero-grid h1 {
    margin-top: 10px;
    font-size: 2.8rem;
}

.admin-hero-grid p {
    width: min(720px, 100%);
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 750;
}

.admin-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.admin-section {
    padding-block: 34px 80px;
}

.admin-shell,
.admin-detail-shell {
    display: grid;
    gap: 22px;
}

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

.admin-stat-card,
.admin-panel,
.admin-detail-panel {
    border: 1px solid rgba(28, 42, 76, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 48px rgba(16, 24, 47, 0.08);
}

.admin-stat-card {
    display: grid;
    gap: 8px;
    min-height: 146px;
    padding: 20px;
}

.admin-stat-card span {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
}

.admin-stat-card small,
.admin-detail-grid small,
.admin-notes-block small {
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 0.72rem;
}

.admin-stat-card strong {
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 2rem;
}

.admin-toolbar,
.admin-panel-heading,
.admin-detail-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.admin-toolbar {
    padding: 20px;
    border: 1px solid rgba(28, 42, 76, 0.1);
    border-radius: var(--radius);
    background: #fff;
}

.admin-toolbar h2,
.admin-panel-heading h2,
.admin-detail-heading h2 {
    margin-top: 8px;
    color: var(--navy-900);
    font-size: 1.7rem;
}

.admin-toolbar p {
    margin-top: 6px;
    color: var(--muted);
    font-weight: 750;
}

.admin-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(440px, 100%);
}

.admin-search input {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    border: 1px solid rgba(28, 42, 76, 0.12);
    border-radius: var(--radius);
    color: var(--ink);
    background: #f8fbff;
    outline: 0;
}

.admin-search input:focus {
    border-color: rgba(230, 161, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(230, 161, 0, 0.12);
}

.admin-panel,
.admin-detail-panel,
.admin-edit-form {
    padding: 22px;
}

.admin-table-scroll {
    width: 100%;
    margin-top: 18px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

.admin-table th {
    padding: 12px;
    color: var(--muted);
    background: #f3f7fb;
    font-size: 0.74rem;
    font-weight: 900;
    text-align: left;
    text-transform: uppercase;
}

.admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(28, 42, 76, 0.08);
    color: var(--ink);
    font-weight: 720;
    vertical-align: top;
}

.admin-table tr:last-child td {
    border-bottom: 0;
}

.admin-table td strong,
.admin-table td span,
.admin-table td small {
    display: block;
}

.admin-table td strong {
    color: var(--navy-900);
    font-weight: 900;
}

.admin-table td span,
.admin-table td small {
    color: var(--muted);
    font-size: 0.86rem;
    overflow-wrap: anywhere;
}

.admin-message-cell {
    width: 280px;
    max-width: 280px;
}

.admin-row-actions,
.admin-status-form,
.admin-detail-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.admin-row-actions form,
.admin-detail-actions form {
    margin: 0;
}

.admin-icon-button {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: var(--radius);
    color: #fff;
    background: var(--navy-900);
    border: 1px solid rgba(28, 42, 76, 0.12);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-icon-button:hover {
    color: var(--navy-950);
    background: var(--gold-400);
    transform: translateY(-1px);
}

.admin-icon-button.light {
    color: var(--navy-900);
    background: #f4f7fb;
}

.admin-icon-button.danger,
.admin-danger-btn {
    color: #fff;
    background: #be3144;
}

.admin-icon-button.danger:hover,
.admin-danger-btn:hover {
    color: #fff;
    background: #9f2637;
}

.admin-status {
    display: inline-flex !important;
    width: fit-content;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: 0.76rem !important;
    font-weight: 900;
    text-transform: uppercase;
}

.status-new {
    color: #8a5600 !important;
    background: rgba(255, 179, 0, 0.18);
}

.status-contacted,
.status-read {
    color: #0a668a !important;
    background: rgba(42, 182, 240, 0.16);
}

.status-joined {
    color: #2f6f18 !important;
    background: rgba(136, 191, 47, 0.18);
}

.status-closed {
    color: #4f5b70 !important;
    background: rgba(100, 112, 138, 0.16);
}

.admin-status-form select {
    min-width: 96px;
    min-height: 40px;
    padding: 8px 10px;
    border: 1px solid rgba(28, 42, 76, 0.12);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    outline: 0;
}

.admin-message-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.admin-message-card {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(28, 42, 76, 0.09);
    border-radius: var(--radius);
    background: #f8fbff;
}

.admin-message-card div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.admin-message-card strong {
    color: var(--navy-900);
    font-weight: 900;
}

.admin-message-card span,
.admin-message-card small {
    color: var(--muted);
    font-weight: 750;
}

.admin-message-card p {
    color: var(--ink);
    font-weight: 720;
}

.admin-message-card .admin-bot-reply {
    padding: 10px;
    border-radius: var(--radius);
    color: var(--muted);
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.08);
    font-size: 0.88rem;
}

.admin-alert {
    padding: 13px 15px;
    border-radius: var(--radius);
    color: #285c19;
    background: rgba(136, 191, 47, 0.16);
    border: 1px solid rgba(136, 191, 47, 0.26);
    font-weight: 850;
}

.admin-alert.error {
    color: #9f2637;
    background: rgba(190, 49, 68, 0.12);
    border-color: rgba(190, 49, 68, 0.2);
}

.admin-alert p + p {
    margin-top: 5px;
}

.admin-empty {
    color: var(--muted);
    font-weight: 850;
    text-align: center;
}

.admin-detail-panel {
    display: grid;
    gap: 22px;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-detail-grid div,
.admin-notes-block {
    padding: 16px;
    border: 1px solid rgba(28, 42, 76, 0.09);
    border-radius: var(--radius);
    background: #f8fbff;
}

.admin-detail-grid strong {
    display: block;
    margin-top: 5px;
    color: var(--navy-900);
    font-weight: 900;
    overflow-wrap: anywhere;
}

.admin-notes-block p {
    margin-top: 6px;
    color: var(--ink);
    font-weight: 720;
    white-space: pre-wrap;
}

.admin-detail-actions {
    flex-wrap: wrap;
}

.admin-light-btn {
    color: var(--navy-900);
    background: #eef4fa;
    border: 1px solid rgba(28, 42, 76, 0.1);
}

.admin-light-btn:hover {
    color: var(--navy-950);
    background: var(--gold-400);
}

.admin-edit-form {
    background: #fff;
}

.admin-edit-form textarea {
    min-height: 116px;
    resize: vertical;
}

/* Standalone admin experience */
.admin-body {
    min-height: 100vh;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(238, 244, 250, 0.96), rgba(247, 250, 253, 0.98)),
        url("../img/b2.jpg") center / cover fixed;
}

.admin-body .site-header,
.admin-body .site-footer,
.admin-body .whatsapp-float,
.admin-body .back-to-top,
.admin-body .chatbot-toggle,
.admin-body .chatbot-panel {
    display: none !important;
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
}

.admin-login-showcase {
    position: relative;
    overflow: hidden;
    display: grid;
    align-content: space-between;
    gap: 34px;
    min-height: 100vh;
    padding: 42px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.96), rgba(28, 42, 76, 0.82)),
        url("../img/b4.jpg") center / cover;
}

.admin-login-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 72px 72px;
    pointer-events: none;
}

.admin-login-brand,
.admin-login-copy,
.admin-login-metrics {
    position: relative;
    z-index: 1;
}

.admin-login-brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.admin-login-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: var(--radius);
    background: #fff;
    padding: 4px;
}

.admin-login-brand strong,
.admin-login-brand small {
    display: block;
}

.admin-login-brand strong {
    color: #fff;
    font-weight: 900;
}

.admin-login-brand small {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
}

.admin-login-copy {
    width: min(680px, 100%);
}

.admin-login-copy h1 {
    margin-top: 16px;
    color: #fff;
    font-size: 4rem;
    line-height: 1;
}

.admin-login-copy p {
    width: min(590px, 100%);
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    font-weight: 750;
}

.admin-login-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.admin-login-metrics span {
    min-height: 92px;
    display: grid;
    align-content: center;
    gap: 9px;
    padding: 16px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 850;
}

.admin-login-metrics svg {
    color: var(--gold-400);
}

.admin-login-panel {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 34px;
    background: linear-gradient(180deg, #f8fbff, #eef4fa);
}

.admin-login-card {
    width: min(480px, 100%);
    display: grid;
    gap: 22px;
}

.admin-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--muted);
    font-weight: 850;
}

.admin-back-link:hover {
    color: var(--navy-900);
}

.admin-auth-form {
    display: grid;
    gap: 18px;
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: 0 28px 80px rgba(16, 24, 47, 0.14);
}

.admin-auth-heading {
    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-auth-heading > span {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
}

.admin-auth-heading h2 {
    color: var(--navy-900);
    font-size: 1.75rem;
}

.admin-auth-heading p {
    margin-top: 4px;
    color: var(--muted);
    font-weight: 750;
}

.admin-field {
    display: grid;
    gap: 8px;
}

.admin-field label {
    color: var(--navy-900);
    font-weight: 900;
    font-size: 0.86rem;
}

.admin-field div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid rgba(28, 42, 76, 0.12);
    border-radius: var(--radius);
    background: #f8fbff;
}

.admin-field svg {
    width: 19px;
    height: 19px;
    color: var(--green-600);
    flex: 0 0 auto;
}

.admin-field input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
}

.admin-field div:focus-within {
    border-color: rgba(230, 161, 0, 0.65);
    box-shadow: 0 0 0 4px rgba(230, 161, 0, 0.12);
}

.admin-forgot-link {
    width: fit-content;
    margin-top: -6px;
    color: var(--navy-700);
    font-size: 0.9rem;
    font-weight: 900;
}

.admin-forgot-link:hover {
    color: var(--green-600);
}

.admin-submit-btn,
.admin-action-link {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(28, 42, 76, 0.12);
    color: var(--navy-900);
    background: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.admin-submit-btn,
.admin-action-link.primary {
    color: var(--navy-950);
    border-color: rgba(230, 161, 0, 0.34);
    background: var(--gold-400);
}

.admin-submit-btn:hover,
.admin-action-link:hover {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
    transform: translateY(-1px);
}

.admin-help-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.92), rgba(28, 42, 76, 0.86)),
        url("../img/b4.jpg") center / cover;
}

.admin-help-card {
    width: min(680px, 100%);
    display: grid;
    gap: 22px;
    padding: clamp(22px, 4vw, 34px);
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: 0 28px 80px rgba(16, 24, 47, 0.24);
}

.admin-reset-card {
    width: min(760px, 100%);
}

.admin-help-card .admin-auth-heading h1 {
    margin: 0;
    color: var(--navy-900);
    font-size: 1.85rem;
}

.admin-reset-form {
    padding: 0;
    border: 0;
    box-shadow: none;
}

.admin-reset-steps {
    display: grid;
    gap: 12px;
}

.admin-reset-steps div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
    font-weight: 750;
}

.admin-reset-steps span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: var(--gold-400);
    font-weight: 950;
}

.admin-reset-steps code {
    display: block;
    padding: 14px;
    overflow-x: auto;
    border-radius: var(--radius);
    color: #fff;
    background: var(--navy-950);
    font-size: 0.9rem;
}

.admin-reset-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: var(--radius);
    color: var(--navy-900);
    background: rgba(136, 191, 47, 0.12);
    font-weight: 850;
}

.admin-reset-note svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    color: var(--green-600);
}

.admin-app {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 282px minmax(0, 1fr);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 22px;
    padding: 22px;
    color: #fff;
    background:
        linear-gradient(180deg, rgba(16, 24, 47, 0.98), rgba(28, 42, 76, 0.96)),
        url("../img/b4.jpg") center / cover;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar-brand img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 4px;
    border-radius: var(--radius);
    background: #fff;
}

.admin-sidebar-brand strong,
.admin-sidebar-brand small {
    display: block;
}

.admin-sidebar-brand strong {
    color: #fff;
    font-weight: 900;
}

.admin-sidebar-brand small {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.admin-sidebar-nav,
.admin-sidebar-footer {
    display: grid;
    gap: 8px;
    align-content: start;
}

.admin-sidebar-nav a,
.admin-sidebar-footer a {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.76);
    font-weight: 850;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-sidebar-nav a:hover,
.admin-sidebar-nav a.active,
.admin-sidebar-footer a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(2px);
}

.admin-sidebar-nav a.active {
    color: var(--navy-950);
    background: var(--gold-400);
}

.admin-sidebar-footer {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.admin-sidebar-footer .danger {
    color: #ffd3da;
}

.admin-content {
    min-width: 0;
    padding: 26px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(28, 42, 76, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 54px rgba(16, 24, 47, 0.08);
}

.admin-topbar h1 {
    margin-top: 8px;
    color: var(--navy-900);
    font-size: 2.05rem;
}

.admin-profile-chip {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 220px;
    padding: 10px;
    border-radius: var(--radius);
    background: #f8fbff;
    border: 1px solid rgba(28, 42, 76, 0.09);
}

.admin-profile-chip > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
    font-weight: 950;
}

.admin-profile-chip strong,
.admin-profile-chip small {
    display: block;
}

.admin-profile-chip strong {
    color: var(--navy-900);
    font-weight: 900;
}

.admin-profile-chip small {
    color: var(--muted);
    font-weight: 750;
}

.admin-page-title {
    padding: 18px 4px 4px;
}

.admin-page-title p {
    color: var(--muted);
    font-weight: 750;
}

.admin-content .admin-shell,
.admin-content .admin-detail-shell {
    margin-top: 18px;
}

.admin-app .admin-stats-grid {
    grid-template-columns: repeat(4, minmax(170px, 1fr));
}

.admin-app .admin-stat-card {
    min-height: 132px;
    background: rgba(255, 255, 255, 0.94);
}

.admin-app .admin-toolbar,
.admin-app .admin-panel,
.admin-app .admin-detail-panel,
.admin-app .admin-edit-form {
    background: rgba(255, 255, 255, 0.96);
}

.admin-app .admin-table th {
    background: #eef4fa;
}

.admin-app .admin-table tbody tr:hover td {
    background: rgba(255, 179, 0, 0.05);
}

.admin-account-form {
    display: grid;
    gap: 18px;
    margin-top: 18px;
}

.admin-account-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-account-panel .admin-field div {
    background: #fff;
}

.admin-account-panel .admin-field input::placeholder {
    color: rgba(100, 112, 138, 0.72);
}

.admin-account-actions {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 1100px) {
    .admin-stats-grid,
    .admin-message-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .admin-login-page {
        grid-template-columns: 1fr;
    }

    .admin-login-showcase,
    .admin-login-panel {
        min-height: auto;
    }

    .admin-login-showcase {
        padding: 34px;
    }

    .admin-login-copy h1 {
        font-size: 3rem;
    }

    .admin-app {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .admin-sidebar {
        padding: 16px;
    }

    .admin-sidebar-brand span,
    .admin-sidebar-nav span,
    .admin-sidebar-footer span {
        display: none;
    }

    .admin-sidebar-brand,
    .admin-sidebar-nav a,
    .admin-sidebar-footer a {
        justify-content: center;
    }

    .admin-sidebar-brand img {
        width: 46px;
        height: 46px;
    }
}

@media (max-width: 800px) {
    .admin-hero-grid,
    .admin-toolbar {
        grid-template-columns: 1fr;
        display: grid;
        align-items: start;
    }

    .admin-hero-grid h1 {
        font-size: 2.2rem;
    }

    .admin-hero-actions {
        justify-content: flex-start;
    }

    .admin-app {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
        grid-template-rows: auto auto auto;
        padding: 12px;
    }

    .admin-sidebar-brand span,
    .admin-sidebar-nav span,
    .admin-sidebar-footer span {
        display: block;
    }

    .admin-sidebar-nav,
    .admin-sidebar-footer {
        grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
    }

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

    .admin-sidebar-nav a,
    .admin-sidebar-footer a {
        justify-content: center;
    }

    .admin-content {
        padding: 18px;
    }

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

    .admin-profile-chip {
        width: 100%;
    }

    .admin-search {
        width: 100%;
    }

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

    .admin-panel-heading,
    .admin-detail-heading {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .admin-dashboard-hero {
        padding-block: 104px 38px;
    }

    .admin-login-showcase,
    .admin-login-panel {
        padding: 22px;
    }

    .admin-login-copy h1 {
        font-size: 2.35rem;
    }

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

    .admin-auth-form {
        padding: 22px;
    }

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

    .admin-sidebar-nav a,
    .admin-sidebar-footer a {
        min-height: 44px;
        font-size: 0.86rem;
    }

    .admin-topbar h1 {
        font-size: 1.65rem;
    }

    .admin-stats-grid,
    .admin-message-grid,
    .admin-detail-grid,
    .admin-account-grid {
        grid-template-columns: 1fr;
    }

    .admin-panel,
    .admin-detail-panel,
    .admin-edit-form,
    .admin-toolbar,
    .admin-stat-card {
        padding: 18px;
    }

    .admin-detail-actions .btn {
        width: 100%;
    }

    .admin-account-actions,
    .admin-account-actions .admin-action-link {
        width: 100%;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(16, 24, 47, 0.92);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    width: min(980px, 100%);
    max-height: 76vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.lightbox p {
    margin-top: 16px;
    color: #fff;
    font-weight: 900;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.fade-in-fallback {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-fallback.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Cohesive design refresh */
:root {
    --teal-500: #16b8a6;
    --teal-600: #0f9388;
    --rose-500: #ef5b6a;
    --sky-500: #1da1f2;
    --surface-3: #eef7f4;
    --line-strong: rgba(28, 42, 76, 0.18);
    --shadow-card: 0 18px 46px rgba(16, 24, 47, 0.1);
    --shadow-hover: 0 26px 68px rgba(16, 24, 47, 0.17);
    --focus-ring: 0 0 0 4px rgba(230, 161, 0, 0.22);
}

body {
    background:
        linear-gradient(180deg, #f7f9fd 0%, #ffffff 42%, #f3faf7 100%);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(255, 179, 0, 0.72);
    outline-offset: 3px;
}

[id] {
    scroll-margin-top: 112px;
}

.site-header {
    padding-block: 14px;
}

.nav-wrap {
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 20px 62px rgba(0, 0, 0, 0.2);
}

.site-header.scrolled .nav-wrap {
    border-color: rgba(28, 42, 76, 0.12);
    box-shadow: 0 16px 46px rgba(16, 24, 47, 0.13);
}

.desktop-nav a,
.mobile-panel a,
.nav-register-btn,
.btn,
.mini-btn {
    letter-spacing: 0;
}

.nav-register-btn,
.btn-primary {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 42%),
        linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.btn {
    min-width: 0;
}

.btn:active,
.mini-btn:active,
.icon-btn:active {
    transform: translateY(0) scale(0.98);
}

.hero-section {
    min-height: 790px;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 150px;
    background: linear-gradient(180deg, transparent, rgba(16, 24, 47, 0.42));
    pointer-events: none;
}

.hero-bg {
    background:
        linear-gradient(90deg, rgba(16, 24, 47, 0.98) 0%, rgba(28, 42, 76, 0.88) 50%, rgba(16, 24, 47, 0.54) 100%),
        linear-gradient(135deg, rgba(230, 161, 0, 0.18), transparent 36%, rgba(22, 184, 166, 0.16)),
        url("../img/image.png") center / cover no-repeat;
}

.hero-copy h1 span {
    color: var(--gold-400);
    text-shadow: 0 12px 34px rgba(230, 161, 0, 0.25);
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.hero-badge-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 8px 10px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    font-size: 0.88rem;
    font-weight: 850;
}

.hero-badge-row svg,
.hero-proof svg {
    color: var(--gold-400);
    flex: 0 0 auto;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.2);
}

.section-heading {
    position: relative;
}

.section-heading::after {
    content: "";
    display: block;
    width: 76px;
    height: 3px;
    margin: 18px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--teal-500), var(--sky-500));
}

.section-heading.compact::after,
.section-heading.narrow::after {
    width: 58px;
}

.section-kicker svg,
.eyebrow svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.program-strip-section,
.features-section,
.contact-direct-section,
.contact-location-section,
.faq-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
}

.program-pill,
.popular-card,
.course-card,
.feature-card,
.contact-direct-card,
.faq-item,
.contact-map-card,
.contact-location-copy {
    box-shadow: var(--shadow-card);
}

.program-pill,
.popular-card,
.course-card,
.feature-card,
.contact-direct-card,
.faq-item {
    border-color: rgba(28, 42, 76, 0.1);
}

.program-pill:hover,
.popular-card:hover,
.feature-card:hover,
.contact-direct-card:hover {
    box-shadow: var(--shadow-hover);
}

.program-pill {
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.94));
}

.program-pill:hover {
    border-color: rgba(22, 184, 166, 0.34);
}

.popular-section,
.course-section,
.testimonials-section {
    background:
        linear-gradient(180deg, #f7faff 0%, #ffffff 56%, #f4fbf8 100%);
}

.popular-card,
.course-card,
.feature-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.96));
}

.popular-card {
    border-top: 4px solid var(--gold-400);
}

.popular-grid .popular-card:nth-child(3n+2) {
    border-top-color: var(--teal-500);
}

.popular-grid .popular-card:nth-child(3n+3) {
    border-top-color: var(--rose-500);
}

.popular-icon,
.course-icon,
.feature-icon,
.contact-direct-card > span {
    box-shadow: 0 16px 32px rgba(16, 24, 47, 0.16);
}

.popular-card .popular-icon svg {
    color: #fff;
}

.popular-grid .popular-card:nth-child(3n+1) .popular-icon,
.course-grid .course-card:nth-child(4n+1) .course-icon {
    background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
}

.popular-grid .popular-card:nth-child(3n+2) .popular-icon,
.course-grid .course-card:nth-child(4n+2) .course-icon,
.feature-grid .feature-card:nth-child(3n+2) .feature-icon {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
    color: #fff;
}

.popular-grid .popular-card:nth-child(3n+3) .popular-icon,
.course-grid .course-card:nth-child(4n+3) .course-icon,
.feature-grid .feature-card:nth-child(3n+3) .feature-icon {
    background: linear-gradient(135deg, var(--orange-500), var(--rose-500));
    color: #fff;
}

.popular-grid .popular-card:nth-child(3n+1) .popular-icon,
.course-grid .course-card:nth-child(4n+1) .course-icon {
    color: #fff;
}

.course-grid .course-card:nth-child(4n) .course-icon,
.feature-grid .feature-card:nth-child(3n+1) .feature-icon {
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
    color: var(--navy-950);
}

.course-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(22, 184, 166, 0.28);
}

.course-content p,
.feature-card p,
.popular-card p {
    color: #5d6880;
}

.stats-section,
.register-section,
.partners-section,
.cta-banner,
.contact-page-section {
    background-attachment: scroll;
}

.stats-shell {
    border-color: rgba(255, 255, 255, 0.18);
}

.stat-card {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
}

.stat-card:nth-child(even) svg {
    color: var(--teal-500);
}

.register-section::before,
.contact-page-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 78px 78px;
    pointer-events: none;
}

.register-layout,
.contact-layout,
.cta-content {
    position: relative;
    z-index: 1;
}

.standalone-registration-section {
    padding-block: 92px 104px;
}

.registration-page-layout {
    align-items: start;
}

.registration-hero {
    min-height: 520px;
}

.registration-hero .inner-hero-content {
    width: min(940px, calc(100% - 40px));
}

.registration-overview-section {
    position: relative;
    z-index: 4;
    padding-bottom: 42px;
    background:
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.registration-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: -62px;
}

.registration-overview-card {
    min-height: 194px;
    display: grid;
    align-content: start;
    gap: 9px;
    padding: 22px;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.95));
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: var(--shadow-card);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.registration-overview-card:hover {
    transform: translateY(-7px);
    border-color: rgba(22, 184, 166, 0.3);
    box-shadow: var(--shadow-hover);
}

.registration-overview-card > span {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
    box-shadow: 0 16px 32px rgba(16, 24, 47, 0.16);
}

.registration-overview-card:nth-child(2) > span {
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
}

.registration-overview-card:nth-child(3) > span {
    background: linear-gradient(135deg, var(--orange-500), var(--rose-500));
}

.registration-overview-card:nth-child(4) > span {
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.registration-overview-card small {
    color: var(--green-600);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.registration-overview-card strong {
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1.12rem;
}

.registration-overview-card p {
    color: var(--muted);
    font-weight: 650;
    font-size: 0.92rem;
}

.registration-main-section {
    position: relative;
    overflow: hidden;
    padding-block: 78px 108px;
    color: var(--ink);
    background:
        linear-gradient(180deg, #ffffff 0%, #f4faf8 100%);
}

.registration-main-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(28, 42, 76, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 42, 76, 0.04) 1px, transparent 1px);
    background-size: 74px 74px;
    pointer-events: none;
}

.registration-main-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 42px;
    align-items: start;
}

.registration-guidance-card {
    position: sticky;
    top: 118px;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.96), rgba(28, 42, 76, 0.9)),
        url("../img/b2.jpg") center / cover;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 28px 80px rgba(16, 24, 47, 0.22);
}

.registration-guidance-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(230, 161, 0, 0.12), transparent 42%, rgba(22, 184, 166, 0.12)),
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: auto, 64px 64px, 64px 64px;
    pointer-events: none;
}

.registration-guidance-card > * {
    position: relative;
    z-index: 1;
}

.registration-guidance-card h2,
.registration-form-column h2 {
    margin-top: 10px;
    font-size: 2.35rem;
}

.registration-guidance-card h2 {
    color: #fff;
}

.registration-guidance-card > p {
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.registration-timeline {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.registration-timeline div {
    position: relative;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 3px 12px;
}

.registration-timeline div:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 46px;
    bottom: -16px;
    width: 1px;
    background: rgba(255, 255, 255, 0.16);
}

.registration-timeline span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    grid-row: span 2;
    border-radius: 50%;
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
    font-family: var(--font-display);
    font-weight: 900;
}

.registration-timeline strong {
    color: #fff;
    font-size: 1rem;
}

.registration-timeline p {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 650;
    font-size: 0.92rem;
}

.registration-help-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.registration-help-strip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 12px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 850;
}

.registration-help-strip svg {
    color: var(--gold-400);
    flex: 0 0 auto;
}

.registration-form-column {
    min-width: 0;
}

.registration-form-column h2 {
    color: var(--navy-900);
}

.registration-form-column > p {
    width: min(660px, 100%);
    margin-top: 12px;
    color: var(--muted);
    font-weight: 650;
}

.registration-highlights.compact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 22px;
}

.registration-highlights.compact span {
    width: auto;
    color: var(--navy-900);
    background: rgba(28, 42, 76, 0.055);
    border-color: rgba(28, 42, 76, 0.1);
    backdrop-filter: none;
}

.registration-form-column .registration-form {
    padding: 28px;
}

.registration-first-section {
    position: relative;
    overflow: hidden;
    padding-block: 162px 82px;
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.96), rgba(28, 42, 76, 0.9)),
        url("../img/b6.jpg") center / cover;
}

.registration-first-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 74px 74px;
    pointer-events: none;
}

.registration-first-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
    gap: 36px;
}

.registration-priority-card {
    min-width: 0;
}

.registration-priority-card h1 {
    margin-top: 12px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 1.08;
}

.registration-priority-card > p {
    width: min(680px, 100%);
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
}

.registration-priority-card .registration-form {
    margin-top: 24px;
    box-shadow: 0 28px 86px rgba(0, 0, 0, 0.28);
}

.registration-first-help {
    position: relative;
    top: auto;
    margin-top: 44px;
}

.registration-first-help .registration-highlights.compact span {
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
}

.registration-overview-section {
    padding-block: 72px;
}

.registration-overview-section .section-heading {
    margin-bottom: 30px;
}

.registration-overview-grid {
    margin-top: 0;
}

.registration-related-section {
    padding-block: 82px 102px;
}

.registration-related-section .registration-guidance-card {
    position: relative;
    top: auto;
    min-height: 320px;
    display: grid;
    align-content: center;
}

.registration-timeline-panel {
    min-width: 0;
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: var(--shadow-card);
}

.registration-timeline-panel h2 {
    margin-top: 10px;
    color: var(--navy-900);
    font-size: 2.35rem;
}

.registration-timeline-panel .registration-timeline {
    margin-top: 24px;
}

.registration-timeline-panel .registration-timeline div:not(:last-child)::after {
    background: rgba(28, 42, 76, 0.14);
}

.registration-timeline-panel .registration-timeline strong {
    color: var(--navy-900);
}

.registration-timeline-panel .registration-timeline p {
    color: var(--muted);
}

.simple-registration-page {
    background: #f7f9fd;
}

.simple-registration-section {
    position: relative;
    overflow: visible;
    isolation: isolate;
    min-height: 100vh;
    display: grid;
    align-items: start;
    padding-block: 184px 86px;
    background:
        linear-gradient(180deg, rgba(247, 250, 255, 0.96) 0%, #ffffff 100%);
}

.simple-registration-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
        linear-gradient(rgba(28, 42, 76, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(28, 42, 76, 0.055) 1px, transparent 1px);
    background-size: 72px 72px;
}

.simple-registration-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(115deg, transparent 0 55%, rgba(255, 179, 0, 0.12) 55% 61%, transparent 61%),
        linear-gradient(115deg, transparent 0 64%, rgba(42, 182, 240, 0.12) 64% 70%, transparent 70%);
    pointer-events: none;
}

.simple-registration-wrap {
    width: min(840px, calc(100% - 40px));
}

.simple-registration-card-shell {
    position: relative;
    overflow: visible;
    padding: 34px;
    border: 1px solid rgba(28, 42, 76, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 28px 78px rgba(16, 24, 47, 0.14);
    backdrop-filter: blur(16px);
}

.simple-registration-card-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    background: linear-gradient(90deg, var(--gold-400), var(--green-500), var(--cyan-400));
}

.simple-registration-heading {
    margin-bottom: 26px;
    padding-bottom: 20px;
    text-align: left;
    border-bottom: 1px solid rgba(28, 42, 76, 0.1);
}

.simple-registration-heading h1 {
    margin-top: 12px;
    color: var(--navy-950);
    font-size: 2.28rem;
}

.simple-registration-wrap .simple-registration-card-shell .registration-form {
    position: relative;
    overflow: visible;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
}

.simple-registration-wrap .simple-registration-card-shell .registration-form::before {
    display: none;
}

.simple-registration-wrap .simple-registration-card-shell .form-row {
    margin-bottom: 18px;
}

.simple-registration-wrap .simple-registration-card-shell .form-row label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 850;
    text-transform: none;
}

.simple-registration-wrap .simple-registration-card-shell .registration-form input,
.simple-registration-wrap .simple-registration-card-shell .registration-form select {
    min-height: 58px;
    padding: 14px 16px;
    color: var(--ink);
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid #dce4ef;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 20px rgba(16, 24, 47, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.simple-registration-wrap .simple-registration-card-shell .custom-course-select-button {
    min-height: 58px;
    padding: 14px 16px;
}

.simple-registration-wrap .simple-registration-card-shell .registration-form input:hover,
.simple-registration-wrap .simple-registration-card-shell .registration-form select:hover,
.simple-registration-wrap .simple-registration-card-shell .custom-course-select-button:hover {
    border-color: rgba(28, 42, 76, 0.26);
    transform: translateY(-1px);
}

.simple-registration-wrap .simple-registration-card-shell .registration-form input:focus,
.simple-registration-wrap .simple-registration-card-shell .registration-form select:focus,
.simple-registration-wrap .simple-registration-card-shell .custom-course-select.open .custom-course-select-button {
    background: #fff;
    border-color: var(--navy-700);
    box-shadow: 0 0 0 4px rgba(42, 182, 240, 0.14), 0 12px 26px rgba(16, 24, 47, 0.08);
    transform: translateY(-1px);
}

.simple-registration-wrap .simple-registration-card-shell .registration-form input::placeholder {
    color: #8a96aa;
}

.simple-registration-wrap .simple-registration-card-shell .registration-form select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--navy-700) 50%),
        linear-gradient(135deg, var(--navy-700) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%;
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 38px;
}

.simple-registration-wrap .simple-registration-card-shell .submit-btn {
    width: 100%;
    min-height: 58px;
    margin-top: 8px;
    color: var(--navy-950);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 44%),
        linear-gradient(135deg, var(--gold-400), #f5c344);
    box-shadow: 0 18px 38px rgba(230, 161, 0, 0.24);
}

.simple-registration-wrap .simple-registration-card-shell .submit-btn:hover {
    color: #fff;
    background: var(--navy-900);
    box-shadow: 0 22px 48px rgba(16, 24, 47, 0.2);
}

.simple-registration-wrap .simple-registration-card-shell .form-message {
    margin-top: 14px;
    text-align: center;
}

@media (min-width: 1101px) {
    .register-section .registration-form,
    .contact-page-section .registration-form,
    .registration-main-section .registration-form {
        margin-right: 60px;
    }
}

.registration-form {
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(245, 249, 255, 0.96));
    border-color: rgba(255, 255, 255, 0.72);
    box-shadow: 0 28px 80px rgba(16, 24, 47, 0.22);
}

.registration-form label {
    color: var(--navy-900);
}

.registration-form input,
.registration-form select,
.registration-form textarea {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(28, 42, 76, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.registration-form .custom-course-select-button {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(28, 42, 76, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.registration-form .custom-course-select-button.has-value {
    color: var(--ink);
}

.registration-form .custom-course-select-button:focus-visible,
.registration-form .custom-course-select.open .custom-course-select-button {
    background: #fff;
    border-color: var(--gold-500);
    box-shadow: var(--focus-ring);
}

.registration-form input::placeholder,
.registration-form textarea::placeholder {
    color: rgba(100, 112, 138, 0.72);
}

.registration-form input:focus,
.registration-form select:focus,
.registration-form textarea:focus {
    background: #fff;
    border-color: var(--gold-500);
    box-shadow: var(--focus-ring);
}

.registration-form .form-message,
.registration-form .lite-form-message {
    color: var(--green-600) !important;
}

.registration-form .form-message.error,
.registration-form .lite-form-message.error {
    color: var(--rose-500) !important;
}

.contact-form-heading h3,
.contact-mini-panel strong {
    color: var(--navy-900);
}

.contact-copy-panel .contact-mini-panel strong {
    color: #fff;
}

.contact-form-heading p {
    color: var(--muted);
}

.contact-mini-panel {
    background: rgba(255, 255, 255, 0.12);
}

.contact-form-card::before {
    opacity: 0.7;
}

.testimonial-card {
    border-color: rgba(28, 42, 76, 0.1);
    box-shadow: var(--shadow-hover);
}

.testimonial-body {
    background:
        linear-gradient(160deg, #ffffff, #f8fbff);
}

.faq-item.open {
    border-color: rgba(22, 184, 166, 0.28);
    box-shadow: 0 18px 46px rgba(16, 24, 47, 0.12);
}

.faq-item.open button {
    color: var(--teal-600);
}

.cta-banner {
    min-height: auto;
}

.cta-content {
    width: min(940px, calc(100% - 40px));
}

.cta-points span {
    border-color: rgba(28, 42, 76, 0.12);
}

.inner-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.inner-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.72;
    pointer-events: none;
}

.inner-hero-content {
    position: relative;
    z-index: 1;
}

.program-page-meta span,
.contact-support-list span,
.registration-highlights span {
    border-color: rgba(255, 255, 255, 0.18);
}

.contact-direct-grid {
    gap: 18px;
    margin-top: 0;
}

.contact-direct-card:nth-child(2) > span {
    color: #fff;
    background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
}

.contact-direct-card:nth-child(3) > span {
    color: #fff;
    background: linear-gradient(135deg, var(--sky-500), var(--navy-600));
}

.contact-direct-card:nth-child(4) > span {
    color: #fff;
    background: linear-gradient(135deg, var(--orange-500), var(--rose-500));
}

.site-footer {
    background: #121b33;
}

.footer-grid {
    grid-template-columns: 1fr 0.62fr 0.88fr 1.35fr;
    gap: 38px;
}

.footer-bottom {
    padding-right: max(20px, calc((100% - 1180px) / 2));
}

.footer-contact-card {
    background: transparent;
    border-color: transparent;
}

.footer-contact-card p {
    align-items: center;
}

.footer-contact-card a[href^="mailto"] {
    font-size: 0.92rem;
    line-height: 1.35;
}

.footer-links a:hover,
.footer-program-links a:hover {
    transform: none;
}

.chatbot-panel {
    border-color: rgba(28, 42, 76, 0.12);
    box-shadow: 0 26px 82px rgba(16, 24, 47, 0.26);
}

.whatsapp-float,
.back-to-top,
.chatbot-toggle {
    right: clamp(14px, 2.4vw, 28px);
}

@media (max-width: 900px) {
    .hero-section {
        min-height: auto;
    }

    .hero-badge-row,
    .hero-proof,
    .hero-actions {
        justify-content: flex-start;
    }

    .section-heading::after {
        margin-top: 16px;
    }

    .registration-form {
        box-shadow: 0 22px 58px rgba(16, 24, 47, 0.22);
    }
}

@media (max-width: 700px) {
    .hero-badge-row span,
    .hero-proof span,
    .cta-points span,
    .registration-highlights span,
    .contact-support-list span {
        width: 100%;
    }

    .hero-actions .btn {
        flex: 1 1 190px;
    }

    .hero-section .hero-actions,
    .cta-content .hero-actions {
        padding-right: 60px;
    }

    .hero-section .hero-actions .btn,
    .cta-content .hero-actions .btn {
        flex-basis: 100%;
    }

    .register-section .register-copy,
    .contact-page-section .contact-copy-panel {
        padding-right: 60px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .program-pill,
    .popular-card,
    .course-card,
    .feature-card,
    .contact-direct-card {
        padding: 20px;
    }

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

    .contact-hero {
        min-height: auto;
        padding-bottom: 56px;
    }

    .inner-hero.contact-hero h1 {
        font-size: 2.15rem;
    }

    .contact-hero-meta {
        align-items: stretch;
    }
}

@media (max-width: 430px) {
    .nav-register-btn span {
        display: none;
    }

    .nav-register-btn {
        width: 48px;
        padding-inline: 0;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

@keyframes heroZoom {
    from {
        transform: scale(1.04);
    }
    to {
        transform: scale(1.1) translateX(16px);
    }
}

@keyframes gridMove {
    to {
        background-position: 72px 72px;
    }
}

@keyframes floatPanel {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes orbitSpin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitCounter {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes orbitCounterReverse {
    from {
        transform: translate(-50%, -50%) rotate(0);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(24);
    }
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@keyframes pulseWhatsApp {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.04);
    }
}

@keyframes chatbotPing {
    70% {
        box-shadow: 0 0 0 10px rgba(136, 191, 47, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(136, 191, 47, 0);
    }
}

@media (max-width: 1100px) {
    .nav-wrap {
        grid-template-columns: minmax(220px, 1fr) auto minmax(145px, 1fr);
        gap: 10px;
    }

    .brand strong {
        font-size: 0.98rem;
    }

    .brand small {
        font-size: 0.72rem;
    }

    .desktop-nav a {
        font-size: 0.84rem;
        padding-inline: 10px;
    }

    .nav-register-btn {
        min-height: 50px;
        padding-inline: 15px;
        font-size: 0.9rem;
    }

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

    .program-strip,
    .popular-grid,
    .course-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .stats-heading {
        gap: 0;
    }

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

    .contact-direct-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }

    .contact-layout,
    .contact-location-layout {
        grid-template-columns: 1fr;
    }

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

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
        gap: 28px;
    }

    .hero-tech-orbit {
        --outer-radius: 166px;
        --inner-radius: 104px;
    }

    .tech-orbit-label {
        font-size: 0.74rem;
        padding: 8px 9px;
    }
}

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

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
        justify-self: end;
    }

    .hero-copy h1 {
        font-size: 3.25rem;
    }

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

    .hero-tech-orbit {
        justify-self: center;
        width: 390px;
        max-width: calc(100vw - 40px);
        margin-top: 20px;
    }

    .course-grid,
    .feature-grid,
    .gallery-grid,
    .course-menu-grid,
    .register-layout,
    .faq-layout,
    .short-course-wrap {
        grid-template-columns: 1fr;
    }

    .contact-direct-grid {
        margin-top: 0;
    }

    .contact-copy-panel h2 {
        font-size: 2.2rem;
    }

    .contact-map-card {
        min-height: 340px;
    }

    .testimonial-card {
        grid-template-columns: 1fr;
        position: relative;
        display: none;
        min-height: 0;
    }

    .testimonial-card.active {
        display: grid;
    }

    .testimonial-slider {
        min-height: 400px;
    }

    .marquee-heading {
        display: grid;
        gap: 18px;
        align-items: start;
    }

    .marquee-heading h2 {
        font-size: 2rem;
    }

    .marquee-heading p {
        width: min(620px, 100%);
    }
}

@media (max-width: 700px) {
    [data-aos="fade-left"],
    [data-aos="fade-right"] {
        transform: translate3d(0, 24px, 0) !important;
    }

    .container {
        width: min(100% - 28px, 1180px);
    }

    .brand span {
        display: none;
    }

    .brand {
        padding-right: 5px;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .site-header.scrolled .brand img {
        width: 48px;
        height: 48px;
    }

    .nav-wrap {
        min-height: 66px;
        gap: 8px;
    }

    .nav-register-btn {
        min-height: 46px;
        padding: 12px 13px;
        font-size: 0.84rem;
    }

    .nav-register-btn svg {
        width: 18px;
        height: 18px;
    }

    .mobile-panel {
        top: 84px;
        left: 14px;
        right: 14px;
        max-height: calc(100vh - 98px);
    }

    .hero-section {
        min-height: 820px;
        padding-block: 120px 76px;
    }

    .hero-copy h1 {
        font-size: 2.55rem;
    }

    .typing-line {
        font-size: 1.05rem;
    }

    .hero-tech-orbit {
        --outer-radius: 126px;
        --inner-radius: 78px;
        width: 310px;
        max-width: calc(100vw - 38px);
    }

    .orbit-center {
        width: 108px;
        min-height: 120px;
        padding: 10px;
    }

    .orbit-center img {
        width: 66px;
        height: 66px;
    }

    .tech-orbit-label {
        min-height: 32px;
        padding: 7px 8px;
        font-size: 0.68rem;
    }

    .tech-orbit-label svg {
        width: 15px;
        height: 15px;
    }

    .section {
        padding-block: 72px;
    }

    .section-heading h2,
    .register-copy h2,
    .faq-copy h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .stats-section,
    .partners-section {
        padding-block: 70px;
    }

    .stats-heading h2 {
        font-size: 2rem;
    }

    .stat-card {
        min-height: 148px;
    }

    .course-grid,
    .stats-shell,
    .program-strip,
    .popular-grid,
    .course-menu-grid {
        grid-template-columns: 1fr;
    }

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

    .registration-form,
    .testimonial-body {
        padding: 20px;
    }

    .contact-direct-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .contact-direct-section {
        padding-block: 42px;
    }

    .contact-direct-card {
        min-height: 0;
    }

    .contact-copy-panel h2,
    .contact-location-copy h2 {
        font-size: 1.95rem;
    }

    .contact-mini-panel,
    .contact-form-heading {
        align-items: flex-start;
    }

    .contact-form-heading {
        display: grid;
    }

    .contact-location-copy {
        padding: 22px;
    }

    .testimonial-slider {
        min-height: 430px;
    }

    .testimonial-body {
        padding: 28px 24px 92px;
    }

    .testimonial-body::before {
        right: 20px;
        top: 14px;
        font-size: 5.8rem;
    }

    .testimonial-body p {
        font-size: 1rem;
    }

    .testimonial-controls {
        right: 16px;
        bottom: 16px;
    }

    .partner-logo {
        min-width: 205px;
    }

    .cta-banner {
        min-height: auto;
        padding-block: 72px 82px;
    }

    .cta-points {
        justify-content: center;
    }

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

    .footer-topline {
        padding-block: 42px 24px;
    }

    .footer-topline h2 {
        font-size: 1.55rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .inner-hero h1 {
        font-size: 2.25rem;
    }

    .chatbot-panel {
        right: 14px;
        left: 14px;
        bottom: 82px;
        width: auto;
        max-height: calc(100vh - 112px);
    }

    .chatbot-field-row {
        grid-template-columns: 1fr;
    }

    .chatbot-messages {
        min-height: 78px;
        max-height: 130px;
    }

    .whatsapp-float,
    .back-to-top,
    .chatbot-toggle {
        right: 14px;
        width: 54px;
        height: 54px;
    }

    .whatsapp-float {
        bottom: 18px;
    }

    .whatsapp-icon {
        width: 29px;
        height: 29px;
    }

    .chatbot-toggle {
        bottom: 88px;
        transform: translateY(0);
    }

    .back-to-top {
        bottom: 158px;
    }
}

@media (max-width: 1100px) {
    .registration-first-layout {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    }

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

@media (max-width: 900px) {
    .simple-registration-section {
        padding-block: 170px 70px;
    }

    .registration-first-section {
        padding-block: 136px 64px;
    }

    .registration-first-layout {
        grid-template-columns: 1fr;
    }

    .registration-first-help {
        margin-top: 0;
    }

    .registration-hero {
        min-height: 500px;
    }

    .registration-main-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .registration-guidance-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 700px) {
    .simple-registration-section {
        padding-block: 152px 54px;
    }

    .simple-registration-wrap {
        width: min(100% - 24px, 840px);
    }

    .simple-registration-card-shell {
        padding: 22px;
    }

    .simple-registration-heading h1 {
        font-size: 1.9rem;
    }

    .simple-registration-wrap .registration-form {
        padding: 20px;
    }

    .simple-registration-wrap .registration-form input,
    .simple-registration-wrap .registration-form select,
    .simple-registration-wrap .custom-course-select-button {
        min-height: 52px;
    }

    .custom-course-select-list {
        position: fixed;
        left: 14px;
        right: 14px;
        top: auto;
        bottom: max(16px, env(safe-area-inset-bottom));
        z-index: 2600;
        max-height: calc(100dvh - 110px);
        padding: 6px;
        border-radius: 12px;
        box-shadow: 0 28px 70px rgba(16, 24, 47, 0.28);
    }

    .custom-course-select-option {
        min-height: 32px;
        padding: 7px 10px;
        font-size: 0.9rem;
    }

    body.course-picker-open {
        overflow: hidden;
    }

    body.course-picker-open .whatsapp-float,
    body.course-picker-open .back-to-top,
    body.course-picker-open .chatbot-toggle {
        display: none;
    }

    .registration-first-section {
        padding-block: 122px 52px;
    }

    .registration-priority-card h1 {
        font-size: 2.1rem;
    }

    .registration-priority-card .registration-form {
        padding: 20px;
    }

    .registration-hero {
        min-height: 520px;
    }

    .registration-overview-section {
        padding-block: 46px;
    }

    .registration-overview-grid {
        grid-template-columns: 1fr;
        margin-top: 0;
    }

    .registration-overview-card {
        min-height: 0;
        padding: 20px 72px 20px 20px;
    }

    .registration-main-section {
        padding-block: 62px 78px;
    }

    .registration-main-layout {
        padding-right: 60px;
        gap: 26px;
    }

    .registration-guidance-card {
        padding: 22px;
    }

    .registration-guidance-card h2,
    .registration-form-column h2,
    .registration-timeline-panel h2 {
        font-size: 2rem;
    }

    .registration-help-strip {
        grid-template-columns: 1fr;
    }

    .registration-highlights.compact span {
        width: 100%;
    }

    .registration-form-column .registration-form {
        padding: 20px;
    }

    .registration-timeline-panel {
        padding: 22px;
    }
}

/* Simple navbar and home carousel refresh */
.site-header {
    padding-block: 0;
    overflow: visible;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 28px rgba(16, 24, 47, 0.12);
    backdrop-filter: blur(14px);
}

.site-header::before {
    display: none;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), var(--green-500), var(--cyan-400), var(--gold-400), transparent);
    background-size: 260% 100%;
    opacity: 0.9;
    animation: navBorderFlow 4s linear infinite;
    pointer-events: none;
}

.site-header.scrolled {
    padding-block: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px rgba(16, 24, 47, 0.12);
    backdrop-filter: blur(14px);
}

.site-header .container.nav-wrap {
    width: min(1320px, calc(100% - 40px));
    max-width: 1320px;
    margin-inline: auto;
}

.top-contact-bar {
    position: relative;
    z-index: 2;
    color: var(--navy-900);
    background: #fff;
    border-bottom: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: 0 8px 24px rgba(16, 24, 47, 0.08);
}

.top-contact-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-block: 7px;
    font-size: 0.84rem;
    font-weight: 800;
}

.top-contact-details,
.top-social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-contact-details {
    min-width: 0;
}

.top-social-links {
    flex: 0 0 auto;
    gap: 8px;
}

.top-contact-details a,
.top-contact-details > span,
.top-social-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--navy-900);
    white-space: nowrap;
}

.top-contact-inner a:hover {
    color: var(--navy-600);
}

.top-contact-inner svg {
    width: 16px;
    height: 16px;
    color: var(--gold-500);
    flex: 0 0 auto;
}

.top-social-links a {
    width: 28px;
    height: 28px;
    justify-content: center;
    gap: 0;
    border-radius: 50%;
    background: rgba(28, 42, 76, 0.06);
    border: 1px solid rgba(28, 42, 76, 0.12);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-social-links a:hover {
    color: var(--navy-950);
    background: var(--gold-400);
    transform: translateY(-1px);
}

.top-social-links svg {
    width: 15px;
    height: 15px;
    color: currentColor;
}

.training-marquee-bar {
    position: relative;
    z-index: 2;
    color: #fff;
    background: linear-gradient(90deg, var(--navy-950), var(--navy-800));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 26px rgba(16, 24, 47, 0.16);
}

.training-marquee-inner {
    width: 100%;
    min-height: 34px;
    display: block;
    margin: 0;
    padding-block: 7px;
    font-size: 0.86rem;
    font-weight: 900;
    overflow: hidden;
}

.training-marquee-inner marquee {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.training-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 72px;
    white-space: nowrap;
}

.training-marquee-star {
    color: var(--gold-400);
    font-size: 1rem;
    line-height: 1;
    text-shadow: 0 0 14px rgba(255, 179, 0, 0.45);
}

.nav-wrap,
.site-header.scrolled .nav-wrap {
    grid-template-columns: minmax(300px, auto) minmax(0, 1fr) auto;
    min-height: 82px;
    gap: 20px;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    overflow: visible;
}

.brand {
    gap: 12px;
    padding: 4px 10px 4px 4px;
}

.brand:hover,
.site-header.scrolled .brand {
    background: rgba(28, 42, 76, 0.04);
    transform: none;
}

.brand img,
.site-header.scrolled .brand img {
    width: 58px;
    height: 58px;
    padding: 4px;
    border: 1px solid rgba(28, 42, 76, 0.1);
    box-shadow: none;
}

.brand strong,
.site-header.scrolled .brand strong {
    color: var(--navy-900);
    font-size: 1.04rem;
    font-weight: 800;
}

.brand small,
.site-header.scrolled .brand small {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
}

.desktop-nav,
.site-header.scrolled .desktop-nav {
    gap: 8px;
    justify-self: center;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.premium-nav::before {
    display: none;
}

.desktop-nav a,
.site-header.scrolled .desktop-nav a {
    min-height: 44px;
    padding: 10px 14px;
    color: var(--navy-800);
    border-radius: 7px;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 750;
    transform: none;
}

.desktop-nav a:hover,
.desktop-nav a.active,
.site-header.scrolled .desktop-nav a:hover,
.site-header.scrolled .desktop-nav a.active {
    color: var(--navy-950);
    background: rgba(255, 179, 0, 0.16);
    transform: none;
}

.desktop-nav a::after {
    left: 14px;
    right: 14px;
    bottom: 7px;
    height: 2px;
    background: var(--gold-500);
}

.nav-register-btn,
.site-header.scrolled .nav-register-btn,
.nav-register-btn.active {
    min-height: 48px;
    padding: 12px 18px;
    color: var(--navy-950);
    border: 1px solid rgba(230, 161, 0, 0.34);
    border-radius: var(--radius);
    background: var(--gold-400);
    box-shadow: none;
    font-weight: 850;
}

.nav-register-btn:hover,
.site-header.scrolled .nav-register-btn:hover,
.site-header.scrolled .nav-register-btn.active {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
    box-shadow: none;
    transform: none;
}

.nav-register-btn svg {
    width: 19px;
    height: 19px;
}

.nav-dropdown-menu {
    z-index: 1200;
    top: calc(100% + 10px);
    width: 260px;
    padding: 8px;
    border-color: rgba(28, 42, 76, 0.12);
    box-shadow: 0 18px 48px rgba(16, 24, 47, 0.14);
}

.nav-dropdown-menu a,
.site-header.scrolled .nav-dropdown-menu a {
    min-height: 42px;
    justify-content: flex-start;
    color: var(--navy-900) !important;
    background: transparent;
}

.nav-dropdown-menu a:hover {
    color: var(--navy-950) !important;
    background: rgba(255, 179, 0, 0.14);
    transform: none;
}

.site-header .icon-btn,
.site-header.scrolled .icon-btn {
    color: var(--navy-900);
    background: #fff;
    border-color: rgba(28, 42, 76, 0.12);
}

.site-header .icon-btn:hover,
.site-header.scrolled .icon-btn:hover {
    color: var(--navy-950);
    background: rgba(255, 179, 0, 0.18);
    transform: none;
}

.mobile-panel {
    top: 154px;
    left: 50%;
    right: auto;
    width: min(520px, calc(100% - 28px));
    border-color: rgba(28, 42, 76, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 60px rgba(16, 24, 47, 0.18);
    transform: translate(-50%, -16px);
}

.mobile-panel.open {
    transform: translate(-50%, 0);
}

.mobile-panel a {
    color: var(--navy-900);
}

.mobile-panel a:hover {
    background: rgba(28, 42, 76, 0.06);
}

.mobile-subnav {
    border-color: rgba(28, 42, 76, 0.1);
    background: rgba(28, 42, 76, 0.04);
}

.mobile-subnav-toggle {
    color: var(--navy-900);
}

.mobile-subnav-toggle:hover {
    background: rgba(28, 42, 76, 0.06);
}

.mobile-subnav-toggle span {
    color: var(--navy-900);
}

.mobile-panel .mobile-register,
.mobile-panel .mobile-register.active {
    color: var(--navy-950);
    background: var(--gold-400);
}

.hero-section.hero-carousel {
    min-height: 720px;
    display: block;
    padding: 0;
    background: var(--navy-950);
}

.hero-section.hero-carousel::after {
    display: none;
}

.hero-slider {
    position: relative;
    min-height: inherit;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.75s ease-in-out;
    will-change: transform;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: -24px;
    z-index: -4;
    background: var(--hero-slide-image) center / cover no-repeat;
    filter: blur(14px) saturate(0.92);
    opacity: 0.62;
    transform: scale(1.04);
}

.hero-slide.active {
    z-index: 3;
    transform: translate3d(0, 0, 0);
    pointer-events: auto;
}

.hero-slide.is-prev {
    transform: translate3d(-100%, 0, 0);
}

.hero-slide.is-next {
    transform: translate3d(100%, 0, 0);
}

.hero-slide-image,
.hero-slide-shade {
    position: absolute;
    inset: 0;
}

.hero-slide-image {
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 1;
    transform: none;
    transition: none;
}

.hero-slide.active .hero-slide-image {
    transform: none;
}

.hero-slide-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(16, 24, 47, 0.88) 0%, rgba(16, 24, 47, 0.74) 42%, rgba(16, 24, 47, 0.44) 72%, rgba(16, 24, 47, 0.16) 100%),
        linear-gradient(180deg, rgba(16, 24, 47, 0.18), rgba(16, 24, 47, 0.46));
}

.hero-slide-content {
    min-height: 720px;
    display: flex;
    align-items: center;
    padding-top: 166px;
    padding-bottom: 90px;
}

.hero-carousel .hero-copy {
    position: relative;
    width: min(590px, 100%);
    padding-left: 18px;
}

.hero-carousel .hero-copy::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 10px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--gold-400), var(--green-500), var(--cyan-400));
    box-shadow: 0 0 28px rgba(255, 179, 0, 0.32);
}

.hero-carousel .hero-copy h1 {
    margin-top: 14px;
    max-width: 600px;
    color: #fff;
    font-size: 3.05rem;
    line-height: 1.04;
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.42);
}

.hero-carousel .hero-copy h1 span {
    display: block;
    margin-top: 8px;
    color: var(--gold-400);
    text-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
}

.hero-carousel .hero-lead {
    max-width: 500px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 740;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.34);
}

.hero-carousel .eyebrow {
    min-height: 38px;
    padding: 9px 12px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(16, 24, 47, 0.34);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

.hero-carousel .hero-proof span {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(16, 24, 47, 0.28);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

.hero-carousel .hero-proof {
    gap: 22px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-carousel .hero-proof span {
    min-height: 0;
    padding: 0;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    font-size: 0.86rem;
}

.hero-carousel .hero-proof strong {
    color: var(--gold-400);
    font-weight: 950;
}

.hero-carousel .btn {
    min-height: 48px;
    padding: 12px 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.hero-carousel .hero-actions {
    margin-top: 24px;
}

.hero-carousel .btn:hover {
    transform: translateY(-2px);
}

.hero-carousel .btn-ghost {
    color: #fff;
    background: rgba(16, 24, 47, 0.24);
    border-color: rgba(255, 255, 255, 0.34);
}

.hero-carousel-controls {
    position: absolute;
    left: 50%;
    bottom: 34px;
    z-index: 4;
    width: min(1180px, calc(100% - 40px));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-arrow-group,
.hero-carousel-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.hero-carousel-controls .icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}

.hero-carousel-controls .icon-btn:hover {
    color: var(--navy-950);
    background: var(--gold-400);
    transform: none;
}

.hero-carousel-dot {
    width: 30px;
    height: 4px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.hero-carousel-dot.active {
    width: 46px;
    background: var(--gold-400);
}

@keyframes navBorderFlow {
    from {
        background-position: 0% 50%;
    }
    to {
        background-position: 260% 50%;
    }
}

@media (max-width: 1100px) {
    .site-header .container.nav-wrap {
        width: min(100% - 32px, 1180px);
    }

    .top-contact-inner {
        gap: 12px;
        font-size: 0.78rem;
    }

    .training-marquee-inner {
        min-height: 36px;
        gap: 10px;
        font-size: 0.78rem;
    }

    .top-contact-details {
        gap: 12px;
    }

    .nav-wrap,
    .site-header.scrolled .nav-wrap {
        grid-template-columns: minmax(260px, auto) minmax(0, 1fr) auto;
        gap: 12px;
    }

    .desktop-nav a,
    .site-header.scrolled .desktop-nav a {
        padding-inline: 9px;
        font-size: 0.84rem;
    }

    .nav-register-btn,
    .site-header.scrolled .nav-register-btn {
        padding-inline: 14px;
        font-size: 0.88rem;
    }

    .hero-section.hero-carousel,
    .hero-slide-content {
        min-height: 680px;
    }

    .hero-carousel .hero-copy h1 {
        font-size: 2.72rem;
    }

    .hero-carousel .hero-copy {
        width: min(560px, 100%);
    }
}

@media (max-width: 900px) {
    .site-header .container.nav-wrap {
        width: min(100% - 28px, 1180px);
    }

    .top-contact-inner {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .top-contact-details {
        flex: 1 1 auto;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .top-contact-details::-webkit-scrollbar {
        display: none;
    }

    .top-social-links {
        position: sticky;
        right: 0;
        padding-left: 8px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 22%);
    }

    .top-contact-inner::-webkit-scrollbar {
        display: none;
    }

    .nav-wrap,
    .site-header.scrolled .nav-wrap {
        grid-template-columns: 1fr auto auto;
    }

    .hero-section.hero-carousel,
    .hero-slide-content {
        min-height: 700px;
    }

    .hero-slide-shade {
        background:
            linear-gradient(90deg, rgba(16, 24, 47, 0.9) 0%, rgba(16, 24, 47, 0.76) 58%, rgba(16, 24, 47, 0.34) 100%),
            linear-gradient(180deg, rgba(16, 24, 47, 0.18), rgba(16, 24, 47, 0.5));
    }

    .hero-carousel .hero-copy h1 {
        font-size: 2.42rem;
    }

    .hero-carousel .hero-lead {
        max-width: 500px;
    }
}

@media (max-width: 700px) {
    .site-header {
        padding-block: 0;
    }

    .site-header .container.nav-wrap {
        width: min(100% - 20px, 1180px);
    }

    .nav-wrap,
    .site-header.scrolled .nav-wrap {
        min-height: 70px;
        padding: 7px 0;
        gap: 8px;
    }

    .brand img,
    .site-header.scrolled .brand img {
        width: 52px;
        height: 52px;
    }

    .training-marquee-inner {
        min-height: 34px;
        font-size: 0.75rem;
    }

    .mobile-panel {
        top: 142px;
    }

    .hero-section.hero-carousel,
    .hero-slide-content {
        min-height: 720px;
    }

    .hero-slide-content {
        padding-top: 172px;
        padding-bottom: 112px;
    }

    .hero-carousel .hero-copy h1 {
        font-size: 2.02rem;
        line-height: 1.04;
    }

    .hero-carousel .hero-lead {
        font-size: 0.92rem;
    }

    .hero-carousel .hero-copy {
        padding-left: 16px;
    }

    .hero-carousel .hero-copy::before {
        top: 6px;
        bottom: 6px;
        width: 3px;
    }

    .hero-carousel .hero-proof span {
        width: auto;
    }

    .hero-section .hero-actions {
        padding-right: 0;
    }

    .hero-section .hero-actions .btn {
        flex: 1 1 180px;
    }

    .hero-carousel-controls {
        bottom: 24px;
        align-items: flex-end;
    }

    .hero-carousel-dots {
        gap: 7px;
    }
}

@media (max-width: 520px) {
    .hero-carousel .hero-proof {
        display: grid;
        gap: 9px;
    }

    .hero-carousel .hero-proof span {
        width: 100%;
    }

    .hero-section .hero-actions .btn {
        flex-basis: 100%;
    }

    .hero-carousel-controls {
        justify-content: center;
    }

    .hero-arrow-group {
        display: none;
    }
}

/* Responsive hardening across public and admin pages */
main,
section,
.container,
.admin-content,
.admin-shell,
.admin-panel,
.registration-form,
.contact-form-card,
.course-card,
.course-menu-card,
.feature-card,
.testimonial-card,
.footer-grid > *,
.admin-table-scroll {
    min-width: 0;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

.admin-table-scroll,
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.course-card p,
.course-menu-card p,
.contact-direct-card strong,
.contact-direct-card em,
.footer-contact-card a,
.footer-contact-card span,
.admin-profile-chip small,
.admin-table td,
.chatbot-panel,
.simple-registration-heading h1 {
    overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
    .courses-hero-layout,
    .contact-layout,
    .contact-location-layout,
    .registration-first-layout,
    .registration-main-layout,
    .admin-edit-layout {
        grid-template-columns: 1fr;
    }

    .courses-hero-panel,
    .contact-copy-panel,
    .contact-location-copy,
    .registration-guidance-card {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: inline-grid;
    }

    .top-contact-details {
        gap: 14px;
    }

    .hero-actions,
    .courses-hero-actions,
    .program-page-meta,
    .cta-points,
    .catalogue-summary,
    .registration-highlights,
    .contact-support-list {
        flex-wrap: wrap;
    }

    .course-grid,
    .feature-grid,
    .gallery-grid,
    .program-strip,
    .popular-grid,
    .course-menu-grid,
    .stats-shell,
    .contact-direct-grid,
    .footer-grid,
    .registration-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .testimonial-card,
    .register-layout,
    .faq-layout,
    .short-course-wrap {
        grid-template-columns: 1fr;
    }

    .admin-profile-chip,
    .admin-search,
    .admin-search input {
        width: 100%;
    }
}

@media (max-width: 700px) {
    .container,
    .site-header .container.nav-wrap {
        width: min(100% - 24px, 1180px);
    }

    .top-contact-bar {
        font-size: 0.76rem;
    }

    .top-contact-inner {
        min-height: 34px;
        padding-block: 5px;
    }

    .top-contact-details {
        gap: 12px;
    }

    .top-social-links a {
        width: 26px;
        height: 26px;
    }

    .training-marquee-inner {
        min-height: 32px;
        padding-block: 6px;
        font-size: 0.72rem;
    }

    .training-marquee-item {
        margin-right: 42px;
    }

    .nav-actions .nav-register-btn span {
        display: none;
    }

    .nav-actions .nav-register-btn {
        width: 48px;
        min-height: 48px;
        padding: 0;
        justify-content: center;
    }

    .mobile-panel {
        top: 136px;
        left: 12px;
        right: 12px;
        width: auto;
        max-height: calc(100vh - 148px);
        overflow-y: auto;
        transform: translateY(-16px);
    }

    .mobile-panel.open {
        transform: translateY(0);
    }

    .hero-section.hero-carousel,
    .hero-slide-content {
        min-height: 690px;
    }

    .hero-slide-content {
        padding-top: 156px;
        padding-bottom: 104px;
    }

    .hero-carousel .hero-copy h1,
    .inner-hero h1,
    .courses-hero-copy h1,
    .registration-form-column h2,
    .contact-copy-panel h2,
    .contact-location-copy h2,
    .cta-content h2 {
        font-size: 1.84rem;
        line-height: 1.12;
    }

    .hero-carousel .eyebrow,
    .section-kicker {
        max-width: 100%;
        white-space: normal;
    }

    .hero-actions,
    .courses-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-actions .btn,
    .courses-hero-actions .btn,
    .submit-btn,
    .admin-action-link,
    .admin-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .course-grid,
    .feature-grid,
    .gallery-grid,
    .program-strip,
    .popular-grid,
    .course-menu-grid,
    .stats-shell,
    .contact-direct-grid,
    .footer-grid,
    .registration-overview-grid,
    .admin-stats-grid,
    .admin-message-grid,
    .admin-detail-grid,
    .admin-account-grid {
        grid-template-columns: 1fr;
    }

    .course-menu-card {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .course-menu-card > svg:last-child {
        display: none;
    }

    .contact-direct-card strong {
        font-size: 1.05rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact-card {
        text-align: left;
    }

    .admin-content {
        padding: 14px;
    }

    .admin-panel,
    .admin-detail-panel,
    .admin-edit-form,
    .admin-toolbar,
    .admin-stat-card,
    .admin-auth-form {
        padding: 18px;
    }

    .admin-sidebar-nav,
    .admin-sidebar-footer {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 430px) {
    .container,
    .site-header .container.nav-wrap {
        width: min(100% - 18px, 1180px);
    }

    .top-contact-details a span,
    .top-contact-details > span span {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .brand img,
    .site-header.scrolled .brand img {
        width: 46px;
        height: 46px;
    }

    .nav-wrap,
    .site-header.scrolled .nav-wrap {
        min-height: 62px;
    }

    .mobile-panel {
        top: 128px;
    }

    .hero-section.hero-carousel,
    .hero-slide-content {
        min-height: 650px;
    }

    .hero-slide-content {
        padding-top: 142px;
        padding-bottom: 98px;
    }

    .hero-carousel .hero-copy {
        padding-left: 13px;
    }

    .hero-carousel .hero-copy h1,
    .inner-hero h1,
    .courses-hero-copy h1,
    .admin-login-copy h1 {
        font-size: 1.58rem;
    }

    .hero-carousel .hero-lead,
    .inner-hero p,
    .courses-hero-copy p {
        font-size: 0.92rem;
    }

    .section {
        padding-block: 56px;
    }

    .section-heading h2,
    .marquee-heading h2,
    .simple-registration-heading h1 {
        font-size: 1.65rem;
    }

    .simple-registration-card-shell,
    .registration-form,
    .contact-copy-panel,
    .contact-location-copy,
    .contact-form-card {
        padding: 18px;
    }

    .simple-registration-wrap .simple-registration-card-shell .registration-form input,
    .simple-registration-wrap .simple-registration-card-shell .registration-form select,
    .simple-registration-wrap .simple-registration-card-shell .custom-course-select-button {
        min-height: 52px;
    }

    .chatbot-panel {
        right: 10px;
        left: 10px;
        width: auto;
        max-height: calc(100vh - 104px);
    }

    .chatbot-head,
    .chatbot-intro,
    .chatbot-messages,
    .chatbot-form {
        padding-inline: 10px;
    }

    .chatbot-field-row {
        grid-template-columns: 1fr;
    }

    .chatbot-messages {
        min-height: 70px;
        max-height: 112px;
    }

    .admin-table {
        min-width: 760px;
    }
}

@media (max-width: 360px) {
    .container,
    .site-header .container.nav-wrap {
        width: min(100% - 14px, 1180px);
    }

    .top-contact-details a span,
    .top-contact-details > span span {
        max-width: 150px;
    }

    .nav-actions .nav-register-btn,
    .menu-toggle {
        width: 44px;
        height: 44px;
        min-height: 44px;
    }

    .brand img,
    .site-header.scrolled .brand img {
        width: 42px;
        height: 42px;
    }

    .hero-carousel .hero-copy h1,
    .inner-hero h1,
    .courses-hero-copy h1 {
        font-size: 1.58rem;
    }

    .hero-carousel .btn,
    .btn {
        min-height: 48px;
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .simple-registration-card-shell,
    .registration-form,
    .contact-form-card,
    .admin-panel,
    .admin-auth-form {
        padding: 16px;
    }

    .whatsapp-float,
    .back-to-top,
    .chatbot-toggle {
        width: 50px;
        height: 50px;
    }
}

.site-header .top-contact-inner {
    width: min(1320px, calc(100% - 40px));
    max-width: 1320px;
    margin-inline: auto;
    min-height: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    column-gap: 28px;
    padding: 0 10px;
}

.site-header .top-contact-details {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(18px, 3vw, 34px);
    min-width: 0;
}

.site-header .top-contact-details a,
.site-header .top-contact-details > span {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--navy-900);
    font-size: 0.88rem;
    font-weight: 850;
    line-height: 1;
    white-space: nowrap;
}

.site-header .top-contact-details svg {
    width: 17px;
    height: 17px;
    color: var(--gold-500);
}

.site-header .top-social-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.site-header .top-social-links a {
    width: 32px;
    height: 32px;
}

@media (max-width: 900px) {
    .site-header .top-contact-inner {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scrollbar-width: none;
        width: min(100% - 28px, 1180px);
    }

    .site-header .top-contact-details {
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .site-header .top-contact-details::-webkit-scrollbar,
    .site-header .top-contact-inner::-webkit-scrollbar {
        display: none;
    }

    .site-header .top-contact-details a,
    .site-header .top-contact-details > span {
        font-size: 0.8rem;
    }

    .site-header .top-contact-details a[href^="mailto"] {
        display: none;
    }

    .site-header .top-contact-details > span {
        display: none;
    }

    .site-header .top-social-links {
        flex: 0 0 auto;
        position: sticky;
        right: 0;
        padding-left: 10px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 24%);
    }

    .mobile-panel {
        top: 124px;
        max-height: calc(100vh - 136px);
    }
}

@media (max-width: 620px) {
    .site-header .top-contact-inner {
        width: min(100% - 24px, 1180px);
        min-height: 36px;
    }

    .site-header .top-contact-details a,
    .site-header .top-contact-details > span {
        min-height: 36px;
        font-size: 0.76rem;
    }

    .site-header .top-contact-details svg {
        width: 15px;
        height: 15px;
    }

    .site-header .top-social-links a {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 700px) {
    .mobile-panel {
        top: 136px;
        max-height: calc(100vh - 148px);
    }
}

@media (max-width: 430px) {
    .mobile-panel {
        top: 130px;
        max-height: calc(100vh - 142px);
    }
}

@media (max-width: 700px) {
    .hero-section.hero-carousel {
        min-height: 760px;
        overflow: hidden;
    }

    .hero-section.hero-carousel .hero-slider,
    .hero-section.hero-carousel .hero-slide,
    .hero-section.hero-carousel .hero-slide-content {
        min-height: 760px;
    }

    .hero-section.hero-carousel .hero-slide-content {
        width: min(100% - 28px, 1180px);
        align-items: flex-start;
        padding-top: 158px;
        padding-bottom: 76px;
    }

    .hero-carousel .hero-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-left: 14px;
    }

    .hero-carousel .hero-copy h1 {
        max-width: 100%;
        font-size: clamp(1.66rem, 7.4vw, 2.02rem);
        line-height: 1.16;
        overflow-wrap: break-word;
    }

    .hero-carousel .hero-copy h1 span {
        display: inline;
        margin-top: 0;
        overflow-wrap: anywhere;
    }

    .hero-carousel .hero-lead {
        max-width: 100%;
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .hero-carousel .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        width: 100%;
        margin-top: 20px;
    }

    .hero-carousel .hero-actions .btn {
        width: 100%;
        min-height: 46px;
        padding: 11px 14px;
        justify-content: center;
    }

    .hero-carousel .hero-proof {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 18px;
        padding-top: 14px;
    }

    .hero-carousel .hero-proof span {
        min-height: 28px;
        font-size: 0.82rem;
        line-height: 1.3;
    }

    .hero-carousel-controls {
        right: 14px;
        bottom: 18px;
        left: 14px;
        width: auto;
        transform: none;
    }
}

@media (max-width: 430px) {
    .hero-section.hero-carousel,
    .hero-section.hero-carousel .hero-slider,
    .hero-section.hero-carousel .hero-slide,
    .hero-section.hero-carousel .hero-slide-content {
        min-height: 760px;
    }

    .hero-section.hero-carousel .hero-slide-content {
        width: min(100% - 20px, 1180px);
        padding-top: 148px;
        padding-bottom: 72px;
    }

    .hero-carousel .eyebrow {
        min-height: 34px;
        padding: 7px 10px;
        font-size: 0.72rem;
        line-height: 1.25;
    }

    .hero-carousel .hero-copy h1 {
        font-size: 1.62rem;
    }

    .hero-carousel .hero-lead {
        margin-top: 12px;
    }
}

@media (max-width: 360px) {
    .hero-section.hero-carousel,
    .hero-section.hero-carousel .hero-slider,
    .hero-section.hero-carousel .hero-slide,
    .hero-section.hero-carousel .hero-slide-content {
        min-height: 780px;
    }

    .hero-carousel .hero-copy h1 {
        font-size: 1.52rem;
    }

    .hero-carousel .hero-actions .btn {
        font-size: 0.86rem;
    }
}

.policy-hero {
    background:
        linear-gradient(135deg, rgba(16, 24, 47, 0.95), rgba(36, 55, 100, 0.82)),
        url("../img/b3.jpg") center / cover;
}

.fullstack-courses-page {
    background: #f6f9fd;
}

.fullstack-courses-page .courses-page-hero {
    min-height: 540px;
    padding-block: 142px 78px;
    background:
        linear-gradient(135deg, rgba(7, 29, 66, 0.94), rgba(28, 42, 76, 0.84)),
        url("../img/b1.jpg") center / cover;
}

.fullstack-courses-page .courses-hero-layout {
    gap: clamp(30px, 5vw, 56px);
}

.fullstack-courses-page .courses-page-hero .courses-hero-copy h1 {
    max-width: 760px;
    font-size: clamp(2.45rem, 4.2vw, 3.55rem);
    line-height: 1.08;
}

.fullstack-courses-page .courses-page-hero .courses-hero-copy p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
    line-height: 1.75;
}

.fullstack-courses-page .courses-hero-panel {
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.13);
}

.courses-popular-section {
    padding-block: clamp(70px, 8vw, 96px);
}

.courses-popular-section .section-heading {
    margin-bottom: 34px;
}

.courses-popular-section .popular-grid {
    gap: 22px;
}

.courses-popular-section .popular-card {
    min-height: 286px;
    padding: 26px;
    border-radius: 14px;
}

.courses-popular-section .popular-actions {
    margin-top: 34px;
}

.fullstack-courses-section {
    padding: clamp(76px, 7vw, 100px) 0 clamp(64px, 8vw, 98px);
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.fullstack-courses-wrap {
    width: min(1120px, calc(100% - 40px));
}

.fullstack-courses-heading {
    text-align: center;
    margin-bottom: 38px;
}

.fullstack-courses-heading h1,
.fullstack-courses-heading h2 {
    color: #071d42;
    font-family: var(--font-display);
    font-size: clamp(2.15rem, 3.2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.12;
}

.fullstack-courses-heading h1 span,
.fullstack-courses-heading h2 span {
    color: #2fb577;
}

.fullstack-courses-heading p {
    width: min(620px, 100%);
    margin-inline: auto;
    margin-top: 12px;
    color: #435678;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
}

.fullstack-course-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.fullstack-course-card {
    position: relative;
    min-height: 302px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 24px;
    border: 1px solid #dce3ec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(7, 29, 66, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.fullstack-course-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: #249957;
}

.fullstack-course-card:hover {
    transform: translateY(-4px);
    border-color: rgba(36, 153, 87, 0.26);
    box-shadow: 0 20px 42px rgba(7, 29, 66, 0.1);
}

.fullstack-course-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 12px;
    color: #fff;
    background: #249957;
    box-shadow: 0 14px 26px rgba(36, 153, 87, 0.18);
}

.fullstack-course-icon svg {
    width: 23px;
    height: 23px;
}

.fullstack-course-card h2 {
    margin: 0 0 15px;
    color: #071d42;
    font-family: var(--font-body);
    font-size: 1.03rem;
    font-weight: 900;
    line-height: 1.25;
}

.fullstack-course-card ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fullstack-course-card li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #526581;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
}

.fullstack-course-card li svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: #24a767;
}

.fullstack-course-divider {
    display: block;
    height: 1px;
    margin: auto 0 16px;
    background: #d7dde7;
}

.fullstack-course-btn {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 8px 12px;
    border: 1px solid #071d42;
    border-radius: 9px;
    color: #071d42;
    background: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fullstack-course-card:nth-child(3n+2)::before,
.fullstack-course-card:nth-child(3n+2) .fullstack-course-icon {
    background: #16a085;
}

.fullstack-course-card:nth-child(3n+2) .fullstack-course-icon {
    box-shadow: 0 14px 26px rgba(22, 160, 133, 0.18);
}

.fullstack-course-card:nth-child(3n+3)::before,
.fullstack-course-card:nth-child(3n+3) .fullstack-course-icon {
    background: #e6a100;
}

.fullstack-course-card:nth-child(3n+3) .fullstack-course-icon {
    color: #071d42;
    box-shadow: 0 14px 26px rgba(230, 161, 0, 0.2);
}

.fullstack-course-btn:hover {
    color: #fff;
    background: #071d42;
    border-color: #071d42;
}

@media (max-width: 1050px) {
    .fullstack-courses-page .courses-page-hero {
        min-height: auto;
        padding-block: 132px 70px;
    }

    .courses-popular-section .popular-grid,
    .fullstack-course-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .fullstack-courses-page .courses-page-hero {
        padding-block: 118px 54px;
    }

    .fullstack-courses-page .courses-page-hero .courses-hero-copy h1 {
        font-size: 2.18rem;
    }

    .fullstack-courses-page .courses-page-hero .courses-hero-copy p {
        font-size: 0.96rem;
        line-height: 1.65;
    }

    .fullstack-courses-page .courses-hero-panel,
    .courses-popular-section .popular-card,
    .fullstack-course-card {
        border-radius: 12px;
    }

    .courses-popular-section {
        padding-block: 56px;
    }

    .courses-popular-section .popular-grid,
    .fullstack-course-grid {
        grid-template-columns: 1fr;
    }

    .fullstack-courses-wrap {
        width: min(100% - 24px, 1140px);
    }

    .fullstack-courses-heading {
        margin-bottom: 30px;
    }

    .fullstack-course-card {
        min-height: 0;
        padding: 22px;
    }
}

.policy-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f6f9fd 48%, #eef5f8 100%);
}

.policy-intro-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
    margin-bottom: 24px;
    align-items: start;
}

.policy-intro-copy {
    max-width: 780px;
}

.policy-intro-copy .section-kicker {
    margin-bottom: 10px;
}

.policy-intro-copy h2 {
    color: var(--navy-900);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.policy-intro-copy p {
    max-width: 720px;
    margin-top: 14px;
    color: var(--muted);
    font-size: 1.04rem;
    font-weight: 650;
}

.policy-note-panel,
.policy-highlight-card,
.policy-group,
.policy-contact-panel {
    border: 1px solid rgba(28, 42, 76, 0.1);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-soft);
}

.policy-note-panel {
    padding: 22px;
    border-color: rgba(230, 161, 0, 0.22);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 255, 0.92)),
        linear-gradient(135deg, rgba(230, 161, 0, 0.12), transparent 58%);
}

.policy-note-panel > i,
.policy-note-panel > svg {
    width: 34px;
    height: 34px;
    margin-bottom: 16px;
    color: var(--gold-500);
}

.policy-note-panel strong {
    display: block;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1.18rem;
}

.policy-note-panel p {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 650;
}

.policy-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.policy-highlight-card {
    position: relative;
    min-height: 150px;
    padding: 22px;
    overflow: hidden;
}

.policy-highlight-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-500), var(--green-500), var(--cyan-400));
}

.policy-highlight-card span,
.policy-group-head span,
.policy-contact-panel > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-950);
    background: linear-gradient(135deg, var(--gold-400), var(--green-500));
}

.policy-highlight-card svg,
.policy-group-head svg,
.policy-contact-panel > span svg {
    width: 23px;
    height: 23px;
}

.policy-highlight-card strong {
    display: block;
    margin-top: 18px;
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.1;
}

.policy-highlight-card small {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 800;
}

.policy-content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 24px;
    align-items: start;
}

.policy-main-panel {
    display: grid;
    gap: 18px;
}

.policy-group {
    padding: clamp(20px, 3vw, 30px);
}

.policy-group-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(28, 42, 76, 0.1);
}

.policy-group-head h2 {
    color: var(--navy-900);
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
}

.policy-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    counter-reset: policyItem;
    list-style: none;
}

.policy-list li {
    position: relative;
    min-height: 44px;
    padding: 2px 0 0 54px;
    color: var(--muted);
    font-weight: 650;
}

.policy-list li::before {
    counter-increment: policyItem;
    content: counter(policyItem, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: var(--navy-900);
    background: rgba(230, 161, 0, 0.14);
    font-size: 0.78rem;
    font-weight: 900;
}

.policy-contact-panel {
    position: sticky;
    top: 156px;
    padding: 24px;
}

.policy-contact-panel > span {
    margin-bottom: 18px;
}

.policy-contact-panel h2 {
    margin-bottom: 10px;
    font-size: 1.55rem;
    color: var(--navy-900);
}

.policy-contact-panel p {
    color: var(--muted);
    font-weight: 650;
}

.policy-contact-list {
    display: grid;
    gap: 12px;
    margin: 22px 0;
}

.policy-contact-list p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.policy-contact-list svg {
    width: 19px;
    height: 19px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: var(--gold-500);
}

.policy-contact-list a {
    color: var(--navy-800);
    font-weight: 850;
    word-break: break-word;
}

.policy-contact-panel .btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1050px) {
    .policy-highlight-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .policy-intro-row,
    .policy-content-layout {
        grid-template-columns: 1fr;
    }

    .policy-contact-panel {
        position: static;
    }
}

@media (max-width: 520px) {
    .policy-intro-row {
        gap: 18px;
    }

    .policy-highlight-grid {
        grid-template-columns: 1fr;
    }

    .policy-note-panel,
    .policy-highlight-card,
    .policy-group,
    .policy-contact-panel {
        padding: 18px;
    }

    .policy-group-head {
        align-items: flex-start;
    }

    .policy-group-head h2,
    .policy-contact-panel h2 {
        font-size: 1.32rem;
    }

    .policy-list li {
        min-height: 0;
        padding-left: 46px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
