/* MMMK v0.2 — santūresnė antraštė, tekstinis pavadinimas ir fotografija */
:root {
    --navy-950: #061a35;
    --navy-900: #08254a;
    --navy-800: #0c315d;
    --navy-700: #174673;
    --teal-700: #08766f;
    --teal-600: #0f8a80;
    --teal-100: #dff3f0;
    --ink: #17253a;
    --muted: #5b687a;
    --line: #dce4eb;
    --surface: #ffffff;
    --surface-muted: #f4f7f9;
    --surface-teal: #eef8f7;
    --shadow: 0 16px 40px rgba(8, 37, 74, .10);
    --shadow-soft: 0 8px 24px rgba(8, 37, 74, .07);
    --radius: 14px;
    --radius-sm: 9px;
    --container: 1180px;
    --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    color: var(--navy-900);
    line-height: 1.16;
    letter-spacing: -.025em;
}
h1 { font-size: clamp(2.45rem, 5vw, 4.65rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.16rem; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 840px; }
.centered { text-align: center; margin-inline: auto; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; left: 14px; top: -80px; z-index: 1000;
    background: #fff; color: var(--navy-900); padding: 10px 16px;
    border-radius: 8px; box-shadow: var(--shadow);
}
.skip-link:focus { top: 14px; }
.icon { width: 1.3em; height: 1.3em; flex: 0 0 auto; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(6, 26, 53, .97);
    border-bottom: 1px solid rgba(255,255,255,.10);
    transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.header-inner {
    min-height: 78px; display: flex; align-items: center; gap: 28px;
}
.brand {
    display: inline-flex; align-items: center;
    color: #fff; text-decoration: none; flex: 0 0 auto;
}
.brand-name-only span {
    display: block; color: #fff; font-size: .98rem; line-height: 1.24;
    font-weight: 800; letter-spacing: -.01em;
}
.footer-brand.brand-name-only span { font-size: 1.08rem; }
.main-nav { display: flex; align-items: stretch; gap: 2px; margin-left: auto; }
.main-nav a {
    position: relative; display: flex; align-items: center;
    min-height: 78px; padding: 0 13px; color: rgba(255,255,255,.84);
    text-decoration: none; font-size: .86rem; font-weight: 650;
}
.main-nav a:hover, .main-nav a.is-active { color: #fff; }
.main-nav a::after {
    content: ""; position: absolute; left: 13px; right: 13px; bottom: 14px;
    height: 2px; background: var(--teal-600); transform: scaleX(0);
    transition: transform .2s ease;
}
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.header-cta { flex: 0 0 auto; }
.menu-toggle {
    display: none; margin-left: auto; padding: 8px; color: #fff;
    background: transparent; border: 0; cursor: pointer;
}
.menu-toggle .icon { width: 28px; height: 28px; }
.menu-close-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-open-icon { display: none; }
.menu-toggle[aria-expanded="true"] .menu-close-icon { display: block; }

/* Buttons */
.button {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 48px; padding: 11px 20px; border-radius: 8px;
    border: 1px solid var(--teal-600); color: #fff; background: var(--teal-600);
    text-decoration: none; font-weight: 750; cursor: pointer;
    transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); background: var(--teal-700); border-color: var(--teal-700); }
.button .icon { width: 18px; height: 18px; }
.button-small { min-height: 42px; padding: 9px 15px; font-size: .87rem; }
.button-outline { color: var(--navy-900); background: transparent; border-color: #9fb2c4; }
.button-outline:hover { color: #fff; background: var(--navy-900); border-color: var(--navy-900); }
.button-light { color: var(--navy-900); background: #fff; border-color: #fff; }
.button-light:hover { color: #fff; background: var(--teal-600); border-color: var(--teal-600); }
.button[disabled] { cursor: not-allowed; opacity: .58; transform: none; }

/* Hero */
.hero {
    overflow: hidden; position: relative;
    background: linear-gradient(90deg, #fff 0 50%, #edf4f5 50% 100%);
}
.hero::before {
    content: ""; position: absolute; width: 480px; height: 480px;
    right: -250px; top: -230px; border: 1px solid rgba(15,138,128,.18);
    border-radius: 50%; pointer-events: none;
}
.hero-grid {
    min-height: 570px; display: grid; grid-template-columns: 1.08fr .92fr;
    align-items: stretch; gap: 0; padding-block: 0;
}
.hero-copy {
    position: relative; z-index: 2; display: flex; flex-direction: column;
    justify-content: center; padding: 68px 44px 68px 0;
}
.hero-copy h1 {
    max-width: 720px; margin-bottom: 22px;
    font-size: 2.62rem; line-height: 1.12;
    letter-spacing: -.035em;
}
.hero-copy h1 span { display: block; white-space: nowrap; }
.hero-copy > p { max-width: 620px; font-size: 1.08rem; margin-bottom: 30px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px;
    color: var(--teal-700); font-size: .78rem; font-weight: 850;
    letter-spacing: .11em; text-transform: uppercase;
}
.eyebrow .icon { width: 19px; height: 19px; }
.eyebrow-light { color: #92ddd7; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual {
    position: relative; min-height: 570px; display: block;
    margin-right: calc((100vw - min(calc(100vw - 40px), var(--container))) / -2);
}
.hero-photo {
    display: block; width: 100%; height: 100%; min-height: 570px;
    object-fit: cover; object-position: 53% center;
}
.hero-photo-wrap::after {
    content: ""; position: absolute; inset: 0 auto 0 0; width: 120px;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.66) 35%, transparent 100%);
    pointer-events: none;
}
.visual-note {
    position: absolute; left: -14px; bottom: 38px; z-index: 2;
    display: flex; align-items: center; gap: 12px;
    padding: 14px 17px; border: 1px solid var(--line); border-radius: 11px;
    background: #fff; box-shadow: var(--shadow-soft);
}
.visual-note .icon { width: 30px; height: 30px; color: var(--teal-600); }
.visual-note span { display: grid; }
.visual-note strong { color: var(--navy-900); font-size: .88rem; }
.visual-note small { color: var(--muted); }

/* Trust */
.trust-strip { position: relative; z-index: 3; border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 124px; }
.trust-grid > div {
    display: flex; align-items: center; justify-content: flex-start; gap: 15px;
    padding: 22px 20px; border-right: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid .icon { width: 36px; height: 36px; color: var(--teal-600); }
.trust-grid span { display: grid; }
.trust-grid strong { color: var(--navy-900); font-size: .98rem; line-height: 1.25; }
.trust-grid small { margin-top: 3px; color: var(--muted); font-size: .79rem; line-height: 1.35; }

/* Generic sections */
.section { padding-block: 92px; }
.section-muted { background: var(--surface-muted); }
.section-navy { color: #fff; background: var(--navy-900); }
.section-navy h2, .section-navy p { color: #fff; }
.section-heading { max-width: 720px; margin-bottom: 42px; }
.section-heading.centered { margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 15px; }
.section-heading p { font-size: 1.05rem; }
.section-action { margin-top: 34px; }
.text-link, .card-link {
    display: inline-flex; align-items: center; gap: 7px; color: var(--teal-700);
    font-weight: 800; text-decoration: none;
}
.text-link:hover, .card-link:hover { text-decoration: underline; }
.text-link .icon, .card-link .icon { width: 17px; height: 17px; }

/* Courses */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.course-card {
    display: flex; min-height: 260px; flex-direction: column;
    padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm);
    background: #fff; color: inherit; text-decoration: none; box-shadow: 0 1px 0 rgba(8,37,74,.02);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.course-card:hover { transform: translateY(-4px); border-color: #a9ccc8; box-shadow: var(--shadow-soft); }
.course-icon {
    display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px;
    color: var(--teal-700); background: var(--surface-teal); border-radius: 11px;
}
.course-icon .icon { width: 34px; height: 34px; }
.course-card h3 { min-height: 2.7em; margin-bottom: 11px; }
.course-card p { margin-bottom: 22px; font-size: .93rem; }
.card-link { margin-top: auto; font-size: .88rem; }

/* Steps */
.steps-grid {
    display: grid; grid-template-columns: 1fr 48px 1fr 48px 1fr;
    align-items: center; gap: 14px;
}
.step-card {
    position: relative; min-height: 265px; padding: 31px 28px;
    border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
}
.step-card > .icon { width: 42px; height: 42px; margin-bottom: 21px; color: var(--teal-700); }
.step-card h3 { margin-bottom: 10px; }
.step-number {
    position: absolute; right: 21px; top: 21px; display: grid; place-items: center;
    width: 32px; height: 32px; border-radius: 50%; color: #fff;
    background: var(--teal-600); font-size: .82rem; font-weight: 900;
}
.step-arrow { display: grid; place-items: center; color: var(--teal-600); }
.step-arrow .icon { width: 28px; height: 28px; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.benefits-grid-six { grid-template-columns: repeat(3, 1fr); row-gap: 42px; }
.benefit { padding: 0 18px; text-align: center; border-right: 1px solid var(--line); }
.benefit:last-child { border-right: 0; }
.benefits-grid-six .benefit:nth-child(3n) { border-right: 0; }
.benefit > .icon { width: 44px; height: 44px; margin-bottom: 18px; color: var(--teal-700); }
.benefit h3 { margin-bottom: 10px; }
.benefit p { font-size: .91rem; }

/* Dark schedule */
.split-section { display: grid; grid-template-columns: 1fr .78fr; align-items: center; gap: 72px; }
.split-section h2 { margin-bottom: 17px; }
.date-card {
    display: grid; gap: 9px; padding: 32px; border: 1px solid rgba(255,255,255,.20);
    border-radius: var(--radius); background: rgba(255,255,255,.07);
}
.date-card > .icon { width: 38px; height: 38px; color: #89ddd6; }
.date-label { color: #a9deda; font-size: .76rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.date-card > strong { font-size: 1.75rem; }
.date-card p { color: rgba(255,255,255,.76); }
.date-card .button { justify-self: start; }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: .68fr 1fr; gap: 70px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
    position: relative; padding: 21px 44px 21px 0; color: var(--navy-900);
    font-weight: 800; cursor: pointer; list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
    content: "+"; position: absolute; right: 4px; top: 16px;
    color: var(--teal-700); font-size: 1.5rem; font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { padding-right: 34px; text-align: justify; text-justify: inter-word; hyphens: none; }

/* Page hero */
.page-hero {
    padding-block: 88px; color: #fff;
    background:
        radial-gradient(circle at 80% 20%, rgba(15,138,128,.24), transparent 28%),
        linear-gradient(115deg, var(--navy-950), var(--navy-800));
}
.page-hero h1 { margin-bottom: 20px; color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,.77); font-size: 1.08rem; }
.page-hero .eyebrow { color: #8adbd4; }
.page-hero .button { margin-top: 12px; }

/* Programs */
.program-group { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; padding-block: 42px; border-bottom: 1px solid var(--line); }
.program-group:first-child { padding-top: 0; }
.program-intro { position: sticky; top: 118px; align-self: start; }
.program-intro h2 { font-size: 2rem; }
.program-list { display: grid; gap: 10px; }
.program-row {
    display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 15px;
    padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff;
}
.program-row > span { display: grid; place-items: center; width: 42px; height: 42px; color: var(--teal-700); background: var(--surface-teal); border-radius: 9px; }
.program-row h3 { margin: 0; font-size: 1rem; }
.program-row a { display: inline-flex; align-items: center; gap: 5px; color: var(--teal-700); font-size: .83rem; font-weight: 800; text-decoration: none; }
.program-row a .icon { width: 15px; height: 15px; }

/* Schedule */
.schedule-card {
    display: grid; grid-template-columns: 78px 1fr; gap: 27px;
    padding: 38px; border: 1px solid var(--line); border-radius: var(--radius);
    background: #fff; box-shadow: var(--shadow-soft);
}
.schedule-card > .icon { width: 60px; height: 60px; color: var(--teal-700); }
.schedule-tag { display: inline-flex; margin-bottom: 10px; color: var(--teal-700); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.info-note, .draft-banner {
    margin-top: 28px; padding: 18px 21px; border-left: 4px solid var(--teal-600);
    background: var(--surface-teal); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.info-note p, .draft-banner p { margin-bottom: 0; }

/* Services */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
    min-height: 225px; padding: 28px; border: 1px solid var(--line);
    border-radius: var(--radius-sm); background: #fff;
}
.service-card > .icon { width: 42px; height: 42px; margin-bottom: 26px; color: var(--teal-700); }
.service-card h2 { font-size: 1.22rem; }

/* About */
.story-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 72px; align-items: start; }
.story-copy h2 { margin-bottom: 21px; }
.stat-panel {
    display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden;
    border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-muted);
}
.stat-panel div { display: grid; align-content: center; min-height: 180px; padding: 22px; text-align: center; border-right: 1px solid var(--line); }
.stat-panel div:last-child { border-right: 0; }
.stat-panel strong { color: var(--teal-700); font-size: 2.05rem; }
.stat-panel span { color: var(--muted); font-size: .85rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 60px; align-items: start; }
.contact-cards { display: grid; gap: 14px; }
.contact-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.contact-card h2 { margin-bottom: 14px; font-size: 1.25rem; }
.contact-card a { display: flex; align-items: center; gap: 9px; margin-top: 9px; color: var(--teal-700); text-decoration: none; }
.contact-card a .icon { width: 19px; height: 19px; }
.contact-role { color: var(--teal-700); font-size: .75rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.contact-form { padding: 32px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-muted); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; color: var(--navy-900); font-weight: 750; font-size: .88rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, textarea {
    width: 100%; padding: 12px 13px; color: var(--ink); background: #fff;
    border: 1px solid #bbc9d5; border-radius: 7px; font: inherit;
}
input:focus, textarea:focus { outline: 3px solid rgba(15,138,128,.14); border-color: var(--teal-600); }
select { width: 100%; padding: 12px 13px; color: var(--ink); background: #fff; border: 1px solid #bbc9d5; border-radius: 7px; font: inherit; }
select:focus { outline: 3px solid rgba(15,138,128,.14); border-color: var(--teal-600); }
.form-note { margin-top: 11px; font-size: .82rem; }
.consent-row { display: flex !important; grid-template-columns: none !important; align-items: flex-start; gap: 10px; font-weight: 500 !important; }
.consent-row input { width: auto; margin-top: 2px; }
.consent-row span { font-size: .84rem; line-height: 1.5; }

/* Legal / tests */
.legal-copy { max-width: 850px; }
.legal-copy h2 { margin-top: 38px; }
.legal-copy li { margin-bottom: 8px; }
.coming-soon { padding: 38px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-muted); }
.coming-soon > .icon { width: 54px; height: 54px; color: var(--teal-700); }
.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding: 12px 0 12px 29px; border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal-700); font-weight: 900; }
.act-list { margin-top: 28px; border-top: 1px solid var(--line); }
.act-row { display: flex; align-items: center; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.act-row .icon { color: var(--teal-700); }

/* Bottom CTA + footer */
.bottom-cta { color: #fff; background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.12); }
.bottom-cta-inner {
    min-height: 132px; display: grid; grid-template-columns: 58px 1fr auto;
    align-items: center; gap: 24px;
}
.bottom-cta-icon { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.bottom-cta-icon .icon { width: 32px; height: 32px; }
.bottom-cta h2 { margin-bottom: 5px; color: #fff; font-size: 1.55rem; }
.bottom-cta p { margin: 0; color: rgba(255,255,255,.72); }
.site-footer { color: rgba(255,255,255,.73); background: var(--navy-950); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr .8fr 1fr; gap: 46px; padding-block: 62px; }
.footer-brand { margin-bottom: 20px; }
.footer-summary { max-width: 300px; color: rgba(255,255,255,.63); }
.site-footer h3 { margin-bottom: 17px; color: #fff; font-size: .93rem; letter-spacing: .04em; }
.footer-list, .footer-links { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.footer-list li { display: flex; align-items: center; gap: 9px; }
.footer-list .icon { width: 17px; height: 17px; color: #85d6cf; }
.site-footer a { color: rgba(255,255,255,.76); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer p { color: rgba(255,255,255,.63); font-size: .88rem; }
.footer-bottom {
    display: flex; justify-content: space-between; gap: 20px; padding-block: 18px;
    border-top: 1px solid rgba(255,255,255,.11); font-size: .78rem;
}

/* Responsive */
@media (max-width: 1280px) {
    .hero-copy h1 { font-size: 2.35rem; max-width: 650px; }
    .hero-copy { padding-right: 34px; }
    .trust-grid > div { padding-inline: 15px; gap: 11px; }
    .trust-grid .icon { width: 31px; height: 31px; }
    .trust-grid strong { font-size: .9rem; }
    .trust-grid small { font-size: .74rem; }
}
@media (max-width: 1080px) {
    .header-cta { display: none; }
    .main-nav a { padding-inline: 9px; font-size: .8rem; }
    .hero-grid { grid-template-columns: 1.04fr .96fr; gap: 0; }
    .hero-copy h1 { font-size: 2.12rem; max-width: 600px; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid > div:nth-child(2) { border-right: 0; }
    .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .course-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid, .benefits-grid-six { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
    .benefit:nth-child(2n) { border-right: 0; }
    .benefits-grid-six .benefit:nth-child(3n) { border-right: 1px solid var(--line); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .header-inner { min-height: 70px; }
    .brand-name-only span { font-size: .91rem; }
    .menu-toggle { display: block; }
    .main-nav {
        position: fixed; inset: 70px 0 0 0; display: none; flex-direction: column;
        padding: 18px 20px 32px; background: var(--navy-950); overflow: auto;
    }
    .main-nav.is-open { display: flex; }
    .main-nav a { min-height: 52px; padding: 0 8px; border-bottom: 1px solid rgba(255,255,255,.10); font-size: 1rem; }
    .main-nav a::after { display: none; }
    .hero { background: #fff; }
    .hero-grid { min-height: auto; grid-template-columns: 1fr; }
    .hero-copy { padding: 58px 0 48px; text-align: center; }
    .hero-copy h1 { max-width: 690px; margin-inline: auto; font-size: 2.5rem; }
    .hero-copy h1 span { white-space: normal; }
    .hero-copy > p { margin-inline: auto; }
    .button-row { justify-content: center; }
    .hero-visual {
        min-height: 430px; margin: 0 calc((100vw - min(calc(100vw - 40px), var(--container))) / -2);
    }
    .hero-photo { min-height: 430px; max-height: 510px; }
    .hero-photo-wrap::after {
        inset: 0 0 auto 0; width: auto; height: 65px;
        background: linear-gradient(180deg, #fff 0%, transparent 100%);
    }
    .visual-note { left: 24px; bottom: 24px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid > div { justify-content: flex-start; border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-grid > div:last-child { border-bottom: 0; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-arrow { transform: rotate(90deg); }
    .split-section, .faq-wrap, .program-group, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
    .program-intro { position: static; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-panel { max-width: 620px; }
}
@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section { padding-block: 68px; }
    .hero-copy { padding: 48px 0 42px; text-align: left; }
    .hero-copy h1 {
        max-width: 100%;
        margin-inline: 0;
        font-size: clamp(2rem, 9.5vw, 2.55rem);
        line-height: 1.13;
    }
    .button-row { justify-content: flex-start; }
    .button-row .button { width: 100%; }
    .hero-visual {
        min-height: 330px;
        margin: 0 calc((100vw - min(calc(100vw - 28px), var(--container))) / -2);
    }
    .hero-photo { min-height: 330px; height: 330px; object-position: 56% center; }
    .visual-note { left: 14px; right: 14px; bottom: 14px; }
    .course-grid, .benefits-grid, .service-grid, .footer-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); }
    .trust-grid > div:last-child { border-bottom: 0; }
    .benefit { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
    .benefit:last-child { border-bottom: 0; }
    .benefits-grid-six .benefit,
    .benefits-grid-six .benefit:nth-child(3n) { border-right: 0; }
    .program-row { grid-template-columns: 38px 1fr; }
    .program-row a { grid-column: 2; }
    .schedule-card { grid-template-columns: 1fr; padding: 26px; }
    .stat-panel { grid-template-columns: 1fr; }
    .stat-panel div { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--line); }
    .stat-panel div:last-child { border-bottom: 0; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    .bottom-cta-inner { grid-template-columns: 1fr; padding-block: 32px; }
    .bottom-cta .button { justify-self: start; }
    .footer-bottom { flex-direction: column; }
}


/* Catalogue v0.7 */
.page-hero-catalogue { padding-bottom: 106px; }
.catalogue-overview {
    position: relative;
    z-index: 4;
    margin-top: -48px;
}
.catalogue-overview > .container {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 18px;
    align-items: stretch;
}
.catalogue-stat {
    display: grid;
    align-content: center;
    padding: 24px;
    color: #fff;
    background: var(--teal-700);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}
.catalogue-stat strong { font-size: 2.35rem; line-height: 1; }
.catalogue-stat span {
    margin-top: 9px;
    font-size: .81rem;
    line-height: 1.4;
    color: rgba(255,255,255,.83);
}
.category-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.category-nav a {
    display: grid;
    grid-template-columns: 42px 1fr 20px;
    align-items: center;
    gap: 13px;
    min-height: 108px;
    padding: 20px;
    text-decoration: none;
    border-right: 1px solid var(--line);
}
.category-nav a:last-child { border-right: 0; }
.category-nav a:hover { background: var(--surface-teal); }
.category-nav-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--teal-700);
    background: var(--surface-teal);
    border-radius: 9px;
}
.category-nav-icon .icon { width: 25px; height: 25px; }
.category-nav a > span:nth-child(2) { display: grid; }
.category-nav strong { color: var(--navy-900); font-size: .91rem; line-height: 1.25; }
.category-nav small { margin-top: 4px; color: var(--muted); font-size: .76rem; }
.category-nav a > .icon { width: 18px; height: 18px; color: var(--teal-700); }
.catalogue-section { padding-top: 70px; }
.catalogue-group {
    scroll-margin-top: 108px;
    padding-block: 54px;
    border-bottom: 1px solid var(--line);
}
.catalogue-group:first-child { padding-top: 0; }
.catalogue-group:last-child { padding-bottom: 0; border-bottom: 0; }
.catalogue-group-heading {
    display: grid;
    grid-template-columns: 66px minmax(0, 760px);
    gap: 22px;
    align-items: start;
    margin-bottom: 30px;
}
.catalogue-group-icon {
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    color: #fff;
    background: var(--navy-900);
    border-radius: 13px;
}
.catalogue-group-icon .icon { width: 34px; height: 34px; }
.catalogue-count {
    display: block;
    margin-bottom: 5px;
    color: var(--teal-700);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.catalogue-group-heading h2 { margin-bottom: 10px; font-size: 2rem; }
.catalogue-group-heading p { margin-bottom: 0; text-align: justify; text-justify: inter-word; hyphens: none; }
.programme-card-grid,
.compact-programme-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.programme-list-card {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) 40px;
    align-items: stretch;
    min-height: 104px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(8,37,74,.02);
    transition: transform .17s ease, border-color .17s ease, box-shadow .17s ease, background .17s ease;
}
.programme-list-card:hover,
.programme-list-card:focus-visible {
    transform: translateY(-2px);
    border-color: #91c5bf;
    background: linear-gradient(100deg, #fff, #f4fbfa);
    box-shadow: var(--shadow-soft);
    outline: none;
}
.programme-list-card.is-featured {
    border-color: #8bc2bc;
}
.programme-list-media {
    position: relative;
    display: block;
    min-height: 102px;
    overflow: hidden;
    background: var(--surface-teal);
}
.programme-list-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,37,74,.04), rgba(255,255,255,.16));
}
.programme-list-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .62;
    filter: saturate(.8) contrast(.95);
    transition: transform .25s ease, opacity .2s ease;
}
.programme-list-card:hover .programme-list-media img {
    transform: scale(1.04);
    opacity: .75;
}
.programme-list-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 15px 15px 15px 18px;
}
.programme-type {
    display: block;
    overflow: hidden;
    color: var(--teal-700);
    font-size: .67rem;
    line-height: 1.35;
    font-weight: 850;
    letter-spacing: .045em;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}
.programme-list-title {
    display: -webkit-box;
    overflow: hidden;
    color: var(--navy-900);
    font-size: 1rem;
    line-height: 1.32;
    font-weight: 790;
    letter-spacing: -.012em;
    hyphens: none;
    overflow-wrap: normal;
    word-break: normal;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}
.programme-list-action {
    display: grid;
    place-items: center;
    align-self: stretch;
    color: var(--teal-700);
    border-left: 1px solid var(--line);
    background: rgba(238,248,247,.56);
    transition: color .17s ease, background .17s ease;
}
.programme-list-action .icon {
    width: 19px;
    height: 19px;
}
.programme-list-card:hover .programme-list-action,
.programme-list-card:focus-visible .programme-list-action {
    color: #fff;
    background: var(--teal-700);
}
.catalogue-help {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 44px;
}
.catalogue-help h2 { max-width: 760px; }
.catalogue-help p { max-width: 800px; margin-bottom: 0; text-align: justify; text-justify: inter-word; hyphens: none; }

/* Detailed programme v0.7 */
.program-detail-hero {
    padding-block: 34px 76px;
    color: #fff;
    background: radial-gradient(circle at 84% 16%, rgba(15,138,128,.25), transparent 31%), linear-gradient(115deg, var(--navy-950), var(--navy-800));
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    color: rgba(255,255,255,.62);
    font-size: .78rem;
}
.breadcrumbs a { color: rgba(255,255,255,.78); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.program-detail-hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 70px; align-items: end; }
.program-kicker {
    display: inline-flex;
    margin-bottom: 15px;
    color: #8edbd4;
    font-size: .76rem;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}
.program-detail-copy h1 { max-width: 680px; margin-bottom: 18px; color: #fff; font-size: 2.15rem; line-height: 1.14; }
.program-detail-copy > p {
    max-width: 760px;
    margin-bottom: 28px;
    color: rgba(255,255,255,.78);
    font-size: 1.06rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
}
.button-outline-light { color: #fff; border-color: rgba(255,255,255,.5); }
.button-outline-light:hover { color: var(--navy-900); background: #fff; border-color: #fff; }
.program-facts {
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(8px);
}
.program-facts div { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px 19px; border-bottom: 1px solid rgba(255,255,255,.13); }
.program-facts div:last-child { border-bottom: 0; }
.program-facts span { color: rgba(255,255,255,.64); font-size: .79rem; }
.program-facts strong { color: #fff; font-size: .9rem; text-align: right; }
.program-summary-strip { border-bottom: 1px solid var(--line); background: #fff; }
.program-summary-strip > .container { display: grid; grid-template-columns: repeat(3, 1fr); }
.program-summary-strip .container > div { display: flex; align-items: flex-start; gap: 14px; min-height: 118px; padding: 24px; border-right: 1px solid var(--line); }
.program-summary-strip .container > div:last-child { border-right: 0; }
.program-summary-strip .icon { width: 30px; height: 30px; margin-top: 2px; color: var(--teal-700); }
.program-summary-strip span { display: grid; }
.program-summary-strip strong { color: var(--navy-900); }
.program-summary-strip small { margin-top: 4px; color: var(--muted); line-height: 1.45; }
.program-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 66px; align-items: start; }
.program-main { min-width: 0; }
.program-content-section { padding-block: 39px; border-bottom: 1px solid var(--line); }
.program-content-section:first-child { padding-top: 0; }
.program-content-section:last-child { border-bottom: 0; padding-bottom: 0; }
.program-content-section h2 { margin-bottom: 18px; }
.program-content-section > p {
    max-width: 850px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
}
.program-note {
    margin-top: 24px;
    padding: 20px 22px;
    border-left: 4px solid var(--teal-600);
    background: var(--surface-teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.program-note strong { display: block; margin-bottom: 9px; }
.requirements-list, .check-list {
    padding: 0;
    list-style: none;
}
.requirements-list li, .check-list li {
    position: relative;
    padding: 12px 0 12px 29px;
    border-bottom: 1px solid var(--line);
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
}
.requirements-list li:last-child, .check-list li:last-child { border-bottom: 0; }
.requirements-list li::before, .check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-700);
    font-weight: 900;
}
.competency-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.competency-grid.single { grid-template-columns: 1fr; }
.competency-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.competency-card { position: relative; padding: 27px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface-muted); }
.competency-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 19px;
    color: #fff;
    background: var(--teal-700);
    border-radius: 50%;
    font-weight: 900;
}
.competency-card h3 {
    margin-bottom: 16px;
    font-size: 1.08rem;
    hyphens: none;
    overflow-wrap: break-word;
    word-break: normal;
}
.program-sidebar { position: sticky; top: 106px; display: grid; gap: 15px; }
.program-contact-card { padding: 27px; color: #fff; background: var(--navy-900); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.program-contact-card .eyebrow { color: #8edbd4; }
.program-contact-card h2 { color: #fff; font-size: 1.55rem; }
.program-contact-card p {
    color: rgba(255,255,255,.73);
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
}
.program-contact-card .button { width: 100%; margin-top: 6px; }
.program-phone { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; color: #fff; font-weight: 800; text-decoration: none; }
.program-phone .icon { width: 18px; height: 18px; }
.prototype-note { padding: 19px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface-muted); }
.prototype-note strong { color: var(--navy-900); font-size: .86rem; }
.prototype-note p { margin: 6px 0 0; font-size: .78rem; line-height: 1.5; text-align: justify; text-justify: inter-word; hyphens: none; }
@media (max-width: 1260px) {
}
@media (max-width: 1080px) {
    .program-detail-hero-grid { grid-template-columns: 1fr 340px; gap: 40px; }
    .competency-grid.three-up { grid-template-columns: repeat(2, 1fr); }
    .program-layout { grid-template-columns: minmax(0, 1fr) 300px; gap: 38px; }
}
@media (max-width: 860px) {
    .catalogue-overview > .container { grid-template-columns: 1fr; }
    .catalogue-stat { grid-template-columns: auto 1fr; gap: 16px; align-items: center; }
    .catalogue-stat span { margin-top: 0; }
    .category-nav { grid-template-columns: 1fr; }
    .category-nav a { min-height: 82px; border-right: 0; border-bottom: 1px solid var(--line); }
    .category-nav a:last-child { border-bottom: 0; }
    .program-detail-hero-grid, .program-layout { grid-template-columns: 1fr; }
    .program-facts { max-width: 600px; }
    .program-sidebar { position: static; }
    .program-summary-strip > .container { grid-template-columns: 1fr; }
    .program-summary-strip .container > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .program-summary-strip .container > div:last-child { border-bottom: 0; }
}
@media (max-width: 620px) {
    .page-hero-catalogue { padding-bottom: 86px; }
    .programme-card-grid, .compact-programme-list, .competency-grid, .competency-grid.three-up { grid-template-columns: 1fr; }
    .catalogue-group-heading { grid-template-columns: 48px 1fr; gap: 15px; }
    .catalogue-group-icon { width: 48px; height: 48px; }
    .catalogue-group-icon .icon { width: 25px; height: 25px; }
    .catalogue-group-heading h2 { font-size: 1.55rem; }
    .catalogue-help { grid-template-columns: 1fr; gap: 22px; }
    .catalogue-help .button { justify-self: start; }
    .program-detail-hero { padding-bottom: 56px; }
    .breadcrumbs { margin-bottom: 32px; }
    .program-detail-copy h1 { font-size: 1.9rem; }
    .program-facts div { grid-template-columns: 1fr; gap: 3px; }
    .program-facts strong { text-align: left; }
    .programme-card h3, .programme-type { max-width: 100%; }
}

@media (max-width: 760px) {
    .programme-card-grid,
    .compact-programme-list { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
    .programme-list-card {
        grid-template-columns: 68px minmax(0, 1fr) 34px;
        min-height: 92px;
    }
    .programme-list-media { min-height: 90px; }
    .programme-list-content { padding: 12px; }
    .programme-list-title { font-size: .93rem; }
    .programme-type { font-size: .62rem; }
}


/* Programme detail layout v1.2 — compact, balanced and consistent */
.program-detail-container {
    width: min(calc(100% - 40px), 1080px);
}

.program-detail-hero {
    padding-block: 28px 58px;
}

.program-detail-hero .breadcrumbs {
    margin-bottom: 34px;
    font-size: .75rem;
}

.program-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 52px;
    align-items: end;
}

.program-detail-copy {
    min-width: 0;
    max-width: 690px;
}

.program-kicker {
    margin-bottom: 13px;
    font-size: .72rem;
    letter-spacing: .105em;
}

.program-title,
.program-title.is-long,
.program-title.is-very-long {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: 2.15rem;
    line-height: 1.14;
    letter-spacing: -.032em;
    text-wrap: balance;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

.program-detail-copy > p {
    max-width: 640px;
    margin-bottom: 25px;
    font-size: .98rem;
    line-height: 1.7;
    text-align: left;
    text-justify: auto;
    hyphens: none;
}

.program-detail-copy .button-row {
    gap: 10px;
}

.program-detail-copy .button {
    min-height: 44px;
    padding: 9px 17px;
    font-size: .88rem;
}

.program-facts {
    width: 100%;
    max-width: 330px;
    justify-self: end;
}

.program-facts div {
    gap: 16px;
    padding: 13px 16px;
}

.program-facts span {
    font-size: .73rem;
}

.program-facts strong {
    max-width: 175px;
    font-size: .79rem;
    line-height: 1.35;
}

.program-summary-strip > .program-detail-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.program-summary-strip .program-detail-container > div {
    min-height: 96px;
    gap: 12px;
    padding: 18px 20px;
}

.program-summary-strip .icon {
    width: 25px;
    height: 25px;
}

.program-summary-strip strong {
    font-size: .89rem;
}

.program-summary-strip small {
    margin-top: 3px;
    font-size: .77rem;
    line-height: 1.42;
    text-align: left;
    hyphens: none;
}

.program-detail-body {
    padding-block: 66px 82px;
}

.program-layout {
    width: min(calc(100% - 40px), 1040px);
    grid-template-columns: minmax(0, 690px) 286px;
    justify-content: space-between;
    gap: 54px;
}

.program-content-section {
    padding-block: 31px;
}

.program-content-section:first-child {
    padding-top: 0;
}

.program-content-section .eyebrow {
    margin-bottom: 11px;
    font-size: .7rem;
}

.program-content-section h2 {
    max-width: 680px;
    margin-bottom: 16px;
    font-size: clamp(1.8rem, 2.3vw, 2.25rem);
    line-height: 1.15;
    text-wrap: balance;
}

.program-content-section > p {
    max-width: 680px;
    margin-bottom: 0;
    font-size: .95rem;
    line-height: 1.72;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
}

.program-note {
    max-width: 680px;
    margin-top: 21px;
    padding: 17px 19px;
}

.program-note strong {
    font-size: .9rem;
}

.requirements-list li,
.check-list li {
    padding: 10px 0 10px 26px;
    font-size: .88rem;
    line-height: 1.62;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
}

.competency-grid {
    max-width: 690px;
    gap: 14px;
}

.competency-card {
    padding: 21px;
    border-radius: 11px;
}

.competency-number {
    width: 30px;
    height: 30px;
    margin-bottom: 14px;
    font-size: .8rem;
}

.competency-card h3 {
    margin-bottom: 12px;
    font-size: .98rem;
    line-height: 1.4;
    text-wrap: balance;
}

.competency-grid.single .competency-card {
    max-width: 690px;
}

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

.competency-grid.three-up .competency-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.program-sidebar {
    top: 96px;
    gap: 13px;
}

.program-contact-card {
    padding: 23px;
}

.program-contact-card .eyebrow {
    margin-bottom: 12px;
    font-size: .7rem;
}

.program-contact-card h2 {
    margin-bottom: 13px;
    font-size: 1.32rem;
    line-height: 1.22;
}

.program-contact-card p {
    margin-bottom: 17px;
    font-size: .83rem;
    line-height: 1.58;
    text-align: left;
    text-justify: auto;
    hyphens: none;
}

.program-contact-card .button {
    min-height: 42px;
    padding: 9px 14px;
    font-size: .84rem;
}

.program-phone {
    margin-top: 14px;
    font-size: .86rem;
}

.prototype-note {
    padding: 16px;
}

.prototype-note p {
    font-size: .74rem;
    line-height: 1.48;
    text-align: left;
    text-justify: auto;
    hyphens: none;
}

@media (max-width: 1080px) {
    .program-detail-hero-grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 36px;
    }

    .program-layout {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 34px;
    }

    .program-title,
    .program-title.is-long,
    .program-title.is-very-long {
        max-width: 650px;
    }
}

@media (max-width: 860px) {
    .program-detail-container,
    .program-layout {
        width: min(calc(100% - 32px), 720px);
    }

    .program-detail-hero-grid,
    .program-layout {
        grid-template-columns: 1fr;
    }

    .program-detail-copy,
    .program-detail-copy > p,
    .program-title,
    .program-title.is-long,
    .program-title.is-very-long,
    .program-content-section > p,
    .program-note,
    .competency-grid {
        max-width: 100%;
    }

    .program-facts {
        max-width: 100%;
        justify-self: stretch;
    }

    .program-facts div {
        grid-template-columns: 1fr auto;
    }

    .program-summary-strip > .program-detail-container {
        grid-template-columns: 1fr;
    }

    .program-summary-strip .program-detail-container > div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .program-summary-strip .program-detail-container > div:last-child {
        border-bottom: 0;
    }

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

@media (max-width: 620px) {
    .program-detail-hero {
        padding-block: 24px 46px;
    }

    .program-detail-hero .breadcrumbs {
        margin-bottom: 27px;
    }

    .program-title,
    .program-title.is-long,
    .program-title.is-very-long {
        font-size: clamp(2rem, 10vw, 2.48rem);
        line-height: 1.12;
    }

    .program-detail-copy > p {
        font-size: .94rem;
    }

    .program-detail-copy .button-row .button {
        width: 100%;
    }

    .program-facts div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .program-facts strong {
        max-width: none;
        text-align: left;
    }

    .program-detail-body {
        padding-block: 52px 64px;
    }

    .competency-grid,
    .competency-grid.three-up {
        grid-template-columns: 1fr;
    }

    .competency-grid.three-up .competency-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

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


/* v1.4: fixed title scale for every formal, DSS and nonformal programme */
.program-detail-copy h1.program-title {
    max-width: 680px;
    font-size: 2.15rem;
    line-height: 1.14;
    letter-spacing: -.032em;
}
@media (max-width: 860px) {
    .program-detail-copy h1.program-title { font-size: 2.02rem; }
}
@media (max-width: 620px) {
    .program-detail-copy h1.program-title { font-size: 1.82rem; line-height: 1.16; }
}


/* MMMK v1.5 — compact menu page titles and completed consultations page */
.page-hero {
    padding-block: 68px 74px;
}
.page-hero .narrow {
    max-width: 780px;
}
.page-hero h1 {
    max-width: 780px;
    margin-bottom: 16px;
    font-size: 2.35rem;
    line-height: 1.13;
    letter-spacing: -.032em;
}
.page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.65;
}
.page-hero-catalogue {
    padding-bottom: 94px;
}

/* Consultations hero */
.consult-hero {
    padding-block: 66px 72px;
    color: #fff;
    background:
        radial-gradient(circle at 84% 18%, rgba(15,138,128,.27), transparent 30%),
        linear-gradient(115deg, var(--navy-950), var(--navy-800));
}
.consult-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .65fr);
    gap: 70px;
    align-items: center;
}
.consult-hero-copy h1 {
    max-width: 690px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 2.35rem;
    line-height: 1.13;
    letter-spacing: -.032em;
}
.consult-hero-copy > p {
    max-width: 710px;
    margin-bottom: 27px;
    color: rgba(255,255,255,.79);
    font-size: 1rem;
    line-height: 1.7;
    text-align: left;
}
.consult-hero-panel {
    padding: 27px 28px;
    border: 1px solid rgba(255,255,255,.19);
    border-radius: var(--radius);
    background: rgba(255,255,255,.075);
    box-shadow: 0 18px 46px rgba(0,0,0,.13);
    backdrop-filter: blur(8px);
}
.consult-panel-label {
    display: block;
    margin-bottom: 14px;
    color: #92ddd7;
    font-size: .74rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.consult-hero-panel ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}
.consult-hero-panel li {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 11px;
    padding: 13px 0;
    color: rgba(255,255,255,.82);
    border-bottom: 1px solid rgba(255,255,255,.12);
    font-size: .9rem;
    line-height: 1.5;
}
.consult-hero-panel li:last-child { border-bottom: 0; }
.consult-hero-panel li .icon {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    color: #86d8d1;
}

/* Consultation service cards */
.consult-services-section { padding-block: 82px; }
.consult-section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}
.consult-section-heading h2 {
    margin-bottom: 13px;
    font-size: 2rem;
    line-height: 1.18;
}
.consult-section-heading p {
    margin-bottom: 0;
    font-size: .98rem;
}
.consult-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.consult-service-card {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    min-height: 190px;
    padding: 25px;
    color: inherit;
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.consult-service-card:hover {
    transform: translateY(-3px);
    border-color: #9bc8c3;
    background: linear-gradient(145deg, #fff, var(--surface-teal));
    box-shadow: var(--shadow-soft);
}
.consult-service-icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--teal-700);
    background: var(--surface-teal);
    border-radius: 12px;
}
.consult-service-icon .icon { width: 31px; height: 31px; }
.consult-service-body {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
}
.consult-service-number {
    margin-bottom: 6px;
    color: #91a0ae;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
}
.consult-service-card h3 {
    margin-bottom: 9px;
    font-size: 1.12rem;
}
.consult-service-card p {
    margin-bottom: 16px;
    font-size: .88rem;
    line-height: 1.58;
}
.consult-service-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: var(--teal-700);
    font-size: .82rem;
    font-weight: 850;
}
.consult-service-link .icon { width: 16px; height: 16px; }
.consult-wide-card {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    gap: 18px;
    align-items: center;
    margin-top: 16px;
    padding: 20px 23px;
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius);
    background: linear-gradient(105deg, var(--navy-900), var(--navy-800));
    transition: transform .18s ease, box-shadow .18s ease;
}
.consult-wide-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
.consult-wide-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: #8bdcd5;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 11px;
    background: rgba(255,255,255,.07);
}
.consult-wide-icon .icon { width: 29px; height: 29px; }
.consult-wide-card > span:nth-child(2) { display: grid; }
.consult-wide-card strong { color: #fff; font-size: 1.02rem; }
.consult-wide-card small { margin-top: 3px; color: rgba(255,255,255,.68); line-height: 1.45; }
.consult-wide-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .84rem;
    font-weight: 850;
    white-space: nowrap;
}
.consult-wide-action .icon { width: 17px; height: 17px; }

/* Consultation process */
.consult-process-section { padding-block: 78px; }
.consult-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.consult-process-grid article {
    min-height: 216px;
    padding: 27px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}
.consult-process-number {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 20px;
    color: #fff;
    background: var(--teal-700);
    border-radius: 50%;
    font-size: .8rem;
    font-weight: 900;
}
.consult-process-grid h3 { margin-bottom: 10px; }
.consult-process-grid p { margin-bottom: 0; font-size: .9rem; line-height: 1.6; }

/* Consultation result */
.consult-result-section { padding-block: 82px; }
.consult-result-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 68px;
    align-items: start;
}
.consult-result-grid h2 {
    max-width: 520px;
    margin-bottom: 16px;
    font-size: 2rem;
}
.consult-result-grid > div:first-child > p {
    max-width: 560px;
    margin-bottom: 0;
    font-size: .96rem;
    line-height: 1.7;
}
.consult-result-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}
.consult-result-list > div {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 12px;
    min-height: 132px;
    padding: 22px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
}
.consult-result-list > div:nth-child(2n) { border-right: 0; }
.consult-result-list > div:nth-last-child(-n+2) { border-bottom: 0; }
.consult-result-list .icon { width: 25px; height: 25px; color: var(--teal-700); }
.consult-result-list span { display: grid; }
.consult-result-list strong { color: var(--navy-900); font-size: .91rem; }
.consult-result-list small { margin-top: 4px; color: var(--muted); line-height: 1.5; }

@media (max-width: 900px) {
    .page-hero h1,
    .consult-hero-copy h1 { font-size: 2.05rem; }
    .consult-hero-grid,
    .consult-result-grid { grid-template-columns: 1fr; gap: 36px; }
    .consult-hero-panel { max-width: 680px; }
    .consult-process-grid { grid-template-columns: 1fr; }
    .consult-process-grid article { min-height: auto; }
}
@media (max-width: 680px) {
    .page-hero { padding-block: 54px 60px; }
    .page-hero h1,
    .consult-hero-copy h1 { font-size: 1.78rem; line-height: 1.16; }
    .page-hero p,
    .consult-hero-copy > p { font-size: .94rem; }
    .page-hero-catalogue { padding-bottom: 82px; }
    .consult-hero { padding-block: 52px 58px; }
    .consult-hero-grid { gap: 30px; }
    .consult-hero-panel { padding: 22px; }
    .consult-service-grid,
    .consult-result-list { grid-template-columns: 1fr; }
    .consult-service-card { min-height: auto; grid-template-columns: 46px 1fr; padding: 21px; }
    .consult-service-icon { width: 46px; height: 46px; }
    .consult-service-icon .icon { width: 27px; height: 27px; }
    .consult-wide-card { grid-template-columns: 44px 1fr; }
    .consult-wide-action { grid-column: 2; white-space: normal; }
    .consult-result-list > div { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .consult-result-list > div:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
    .consult-result-list > div:last-child { border-bottom: 0; }
}


/* Contact page v1.6 */
.contact-page-hero { padding-block: 66px; }
.contact-page-hero h1 { max-width: 760px; font-size: 2.55rem; }
.contact-page-hero p { max-width: 780px; }
.contact-section { padding-block: 74px 86px; }
.contact-grid-v2 {
    grid-template-columns: .78fr 1.22fr;
    gap: 48px;
}
.contact-side { min-width: 0; }
.contact-intro { margin-bottom: 26px; }
.contact-intro h2 { margin-bottom: 12px; font-size: 1.75rem; }
.contact-intro p { max-width: 460px; text-align: left; }
.contact-cards-compact { gap: 12px; }
.contact-person-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: #fff;
}
.contact-person-card h3 { margin: 3px 0 9px; font-size: 1.05rem; }
.contact-person-card p { margin: 0; }
.contact-card-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: var(--teal-700);
    background: var(--surface-teal);
    border-radius: 10px;
}
.contact-card-icon .icon { width: 24px; height: 24px; }
.contact-person-card a { font-size: .87rem; overflow-wrap: anywhere; }
.contact-form-live {
    padding: 34px;
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.contact-form-heading { margin-bottom: 26px; }
.contact-form-heading h2 { margin-bottom: 10px; font-size: 1.8rem; }
.contact-form-heading p { margin-bottom: 0; }
.contact-form-live label > span[aria-hidden="true"] { color: #b42318; }
.contact-form-live input,
.contact-form-live select,
.contact-form-live textarea { transition: border-color .15s ease, box-shadow .15s ease; }
.contact-form-live input:focus,
.contact-form-live select:focus,
.contact-form-live textarea:focus {
    outline: none;
    border-color: var(--teal-600);
    box-shadow: 0 0 0 3px rgba(15,138,128,.13);
}
.field-help { margin: -7px 0 16px; font-size: .78rem; }
.contact-submit { min-width: 190px; }
.form-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}
.consent-row a { color: var(--teal-700); }
.form-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    padding: 15px 17px;
    border-radius: var(--radius-sm);
    font-size: .88rem;
}
.form-alert .icon { width: 23px; height: 23px; }
.form-alert-success {
    color: #155e42;
    border: 1px solid #9bd5bd;
    background: #edf9f3;
}
.form-alert-error {
    color: #8a1c13;
    border: 1px solid #e9b2ac;
    background: #fff3f2;
}
.form-alert-error ul { margin: 7px 0 0; padding-left: 19px; }
.location-section { padding-block: 76px; }
.location-grid {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 42px;
    align-items: stretch;
}
.map-card {
    min-height: 470px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #e8eef2;
    box-shadow: var(--shadow-soft);
}
.map-card iframe { display: block; width: 100%; height: 100%; min-height: 470px; border: 0; }
.location-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
}
.location-info h2 { margin-bottom: 16px; font-size: 2rem; }
.location-info > p { margin-bottom: 24px; text-align: left; }
.location-details { display: grid; gap: 12px; }
.location-details > div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.location-details > div:last-child { border-bottom: 0; }
.location-details .icon { width: 24px; height: 24px; color: var(--teal-700); }
.location-details span { display: grid; }
.location-details strong { color: var(--navy-900); font-size: .88rem; }
.location-details small { margin-top: 2px; color: var(--muted); line-height: 1.45; }
.location-actions { margin-top: 26px; }
@media (max-width: 980px) {
    .contact-grid-v2,
    .location-grid { grid-template-columns: 1fr; }
    .contact-side { max-width: none; }
    .contact-intro p { max-width: none; }
    .map-card, .map-card iframe { min-height: 390px; }
}
@media (max-width: 620px) {
    .contact-page-hero { padding-block: 52px; }
    .contact-page-hero h1 { font-size: 2.1rem; }
    .contact-section { padding-block: 56px 64px; }
    .contact-form-live { padding: 23px; }
    .contact-person-card { grid-template-columns: 40px 1fr; padding: 17px; }
    .contact-card-icon { width: 40px; height: 40px; }
    .location-section { padding-block: 58px; }
    .map-card, .map-card iframe { min-height: 330px; }
    .location-info h2 { font-size: 1.65rem; }
    .location-actions .button { width: 100%; }
}


/* Privacy policy v1.7 */
.privacy-hero { padding-block: 58px 66px; }
.privacy-hero h1 { font-size: 2.55rem; }
.privacy-hero p { max-width: 820px; }
.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 22px;
    color: rgba(255,255,255,.7);
    font-size: .78rem;
}
.privacy-section { padding-top: 62px; }
.privacy-layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 860px);
    gap: 62px;
    align-items: start;
    justify-content: center;
}
.privacy-nav {
    position: sticky;
    top: 105px;
    display: grid;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-muted);
}
.privacy-nav strong {
    margin-bottom: 12px;
    color: var(--navy-900);
    font-size: .86rem;
}
.privacy-nav a {
    padding: 7px 0;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.35;
    text-decoration: none;
    border-bottom: 1px solid rgba(15, 49, 84, .08);
}
.privacy-nav a:last-child { border-bottom: 0; }
.privacy-nav a:hover { color: var(--teal-700); }
.privacy-copy { min-width: 0; }
.privacy-block {
    scroll-margin-top: 105px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--line);
}
.privacy-block:last-child { margin-bottom: 0; border-bottom: 0; }
.privacy-number {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #fff;
    background: var(--teal-700);
    border-radius: 50%;
    font-weight: 900;
}
.privacy-copy h2 { margin-bottom: 18px; font-size: 1.75rem; }
.privacy-copy h3 { margin: 28px 0 11px; font-size: 1.06rem; }
.privacy-copy p,
.privacy-copy li,
.privacy-copy dd {
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
}
.privacy-copy code {
    padding: 2px 5px;
    color: var(--navy-900);
    background: var(--surface-muted);
    border-radius: 4px;
}
.privacy-contact-card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 24px 0;
}
.privacy-contact-card > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
}
.privacy-contact-card .icon { width: 22px; height: 22px; color: var(--teal-700); }
.privacy-contact-card span { display: grid; }
.privacy-contact-card strong { margin-bottom: 3px; color: var(--navy-900); font-size: .78rem; }
.privacy-contact-card a { font-size: .84rem; overflow-wrap: anywhere; }
.privacy-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--teal-600);
    background: var(--surface-teal);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.privacy-note > strong { color: var(--navy-900); }
.privacy-note p { margin: 6px 0 0; }
.privacy-note .text-link { margin-top: 10px; }
.privacy-activity {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}
.privacy-activity:first-of-type { border-top: 0; padding-top: 0; }
.privacy-activity h3 { margin-top: 0; color: var(--navy-900); }
.privacy-activity dl { display: grid; gap: 8px; margin: 16px 0 0; }
.privacy-activity dl > div {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 14px;
    padding: 12px 14px;
    background: var(--surface-muted);
    border-radius: 7px;
}
.privacy-activity dt { color: var(--navy-900); font-size: .8rem; font-weight: 850; }
.privacy-activity dd { margin: 0; color: var(--muted); font-size: .86rem; }
.privacy-list { padding-left: 0; list-style: none; }
.privacy-list li {
    position: relative;
    padding: 8px 0 8px 26px;
    border-bottom: 1px solid rgba(15,49,84,.08);
}
.privacy-list li:last-child { border-bottom: 0; }
.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal-700);
    font-weight: 900;
}
.retention-table {
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
}
.retention-row {
    display: grid;
    grid-template-columns: 1.45fr .8fr;
    border-bottom: 1px solid var(--line);
}
.retention-row:last-child { border-bottom: 0; }
.retention-row span { padding: 12px 14px; font-size: .82rem; line-height: 1.45; }
.retention-row span + span { border-left: 1px solid var(--line); }
.retention-head { color: #fff; background: var(--navy-900); font-weight: 850; }

/* Privacy-conscious map loading */
.map-consent { display: grid; place-items: center; }
.map-consent.is-loaded { display: block; }
.map-placeholder {
    display: grid;
    justify-items: center;
    max-width: 470px;
    padding: 34px;
    text-align: center;
}
.map-placeholder-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    color: #fff;
    background: var(--teal-700);
    border-radius: 50%;
}
.map-placeholder-icon .icon { width: 30px; height: 30px; }
.map-placeholder h3 { margin-bottom: 10px; }
.map-placeholder p { max-width: 410px; }
.map-placeholder .button { margin: 8px 0 14px; }
.map-placeholder .text-link { justify-content: center; font-size: .8rem; }

@media (max-width: 900px) {
    .privacy-layout { grid-template-columns: 1fr; gap: 34px; }
    .privacy-nav { position: static; grid-template-columns: repeat(2, 1fr); gap: 0 20px; }
    .privacy-nav strong { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
    .privacy-hero { padding-block: 48px 52px; }
    .privacy-hero h1 { font-size: 2.05rem; }
    .privacy-nav { grid-template-columns: 1fr; }
    .privacy-block { grid-template-columns: 1fr; gap: 14px; padding-bottom: 38px; margin-bottom: 38px; }
    .privacy-number { width: 34px; height: 34px; }
    .privacy-copy h2 { font-size: 1.48rem; }
    .privacy-contact-card { grid-template-columns: 1fr; }
    .privacy-activity dl > div { grid-template-columns: 1fr; gap: 4px; }
    .retention-row { grid-template-columns: 1fr; }
    .retention-row span + span { border-left: 0; border-top: 1px solid var(--line); background: var(--surface-muted); }
    .retention-head span + span { background: transparent; }
    .map-placeholder { padding: 25px 20px; }
}


/* Testų modulis v1.9 */
.test-hero { padding: 78px 0; color: #fff; background: linear-gradient(120deg, #061e3d, #0b4770); }
.test-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) 410px; gap: 70px; align-items: center; }
.test-hero h1 { max-width: 620px; margin-bottom: 18px; color: #fff; font-size: 2.8rem; }
.test-hero p { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.78); text-align: left; }
.test-login-card { padding: 28px; color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.2); }
.test-login-card h2 { margin-bottom: 18px; font-size: 1.45rem; }
.test-login-form { display: grid; gap: 15px; }
.test-login-form label, .test-admin-form label { display: grid; gap: 6px; color: var(--navy-900); font-weight: 800; }
.test-login-form .button { width: 100%; margin-top: 4px; }
.notice { padding: 13px 15px; border-radius: 8px; font-size: .9rem; }
.notice-info { color: #174e6b; background: #eaf5fb; border: 1px solid #b8d9ea; }
.notice-error { color: #822525; background: #fff0f0; border: 1px solid #e9bcbc; }
.notice-success { color: #086257; background: #e9f8f4; border: 1px solid #acdace; }
.test-explainer-section { background: var(--surface-muted); }
.test-explainer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.test-explainer-grid article { padding: 25px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.test-explainer-grid article > span { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 16px; color: #fff; background: var(--teal-700); border-radius: 50%; font-weight: 900; }
.test-explainer-grid h2 { margin-bottom: 9px; font-size: 1.12rem; }
.test-explainer-grid p { margin-bottom: 0; font-size: .88rem; }

.test-workspace { min-height: 72vh; padding: 56px 0 82px; background: #f4f7f9; }
.test-workspace-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.test-workspace-header h1 { margin-bottom: 5px; font-size: 2.1rem; }
.test-workspace-header p { margin: 0; font-size: .86rem; }
.test-status-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; margin-bottom: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.test-status-grid div { display: grid; gap: 3px; padding: 15px 20px; border-right: 1px solid var(--line); }
.test-status-grid div:last-child { border-right: 0; }
.test-status-grid strong { color: var(--navy-900); font-size: 1.15rem; }
.test-status-grid span { color: var(--muted); font-size: .76rem; }
.test-question-wrap { max-width: 940px; }
.test-question-card, .test-empty-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.test-question-number { display: inline-flex; margin-bottom: 14px; color: var(--teal-700); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.test-question-card h2 { max-width: 780px; margin-bottom: 24px; font-size: 1.42rem; line-height: 1.42; }
.test-answer-list { display: grid; gap: 11px; }
.test-answer-option { position: relative; display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; padding: 15px 17px; border: 1px solid var(--line); border-radius: 9px; cursor: pointer; transition: .16s ease; }
.test-answer-option:hover { border-color: #8bc2bc; background: var(--surface-teal); }
.test-answer-option:has(input:checked) { border-color: var(--teal-700); background: var(--surface-teal); box-shadow: 0 0 0 2px rgba(15,138,128,.12); }
.test-answer-option input { width: auto; margin-top: 3px; }
.test-answer-option span { line-height: 1.5; }
.test-question-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 25px; }

.test-result-section { padding: 65px 0 85px; background: #f4f7f9; }
.test-result-card { max-width: 760px; padding: 36px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.test-result-card h1 { margin-bottom: 21px; font-size: 2.15rem; }
.test-score { display: grid; place-items: center; width: 170px; height: 170px; margin: 0 auto 25px; border: 11px solid #dbe6ea; border-radius: 50%; }
.test-score strong { color: var(--navy-900); font-size: 2rem; line-height: 1; }
.test-score span { margin-top: 5px; font-size: .78rem; font-weight: 850; text-transform: uppercase; }
.test-score.is-passed { border-color: #5cc4ad; }
.test-score.is-failed { border-color: #e79a9a; }
.test-score.is-practice { border-color: #9fc8df; }
.test-result-stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 22px; border: 1px solid var(--line); border-radius: 9px; }
.test-result-stats div { display: grid; padding: 14px; border-right: 1px solid var(--line); }
.test-result-stats div:last-child { border-right: 0; }
.test-result-stats strong { color: var(--navy-900); font-size: 1.25rem; }
.test-result-stats span { color: var(--muted); font-size: .75rem; }
.test-result-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 11px; margin-top: 22px; }
.test-mistakes { max-width: 900px; margin-top: 50px; }
.test-mistake-list { display: grid; gap: 14px; }
.test-mistake-list article { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; }
.test-mistake-list article > span { color: var(--teal-700); font-size: .72rem; font-weight: 850; text-transform: uppercase; }
.test-mistake-list h3 { margin: 8px 0 15px; font-size: 1.05rem; }
.test-mistake-list p { margin: 6px 0; text-align: left; }
.test-mistake-list .correct-answer { color: #096759; }
.test-mistake-list .explanation { margin-top: 12px; padding: 11px 13px; background: var(--surface-teal); border-radius: 7px; }

.test-admin-body { margin: 0; color: #20344c; background: #f1f5f7; font-family: Inter, Arial, sans-serif; }
.test-admin-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px max(22px, calc((100vw - 1280px)/2)); color: #fff; background: #092443; }
.test-admin-header div { display: flex; align-items: center; gap: 10px; }
.test-admin-header span { padding: 3px 7px; background: rgba(255,255,255,.13); border-radius: 999px; font-size: .72rem; }
.test-admin-header nav { display: flex; gap: 17px; }
.test-admin-header a { color: #fff; font-size: .83rem; font-weight: 750; text-decoration: none; }
.test-admin-main { max-width: 1280px; margin: 0 auto; padding: 34px 22px 80px; }
.test-admin-shell { display: grid; place-items: center; min-height: 100vh; padding: 24px; }
.test-admin-card, .test-admin-panel { padding: 27px; border: 1px solid #d8e2e7; border-radius: 12px; background: #fff; box-shadow: 0 10px 35px rgba(9,36,67,.06); }
.test-admin-login { display: grid; gap: 15px; width: min(440px, 100%); }
.test-admin-login h1 { margin-bottom: 3px; font-size: 1.7rem; }
.test-admin-login label { display: grid; gap: 6px; font-weight: 800; }
.test-admin-login .text-link { text-align: center; }
.test-admin-summary { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 22px; }
.test-admin-summary div { display: grid; gap: 4px; padding: 20px; border: 1px solid #d8e2e7; border-radius: 10px; background: #fff; }
.test-admin-summary strong { color: #092443; font-size: 1.65rem; }
.test-admin-summary span { color: #718092; font-size: .78rem; }
.test-admin-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
.test-admin-panel h1 { margin-bottom: 18px; font-size: 1.55rem; }
.test-admin-panel h2 { margin-bottom: 14px; font-size: 1.3rem; }
.test-admin-form { display: grid; gap: 14px; }
.test-admin-form small { color: #7c8995; font-weight: 500; }
.test-admin-help ol { padding-left: 20px; }
.test-admin-help li { margin: 9px 0; }
.test-admin-table-panel { padding: 0; overflow: hidden; }
.test-admin-panel-heading { padding: 23px 25px 12px; }
.test-admin-table-wrap { overflow-x: auto; }
.test-admin-table { width: 100%; border-collapse: collapse; }
.test-admin-table th, .test-admin-table td { padding: 14px 17px; text-align: left; vertical-align: top; border-top: 1px solid #e3eaee; font-size: .82rem; }
.test-admin-table th { color: #647486; background: #f8fafb; font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.test-admin-table td strong, .test-admin-table td small { display: block; }
.test-admin-table td small { margin-top: 3px; color: #748292; }
.test-admin-actions { display: flex; flex-wrap: wrap; gap: 5px; }
.test-admin-actions form { margin: 0; }
.test-admin-actions button { padding: 6px 8px; border: 1px solid #cbd7de; border-radius: 5px; color: #164d65; background: #fff; cursor: pointer; font: inherit; font-size: .71rem; font-weight: 750; }
.test-admin-actions button:hover { background: #edf6f7; }
.test-admin-actions .is-danger { color: #8b2e2e; }
.status-pill { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: .69rem; font-weight: 800; }
.status-active { color: #075e51; background: #ddf4ed; }
.status-blocked { color: #7c3434; background: #f8e5e5; }

@media (max-width: 900px) {
    .test-hero-grid { grid-template-columns: 1fr; gap: 34px; }
    .test-login-card { max-width: 560px; }
    .test-explainer-grid, .test-admin-summary, .test-admin-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .test-hero { padding: 54px 0; }
    .test-hero h1 { font-size: 2.2rem; }
    .test-login-card, .test-question-card, .test-result-card { padding: 22px; }
    .test-status-grid { grid-template-columns: 1fr; }
    .test-status-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
    .test-status-grid div:last-child { border-bottom: 0; }
    .test-workspace-header { align-items: flex-start; }
    .test-result-stats { grid-template-columns: 1fr; }
    .test-result-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
    .test-result-stats div:last-child { border-bottom: 0; }
    .test-admin-header { align-items: flex-start; flex-direction: column; }
}

/* Testų modulio v1.9 – prisijungimo kodai el. paštu */
.test-login-secondary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.test-login-secondary form { margin: 0; }
.text-button {
    appearance: none;
    border: 0;
    padding: 0;
    background: transparent;
    color: #0f7f77;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.text-button:hover,
.text-button:focus-visible { color: #08254a; }

/* Testų modulio v2.0 – programiniai testai ir administravimas */
.test-workspace-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }
.test-progress { height: 8px; overflow: hidden; margin-top: -12px; margin-bottom: 22px; border-radius: 999px; background: #dfe8ec; }
.test-progress span { display: block; height: 100%; border-radius: inherit; background: var(--teal-700); transition: width .25s ease; }
.test-program-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; max-width: 1040px; }
.test-program-card { display: flex; min-height: 250px; flex-direction: column; align-items: flex-start; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.test-program-card h2 { margin: 10px 0 12px; font-size: 1.35rem; }
.test-program-card p { margin-bottom: 24px; text-align: left; }
.test-program-card .button { margin-top: auto; }
.test-admin-tabs { flex-wrap: wrap; align-items: center; }
.test-admin-tabs a { padding: 7px 9px; border-radius: 6px; }
.test-admin-tabs a.is-active { background: rgba(255,255,255,.16); }
.test-admin-summary-four { grid-template-columns: repeat(4, 1fr); }
.test-admin-form input,
.test-admin-form select,
.test-admin-form textarea,
.test-admin-filter input,
.test-admin-filter select,
.test-admin-rule-card input,
.test-admin-rule-card select {
    width: 100%; box-sizing: border-box; padding: 11px 12px; border: 1px solid #bdcad2; border-radius: 7px; color: #20344c; background: #fff; font: inherit;
}
.test-admin-form textarea { resize: vertical; min-height: 82px; }
.test-admin-two, .test-admin-three { display: grid; gap: 14px; }
.test-admin-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.test-admin-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.test-admin-question-form { margin-top: 20px; }
.test-admin-program-checks { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px 14px; margin: 0; padding: 18px; border: 1px solid #d6e0e5; border-radius: 9px; }
.test-admin-program-checks legend { padding: 0 7px; color: #092443; font-weight: 850; }
.test-admin-program-checks label { display: grid; grid-template-columns: 18px 1fr; gap: 8px; align-items: start; font-weight: 650; }
.test-admin-program-checks input { width: auto; margin-top: 3px; }
.test-admin-spaced { margin-top: 22px; }
.test-admin-empty { padding: 22px 25px; }
.test-admin-panel-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; }
.test-admin-filter { display: grid; grid-template-columns: minmax(160px, 1fr) minmax(220px, 1fr) auto; gap: 8px; align-items: end; }
.test-admin-filter button,
.test-admin-table form button { padding: 9px 11px; border: 1px solid #c3d0d7; border-radius: 6px; color: #164d65; background: #fff; cursor: pointer; font: inherit; font-size: .76rem; font-weight: 800; }
.test-admin-filter button:hover,
.test-admin-table form button:hover { background: #edf6f7; }
.test-admin-program-rules { display: grid; gap: 18px; margin-top: 22px; }
.test-admin-rule-card h2 { margin: 8px 0 16px; }
.test-admin-rule-card label { display: grid; gap: 6px; color: #092443; font-weight: 800; }
.test-admin-pool { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 18px; }
.test-admin-pool span { display: grid; gap: 3px; padding: 11px; border-radius: 7px; background: #f1f6f8; color: #68798a; font-size: .72rem; }
.test-admin-pool strong { color: #092443; font-size: 1.05rem; }

@media (max-width: 1050px) {
    .test-admin-summary-four { grid-template-columns: repeat(2, 1fr); }
    .test-admin-program-checks { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .test-admin-panel-heading { align-items: stretch; flex-direction: column; }
}
@media (max-width: 760px) {
    .test-program-list, .test-admin-two, .test-admin-three { grid-template-columns: 1fr; }
    .test-admin-program-checks { grid-template-columns: 1fr; }
    .test-admin-filter { grid-template-columns: 1fr; }
    .test-admin-pool { grid-template-columns: repeat(2, 1fr); }
    .test-workspace-links { justify-content: flex-start; }
}
@media (max-width: 520px) {
    .test-admin-summary-four { grid-template-columns: 1fr; }
}

/* MMMK v2.1 – administruojamas DSS mokymų grafikas */
.schedule-hero { position: relative; overflow: hidden; }
.schedule-section { background: #f6f8fa; }
.schedule-list { display: grid; gap: 22px; }
.schedule-event-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}
.schedule-date-block {
    display: grid;
    align-content: center;
    justify-items: center;
    min-height: 310px;
    padding: 28px 20px;
    color: #fff;
    background: linear-gradient(155deg, var(--navy-900), var(--teal-700));
}
.schedule-date-block span { font-size: .82rem; font-weight: 850; letter-spacing: .14em; }
.schedule-date-block strong { margin: 9px 0 5px; font-size: 2.25rem; line-height: 1; }
.schedule-date-block small { font-size: 1rem; font-weight: 800; }
.schedule-event-content { padding: 34px 38px 36px; }
.schedule-event-content h2 { margin-bottom: 24px; font-size: clamp(1.6rem, 3vw, 2.35rem); }
.schedule-meta { display: grid; gap: 0; margin: 0; }
.schedule-meta div { display: grid; grid-template-columns: 185px 1fr; gap: 20px; padding: 13px 0; border-top: 1px solid var(--line); }
.schedule-meta div:last-child { border-bottom: 1px solid var(--line); }
.schedule-meta dt { color: var(--navy-900); font-weight: 850; }
.schedule-meta dd { margin: 0; color: var(--muted); }
.schedule-note { margin: 22px 0 0; padding: 15px 17px; background: var(--surface-teal); border-radius: 8px; }
.schedule-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 25px; }
.schedule-actions .button .icon { width: 18px; height: 18px; }
.schedule-legal-note { margin-top: 24px; }
.training-admin-grid { align-items: start; }
.training-active-check { display: flex !important; grid-template-columns: none !important; align-items: center; gap: 9px !important; }
.training-active-check input { width: auto !important; }
.test-admin-form-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.admin-action-link {
    display: inline-flex;
    align-items: center;
    padding: 7px 9px;
    border: 1px solid #cbd7de;
    border-radius: 5px;
    color: #164d65;
    background: #fff;
    font-size: .71rem;
    font-weight: 750;
    text-decoration: none;
}
.admin-action-link:hover { background: #edf6f7; }
.status-past { color: #5f6770; background: #e9edf0; }

@media (max-width: 780px) {
    .schedule-event-card { grid-template-columns: 1fr; }
    .schedule-date-block { min-height: 0; grid-template-columns: auto auto auto; justify-content: start; gap: 8px; padding: 20px 24px; }
    .schedule-date-block strong { margin: 0; font-size: 1.45rem; }
    .schedule-date-block small { align-self: center; }
    .schedule-event-content { padding: 26px 24px 30px; }
    .schedule-meta div { grid-template-columns: 1fr; gap: 5px; }
}

/* MMMK v2.3 — consultation service catalogue */
.consult-services-v23 {
    padding-block: 78px 84px;
    background:
        radial-gradient(circle at 8% 4%, rgba(15, 138, 128, .055), transparent 25%),
        linear-gradient(180deg, #fff 0%, #fbfcfd 100%);
}
.consult-v23-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 32px;
}
.consult-v23-heading h2 {
    max-width: 650px;
    margin: 0;
    font-size: 2rem;
    line-height: 1.18;
}
.consult-v23-heading > p {
    max-width: 540px;
    margin: 0 0 2px;
    font-size: .94rem;
    line-height: 1.68;
}
.consult-v23-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.consult-v23-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 238px;
    padding: 25px 27px 22px;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    border: 1px solid #dbe5ea;
    border-radius: 16px;
    background: linear-gradient(155deg, #fff 0%, #fbfdfd 100%);
    box-shadow: 0 10px 32px rgba(8, 38, 74, .045);
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.consult-v23-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    content: '';
    background: linear-gradient(180deg, var(--teal-600), var(--teal-700));
    opacity: .72;
    transition: width .2s ease, opacity .2s ease;
}
.consult-v23-card::after {
    position: absolute;
    top: -55px;
    right: -55px;
    width: 150px;
    height: 150px;
    content: '';
    border-radius: 50%;
    background: rgba(15, 138, 128, .035);
    pointer-events: none;
    transition: transform .25s ease, background .25s ease;
}
.consult-v23-card:hover {
    transform: translateY(-4px);
    border-color: #9ccbc6;
    background: linear-gradient(145deg, #fff 0%, #f5fbfa 100%);
    box-shadow: 0 18px 46px rgba(8, 38, 74, .105);
}
.consult-v23-card:hover::before {
    width: 6px;
    opacity: 1;
}
.consult-v23-card:hover::after {
    transform: scale(1.12);
    background: rgba(15, 138, 128, .065);
}
.consult-v23-card-head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 15px;
    align-items: center;
}
.consult-v23-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    color: var(--teal-700);
    border: 1px solid #d4ece9;
    border-radius: 13px;
    background: linear-gradient(145deg, #f3fbfa, #e8f6f4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
.consult-v23-icon .icon {
    width: 28px;
    height: 28px;
}
.consult-v23-title-wrap {
    display: block;
    min-width: 0;
}
.consult-v23-kicker {
    display: block;
    margin-bottom: 4px;
    color: #7d909d;
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .105em;
    text-transform: uppercase;
}
.consult-v23-card h3 {
    max-width: 470px;
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.28;
}
.consult-v23-description {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 17px;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.62;
}
.consult-v23-topics {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 7px;
    margin-top: 17px;
    flex-wrap: wrap;
}
.consult-v23-topics > span {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 4px 10px;
    color: #496474;
    border: 1px solid #dce9eb;
    border-radius: 999px;
    background: #f7fafb;
    font-size: .71rem;
    font-weight: 750;
    line-height: 1.2;
}
.consult-v23-footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 18px;
    color: var(--navy-900);
    border-top: 1px solid #edf1f3;
    font-size: .82rem;
    font-weight: 850;
}
.consult-v23-arrow {
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    color: var(--teal-700);
    border-radius: 50%;
    background: var(--surface-teal);
    transition: transform .2s ease, color .2s ease, background .2s ease;
}
.consult-v23-arrow .icon {
    width: 15px;
    height: 15px;
}
.consult-v23-card:hover .consult-v23-arrow {
    transform: translateX(3px);
    color: #fff;
    background: var(--teal-700);
}
.consult-v23-general {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr) auto;
    gap: 19px;
    align-items: center;
    margin-top: 20px;
    padding: 22px 24px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    background:
        radial-gradient(circle at 88% 20%, rgba(23, 176, 164, .24), transparent 28%),
        linear-gradient(110deg, var(--navy-950), var(--navy-800));
    box-shadow: 0 16px 38px rgba(8, 38, 74, .13);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
}
.consult-v23-general:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(8, 38, 74, .19);
}
.consult-v23-general-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    color: #8bdcd5;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 13px;
    background: rgba(255, 255, 255, .07);
}
.consult-v23-general-icon .icon {
    width: 29px;
    height: 29px;
}
.consult-v23-general-copy {
    display: grid;
    min-width: 0;
}
.consult-v23-general-label {
    margin-bottom: 3px;
    color: #8bdcd5;
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.consult-v23-general strong {
    color: #fff;
    font-size: 1.04rem;
}
.consult-v23-general small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
}
.consult-v23-general-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    font-size: .81rem;
    font-weight: 850;
    white-space: nowrap;
    transition: background .2s ease, border-color .2s ease;
}
.consult-v23-general:hover .consult-v23-general-action {
    border-color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .12);
}
.consult-v23-general-action .icon {
    width: 16px;
    height: 16px;
}
@media (max-width: 900px) {
    .consult-v23-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .consult-v23-heading > p {
        max-width: 700px;
    }
}
@media (max-width: 760px) {
    .consult-services-v23 {
        padding-block: 62px 70px;
    }
    .consult-v23-heading h2 {
        font-size: 1.72rem;
    }
    .consult-v23-grid {
        grid-template-columns: 1fr;
    }
    .consult-v23-card {
        min-height: auto;
    }
    .consult-v23-general {
        grid-template-columns: 48px minmax(0, 1fr);
    }
    .consult-v23-general-icon {
        width: 48px;
        height: 48px;
    }
    .consult-v23-general-action {
        grid-column: 2;
        justify-self: start;
        margin-top: 2px;
        white-space: normal;
    }
}
@media (max-width: 480px) {
    .consult-v23-card {
        padding: 22px 21px 20px;
    }
    .consult-v23-card-head {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 13px;
    }
    .consult-v23-icon {
        width: 44px;
        height: 44px;
    }
    .consult-v23-icon .icon {
        width: 25px;
        height: 25px;
    }
    .consult-v23-card h3 {
        font-size: 1rem;
    }
    .consult-v23-general {
        padding: 20px;
    }
}

/* MMMK v2.3.1 — compact consultation catalogue */
.consult-v231-hero {
    padding-bottom: 82px;
}
.consult-v231-hero p {
    max-width: 720px;
}
.consult-v231-section {
    padding-top: 66px;
    padding-bottom: 82px;
}
.consult-v231-grid {
    max-width: 1060px;
    margin-inline: auto;
}
.consult-v231-card {
    grid-template-columns: 78px minmax(0, 1fr) 42px;
    min-height: 96px;
}
.consult-v231-media {
    display: grid;
    place-items: center;
    min-height: 94px;
    color: var(--teal-700);
    background: linear-gradient(145deg, #f1faf9, #e7f5f3);
}
.consult-v231-media::after {
    display: none;
}
.consult-v231-media .icon {
    width: 34px;
    height: 34px;
}
.consult-v231-card .programme-list-content {
    gap: 6px;
    padding-left: 17px;
}
.consult-v231-card .programme-type {
    color: #718491;
    font-size: .65rem;
}
.consult-v231-card .programme-list-title {
    font-size: 1.02rem;
}
.consult-v231-help {
    padding-block: 66px;
}
.consult-v231-help h2 {
    margin-bottom: 8px;
}
@media (max-width: 760px) {
    .consult-v231-hero {
        padding-bottom: 68px;
    }
    .consult-v231-section {
        padding-block: 52px 62px;
    }
    .consult-v231-card {
        grid-template-columns: 68px minmax(0, 1fr) 40px;
        min-height: 88px;
    }
    .consult-v231-media {
        min-height: 86px;
    }
    .consult-v231-media .icon {
        width: 30px;
        height: 30px;
    }
    .consult-v231-help {
        padding-block: 54px;
    }
}
