:root {
    --paper: #f4f7f8;
    --paper-soft: #eef3f4;
    --paper-strong: #ffffff;
    --ink: #173246;
    --ink-soft: #5b6d7b;
    --line: rgba(23, 50, 70, 0.12);
    --line-strong: rgba(23, 50, 70, 0.22);
    --brand-navy: #0f3047;
    --brand-navy-deep: #081f30;
    --brand-red: #c83038;
    --brand-red-deep: #961f26;
    --brand-teal: #0b8b8d;
    --brand-green: #1f8760;
    --brand-yellow: #f0c94a;
    --brand-yellow-soft: #fff4cc;
    --shadow-lg: 0 28px 70px rgba(8, 31, 48, 0.16);
    --shadow-md: 0 18px 42px rgba(8, 31, 48, 0.11);
    --shadow-sm: 0 10px 22px rgba(8, 31, 48, 0.08);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --page-frame-width: min(1180px, calc(100% - 48px));
    --content-width: var(--page-frame-width);
    --heading-font: "Bahnschrift", "Franklin Gothic Demi Cond", "Trebuchet MS", sans-serif;
    --body-font: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 104px;
}

body {
    margin: 0;
    font-family: var(--body-font);
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(11, 139, 141, 0.06), transparent 24%),
        linear-gradient(180deg, #f8fbfb 0%, #edf2f4 100%);
}

main {
    position: relative;
}

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

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

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

button {
    cursor: pointer;
}

.container {
    width: var(--content-width);
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    width: var(--page-frame-width);
    margin: 0 auto;
    background: rgba(248, 251, 251, 0.92);
    border-bottom: 1px solid rgba(15, 48, 71, 0.08);
    backdrop-filter: blur(16px);
}

.site-header::after {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red) 0%, #d88240 40%, var(--brand-teal) 100%);
}

.header-bar {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: transparent;
    box-shadow: none;
}

.brand-copy,
.brand strong,
h1,
h2,
h3,
legend,
summary {
    font-family: var(--heading-font);
    letter-spacing: 0.01em;
}

.brand-copy {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.brand-line {
    display: block;
    color: #244d6a;
    font-size: 0.85rem;
    line-height: 1.02;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    font-size: 0.94rem;
    font-weight: 700;
    color: var(--ink-soft);
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--brand-red);
    transform: translateY(-1px);
}

.main-nav a.is-current {
    color: var(--brand-red);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(240, 201, 74, 0.3), rgba(11, 139, 141, 0.14));
    border: 1px solid rgba(15, 48, 71, 0.08);
    color: var(--brand-navy);
    font-weight: 800;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: var(--ink);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-deep) 100%);
    box-shadow: 0 20px 36px rgba(150, 31, 38, 0.28);
}

.button-ghost {
    color: var(--brand-navy);
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(15, 48, 71, 0.14);
}

.hero .button-ghost,
.site-footer .button-ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
}

.hero-classic {
    padding: 0;
    background: transparent;
}

.hero-title-ribbon {
    position: relative;
    z-index: 1;
    width: var(--page-frame-width);
    margin: 0 auto -1px;
    margin-bottom: -1px;
    background: #85c8ce;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.hero-title-ribbon .container {
    width: 100%;
}

.hero-title-ribbon h1 {
    margin: 0;
    padding: 14px 18px;
    text-align: center;
    color: #204752;
    font-size: clamp(1.2rem, 2vw, 1.95rem);
    line-height: 1.22;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-stage-wrap {
    width: var(--page-frame-width);
    margin: 0 auto;
    line-height: 0;
}

.hero-stage {
    position: relative;
    overflow: visible;
    background: transparent;
}

.hero-stage-picture {
    display: block;
    animation: none;
    will-change: auto;
}

.hero-stage-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-stage-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    display: grid;
    place-items: center;
    align-items: center;
    width: min(320px, calc(100% - 32px));
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: translate(-50%, -50%);
    animation: none;
    will-change: auto;
    isolation: isolate;
}

.hero-stage-mark img {
    position: relative;
    z-index: 1;
    width: min(255px, 100%);
    height: auto;
    filter:
        drop-shadow(0 0 8px rgba(255, 255, 255, 0.96))
        drop-shadow(0 0 18px rgba(255, 255, 255, 0.9))
        drop-shadow(0 0 34px rgba(255, 255, 255, 0.7))
        drop-shadow(0 14px 24px rgba(8, 31, 48, 0.1));
    animation: heroLogoGlow 4.2s ease-in-out infinite;
    will-change: transform, filter;
}

.hero-stage-shine {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: clamp(34px, 18%, 76px);
    height: clamp(140px, 72%, 236px);
    pointer-events: none;
    opacity: 0;
    filter: blur(3px);
    mix-blend-mode: screen;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 18%,
        rgba(255, 255, 255, 0.94) 48%,
        rgba(255, 255, 255, 0.22) 78%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: translate(-175%, -50%) rotate(18deg);
    animation: heroLogoShine 5.8s ease-in-out infinite;
    will-change: transform, opacity;
}

@keyframes heroDrift {
    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(0, -6px, 0) scale(1.012);
    }
}

@keyframes heroBadgeFloat {
    0%,
    100% {
        transform: translate(-50%, -50%);
    }
    50% {
        transform: translate(-50%, calc(-50% - 8px));
    }
}

@keyframes heroLogoGlow {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
        filter:
            drop-shadow(0 0 8px rgba(255, 255, 255, 0.94))
            drop-shadow(0 0 18px rgba(255, 255, 255, 0.88))
            drop-shadow(0 0 32px rgba(255, 255, 255, 0.66))
            drop-shadow(0 12px 22px rgba(8, 31, 48, 0.08));
    }
    50% {
        transform: translate3d(0, -5px, 0);
        filter:
            drop-shadow(0 0 10px rgba(255, 255, 255, 0.98))
            drop-shadow(0 0 24px rgba(255, 255, 255, 0.94))
            drop-shadow(0 0 42px rgba(255, 255, 255, 0.78))
            drop-shadow(0 16px 28px rgba(8, 31, 48, 0.12));
    }
}

@keyframes heroLogoShine {
    0%,
    58%,
    100% {
        opacity: 0;
        transform: translate(-175%, -50%) rotate(18deg);
    }
    8% {
        opacity: 0.18;
    }
    14% {
        opacity: 0.92;
    }
    24% {
        opacity: 0;
        transform: translate(55%, -50%) rotate(18deg);
    }
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 86px 0 72px;
    background: linear-gradient(135deg, var(--brand-navy) 0%, #0c2a3d 52%, var(--brand-navy-deep) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(15, 48, 71, 0) 0%, rgba(244, 247, 248, 0.98) 100%);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.08), transparent 18%),
        radial-gradient(circle at 86% 18%, rgba(240, 201, 74, 0.12), transparent 18%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(135deg, rgba(15, 48, 71, 0.96) 0%, rgba(15, 48, 71, 0.9) 54%, rgba(8, 31, 48, 0.98) 100%);
    background-size: auto, auto, 110px 110px, 110px 110px, auto;
    opacity: 1;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 14px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(240, 201, 74, 0.96) 0 14px,
        rgba(15, 48, 71, 0.96) 14px 28px
    );
    opacity: 0.36;
}

.hero-gridline {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.84), transparent 92%);
    opacity: 0.2;
}

.hero-orbit {
    position: absolute;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.55;
}

.hero-orbit-left {
    top: 100px;
    left: -100px;
    width: 340px;
    height: 340px;
}

.hero-orbit-right {
    right: -120px;
    bottom: 92px;
    width: 400px;
    height: 400px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    gap: 38px;
    align-items: center;
}

.hero-copy {
    color: #fff;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-teal);
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.78);
}

h1 {
    margin: 0;
    font-size: clamp(2.9rem, 4.8vw, 5.3rem);
    line-height: 0.98;
    font-weight: 800;
}

h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.06;
    font-weight: 800;
}

h3,
legend,
summary {
    margin: 0;
    font-size: 1.22rem;
    line-height: 1.24;
    font-weight: 800;
}

.hero-lead {
    max-width: 700px;
    margin: 24px 0 0;
    font-size: 1.05rem;
    line-height: 1.86;
    color: rgba(255, 255, 255, 0.82);
}

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

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.highlight-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.hero-point {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    align-items: start;
}

.hero-point-icon {
    width: 18px;
    height: 18px;
    margin-top: 5px;
    border-radius: 999px;
    background:
        radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 2px, transparent 3px),
        linear-gradient(135deg, var(--brand-yellow), var(--brand-teal));
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.hero-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.65;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.metric-card {
    position: relative;
    overflow: hidden;
    padding: 18px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.metric-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--brand-yellow), var(--brand-red));
}

.metric-card strong {
    display: block;
    font-size: 2.2rem;
    color: #fff;
}

.metric-card span {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.45;
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.hero-main-card {
    position: relative;
    overflow: hidden;
    min-height: 480px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-main-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 31, 48, 0.02) 22%, rgba(8, 31, 48, 0.8) 100%);
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 1;
    display: grid;
    gap: 10px;
}

.panel-label {
    margin: 0;
    color: rgba(240, 201, 74, 0.96);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-main-overlay h2 {
    max-width: 620px;
    font-size: clamp(1.8rem, 2.4vw, 2.45rem);
    color: #fff;
}

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

.hero-side-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.hero-side-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 2px);
}

.hero-side-card strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.02rem;
}

.hero-side-card span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.58;
    font-size: 0.94rem;
}

.section {
    padding: 74px 0;
}

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

#mengenal-k3 {
    scroll-margin-top: 88px;
}

#alur-pendaftaran,
#jelajahi-program,
#persiapan-dokumen,
#persiapan-peserta,
#form-pendaftaran,
#faq-pendaftaran {
    scroll-margin-top: 104px;
}

.section-heading {
    display: grid;
    gap: 14px;
    max-width: 900px;
    margin-bottom: 32px;
}

.section-heading.narrow {
    max-width: 760px;
}

.section-heading p,
.audience-card p,
.principle-card p,
.profile-card p,
.advantage-card p,
.program-card p,
.program-detail span,
.timeline-item p,
.document-item span,
.field small,
.file-hint,
.faq-item p,
.footer-copy p,
.admin-login-card p,
.contact-card span {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.75;
}

.section-k3-intro {
    padding: 0;
}

.k3-intro-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
    align-items: start;
    border-radius: 0;
    border: 0;
    background: linear-gradient(135deg, rgba(252, 254, 255, 0.98) 0%, rgba(237, 244, 246, 0.96) 100%);
    box-shadow: none;
    overflow: hidden;
}

.k3-intro-media {
    position: relative;
    min-height: 470px;
    background: #dfe9ed;
}

.k3-intro-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0.72) 100%),
        linear-gradient(180deg, rgba(16, 46, 67, 0.06) 0%, rgba(16, 46, 67, 0.14) 100%);
}

.k3-intro-media picture,
.k3-intro-media img {
    display: block;
    width: 100%;
    height: 100%;
}

.k3-intro-media img {
    object-fit: cover;
    object-position: center center;
}

.k3-intro-copy {
    display: grid;
    align-content: center;
    gap: 0;
    padding: 24px 30px 20px 26px;
}

.k3-intro-head {
    margin-bottom: 10px;
}

.k3-intro-head h2 {
    max-width: 540px;
    color: #143a52;
    font-size: clamp(2.2rem, 3.2vw, 3.35rem);
    line-height: 1;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.92);
}

.k3-intro-body {
    display: grid;
    gap: 0;
}

.k3-intro-lead,
.k3-intro-intro,
.k3-intro-point p,
.k3-intro-closing {
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.84);
}

.k3-intro-lead {
    max-width: 720px;
    color: #2c5066;
    font-size: 0.95rem;
    line-height: 1.58;
}

.k3-intro-intro {
    margin-top: 10px;
    color: #27495f;
    font-size: 0.93rem;
    line-height: 1.52;
}

.k3-intro-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.k3-intro-point {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 12px 14px 10px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.68);
}

.k3-intro-point-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.k3-intro-point-dot {
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    margin-top: 8px;
    border-radius: 999px;
    background: var(--brand-red);
    box-shadow: 0 0 0 4px rgba(200, 48, 56, 0.08);
}

.k3-intro-point h3 {
    color: #1f455b;
    font-size: 0.98rem;
    line-height: 1.22;
}

.k3-intro-point p {
    color: #36596e;
    font-size: 0.9rem;
    line-height: 1.48;
}

.k3-intro-closing {
    max-width: 720px;
    margin-top: 14px;
    color: #183f56;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 800;
}

.k3-principle-workbench {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    gap: 24px;
    margin-top: 28px;
    align-items: stretch;
}

.k3-principle-main {
    padding: 24px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 248, 249, 0.96) 100%);
    box-shadow: var(--shadow-sm);
}

.k3-principle-heading {
    margin-bottom: 18px;
}

.k3-principle-heading h3 {
    margin: 0;
    color: #183f56;
    font-family: var(--heading-font);
    font-size: clamp(1.58rem, 2.3vw, 2.1rem);
    line-height: 1.12;
}

.k3-principle-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.k3-principle-tab {
    display: grid;
    align-content: center;
    gap: 8px;
    min-height: 84px;
    padding: 14px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    text-align: left;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.k3-principle-tab:hover,
.k3-principle-tab:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(11, 139, 141, 0.28);
    box-shadow: 0 14px 26px rgba(8, 31, 48, 0.08);
}

.k3-principle-tab.is-active {
    border-color: rgba(11, 139, 141, 0.4);
    background: linear-gradient(180deg, rgba(244, 250, 249, 0.98) 0%, rgba(232, 244, 243, 0.96) 100%);
    box-shadow: 0 16px 30px rgba(8, 31, 48, 0.1);
}

.k3-principle-tab-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 30px;
    border-radius: 999px;
    background: var(--brand-yellow-soft);
    color: var(--brand-red-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.k3-principle-tab-copy {
    display: grid;
    gap: 0;
}

.k3-principle-tab-copy strong {
    color: #1b4057;
    font-size: 0.96rem;
    line-height: 1.34;
}

.k3-principle-panel {
    padding: 18px 18px 16px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.86);
}

.k3-principle-panel h4 {
    margin: 0 0 10px;
    color: #173a4f;
    font-family: var(--heading-font);
    font-size: 1.22rem;
    line-height: 1.16;
}

.k3-principle-panel p {
    margin: 0;
    color: #456073;
    line-height: 1.62;
}

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

.k3-principle-list li {
    position: relative;
    padding-left: 18px;
    color: #26475b;
    line-height: 1.54;
}

.k3-principle-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-yellow));
}

.statement-badge-light {
    background: rgba(11, 139, 141, 0.12);
    color: var(--brand-teal);
}

.k3-principle-note {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.98) 0%, rgba(8, 31, 48, 0.97) 100%);
    box-shadow: var(--shadow-md);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.k3-principle-note::before {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 190px;
    height: 190px;
    background: url("../images/k3-mark.png") center / contain no-repeat;
    opacity: 0.08;
}

.k3-principle-note::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(240, 201, 74, 0.92) 0 14px,
        rgba(15, 48, 71, 0.95) 14px 28px
    );
    opacity: 0.5;
}

.k3-principle-note h3 {
    position: relative;
    z-index: 1;
    margin: 18px 0 14px;
    color: #fff;
}

.k3-principle-note p,
.k3-principle-note .profile-list li {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.8);
}

.section-about-k3 {
    padding: 0;
}

.about-k3-shell {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    background: #eef3f1;
}

.about-k3-backdrop,
.about-k3-backdrop img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-k3-backdrop {
    display: block;
}

.about-k3-backdrop img {
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.98) contrast(1);
}

.about-k3-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(249, 252, 251, 0.72) 0%, rgba(249, 252, 251, 0.8) 30%, rgba(249, 252, 251, 0.26) 58%, rgba(249, 252, 251, 0.08) 100%),
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.34), transparent 22%);
}

.about-k3-card {
    position: relative;
    z-index: 1;
    width: min(730px, calc(100% - 80px));
    margin: 56px 0 56px 44px;
    padding: 24px 26px 24px;
    border-radius: 0;
    background: rgba(252, 248, 247, 0.82);
    border: 0;
    box-shadow: none;
    backdrop-filter: blur(3px);
}

.about-k3-card h2 {
    margin-bottom: 16px;
    color: #0f1f28;
    font-size: clamp(2.1rem, 3.8vw, 3.55rem);
    line-height: 0.94;
    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.9),
        2px 3px 0 rgba(15, 48, 71, 0.08);
}

.about-k3-lead,
.about-k3-intro,
.about-k3-item p,
.about-k3-closing {
    margin: 0;
    color: #20252c;
    text-align: justify;
    text-justify: inter-word;
}

.about-k3-lead {
    font-size: 0.98rem;
    line-height: 1.5;
}

.about-k3-intro {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.42;
    font-weight: 800;
}

.about-k3-list {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.about-k3-item {
    display: grid;
    grid-template-columns: minmax(175px, 210px) minmax(0, 1fr);
    gap: 8px 18px;
    align-items: start;
}

.about-k3-item-title {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.about-k3-dot {
    flex: 0 0 auto;
    width: 8px;
    height: 8px;
    margin-top: 10px;
    border-radius: 999px;
    background: var(--brand-red);
}

.about-k3-item h3 {
    color: #121519;
    font-size: 1rem;
    line-height: 1.36;
    font-weight: 800;
}

.about-k3-item p {
    font-size: 0.98rem;
    line-height: 1.42;
}

.about-k3-closing {
    margin-top: 18px;
    font-size: 0.98rem;
    line-height: 1.48;
}

.section-audiences {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 14px;
    padding-bottom: 28px;
}

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

.audience-card,
.principle-card,
.profile-card,
.advantage-card,
.program-card,
.timeline-item,
.documents-card,
.registration-side,
.registration-form,
.faq-item,
.admin-panel,
.admin-login-card {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-md);
}

.audience-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 249, 250, 0.92) 100%);
}

.audience-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 50%, var(--brand-teal) 100%);
}

.audience-card h2 {
    font-size: 1.34rem;
}

.section-gallery,
.section-profile,
.section-services,
.section-process,
.section-registration,
.section-faq,
.section-programs {
    background: transparent;
    padding-top: 58px;
    padding-bottom: 58px;
}

.section-programs-page {
    padding-top: 40px;
    padding-bottom: 42px;
}

.section-registration-form {
    padding-top: 22px;
}

.section-registration-form .section-heading {
    margin-bottom: 24px;
}

.programs-page-heading {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    padding: 26px 28px;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.99) 0%, rgba(8, 31, 48, 0.98) 100%);
    box-shadow: var(--shadow-lg);
}

.programs-page-heading::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240, 201, 74, 0.22) 0%, rgba(240, 201, 74, 0) 70%);
}

.programs-page-heading::after {
    content: "";
    position: absolute;
    inset: auto 28px 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(11, 139, 141, 0.54), rgba(255, 255, 255, 0));
}

.programs-page-heading > * {
    position: relative;
    z-index: 1;
}

.programs-page-heading .eyebrow {
    color: rgba(240, 201, 74, 0.94);
}

.programs-page-heading .page-title {
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.25rem);
    line-height: 1.02;
}

.programs-page-heading p:last-of-type {
    color: rgba(255, 255, 255, 0.8);
}

.programs-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 22px;
    align-items: start;
    margin-bottom: 18px;
}

.programs-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 2px;
}

.programs-page-actions .button {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.95rem;
}

.programs-page-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 4px;
}

.programs-metric-card {
    position: relative;
    overflow: hidden;
    padding: 12px 14px 12px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.programs-metric-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--brand-yellow), var(--brand-teal));
}

.programs-metric-card strong {
    display: block;
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
}

.programs-metric-card span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.35;
    font-size: 0.88rem;
}

.programs-hero-panel {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
}

.programs-hero-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.programs-hero-media picture,
.document-photo picture,
.side-panel-media picture,
.service-panel-media picture {
    display: block;
    height: 100%;
}

.programs-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
}

.programs-hero-panel-body {
    display: grid;
    gap: 10px;
    padding: 18px 20px 20px;
}

.programs-hero-panel-body h2 {
    font-size: clamp(1.3rem, 2.1vw, 1.75rem);
}

.programs-guidance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.programs-guidance-list li {
    position: relative;
    padding-left: 22px;
    color: var(--ink-soft);
    line-height: 1.5;
    font-size: 0.94rem;
}

.programs-guidance-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-green));
}

.programs-contact-inline {
    display: grid;
    gap: 5px;
    margin-top: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(15, 48, 71, 0.08);
}

.programs-contact-inline span {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 700;
}

.programs-contact-inline strong {
    color: var(--brand-navy);
    font-size: 1.18rem;
}

.section-registration-hero {
    padding-bottom: 20px;
}

.registration-page-hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(320px, 1.02fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 0;
}

.registration-page-heading {
    display: grid;
    gap: 18px;
    align-content: space-between;
    min-height: 100%;
    padding: 24px 26px;
}

.registration-page-heading .page-title {
    font-size: clamp(2.2rem, 3.5vw, 3.55rem);
}

.registration-page-heading .programs-page-actions {
    margin-top: 0;
}

.registration-page-heading .programs-page-metrics {
    margin-top: auto;
}

.registration-hero-panel {
    grid-template-rows: auto 1fr;
}

.registration-hero-panel .programs-hero-media {
    aspect-ratio: 16 / 7.8;
}

.registration-hero-panel .programs-hero-panel-body {
    gap: 8px;
    padding: 16px 18px 18px;
}

.registration-hero-panel .programs-hero-panel-body h2 {
    font-size: clamp(1.15rem, 1.9vw, 1.5rem);
}

.registration-hero-panel .programs-guidance-list li {
    font-size: 0.9rem;
    line-height: 1.45;
}

.registration-hero-panel .programs-contact-inline {
    padding-top: 10px;
}

.programs-quicknav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px;
}

.programs-quicknav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 48, 71, 0.1);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-sm);
    color: var(--brand-navy);
    font-weight: 800;
    font-size: 0.84rem;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.programs-quicknav a:hover,
.programs-quicknav a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15, 48, 71, 0.16);
    box-shadow: var(--shadow-md);
}

.section-flow-hero {
    padding-bottom: 18px;
}

.section-flow-hero .programs-page-hero {
    align-items: start;
}

.section-flow-hero .programs-page-heading {
    height: auto;
    max-width: none;
}

.section-flow-hero .programs-page-actions {
    margin-top: 0;
}

.section-flow-hero .programs-hero-media {
    aspect-ratio: 16 / 9;
}

.section-flow-hero .programs-hero-panel-body {
    gap: 8px;
    padding: 16px 18px 18px;
}

.flow-hero-copy {
    display: grid;
    gap: 18px;
    align-content: start;
}

.flow-hero-lead {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    font-size: 1rem;
}

.flow-hero-guide {
    grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
    grid-template-rows: 1fr;
    align-items: stretch;
}

.flow-hero-guide .programs-hero-media {
    aspect-ratio: auto;
    min-height: 100%;
}

.flow-hero-guide .programs-hero-media img {
    min-height: 100%;
}

.flow-hero-guide .programs-hero-panel-body {
    align-content: center;
    padding: 20px 22px;
}

.flow-hero-strip {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
    gap: 14px 18px;
    align-items: center;
    padding: 16px 18px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.flow-hero-metrics {
    margin-top: 0;
}

.flow-hero-metrics .programs-metric-card {
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.96) 0%, rgba(8, 31, 48, 0.92) 100%);
    border-color: rgba(255, 255, 255, 0.06);
}

.flow-hero-strip .programs-quicknav {
    margin: 0;
    justify-content: flex-end;
}

.flow-quicknav {
    margin-bottom: 0;
}

.program-explorer {
    display: grid;
    gap: 18px;
}

.program-explorer-heading {
    margin-bottom: 0;
}

.program-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.15fr) auto;
    gap: 16px;
    align-items: end;
    padding: 22px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
}

.program-search-field,
.program-filter-group {
    display: grid;
    gap: 10px;
}

.program-search-field span,
.program-filter-label {
    color: var(--ink);
    font-weight: 800;
}

.program-search-field input {
    width: 100%;
    min-height: 54px;
    padding: 14px 18px;
    border: 1px solid rgba(15, 48, 71, 0.12);
    border-radius: 18px;
    outline: none;
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-search-field input:focus {
    border-color: rgba(11, 139, 141, 0.62);
    box-shadow: 0 0 0 4px rgba(11, 139, 141, 0.12);
}

.program-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.program-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(15, 48, 71, 0.1);
    border-radius: 999px;
    background: #fff;
    color: var(--ink-soft);
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.program-filter-chip small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(15, 48, 71, 0.06);
    color: inherit;
    font-size: 0.72rem;
    font-weight: 800;
}

.program-filter-chip:hover,
.program-filter-chip:focus-visible,
.program-filter-chip.is-active {
    transform: translateY(-2px);
    border-color: rgba(15, 48, 71, 0.18);
    box-shadow: var(--shadow-sm);
}

.program-filter-chip.is-active {
    background: linear-gradient(135deg, rgba(15, 48, 71, 0.98) 0%, rgba(10, 34, 53, 0.96) 100%);
    color: #fff;
}

.program-filter-chip.is-active small {
    background: rgba(255, 255, 255, 0.12);
}

.program-filter-summary {
    display: grid;
    gap: 4px;
    align-self: center;
    min-width: 150px;
    padding-left: 14px;
    border-left: 1px solid rgba(15, 48, 71, 0.08);
}

.program-filter-summary strong {
    color: var(--brand-navy);
    font-size: 2rem;
    line-height: 1;
}

.program-filter-summary span {
    color: var(--ink-soft);
}

.program-filter-reset {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--brand-red);
    font-weight: 800;
    text-align: left;
}

.program-explorer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
}

.program-spotlight {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
    gap: 18px 24px;
    width: 100%;
    max-width: none;
    align-items: start;
    box-shadow: var(--shadow-md);
}

.program-spotlight > .eyebrow,
.program-spotlight > h3,
.program-spotlight > .program-spotlight-meta,
.program-spotlight > p[data-program-spotlight-summary] {
    grid-column: 1;
}

.program-spotlight > .program-spotlight-block,
.program-spotlight > .program-spotlight-note,
.program-spotlight > .program-spotlight-actions {
    grid-column: 2;
}

.program-spotlight h3 {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.program-spotlight p {
    margin: 0;
}

.program-spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.program-spotlight-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 48, 71, 0.06);
    color: var(--brand-navy);
    font-size: 0.88rem;
    font-weight: 800;
}

.program-spotlight-block,
.program-spotlight-note {
    display: grid;
    gap: 6px;
}

.program-spotlight-block {
    padding-top: 16px;
    border-top: 1px solid rgba(15, 48, 71, 0.08);
}

.program-spotlight-block strong,
.program-spotlight-note strong {
    color: var(--ink);
}

.program-spotlight-block span,
.program-spotlight-note span {
    color: var(--ink-soft);
    line-height: 1.65;
}

.program-spotlight-note {
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(245, 249, 248, 0.96) 0%, rgba(232, 243, 239, 0.92) 100%);
    border: 1px solid rgba(31, 135, 96, 0.12);
}

.program-spotlight-actions {
    display: grid;
    gap: 12px;
}

.program-spotlight-actions .button {
    width: 100%;
}

.program-list-shell {
    display: grid;
    gap: 16px;
}

.page-title {
    font-size: clamp(2.35rem, 4vw, 4rem);
    line-height: 0.98;
}

.gallery-heading {
    max-width: none;
    margin-bottom: 14px;
}

.gallery-heading .eyebrow {
    margin-bottom: 0;
    font-size: 0.84rem;
    color: var(--ink-soft);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: 100%;
    margin: 0;
    gap: 0;
    grid-auto-rows: 128px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    padding: 0;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    min-height: 0;
    cursor: pointer;
    text-align: left;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 31, 48, 0.04) 14%, rgba(8, 31, 48, 0.78) 100%);
}

.gallery-card:hover img,
.gallery-card:focus-within img {
    transform: scale(1.04);
    filter: saturate(1.03) contrast(1.02);
}

.gallery-card:focus-visible {
    outline: 3px solid rgba(11, 139, 141, 0.36);
    outline-offset: -3px;
}

.gallery-card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-card-medium {
    grid-row: span 2;
}

.gallery-card-small {
    grid-row: span 1;
}

.gallery-overlay {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    display: grid;
    gap: 8px;
}

.gallery-overlay strong {
    color: #fff;
    font-size: 1.12rem;
}

.gallery-overlay span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.58;
    font-size: 0.95rem;
}

body.has-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 26px;
}

.gallery-lightbox[hidden] {
    display: none;
}

.k3-principle-panel[hidden],
.service-panel[hidden] {
    display: none;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 31, 48, 0.82);
    backdrop-filter: blur(4px);
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(1080px, 100%);
    max-height: calc(100vh - 52px);
    overflow: auto;
    background: rgba(250, 252, 252, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 28px 60px rgba(8, 31, 48, 0.3);
}

.gallery-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(8, 31, 48, 0.74);
    color: #fff;
    font-size: 1.8rem;
    line-height: 1;
}

.gallery-lightbox-figure {
    margin: 0;
}

.gallery-lightbox-image {
    width: 100%;
    max-height: 76vh;
    object-fit: contain;
    background: #e9eef0;
}

.gallery-lightbox-caption {
    display: grid;
    gap: 8px;
    padding: 18px 20px 20px;
}

.gallery-lightbox-title {
    color: var(--ink);
    font-family: var(--heading-font);
    font-size: 1.24rem;
}

.gallery-lightbox-summary {
    color: var(--ink-soft);
    line-height: 1.6;
}

.profile-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 22px;
    align-items: start;
}

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

.principle-card {
    padding: 24px;
}

.principle-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--brand-yellow-soft);
    color: var(--brand-red-deep);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.profile-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.98) 0%, rgba(8, 31, 48, 0.97) 100%);
}

.profile-card::before {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    background: url("../images/k3-mark.png") center / contain no-repeat;
    opacity: 0.08;
}

.profile-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 12px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(240, 201, 74, 0.92) 0 14px,
        rgba(15, 48, 71, 0.95) 14px 28px
    );
    opacity: 0.5;
}

.statement-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(240, 201, 74, 0.16);
    color: var(--brand-yellow);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-card h3 {
    position: relative;
    z-index: 1;
    margin: 18px 0 14px;
    color: #fff;
}

.profile-card p,
.profile-list li {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.78);
}

.profile-list,
.checklist,
.service-point-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.profile-list li,
.checklist li,
.service-point-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    line-height: 1.65;
}

.profile-list li::before,
.checklist li::before,
.service-point-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-yellow), var(--brand-green));
}

.service-showcase {
    display: grid;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: 22px;
    align-items: stretch;
}

.service-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.service-tab {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: center;
    width: 100%;
    padding: 18px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    text-align: left;
    flex: 1 1 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.service-tab:hover,
.service-tab:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15, 48, 71, 0.16);
}

.service-tab.is-active {
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.98) 0%, rgba(10, 34, 53, 0.96) 100%);
    border-color: rgba(15, 48, 71, 0.18);
    box-shadow: var(--shadow-md);
}

.service-tab-index {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(240, 201, 74, 0.26), rgba(11, 139, 141, 0.16));
    color: var(--brand-red);
    font-size: 0.98rem;
    font-weight: 800;
}

.service-tab.is-active .service-tab-index {
    background: linear-gradient(135deg, rgba(240, 201, 74, 0.92), rgba(200, 48, 56, 0.94));
    color: #fff;
}

.service-tab-copy {
    display: grid;
    gap: 5px;
}

.service-tab-copy strong {
    color: var(--ink);
    font-size: 1.05rem;
}

.service-tab-copy small {
    color: var(--ink-soft);
    font-size: 0.88rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.service-tab.is-active .service-tab-copy strong,
.service-tab.is-active .service-tab-copy small {
    color: #fff;
}

.service-panels {
    position: relative;
    height: 100%;
}

.service-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    gap: 24px;
    align-items: stretch;
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-md);
    height: 100%;
}

.service-panel-media {
    min-height: 100%;
}

.service-panel-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 2px);
}

.service-panel-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-accent,
.status-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(11, 139, 141, 0.12);
    color: var(--brand-teal);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-panel-body h3 {
    margin-top: 18px;
    font-size: 2rem;
}

.service-panel-body p {
    margin: 14px 0 0;
    color: var(--ink-soft);
    line-height: 1.8;
}

.service-focus {
    display: block;
    margin-top: 18px;
    color: var(--brand-navy);
    font-size: 1rem;
    line-height: 1.6;
}

.service-point-list {
    margin-top: 22px;
}

.advantage-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.advantage-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 246, 242, 0.8) 100%);
    box-shadow: var(--shadow-sm);
}

.advantage-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 48%, var(--brand-teal) 100%);
}

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

.program-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
    padding: 20px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 250, 251, 0.94) 100%);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.program-card:hover,
.program-card:focus-within {
    transform: translateY(-3px);
    border-color: rgba(15, 48, 71, 0.14);
    box-shadow: var(--shadow-md);
}

.program-card.is-active {
    border-color: rgba(11, 139, 141, 0.34);
    box-shadow: 0 20px 44px rgba(8, 31, 48, 0.16);
}

.program-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-yellow) 55%, var(--brand-teal) 100%);
}

.program-card-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.program-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(240, 201, 74, 0.18);
    color: var(--brand-red-deep);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.program-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(15, 48, 71, 0.06);
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-weight: 700;
}

.program-card h3 {
    font-size: 1.2rem;
    line-height: 1.18;
}

.program-card p {
    font-size: 0.92rem;
    line-height: 1.65;
}

.program-detail-grid {
    display: grid;
    gap: 10px;
}

.program-detail {
    display: grid;
    gap: 4px;
}

.program-detail strong {
    color: var(--ink);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.program-detail span {
    font-size: 0.92rem;
    line-height: 1.6;
}

.program-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.program-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(15, 48, 71, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.program-secondary-action:hover,
.program-secondary-action:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(15, 48, 71, 0.18);
    box-shadow: var(--shadow-sm);
}

.program-link {
    display: inline-flex;
    flex: 1 1 220px;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(15, 48, 71, 0.06);
    color: var(--brand-navy);
    font-size: 0.9rem;
    font-weight: 800;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.program-link:hover,
.program-link:focus-visible {
    background: rgba(240, 201, 74, 0.28);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.program-empty-state {
    padding: 18px 20px;
    border-radius: 20px;
    border: 1px dashed rgba(15, 48, 71, 0.18);
    background: rgba(255, 255, 255, 0.84);
}

.section-programs-closing {
    padding-top: 0;
}

.section-process-flow {
    padding-top: 20px;
    padding-bottom: 42px;
}

.section-flow-closing {
    padding-top: 12px;
}

.programs-closing-card {
    display: grid;
    gap: 18px 24px;
    align-items: center;
    box-shadow: var(--shadow-md);
}

.flow-closing-card {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 16px 20px;
    align-items: start;
}

.flow-closing-copy {
    max-width: none;
}

.flow-closing-lead {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.flow-closing-side {
    display: grid;
    gap: 14px;
    align-content: start;
}

.flow-closing-cta {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(245, 249, 248, 0.96) 0%, rgba(232, 243, 239, 0.92) 100%);
    border: 1px solid rgba(31, 135, 96, 0.12);
}

.flow-closing-cta strong {
    color: var(--brand-navy);
    font-size: 1rem;
}

.flow-closing-cta span {
    color: var(--ink-soft);
    line-height: 1.6;
}

.flow-closing-actions {
    margin-top: 0;
}

.flow-closing-actions .button {
    width: 100%;
}

.flow-closing-contact {
    display: grid;
    gap: 8px;
    align-items: start;
    padding-top: 14px;
}

.programs-closing-copy {
    max-width: 780px;
}

.programs-closing-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding-top: 6px;
    border-top: 1px solid rgba(15, 48, 71, 0.08);
    color: var(--ink-soft);
}

.programs-closing-contact strong,
.programs-closing-contact a {
    color: var(--brand-navy);
    font-weight: 800;
}

.process-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 22px;
    align-items: start;
}

.process-layout-flow {
    grid-template-columns: minmax(0, 1.32fr) minmax(280px, 0.68fr);
    gap: 16px;
    align-items: stretch;
}

.process-main {
    display: grid;
    gap: 12px;
}

.process-heading {
    margin-bottom: 0;
}

.process-heading h2 {
    font-size: clamp(2.3rem, 4.2vw, 3.6rem);
}

.timeline {
    display: grid;
    gap: 14px;
}

.process-main .timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 22px;
}

.process-main .timeline-item {
    height: 100%;
    gap: 12px;
    padding: 16px;
    align-content: start;
}

.process-main .timeline-item > div {
    display: grid;
    gap: 8px;
}

.timeline-index {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-red), var(--brand-yellow));
    color: #fff;
    font-size: 1.08rem;
    font-weight: 800;
}

.process-main .timeline-index {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 0.9rem;
}

.process-main .timeline-item h3 {
    font-size: 0.96rem;
    line-height: 1.24;
}

.process-main .timeline-item p {
    font-size: 0.86rem;
    line-height: 1.5;
}

.documents-card {
    padding: 26px;
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.99) 0%, rgba(8, 31, 48, 0.97) 100%);
}

.documents-card-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-content: start;
    height: 100%;
    padding: 18px;
}

.documents-card-flow > .eyebrow,
.documents-card-flow > h3,
.documents-card-flow > .flow-document-formats,
.documents-card-flow > .document-list,
.documents-card-flow > .flow-document-note {
    grid-column: auto;
}

.flow-document-formats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.flow-document-formats span {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.documents-card .eyebrow,
.footer-eyebrow {
    color: rgba(240, 201, 74, 0.94);
}

.documents-card h3 {
    color: #fff;
}

.documents-card-flow h3 {
    font-size: 1.08rem;
    line-height: 1.24;
}

.document-photo {
    margin-top: 20px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.documents-card-flow .document-list {
    margin-top: 0;
}

.document-photo img,
.side-panel-media img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.document-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.documents-card-flow .document-list {
    gap: 10px;
    align-content: start;
}

.document-item {
    padding: 18px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.documents-card-flow .document-item {
    padding: 12px;
}

.flow-document-note {
    display: grid;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.flow-document-note strong {
    color: #fff;
    font-size: 0.92rem;
}

.flow-document-note span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    line-height: 1.5;
}

.document-item strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
}

.document-item span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    line-height: 1.5;
}

.registration-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: start;
}

.registration-side,
.registration-form,
.faq-item,
.admin-panel,
.admin-login-card {
    padding: 28px;
}

.registration-side {
    display: grid;
    gap: 16px;
}

.side-panel {
    padding: 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 247, 248, 0.94) 100%);
    border: 1px solid rgba(15, 48, 71, 0.08);
}

.side-panel-media {
    display: grid;
    gap: 16px;
}

.side-panel-media img {
    border-radius: 18px;
}

.contact-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.98) 0%, rgba(8, 31, 48, 0.95) 100%);
}

.contact-label {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-card strong,
.contact-card a,
.contact-card span {
    color: #fff;
}

.registration-form {
    background: rgba(255, 255, 255, 0.98);
}

.form-step-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.form-step-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(15, 48, 71, 0.06);
    color: var(--brand-navy);
    font-size: 0.86rem;
    font-weight: 800;
}

.form-section {
    margin: 0 0 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 48, 71, 0.09);
    background: rgba(244, 247, 248, 0.8);
}

.form-section legend {
    padding: 0 10px;
    color: var(--ink);
}

.form-section-text {
    margin: 6px 0 18px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.form-grid,
.upload-grid,
.admin-filter {
    display: grid;
    gap: 16px;
}

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

.field {
    display: grid;
    gap: 10px;
}

.field span,
.checkbox-field span {
    font-weight: 700;
    color: var(--ink);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid rgba(15, 48, 71, 0.12);
    border-radius: 16px;
    outline: none;
    background: #fff;
    color: var(--ink);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.field textarea {
    min-height: 142px;
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(11, 139, 141, 0.62);
    box-shadow: 0 0 0 4px rgba(11, 139, 141, 0.12);
}

.field small,
.checkbox-error {
    color: var(--brand-red-deep);
}

.field-wide {
    grid-column: 1 / -1;
}

.file-field input {
    padding: 12px;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 26px;
}

.form-actions p {
    margin: 0;
    max-width: 460px;
    color: var(--ink-soft);
    line-height: 1.65;
}

.alert {
    margin-bottom: 20px;
    padding: 16px 18px;
    border-radius: 18px;
    font-weight: 700;
}

.alert-success {
    color: #13593f;
    background: rgba(31, 135, 96, 0.12);
    border: 1px solid rgba(31, 135, 96, 0.18);
}

.alert-error {
    color: var(--brand-red-deep);
    background: rgba(200, 48, 56, 0.1);
    border: 1px solid rgba(200, 48, 56, 0.16);
}

.faq-grid {
    display: grid;
    gap: 14px;
}

.faq-item summary {
    position: relative;
    padding-right: 36px;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--brand-red);
    font-size: 1.4rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin: 14px 0 0;
}

.site-footer {
    padding: 50px 0 58px;
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.99) 0%, rgba(8, 31, 48, 1) 100%);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.footer-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.footer-contact span,
.footer-contact a {
    color: #fff;
}

.admin-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(11, 139, 141, 0.09), transparent 26%),
        linear-gradient(180deg, #f7fafb 0%, #edf2f4 100%);
}

.admin-login-body {
    background:
        radial-gradient(circle at 12% 14%, rgba(240, 201, 74, 0.12), transparent 20%),
        radial-gradient(circle at 88% 18%, rgba(11, 139, 141, 0.12), transparent 24%),
        linear-gradient(180deg, #eef4f6 0%, #e6edf0 100%);
}

.admin-dashboard-body {
    --page-frame-width: min(1460px, calc(100% - 40px));
    --content-width: var(--page-frame-width);
    background:
        radial-gradient(circle at top right, rgba(11, 139, 141, 0.09), transparent 26%),
        linear-gradient(180deg, #f7fafb 0%, #edf2f4 100%);
}

.admin-login-wrap {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 14px;
}

.admin-login-stage {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
    gap: 14px;
    width: min(920px, 100%);
    align-items: start;
}

.admin-login-showcase {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 12px;
    padding: 18px 18px 28px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
        radial-gradient(circle at top right, rgba(240, 201, 74, 0.2), transparent 28%),
        linear-gradient(160deg, rgba(15, 48, 71, 0.99) 0%, rgba(10, 37, 55, 0.98) 58%, rgba(8, 31, 48, 1) 100%);
    box-shadow: 0 26px 60px rgba(8, 31, 48, 0.26);
}

.admin-login-showcase::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    height: 6px;
    border-radius: 999px;
    background: repeating-linear-gradient(
        -45deg,
        rgba(240, 201, 74, 0.98) 0 16px,
        rgba(255, 255, 255, 0.08) 16px 32px
    );
    opacity: 0.6;
}

.admin-login-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.admin-login-brand img {
    width: 44px;
    height: auto;
    filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.18));
}

.admin-login-brand-copy {
    display: grid;
    gap: 2px;
}

.admin-login-brand-copy span {
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.admin-login-hero-copy {
    display: grid;
    gap: 8px;
}

.admin-login-showcase .eyebrow {
    margin-bottom: 0;
    color: rgba(240, 201, 74, 0.98);
}

.admin-login-hero-copy h1 {
    max-width: 11ch;
    color: #fff;
    font-size: clamp(1.5rem, 2.2vw, 2.35rem);
    line-height: 1.02;
}

.admin-login-lead {
    max-width: 32ch;
    margin: 0;
    color: rgba(230, 238, 243, 0.84);
    font-size: 0.8rem;
    line-height: 1.5;
}

.admin-login-photo {
    position: relative;
    overflow: hidden;
    min-height: 136px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.admin-login-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 31, 48, 0.02) 0%, rgba(8, 31, 48, 0.68) 100%);
}

.admin-login-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-login-photo-badge {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1;
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(9, 28, 42, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.admin-login-photo-badge span {
    color: rgba(240, 201, 74, 0.96);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.admin-login-photo-badge strong {
    color: #fff;
    font-size: 0.8rem;
    line-height: 1.32;
}

.admin-login-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.admin-login-highlight {
    display: grid;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.admin-login-highlight strong {
    color: #fff;
    font-size: 0.82rem;
    line-height: 1.3;
}

.admin-login-highlight span {
    color: rgba(226, 234, 239, 0.82);
    font-size: 0.74rem;
    line-height: 1.42;
}

.admin-login-contact {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 10px;
}

.admin-login-contact span {
    display: block;
    margin-bottom: 2px;
    color: rgba(226, 234, 239, 0.8);
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.admin-login-contact strong,
.admin-login-contact a {
    color: #fff;
    font-weight: 800;
    font-size: 0.78rem;
}

.admin-login-contact a {
    text-decoration: none;
}

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

.admin-login-panel {
    justify-self: end;
    width: 100%;
    max-width: 430px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 52px rgba(15, 48, 71, 0.14);
}

.admin-login-panel-head {
    display: grid;
    gap: 6px;
}

.admin-login-panel-head .eyebrow {
    margin-bottom: 0;
}

.admin-login-panel h2 {
    font-size: clamp(1.28rem, 1.7vw, 1.7rem);
    line-height: 1.12;
}

.admin-login-panel p {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.55;
}

.admin-login-panel .alert {
    margin-bottom: 0;
}

.admin-login-form {
    display: grid;
    gap: 12px;
    margin-top: 0;
}

.admin-login-actions {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.admin-login-actions .button {
    width: 100%;
    min-height: 42px;
    font-size: 0.88rem;
}

.admin-login-note {
    display: grid;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: linear-gradient(180deg, rgba(246, 250, 248, 0.98) 0%, rgba(239, 245, 243, 0.94) 100%);
}

.admin-login-note strong {
    color: var(--brand-navy);
    font-size: 0.8rem;
}

.admin-login-note span {
    color: var(--ink-soft);
    font-size: 0.76rem;
    line-height: 1.42;
}

.admin-login-panel .field {
    gap: 6px;
}

.admin-login-panel .field span {
    font-size: 0.86rem;
}

.admin-login-panel .field input {
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 0.9rem;
}

@media (max-width: 1180px) {
    .admin-login-stage {
        grid-template-columns: 1fr;
        max-width: 680px;
    }

    .admin-login-panel {
        justify-self: stretch;
        max-width: none;
    }

    .admin-login-hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 780px) {
    .admin-login-wrap {
        padding: 16px;
    }

    .admin-login-stage {
        gap: 16px;
    }

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

    .admin-login-showcase::after {
        left: 22px;
        right: 22px;
        bottom: 18px;
    }

    .admin-login-brand img {
        width: 56px;
    }

    .admin-login-hero-copy h1 {
        font-size: clamp(2.05rem, 9vw, 3rem);
    }

    .admin-login-photo {
        min-height: 220px;
        border-radius: 22px;
    }

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

    .admin-login-contact {
        display: grid;
        align-items: start;
    }
}

.admin-dashboard {
    padding: 16px 0 34px;
}

.admin-site-header {
    position: sticky;
}

.admin-site-header .header-bar {
    padding: 14px 18px;
}

.admin-header-tools {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.admin-header-badge {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-navy);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-header-button {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
}

.admin-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
}

.admin-quick-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.admin-menu-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.82);
    color: var(--brand-navy);
    font-size: 0.82rem;
    font-weight: 800;
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.admin-menu-pill strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    min-height: 26px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(15, 48, 71, 0.08);
    color: var(--ink);
    font-size: 0.76rem;
}

.admin-menu-pill:hover,
.admin-menu-pill:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(11, 139, 141, 0.18);
}

.admin-menu-pill.is-active {
    background: linear-gradient(135deg, rgba(15, 48, 71, 0.96), rgba(8, 31, 48, 0.94));
    border-color: rgba(255, 255, 255, 0.04);
    color: #fff;
}

.admin-menu-pill.is-active strong {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.admin-hero-main {
    display: grid;
    gap: 12px;
}

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

.admin-hero h1 {
    font-size: clamp(2.1rem, 3.4vw, 3.35rem);
    line-height: 1;
}

.admin-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-context-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.74);
    color: var(--brand-navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.admin-context-pill strong {
    color: var(--ink);
}

.admin-context-pill-muted {
    color: var(--ink-soft);
}

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

.admin-topbar-actions .button {
    min-height: 46px;
    padding: 0 20px;
}

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

.admin-metric {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 8px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15, 48, 71, 0.98) 0%, rgba(8, 31, 48, 0.95) 100%);
}

.admin-metric::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 6px;
    background: linear-gradient(180deg, var(--brand-yellow), var(--brand-red));
}

.admin-metric strong,
.admin-metric span {
    color: #fff;
}

.admin-metric strong {
    font-size: 2rem;
    line-height: 1;
}

.admin-metric span {
    font-size: 0.9rem;
}

.admin-metric-primary::before {
    background: linear-gradient(180deg, var(--brand-teal), #38c3bf);
}

.admin-metric-attention::before {
    background: linear-gradient(180deg, var(--brand-yellow), var(--brand-red));
}

.admin-panel {
    padding: 24px;
}

.admin-workspace {
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 42px rgba(15, 48, 71, 0.08);
}

.admin-panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.admin-panel-title {
    display: grid;
    gap: 6px;
}

.admin-panel-title .eyebrow {
    margin-bottom: 0;
}

.admin-panel-title h2 {
    font-size: 1.4rem;
    line-height: 1.08;
}

.admin-panel-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-reset-button {
    min-height: 40px;
    padding: 0 16px;
    font-size: 0.82rem;
}

.admin-filter {
    grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.65fr) auto;
    gap: 14px;
    align-items: end;
    margin-bottom: 18px;
}

.admin-filter .field {
    gap: 8px;
}

.admin-filter .field span {
    font-size: 0.88rem;
}

.admin-filter-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.admin-filter-actions .button {
    min-height: 48px;
}

.admin-records {
    display: grid;
    gap: 16px;
}

.admin-record-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: linear-gradient(180deg, rgba(249, 252, 252, 0.98) 0%, rgba(243, 248, 249, 0.96) 100%);
    box-shadow: 0 14px 28px rgba(15, 48, 71, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.admin-record-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(15, 48, 71, 0.09);
}

.admin-record-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(15, 48, 71, 0.08);
}

.admin-record-head-main {
    display: grid;
    gap: 8px;
}

.admin-record-head h3 {
    font-size: 1.2rem;
    line-height: 1.08;
}

.admin-record-id {
    margin: 0;
    color: var(--brand-teal);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-record-subline {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.admin-record-subline span {
    color: var(--ink-soft);
    font-size: 0.84rem;
}

.admin-record-head-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.admin-record-body {
    display: grid;
    grid-template-columns: minmax(0, 1.34fr) minmax(300px, 0.66fr);
    gap: 14px;
    align-items: start;
}

.admin-record-sections {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr) minmax(220px, 0.9fr);
    gap: 12px;
}

.admin-record-section,
.admin-record-verify {
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(255, 255, 255, 0.84);
}

.admin-record-section-docs {
    align-content: start;
}

.admin-record-section strong {
    color: var(--ink);
    font-size: 0.96rem;
    line-height: 1.35;
}

.admin-record-section span {
    color: var(--ink-soft);
    font-size: 0.84rem;
    line-height: 1.5;
}

.admin-record-label {
    color: var(--brand-navy) !important;
    font-size: 0.7rem !important;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-cell-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-inline-chip {
    display: inline-flex !important;
    align-items: center;
    min-height: 28px;
    margin-bottom: 0 !important;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(15, 48, 71, 0.08);
    background: rgba(15, 48, 71, 0.05);
    color: var(--brand-navy) !important;
    font-size: 0.7rem !important;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-badge {
    min-height: 32px;
    padding: 0 14px;
    background: rgba(31, 135, 96, 0.12);
    color: #13593f;
}

.status-badge.is-pending {
    background: rgba(240, 201, 74, 0.16);
    color: #8f5e00;
}

.status-badge.is-approved {
    background: rgba(31, 135, 96, 0.14);
    color: #13593f;
}

.status-badge.is-revision {
    background: rgba(214, 102, 24, 0.14);
    color: #a34f0f;
}

.status-badge.is-rejected {
    background: rgba(200, 48, 56, 0.12);
    color: var(--brand-red-deep);
}

.doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start;
}

.admin-doc-link {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    background: rgba(11, 139, 141, 0.1);
    border: 1px solid rgba(11, 139, 141, 0.16);
    color: var(--brand-teal);
    font-size: 0.78rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.admin-doc-link:hover,
.admin-doc-link:focus-visible {
    transform: translateY(-1px);
    background: rgba(11, 139, 141, 0.16);
}

.admin-action-cell {
    min-width: 270px;
}

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

.admin-status-select,
.admin-notes-input {
    width: 100%;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(15, 48, 71, 0.12);
    border-radius: 12px;
    outline: none;
    background: #fff;
    color: var(--ink);
    font-size: 0.8rem;
}

.admin-status-select:focus,
.admin-notes-input:focus {
    border-color: rgba(11, 139, 141, 0.62);
    box-shadow: 0 0 0 4px rgba(11, 139, 141, 0.12);
}

.admin-status-button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.78rem;
}

.admin-verify-meta {
    color: var(--ink-soft);
    font-size: 0.72rem;
    line-height: 1.4;
}

.admin-empty-panel {
    border-radius: 24px;
    border: 1px dashed rgba(15, 48, 71, 0.16);
    background: rgba(255, 255, 255, 0.82);
}

.empty-state {
    padding: 40px 20px;
    text-align: center;
    color: var(--ink-soft);
    font-weight: 700;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .hero-grid,
    .programs-page-hero,
    .program-explorer-layout,
    .profile-layout,
    .process-layout,
    .registration-shell,
    .footer-grid,
    .service-showcase,
    .programs-closing-card {
        grid-template-columns: 1fr;
    }

    .hero-main-card {
        min-height: 420px;
    }

    .programs-page-metrics {
        display: none;
    }

    .principle-grid,
    .audience-grid,
    .advantage-band,
    .programs-page-metrics,
    .program-grid,
    .admin-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .program-filter-summary {
        grid-column: 1 / -1;
        padding-left: 0;
        border-left: 0;
        padding-top: 8px;
        border-top: 1px solid rgba(15, 48, 71, 0.08);
    }

    .program-spotlight {
        position: static;
        grid-template-columns: 1fr;
    }

    .section-flow-hero {
        padding-bottom: 12px;
    }

    .flow-hero-guide {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .flow-hero-strip {
        grid-template-columns: 1fr;
        padding: 14px 16px;
    }

    .flow-hero-strip .programs-quicknav {
        justify-content: flex-start;
    }

    .section-process-flow {
        padding-top: 14px;
        padding-bottom: 34px;
    }

    .process-layout-flow {
        gap: 16px;
    }

    .documents-card-flow {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .flow-closing-card {
        grid-template-columns: 1fr;
    }

    .service-nav {
        height: auto;
    }

    .service-tab {
        flex: initial;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        grid-auto-rows: 156px;
    }

    .gallery-card-large,
    .gallery-card-medium,
    .gallery-card-small {
        grid-column: span 1;
        grid-row: span 1;
    }

    .k3-intro-copy {
        padding: 30px 30px 28px 22px;
    }

    .page-title {
        font-size: clamp(2.1rem, 4vw, 3.3rem);
    }

    .k3-intro-head h2 {
        font-size: clamp(1.95rem, 3.5vw, 3rem);
    }

    .k3-principle-heading h3 {
        font-size: clamp(1.55rem, 3vw, 2.1rem);
    }

    .k3-intro-points {
        grid-template-columns: 1fr;
    }

    .k3-principle-workbench {
        grid-template-columns: 1fr;
    }

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

    .about-k3-shell {
        min-height: 580px;
    }

    .about-k3-card {
        width: min(650px, calc(100% - 56px));
        margin: 40px 0 40px 28px;
    }

    .about-k3-item {
        grid-template-columns: minmax(150px, 180px) minmax(0, 1fr);
        gap: 8px 16px;
    }
}

@media (max-width: 920px) {
    .nav-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
    }

    .main-nav.is-open {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-stage-mark {
        width: min(270px, calc(100% - 24px));
    }

    .hero-orbit-left,
    .hero-orbit-right {
        display: none;
    }

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

    .k3-intro-media {
        min-height: 320px;
    }

    .program-toolbar {
        grid-template-columns: 1fr;
    }

    .programs-page-heading {
        padding: 22px;
    }

    .programs-page-heading::after {
        inset: auto 22px 0;
    }

    .programs-page-heading .page-title {
        font-size: clamp(1.85rem, 5vw, 2.7rem);
    }

    .programs-page-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .programs-page-actions .button {
        width: 100%;
        min-height: 44px;
        padding: 0 12px;
        font-size: 0.9rem;
    }

    .programs-hero-media {
        aspect-ratio: 16 / 9;
    }

    .flow-hero-guide .programs-hero-panel-body {
        padding: 18px;
    }

    .flow-hero-strip {
        padding: 12px 14px;
    }

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

    .documents-card-flow {
        grid-template-columns: 1fr;
    }

    .documents-card-flow > .document-list,
    .documents-card-flow > .flow-document-note {
        grid-column: auto;
    }

    .k3-intro-copy {
        padding: 22px 26px 26px;
    }

    .k3-principle-main,
    .k3-principle-note {
        padding: 22px;
    }

    .k3-principle-tabs {
        grid-template-columns: 1fr;
    }

    .about-k3-shell {
        min-height: auto;
    }

    .about-k3-shell::before {
        background:
            linear-gradient(180deg, rgba(249, 252, 251, 0.28) 0%, rgba(249, 252, 251, 0.7) 34%, rgba(249, 252, 251, 0.94) 60%, rgba(249, 252, 251, 0.98) 100%),
            radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.28), transparent 24%);
    }

    .about-k3-card {
        width: calc(100% - 40px);
        margin: 220px 20px 20px;
        padding: 22px 20px;
    }

    .hero-side-grid,
    .form-grid,
    .upload-grid,
    .admin-filter,
    .admin-stats,
    .principle-grid,
    .audience-grid,
    .advantage-band,
    .programs-page-metrics,
    .program-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        width: 100%;
    }

    .gallery-card {
        min-height: 220px;
    }

    .gallery-lightbox {
        padding: 18px;
    }

    .gallery-lightbox-dialog {
        max-height: calc(100vh - 36px);
    }

    .programs-quicknav {
        gap: 10px;
    }

    .programs-quicknav a,
    .program-secondary-action,
    .program-link {
        width: 100%;
    }

    .program-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-panel {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .service-panel-media img {
        min-height: 220px;
        max-height: 260px;
    }

    .service-nav {
        height: auto;
        gap: 10px;
    }

    .service-tab {
        grid-template-columns: 46px 1fr;
        gap: 12px;
        padding: 14px 16px;
        flex: initial;
    }

    .service-tab-index {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 0.88rem;
    }

    .service-tab-copy strong {
        font-size: 0.94rem;
    }

    .service-tab-copy small {
        font-size: 0.72rem;
    }

    .service-panel-body h3 {
        margin-top: 14px;
        font-size: 1.6rem;
    }

    .service-point-list {
        margin-top: 16px;
    }

    .service-point-list li {
        margin-bottom: 10px;
        font-size: 0.92rem;
        line-height: 1.55;
    }

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

    .admin-hero {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .admin-quick-menu {
        gap: 8px;
    }

    .admin-header-tools {
        width: 100%;
        justify-content: flex-start;
    }

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

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

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

    .k3-intro-point {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .about-k3-item {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

@media (max-width: 700px) {
    .brand-mark {
        width: 54px;
        height: 54px;
    }

    .brand-line {
        font-size: 0.72rem;
    }

    .programs-page-heading {
        padding: 18px 18px;
    }

    .programs-page-heading::after {
        inset: auto 18px 0;
    }

    h1 {
        font-size: clamp(2.3rem, 11vw, 4rem);
    }

    h2 {
        font-size: clamp(1.75rem, 8vw, 2.6rem);
    }

    .admin-record-card {
        padding: 16px;
        border-radius: 20px;
    }

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

    .admin-record-head-side {
        align-items: flex-start;
    }

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

    .admin-record-section,
    .admin-record-verify {
        padding: 14px;
    }

    .admin-menu-pill {
        width: 100%;
        justify-content: space-between;
    }

    .metric-row,
    .hero-side-grid {
        grid-template-columns: 1fr;
    }

    .button,
    .nav-cta {
        width: 100%;
    }

    .programs-hero-panel-body,
    .program-toolbar,
    .program-spotlight {
        padding: 16px;
    }

    .programs-page-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .programs-page-actions .button {
        min-height: 42px;
        padding: 0 10px;
        font-size: 0.82rem;
    }

    .programs-hero-panel-body h2 {
        font-size: 1.15rem;
    }

    .programs-guidance-list li {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .programs-hero-media img {
        min-height: 0;
    }

    .programs-quicknav {
        gap: 8px;
        margin-bottom: 14px;
    }

    .programs-quicknav a {
        min-height: 34px;
        padding: 0 10px;
        font-size: 0.72rem;
    }

    .service-tab {
        padding: 12px 14px;
    }

    .service-panel {
        padding: 16px;
    }

    .service-panel-body h3 {
        font-size: 1.38rem;
    }

    .service-panel-media img {
        min-height: 200px;
        max-height: 220px;
    }

    .hero-actions,
    .form-actions,
    .admin-header-tools,
    .admin-topbar-actions,
    .admin-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-main-card {
        min-height: 340px;
    }

    .hero-main-overlay {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .hero-main-overlay h2 {
        font-size: 1.55rem;
    }

    .hero-title-ribbon h1 {
        padding: 12px 10px;
        font-size: 1rem;
        line-height: 1.34;
    }

    .hero-stage-mark {
        width: min(220px, calc(100% - 20px));
    }

    .hero-stage-mark img {
        width: min(175px, 100%);
    }

    .k3-intro-copy {
        padding: 18px 18px 22px;
    }

    .page-title {
        font-size: clamp(1.95rem, 9vw, 2.8rem);
    }

    .k3-intro-head {
        margin-bottom: 12px;
    }

    .k3-intro-head h2 {
        font-size: clamp(1.75rem, 8vw, 2.55rem);
    }

    .k3-intro-lead,
    .k3-intro-intro,
    .k3-intro-point p,
    .k3-intro-closing {
        font-size: 0.92rem;
    }

    .k3-intro-point h3 {
        font-size: 0.98rem;
    }

    .k3-intro-closing {
        margin-top: 16px;
    }

    .k3-principle-workbench {
        margin-top: 26px;
    }

    .k3-principle-heading h3 {
        font-size: clamp(1.45rem, 6.6vw, 1.95rem);
    }

    .k3-principle-panel h4 {
        font-size: 1.24rem;
    }

    .k3-principle-tab {
        min-height: 72px;
        padding: 12px;
    }

    .about-k3-card {
        width: calc(100% - 24px);
        margin: 170px 12px 12px;
        padding: 18px 16px;
    }

    .about-k3-card h2 {
        margin-bottom: 12px;
        font-size: clamp(1.9rem, 8.8vw, 2.75rem);
    }

    .gallery-lightbox {
        padding: 12px;
    }

    .gallery-lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .gallery-lightbox-caption {
        padding: 14px 14px 16px;
    }

    .about-k3-lead,
    .about-k3-intro,
    .about-k3-item p,
    .about-k3-closing {
        font-size: 0.92rem;
    }

    .about-k3-item h3 {
        font-size: 0.96rem;
    }

    .registration-side,
    .registration-form,
    .faq-item,
    .documents-card,
    .admin-panel,
    .admin-login-card,
    .audience-card,
    .advantage-card,
    .program-card,
    .profile-card,
    .principle-card,
    .service-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .section {
        padding: 68px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-stage-picture,
    .hero-stage-mark {
        animation: none;
    }

    .hero-stage-mark img {
        animation: none;
    }

    .hero-stage-shine {
        animation: none;
        opacity: 0;
    }
}
