:root {
    --navy: #082b68;
    --navy-deep: #041a40;
    --navy-soft: #123f88;
    --red: #df2729;
    --yellow: #f7b500;
    --green: #1f8d43;
    --ink: #11213f;
    --muted: #66728a;
    --line: #d9e1ef;
    --paper: #ffffff;
    --soft: #f4f7fc;
    --soft-blue: #eef4ff;
    --soft-red: #fff3f3;
    --shadow: 0 18px 45px rgba(9, 39, 92, 0.12);
    --shadow-premium: 0 28px 80px rgba(7, 30, 72, 0.16);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Trebuchet MS", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(255, 209, 209, 0.45), transparent 28%),
        radial-gradient(circle at top right, rgba(209, 228, 255, 0.5), transparent 32%),
        linear-gradient(180deg, #fefeff 0%, #f4f7fc 52%, #eef3fb 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(8, 43, 104, 0.018) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 43, 104, 0.018) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 80%);
}

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

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

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

.top-strip {
    background:
        linear-gradient(90deg, #03132f 0%, #082b68 48%, #0f3e90 100%);
    color: #fff;
    font-size: 14px;
}

.top-strip-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
}

.top-strip-contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    font-weight: 700;
    color: #fff;
    transition: background 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.top-contact-link:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.top-contact-static {
    cursor: default;
}

.top-contact-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: #ffd96f;
    flex: 0 0 auto;
}

.top-contact-icon svg {
    width: 13px;
    height: 13px;
    display: block;
}

.flash-contact {
    animation: flashContact 1.15s ease-in-out infinite;
}

@keyframes flashContact {
    0%,
    100% {
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 rgba(255, 214, 109, 0);
    }

    50% {
        background: rgba(255, 255, 255, 0.22);
        box-shadow: 0 0 18px rgba(255, 214, 109, 0.22);
    }
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(8, 43, 104, 0.08);
    box-shadow: 0 12px 28px rgba(8, 43, 104, 0.05);
}

.nav-inner {
    min-height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 120px;
    height: auto;
}

.brand-mark {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.brand-c {
    color: var(--navy);
}

.brand-m {
    color: var(--red);
}

.brand-copy {
    display: grid;
    gap: 3px;
}

.brand-copy strong {
    font-size: 24px;
}

.brand-copy small {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-weight: 700;
}

.nav-links a {
    position: relative;
    padding: 8px 0;
    color: rgba(17, 33, 63, 0.88);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 3px;
    border-radius: 999px;
    background: var(--red);
}

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

.nav-call {
    min-width: 176px;
    padding: 14px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--navy), #103f8f);
    color: #fff;
    display: grid;
    gap: 2px;
    text-align: center;
}

.nav-call span {
    font-size: 13px;
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(8, 43, 104, 0.08);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.nav-toggle:hover {
    transform: translateY(-1px);
    border-color: rgba(8, 43, 104, 0.2);
    box-shadow: 0 14px 28px rgba(8, 43, 104, 0.12);
}

.nav-toggle:focus-visible {
    outline: none;
    border-color: rgba(8, 43, 104, 0.42);
    box-shadow: 0 0 0 4px rgba(8, 43, 104, 0.08);
}

.nav-toggle-icon {
    position: relative;
    width: 18px;
    height: 12px;
    display: inline-block;
    flex: 0 0 auto;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after,
.nav-toggle-icon {
    border-top: 2px solid currentColor;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
}

.nav-toggle-icon::before {
    top: 4px;
}

.nav-toggle-icon::after {
    top: 10px;
}

.site-alert {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid;
}

.site-alert-success {
    color: #0d5a28;
    background: #effaf2;
    border-color: #b6e6c3;
}

.site-alert-danger {
    color: #8b1f1f;
    background: #fff1f1;
    border-color: #efb7b7;
}

.site-alert-warning {
    color: #7a4a00;
    background: #fff8e8;
    border-color: #f4ce77;
}

.form-loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(4, 26, 64, 0.66);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0.18s ease;
}

.form-loading-screen.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.form-loading-card {
    width: min(420px, 100%);
    padding: 30px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 28px 80px rgba(4, 26, 64, 0.28);
    text-align: center;
}

.form-loading-card strong {
    display: block;
    margin-top: 18px;
    color: var(--navy);
    font-size: 24px;
}

.form-loading-card span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.6;
}

.form-loading-spinner {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid #e7eef9;
    border-top-color: var(--red);
    animation: loadingSpin 0.78s linear infinite;
}

@keyframes loadingSpin {
    to {
        transform: rotate(360deg);
    }
}

.hero {
    padding: 0 0 42px;
}

.hero-panel {
    overflow: hidden;
    border-radius: 34px;
    background:
        linear-gradient(100deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(8, 43, 104, 0.16) 100%),
        linear-gradient(135deg, #fefefe 0%, #eaf2ff 100%);
    box-shadow: var(--shadow-premium);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    position: relative;
}

.hero-panel-wide {
    width: 100%;
    min-height: calc(100vh - 144px);
    border-radius: 0 0 34px 34px;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 48%);
}

.hero-copy {
    padding: 62px 58px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    color: var(--navy);
}

.hero-copy-inner {
    width: min(640px, 100%);
    margin-left: auto;
    margin-right: 28px;
}

.hero-copy::after {
    content: "";
    position: absolute;
    left: 58px;
    bottom: 30px;
    width: 120px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red), transparent);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(223, 39, 41, 0.08);
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 800;
}

.hero h1,
.page-hero h1 {
    margin: 20px 0 18px;
    font-size: clamp(40px, 6vw, 74px);
    line-height: 0.95;
    letter-spacing: -2px;
    color: var(--navy);
}

.hero h1 span,
.page-hero h1 span {
    color: var(--red);
}

.hero p,
.page-hero p {
    max-width: 640px;
    margin: 0 0 32px;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.8;
}

.hero-actions,
.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 24px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.04);
}

.btn-primary {
    background: linear-gradient(135deg, var(--navy), #11469e);
    color: #fff;
    box-shadow: 0 12px 25px rgba(8, 43, 104, 0.2);
}

.btn-danger {
    background: linear-gradient(135deg, var(--red), #f04a41);
    color: #fff;
    box-shadow: 0 12px 25px rgba(223, 39, 41, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #189a49, #28bf63);
    color: #fff;
}

.hero-visual {
    min-height: calc(100vh - 144px);
    position: relative;
    background:
        radial-gradient(circle at 22% 28%, rgba(255, 255, 255, 0.92), transparent 20%),
        linear-gradient(180deg, #e7f0ff 0%, #8bb1ed 100%);
    overflow: hidden;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    inset: 72px 52px auto auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    z-index: 0;
}

.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(4, 26, 64, 0.12) 100%);
    z-index: 0;
}

.hero-curve {
    position: absolute;
    right: -60px;
    bottom: -110px;
    width: 82%;
    height: 240px;
    border-radius: 50%;
    border: 4px solid var(--red);
    transform: rotate(-10deg);
    opacity: 0.9;
}

.hero-slider {
    position: relative;
    height: 100%;
    padding: 38px;
    display: block;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateX(24px) scale(0.985);
    transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
    pointer-events: none;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.hero-slider-controls {
    position: absolute;
    right: 34px;
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(5, 24, 58, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.hero-slider-dot,
.hero-slider-arrow {
    border: 0;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.48);
}

.hero-slider-dot.is-active {
    background: #fff;
    transform: scale(1.16);
}

.hero-slider-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(5, 24, 58, 0.28);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.hero-slider-arrow:hover,
.hero-slider-dot:hover {
    transform: translateY(-1px);
    opacity: 0.94;
}

.hero-slide-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #d9e8ff 0%, #b7cef6 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 43, 104, 0.04) 0%, rgba(4, 26, 64, 0.28) 100%);
}

.hero-slide-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.88), transparent 24%),
        linear-gradient(135deg, rgba(8, 43, 104, 0.98) 0%, rgba(17, 70, 158, 0.94) 100%);
}

.hero-slide-content {
    position: absolute;
    left: 34px;
    right: auto;
    bottom: 34px;
    z-index: 2;
    width: min(420px, calc(100% - 132px));
    max-width: calc(100% - 92px);
    padding: 22px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(8, 43, 104, 0.66) 0%, rgba(4, 26, 64, 0.84) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 22px 46px rgba(4, 26, 64, 0.24);
}

.hero-slide-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slide-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slide-accent, #ffd04b);
}

.hero-slide-content h3 {
    margin: 0 0 10px;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 1.08;
}

.hero-slide-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
    font-size: clamp(14px, 1.1vw, 17px);
}

.hero-slide-action {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.hero-stat-row {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stat {
    min-width: 150px;
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(8, 43, 104, 0.1);
    box-shadow: 0 14px 30px rgba(8, 43, 104, 0.07);
}

.hero-stat strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-size: 26px;
}

.hero-stat span {
    color: var(--muted);
    font-weight: 700;
}

.students-group {
    position: absolute;
    inset: 78px 38px 38px 38px;
    display: grid;
    align-items: end;
}

.student-card {
    position: absolute;
    width: 150px;
    height: 240px;
    padding: 16px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 36px rgba(10, 44, 102, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.75);
}

.student-card.large {
    right: 122px;
    bottom: 12px;
    width: 220px;
    height: 350px;
    z-index: 3;
}

.student-card.left {
    left: 8px;
    bottom: 38px;
    z-index: 1;
}

.student-card.mid {
    right: 16px;
    bottom: 44px;
    z-index: 2;
}

.student-card.right {
    right: -6px;
    bottom: 38px;
    z-index: 1;
}

.student-card::before {
    content: "";
    display: block;
    width: 100%;
    height: 72%;
    border-radius: 22px;
    background:
        radial-gradient(circle at top, #ffe3d6 0 18%, #c77d52 18% 22%, transparent 22%),
        linear-gradient(180deg, #5a86c6 0 34%, #e4eefb 34% 100%);
}

.student-card.large::before {
    height: 76%;
}

.student-tag {
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 12px;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
}

.passport-prop {
    position: absolute;
    right: 26px;
    bottom: 24px;
    width: 108px;
    height: 144px;
    border-radius: 10px;
    background: linear-gradient(180deg, var(--navy-deep), #143e86);
    box-shadow: 0 20px 34px rgba(8, 43, 104, 0.24);
    display: grid;
    place-items: center;
    color: #f5d28e;
    font-weight: 800;
}

.passport-prop::before {
    content: "PASSPORT";
    position: absolute;
    top: 14px;
    font-size: 14px;
    letter-spacing: 1px;
}

.passport-prop::after {
    content: "O";
    font-size: 36px;
}

.section {
    padding: 44px 0;
}

.section-title {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
}

.section-copy {
    margin: 0 0 30px;
    color: var(--muted);
    line-height: 1.8;
    font-size: 17px;
}

.section-intro {
    max-width: 780px;
    margin: 0 auto 30px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--soft-blue);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-grid,
.contact-grid,
.footer-grid,
.dual-grid {
    display: grid;
    gap: 28px;
}

.about-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
}

.story-grid,
.course-grid,
.benefit-grid,
.social-grid {
    display: grid;
    gap: 24px;
}

.course-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.story-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

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

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

.social-links-grid {
    display: grid;
    gap: 18px;
}

.white-card,
.metric-panel,
.course-card,
.story-card,
.contact-card,
.social-card,
.form-shell,
.info-panel {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 43, 104, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.white-card,
.metric-panel,
.contact-card,
.social-card,
.info-panel {
    padding: 34px;
}

.metric-panel {
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: #fff;
}

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

.metric-box {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.metric-box strong {
    display: block;
    color: #ffd66d;
    font-size: 34px;
    margin-bottom: 6px;
}

.list-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.list-checks li::before,
.benefit::before {
    content: "\2713";
    color: var(--navy);
    font-weight: 800;
    margin-right: 10px;
}

.course-card,
.story-card,
.social-card,
.contact-card,
.info-panel {
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.course-card:hover,
.story-card:hover,
.social-card:hover,
.contact-card:hover,
.info-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 26px 54px rgba(9, 39, 92, 0.14);
    border-color: rgba(8, 43, 104, 0.16);
}

.course-card {
    padding: 20px;
    display: grid;
    gap: 16px;
    align-content: start;
    grid-template-rows: auto 1fr auto;
    min-height: 100%;
}

.course-card-media {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 22px;
    background:
        linear-gradient(135deg, var(--course-soft), rgba(255, 255, 255, 0.92)),
        linear-gradient(180deg, #d9e8ff 0%, #b7cef6 100%);
}

.course-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.course-type-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(5, 24, 58, 0.78);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.course-card-body {
    display: grid;
    gap: 14px;
    align-content: start;
    grid-template-rows: auto minmax(88px, auto);
}

.course-card h3 {
    color: var(--navy);
    line-height: 1.2;
    min-height: 52px;
}

.course-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    font-size: 24px;
    font-weight: 800;
}

.course-card h3,
.story-card h3,
.contact-card h3,
.social-card h3,
.info-panel h3,
.form-section h3 {
    margin: 0;
}

.course-card p,
.story-card p,
.contact-card p,
.social-card p,
.info-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.6;
    cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.course-card-action {
    margin-top: auto;
}

.story-band {
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: #fff;
}

.story-card {
    padding: 18px;
    display: grid;
    gap: 18px;
    grid-template-rows: auto auto auto auto 1fr auto;
    min-height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid rgba(8, 43, 104, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(4, 26, 64, 0.16);
    color: var(--ink);
}

.story-media {
    position: relative;
    aspect-ratio: 1 / 1;
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.88), transparent 24%),
        linear-gradient(135deg, #dce9ff 0%, #a9c5f3 100%);
}

.story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-media-placeholder {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.88), transparent 24%),
        linear-gradient(135deg, #dce9ff 0%, #a9c5f3 100%);
}

.story-mode-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--story-accent, var(--navy));
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(4, 26, 64, 0.12);
}

.story-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(180deg, #dce9ff 0%, #a9c5f3 100%);
    border: 3px solid rgba(8, 43, 104, 0.1);
    flex: 0 0 auto;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-name {
    display: block;
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 4px;
}

.story-type {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
}

.story-card h3 {
    color: var(--navy);
    font-size: 24px;
    line-height: 1.15;
    min-height: 56px;
}

.story-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.story-meta-card {
    padding: 14px;
    border-radius: 16px;
    background: var(--story-soft, #eef4ff);
    border: 1px solid rgba(8, 43, 104, 0.08);
}

.story-meta-card span {
    display: block;
    margin-bottom: 6px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.story-meta-card strong {
    display: block;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.4;
}

.story-score {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(223, 39, 41, 0.08);
    color: var(--red);
    font-weight: 800;
    width: fit-content;
}

.story-card p {
    color: var(--ink);
    line-height: 1.75;
}

.story-video-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 12px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--navy), #11469e);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(8, 43, 104, 0.16);
}

.benefit-band {
    padding-top: 52px;
}

.benefit {
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(8, 43, 104, 0.08);
    font-weight: 700;
    line-height: 1.6;
}

.social-card {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.social-link-card {
    padding: 22px 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid rgba(8, 43, 104, 0.08);
    box-shadow: 0 14px 34px rgba(8, 43, 104, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.social-link-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 40px rgba(8, 43, 104, 0.12);
    border-color: rgba(8, 43, 104, 0.16);
}

.social-link-card-instagram {
    background: linear-gradient(135deg, #fff 0%, #fff6fb 100%);
}

.social-link-card-facebook {
    background: linear-gradient(135deg, #fff 0%, #f4f8ff 100%);
}

.social-link-card-youtube {
    background: linear-gradient(135deg, #fff 0%, #fff5f4 100%);
}

.social-link-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon-badge {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    box-shadow: 0 12px 26px rgba(8, 43, 104, 0.18);
    overflow: hidden;
}

.social-icon-instagram {
    background: linear-gradient(135deg, #fd5949, #d6249f 55%, #285aeb);
}

.social-icon-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5bd2);
}

.social-icon-youtube {
    background: linear-gradient(135deg, #ff3b30, #d91f16);
}

.social-icon-badge svg {
    width: 100%;
    height: 100%;
    display: block;
}

.social-link-head h3 {
    margin: 0 0 6px;
    color: var(--navy);
    font-size: 24px;
}

.social-link-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.social-link-action {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
}

.social-thumb {
    height: 170px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(223, 39, 41, 0.85), rgba(8, 43, 104, 0.9)),
        linear-gradient(180deg, #dbe8ff 0%, #a4c0ee 100%);
}

.social-platform {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
}

.form-shell {
    padding: 32px;
}

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

.field,
.field-full {
    display: grid;
    gap: 9px;
}

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

label {
    font-weight: 700;
    color: var(--ink);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 15px 16px;
    font: inherit;
    color: var(--ink);
    background: linear-gradient(180deg, #fff 0%, #fcfdff 100%);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(8, 43, 104, 0.45);
    box-shadow: 0 0 0 4px rgba(8, 43, 104, 0.08);
}

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

.error-text {
    color: #b42020;
    font-size: 14px;
}

.help-text {
    color: var(--muted);
    font-size: 14px;
}

.field .error-text,
.field .help-text,
.field-full .error-text,
.field-full .help-text {
    display: block;
    line-height: 1.45;
}

.page-hero {
    padding: 38px 0 18px;
}

.page-hero-shell {
    padding: 42px;
    border-radius: 32px;
    background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(8, 43, 104, 0.12) 100%),
        linear-gradient(135deg, #fff 0%, #eef5ff 100%);
    box-shadow: var(--shadow-premium);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 26px;
    align-items: center;
}

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

.hero-pill {
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(8, 43, 104, 0.08);
    color: var(--navy);
    font-weight: 800;
}

.form-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 28px;
    align-items: start;
}

.enquiry-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.enquiry-sidebar {
    display: grid;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.enquiry-info-card {
    padding: 28px;
}

.enquiry-flow-points {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.enquiry-flow-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: var(--soft-blue);
    color: var(--navy);
    font-weight: 800;
}

.enquiry-flow-points span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(223, 39, 41, 0.12);
}

.enquiry-form-shell {
    padding: 34px;
}

.enquiry-form-header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(8, 43, 104, 0.08);
}

.enquiry-form-header h2 {
    margin: 10px 0 10px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.02;
}

.enquiry-form-header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.enquiry-form-section {
    padding: 0;
    margin-bottom: 28px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.enquiry-form-section:last-of-type {
    margin-bottom: 0;
}

.enquiry-form-section .section-label {
    margin-bottom: 18px;
}

.enquiry-form-section .form-grid,
.enquiry-form-section .interest-grid,
.enquiry-form-section .field-full {
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(8, 43, 104, 0.08);
    box-shadow: 0 16px 32px rgba(8, 43, 104, 0.06);
}

.enquiry-form-section .field-full {
    display: grid;
    gap: 9px;
}

.admission-layout {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.admission-sidebar {
    display: grid;
    gap: 24px;
    position: sticky;
    top: 120px;
}

.admission-info-card {
    padding: 28px;
}

.admission-info-card h3 {
    margin-bottom: 10px;
}

.admission-info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.admission-next-panel {
    width: min(100%, 480px);
    justify-self: end;
    align-self: center;
    padding: 30px 34px;
}

.admission-next-panel h3 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.05;
}

.admission-next-panel .info-list {
    gap: 0;
}

.admission-next-panel .info-row {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    padding: 16px 0;
}

.admission-next-panel .info-row strong {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(8, 43, 104, 0.08);
    color: var(--navy);
    font-size: 17px;
    line-height: 1;
}

.admission-next-panel .info-row span {
    padding-top: 6px;
    color: var(--ink);
    line-height: 1.65;
}

.admission-flow-points {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.admission-flow-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(223, 39, 41, 0.08);
    color: var(--navy);
    font-weight: 800;
}

.admission-flow-points span::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(223, 39, 41, 0.12);
}

.admission-highlight-list {
    margin-top: 18px;
    display: grid;
    gap: 18px;
}

.admission-highlight-item {
    display: grid;
    gap: 6px;
    padding-top: 18px;
    border-top: 1px solid rgba(8, 43, 104, 0.08);
}

.admission-highlight-item:first-child {
    padding-top: 0;
    border-top: 0;
}

.admission-highlight-item strong {
    color: var(--navy);
    font-size: 22px;
}

.admission-highlight-item span {
    color: var(--muted);
    line-height: 1.7;
}

.admission-form-shell {
    padding: 34px;
}

.admission-form-header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(8, 43, 104, 0.08);
}

.admission-form-header h2 {
    margin: 10px 0 10px;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.04;
}

.admission-form-header p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.admission-form-section {
    padding: 0;
    margin-bottom: 28px;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.admission-form-section:last-of-type {
    margin-bottom: 0;
}

.admission-form-section .section-label {
    margin-bottom: 18px;
}

.admission-form-section .form-grid {
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(8, 43, 104, 0.08);
    box-shadow: 0 16px 32px rgba(8, 43, 104, 0.06);
    align-items: start;
}

.admission-form-section .field {
    align-content: start;
}

.admission-form-section label {
    display: block;
    min-height: 24px;
}

.admission-form-section input,
.admission-form-section select {
    min-height: 58px;
}

.admission-form-section input[type="file"] {
    padding: 10px 14px;
    background: #fff;
}

.admission-form-section input[disabled] {
    color: var(--ink);
    background: linear-gradient(180deg, #f7f9fd 0%, #eef3fb 100%);
    opacity: 1;
}

.section-number-accent {
    background: linear-gradient(135deg, var(--red), #f04a41);
}

.admission-declaration-box {
    display: grid;
    gap: 16px;
    padding: 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(8, 43, 104, 0.08);
    box-shadow: 0 16px 32px rgba(8, 43, 104, 0.06);
}

.admission-declaration-box .section-copy {
    margin: 0;
}

.form-stack {
    display: grid;
    gap: 24px;
}

.form-section {
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(8, 43, 104, 0.08);
    box-shadow: var(--shadow);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--navy);
}

.section-number {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--navy-soft));
    color: #fff;
    font-weight: 800;
}

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

.interest-option {
    position: relative;
}

.interest-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.interest-card {
    min-height: 100%;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.interest-card:hover {
    transform: translateY(-2px);
}

.interest-option input:checked + .interest-card {
    border-color: rgba(8, 43, 104, 0.42);
    box-shadow: 0 0 0 4px rgba(8, 43, 104, 0.08);
}

.interest-card .course-icon {
    flex: 0 0 auto;
}

.interest-copy strong {
    display: block;
    margin-bottom: 4px;
}

.interest-copy small {
    color: var(--muted);
}

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

.info-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line);
}

.info-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.stack-spaced {
    margin-top: 24px;
}

.text-center {
    text-align: center;
}

.full-width {
    width: 100%;
}

.screen-only {
    display: initial;
}

.print-only {
    display: none;
}

.print-card-toolbar {
    margin-top: 20px;
}

.print-sheet-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    margin-bottom: 26px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(8, 43, 104, 0.14);
}

.print-sheet-brand {
    color: var(--navy);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}

.print-sheet-header p {
    margin: 8px 0 0;
    color: var(--muted);
}

.print-sheet-contact {
    display: grid;
    gap: 8px;
    align-content: start;
    justify-items: end;
    color: var(--ink);
    font-weight: 700;
    text-align: right;
}

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

.print-card {
    min-height: 268px;
    padding: 22px;
    border-radius: 24px;
    border: 2px solid var(--print-accent, var(--navy));
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
    box-shadow: none;
    break-inside: avoid;
    page-break-inside: avoid;
    display: grid;
    gap: 14px;
    align-content: start;
    position: relative;
    overflow: hidden;
}

.print-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 12px;
    background: linear-gradient(90deg, var(--print-accent, var(--navy)), rgba(8, 43, 104, 0.14));
}

.print-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 4px;
}

.print-card-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--print-soft, var(--soft-blue));
    color: var(--print-accent, var(--navy));
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.print-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--print-soft, var(--soft-blue));
    color: var(--print-accent, var(--navy));
    font-size: 24px;
    font-weight: 800;
}

.print-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 28px;
    line-height: 1.05;
}

.print-card p {
    margin: 0;
    color: var(--ink);
    line-height: 1.65;
    font-size: 15px;
}

.print-card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(8, 43, 104, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 14px;
}

.print-card-footer strong {
    color: var(--print-accent, var(--navy));
    font-size: 15px;
}

.footer-brand {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
}

.site-footer {
    margin-top: 56px;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 100%);
    color: rgba(255, 255, 255, 0.92);
}

.footer-grid {
    padding: 48px 0 34px;
    grid-template-columns: 1.1fr 0.7fr 0.7fr 0.9fr;
}

.site-footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.site-footer p,
.site-footer a {
    display: block;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.84);
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-links a {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom .container {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1100px) {
    .top-strip-inner {
        justify-content: center;
        padding: 10px 0;
    }

    .hero-panel,
    .about-grid,
    .contact-grid,
    .form-layout,
    .enquiry-layout,
    .admission-layout,
    .page-hero-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .course-grid,
    .story-grid,
    .benefit-grid,
    .social-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-copy {
        padding: 50px 42px;
    }

    .hero-copy-inner {
        margin-right: 0;
    }

    .enquiry-sidebar {
        position: static;
    }

    .admission-sidebar {
        position: static;
    }

    .admission-next-panel {
        width: 100%;
        justify-self: stretch;
    }

    .hero-panel-wide {
        min-height: auto;
        grid-template-columns: 1fr;
        border-radius: 0 0 28px 28px;
    }

    .hero-slider {
        padding: 26px;
        min-height: 500px;
    }

    .nav-inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
        min-height: 78px;
        position: relative;
        padding: 14px 0;
    }

    .brand {
        min-width: 0;
    }

    .brand img {
        max-width: min(170px, 100%);
        width: auto;
        max-height: 54px;
    }

    .nav-links {
        display: none;
        position: absolute;
        left: 16px;
        right: 16px;
        top: calc(100% + 10px);
        padding: 18px;
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--shadow);
        border: 1px solid rgba(8, 43, 104, 0.08);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        z-index: 30;
    }

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

    .nav-links a {
        width: 100%;
        padding: 12px 4px;
    }

    .nav-links a + a {
        border-top: 1px solid rgba(8, 43, 104, 0.08);
    }

    .nav-links a.active::after,
    .nav-links a:hover::after {
        left: 4px;
        right: auto;
        width: 28px;
        bottom: 4px;
    }

    .nav-toggle {
        display: inline-flex;
        justify-self: end;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 22px, 100%);
    }

    .top-strip-inner {
        justify-content: flex-start;
        padding: 8px 0;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .top-strip-inner::-webkit-scrollbar {
        display: none;
    }

    .top-strip-contact-row {
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 8px;
        min-width: max-content;
        width: 100%;
        padding-right: 10px;
    }

    .top-contact-link {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 12px;
    }

    .top-contact-link:not(.flash-contact) {
        background: rgba(255, 255, 255, 0.12);
    }

    .top-contact-static {
        display: none;
    }

    .top-contact-link[href^="mailto:"] {
        max-width: 170px;
    }

    .top-contact-link[href^="mailto:"] span:last-child {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-copy,
    .page-hero-shell,
    .form-shell,
    .enquiry-form-shell,
    .admission-form-shell,
    .white-card,
    .metric-panel,
    .contact-card,
    .social-card,
    .info-panel,
    .form-section {
        padding: 22px;
    }

    .hero,
    .section {
        padding: 28px 0;
    }

    .form-grid,
    .metric-grid,
    .course-grid,
    .story-grid,
    .benefit-grid,
    .social-grid,
    .interest-grid,
    .list-checks {
        grid-template-columns: 1fr;
    }

    .enquiry-form-section .form-grid,
    .enquiry-form-section .interest-grid,
    .enquiry-form-section .field-full,
    .admission-form-section .form-grid,
    .admission-declaration-box {
        padding: 18px;
    }

    .admission-next-panel {
        padding: 24px;
    }

    .admission-next-panel h3 {
        font-size: 28px;
    }

    .admission-next-panel .info-row {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
    }

    .nav-call {
        display: none;
    }

    .top-strip {
        font-size: 12px;
    }

    .hero-visual {
        min-height: 420px;
    }

    .story-meta-grid {
        grid-template-columns: 1fr;
    }

    .hero-slider {
        padding: 16px;
        min-height: 420px;
    }

    .hero-slide-content {
        left: 16px;
        right: auto;
    }

    .hero-slide-content {
        bottom: 16px;
        width: calc(100% - 84px);
        max-width: 300px;
        padding: 18px;
    }

    .hero-slider-controls {
        right: 18px;
        left: auto;
        bottom: 22px;
        justify-content: flex-end;
        gap: 8px;
    }

    .hero-slider-dots {
        flex: 0 1 auto;
        justify-content: center;
        padding: 8px 12px;
    }

    .hero-slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 20px;
        flex: 0 0 auto;
    }

    .hero-copy::after {
        left: 22px;
        bottom: 18px;
        width: 86px;
    }

    .student-card.large {
        right: 66px;
        width: 170px;
        height: 290px;
    }

    .student-card {
        width: 112px;
        height: 190px;
    }

    .passport-prop {
        width: 84px;
        height: 114px;
    }

    .info-row {
        flex-direction: column;
        gap: 6px;
    }

    .nav-inner {
        min-height: 72px;
        gap: 10px;
        padding: 12px 0;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brand {
        min-width: 0;
        max-width: 100%;
    }

    .brand img {
        width: auto !important;
        max-width: min(168px, 100%);
        max-height: 58px;
        object-fit: contain;
        object-position: left center;
    }

    .nav-toggle {
        padding: 10px;
        font-size: 13px;
        min-width: 48px;
        justify-content: center;
    }

    .nav-toggle span:last-child {
        display: none;
    }

    .nav-links {
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        padding: 14px 16px;
        border-radius: 18px;
    }

    .hero-stat-row {
        gap: 12px;
    }

    .hero-stat {
        min-width: 100%;
    }
}

@media print {
    @page {
        size: A4 portrait;
        margin: 10mm;
    }

    :root {
        --ink: #111;
        --muted: #3b465a;
    }

    body {
        background: #fff;
        color: #000;
    }

    body::before {
        display: none;
    }

    .site-shell > * {
        display: none !important;
    }

    .site-shell > .print-ready-cards {
        display: block !important;
        padding: 0;
        margin: 0;
    }

    .print-only {
        display: block !important;
    }

    .screen-only {
        display: none !important;
    }

    .print-ready-cards .container {
        width: 100%;
        margin: 0;
    }

    .print-sheet-header {
        margin-bottom: 18px;
        padding-bottom: 14px;
        gap: 16px;
    }

    .print-sheet-brand {
        font-size: 26px;
    }

    .print-sheet-header p {
        font-size: 13px;
    }

    .print-sheet-contact {
        font-size: 12px;
        gap: 5px;
    }

    .print-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .print-card {
        min-height: 92mm;
        padding: 18px;
        border-radius: 14px;
    }

    .print-card h3 {
        font-size: 22px;
    }

    .print-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .print-card-footer {
        font-size: 12px;
    }
}
