@font-face {
    font-family: "CerebriSans";
    src: url("../fonts/CerebriSans-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "CerebriSans";
    src: url("../fonts/CerebriSans-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "CerebriSans";
    src: url("../fonts/CerebriSans-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: "GilroyExtraBold";
    src: url("../fonts/Gilroy-ExtraBold.woff") format("woff");
    font-weight: 800;
    font-style: normal;
}

:root {
    --blue: #005baa;
    --blue-strong: #0b4d93;
    --blue-soft: #edf5fe;
    --blue-border: #d9e7f8;
    --text: #223048;
    --muted: #6f7d92;
    --line: #e8edf3;
    --surface: #ffffff;
    --panel: #f6f9fd;
    --yellow: #e5ef00;
    --shadow: 0 18px 45px rgba(20, 49, 86, 0.08);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
    --motion-fast: 180ms;
    --motion-base: 420ms;
    --motion-slow: 780ms;
    --easing-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Overpass", "CerebriSans", Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(0, 91, 170, 0.05), transparent 32%), linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    overflow-x: hidden;
}

h1 {
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
}

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

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

.eyebrow {
    margin: 0 0 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.06;
}

.section-copy {
    margin: 16px 0 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid #d9dfe8;
    overflow: visible;
}

.homepage .site-header {
    transition: background-color var(--motion-fast) var(--easing-smooth), border-color var(--motion-fast) var(--easing-smooth), box-shadow var(--motion-fast) var(--easing-smooth);
}

.homepage .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: rgba(9, 53, 104, 0.1);
    box-shadow: 0 16px 34px rgba(17, 44, 82, 0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 14px 0 10px;
}

.nav-links,
.footer-columns,
.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 212px;
}

.brand-logo {
    display: block;
    width: 260px;
    max-width: 100%;
    height: auto;
}

.brand-text {
    max-width: 90px;
}

.brand-text span {
    display: block;
    margin-top: 0;
    color: var(--blue);
    font-size: 12px;
    line-height: 1.35;
    max-width: 90px;
}

.header-right {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    min-width: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    width: 100%;
}

.header-utility {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 48px;
    height: 48px;
    border: 1px solid #d9e7f8;
    border-radius: 16px;
    background: #ffffff;
    color: var(--blue);
    box-shadow: 0 10px 24px rgba(17, 44, 82, 0.08);
    cursor: pointer;
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.utility-icon,
.utility-phone,
.utility-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 999px;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.utility-icon {
    width: 34px;
    border: 1px solid #0f5ca9;
    background: #0f5ca9;
    color: #fff;
    position: relative;
}

.utility-icon::before,
.utility-icon::after {
    content: "";
    position: absolute;
}

.utility-icon-search::before {
    width: 11px;
    height: 11px;
    border: 2px solid currentColor;
    border-radius: 50%;
    transform: translate(-2px, -2px);
}

.utility-icon-search::after {
    width: 6px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform: translate(6px, 6px) rotate(45deg);
}

.utility-icon-mail::before {
    width: 14px;
    height: 10px;
    border: 2px solid currentColor;
    border-radius: 2px;
}

.utility-icon-mail::after {
    width: 8px;
    height: 8px;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-1px) rotate(-45deg);
    background: transparent;
}

.utility-phone {
    gap: 9px;
    padding: 0 18px 0 14px;
    background: #0f5ca9;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 92, 169, 0.18);
}

.utility-link {
    gap: 8px;
    padding: 0 16px;
    background: #0f5ca9;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 92, 169, 0.18);
}

.utility-link .ui-icon {
    width: 14px;
    height: 14px;
}

.utility-link.active {
    background: var(--blue-strong);
    border-color: var(--blue-strong);
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 92, 169, 0.24);
}

.utility-icon-phone {
    width: 18px;
    height: 18px;
    min-height: 18px;
    border: 0;
    background: transparent;
}

.utility-icon-phone::before {
    width: 14px;
    height: 14px;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.05 15.05 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24c1.11.37 2.3.56 3.53.56a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.61 21 3 13.39 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1c0 1.23.19 2.42.56 3.53a1 1 0 0 1-.24 1.01l-2.2 2.25Z'/%3E%3C/svg%3E");
}

.utility-icon-phone::after {
    content: none;
}

.utility-icon:hover,
.utility-phone:hover,
.utility-link:hover {
    background: var(--blue-strong);
    border-color: var(--blue-strong);
    color: #fff;
}

.utility-phone:hover {
    box-shadow: 0 12px 24px rgba(15, 92, 169, 0.24);
}

.nav-links {
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: 18px;
    color: #2f3d53;
    font-size: 14px;
    position: static;
    min-width: 0;
    width: 100%;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    color: #334255;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 0 4px;
}

.nav-link-row {
    display: flex;
    align-items: center;
}

.nav-submenu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    margin-left: 2px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #334255;
    line-height: 1;
    cursor: pointer;
}

.nav-submenu-icon {
    display: block;
    width: 6px;
    height: 6px;
    border-right: 1.25px solid currentColor;
    border-bottom: 1.25px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.nav-item {
    position: static;
    display: flex;
    align-items: center;
}

.ui-icon {
    display: inline-block;
    width: 15px;
    height: 15px;
    flex: none;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.ui-icon-home {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3 2 12h3v9h6v-6h2v6h6v-9h3L12 3Z'/%3E%3C/svg%3E");
}

.ui-icon-pin {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

.ui-icon-info {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm1 15h-2v-6h2Zm-1-8.75A1.25 1.25 0 1 1 13.25 7 1.25 1.25 0 0 1 12 8.25Z'/%3E%3C/svg%3E");
}

.ui-icon-grid {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 3h8v8H3V3Zm10 0h8v8h-8V3ZM3 13h8v8H3v-8Zm10 0h8v8h-8v-8Z'/%3E%3C/svg%3E");
}

.ui-icon-mail {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5L4 8V6l8 5 8-5Z'/%3E%3C/svg%3E");
}

.ui-icon-phone {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.62 10.79a15.46 15.46 0 0 0 6.59 6.59l2.2-2.2a1 1 0 0 1 1.01-.24 11.36 11.36 0 0 0 3.58.57 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.49a1 1 0 0 1 1 1 11.36 11.36 0 0 0 .57 3.58 1 1 0 0 1-.24 1.01l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.ui-icon-whatsapp {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.04 2C6.52 2 2.05 6.46 2.05 11.98c0 1.77.46 3.5 1.33 5.02L2 22l5.14-1.35a9.94 9.94 0 0 0 4.9 1.25h.01c5.51 0 9.98-4.47 9.98-9.98A9.98 9.98 0 0 0 12.04 2Zm5.82 14.1c-.25.7-1.42 1.3-1.96 1.39-.5.08-1.13.12-1.82-.1-.42-.13-.95-.31-1.64-.61-2.88-1.24-4.75-4.14-4.89-4.34-.14-.19-1.17-1.56-1.17-2.98s.74-2.11 1-2.39c.26-.28.57-.35.76-.35.19 0 .38 0 .55.01.18.01.42-.07.66.51.25.61.84 2.11.91 2.26.07.16.12.34.02.54-.09.19-.14.31-.28.47-.14.16-.29.35-.42.47-.14.14-.28.29-.12.57.16.28.7 1.15 1.49 1.86 1.02.91 1.87 1.19 2.14 1.33.28.14.44.12.61-.07.17-.19.72-.84.91-1.13.19-.28.38-.24.64-.14.26.09 1.65.78 1.93.92.28.14.47.21.54.33.07.12.07.68-.18 1.38Z'/%3E%3C/svg%3E");
}

.ui-icon-calendar {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v2h6V2h2v2h3a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h3V2Zm13 8H4v10h16V10ZM4 8h16V6H4v2Z'/%3E%3C/svg%3E");
}

.ui-icon-card {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2v2H3V5Zm18 5H3v9a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2v-9ZM7 16H5v-2h2v2Zm6 0H9v-2h4v2Z'/%3E%3C/svg%3E");
}

.ui-icon-bank {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 2 7v2h20V7L12 2Zm-7 9h2v7H5v-7Zm4 0h2v7H9v-7Zm4 0h2v7h-2v-7Zm4 0h2v7h-2v-7ZM2 20h20v2H2v-2Z'/%3E%3C/svg%3E");
}

.ui-icon-certificate {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-4 12.75V22l4-2 4 2v-7.25A7 7 0 0 0 12 2Zm0 2a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E");
}

.ui-icon-user {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a5 5 0 1 0-5-5 5 5 0 0 0 5 5Zm0 2c-4.42 0-8 2.24-8 5v1h16v-1c0-2.76-3.58-5-8-5Z'/%3E%3C/svg%3E");
}

.ui-icon-bookmark {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 3a2 2 0 0 0-2 2v16l8-4 8 4V5a2 2 0 0 0-2-2H6Zm0 2h12v12.76l-6-3-6 3V5Z'/%3E%3C/svg%3E");
}

.ui-icon-check-circle {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm-1 14-4-4 1.4-1.4 2.6 2.6 4.6-4.6L17 10l-6 6Z'/%3E%3C/svg%3E");
}

.ui-icon-online {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 17a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm-4.95-3.54-1.41 1.41A8.95 8.95 0 0 1 12 12c2.49 0 4.74 1.01 6.36 2.64l-1.41 1.41A6.97 6.97 0 0 0 12 14a6.97 6.97 0 0 0-4.95 2.05ZM3.51 9.93 2.1 11.34C4.63 8.8 8.14 7.25 12 7.25s7.37 1.55 9.9 4.09l-1.41-1.41A11.9 11.9 0 0 0 12 5.25c-3.31 0-6.31 1.34-8.49 3.68Zm3.54 3.53-1.41 1.41A8.95 8.95 0 0 1 12 12c2.49 0 4.74 1.01 6.36 2.64l-1.41 1.41A6.97 6.97 0 0 0 12 14a6.97 6.97 0 0 0-4.95 2.05Z'/%3E%3C/svg%3E");
}

.ui-icon-linkedin {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.94 8.5H3.56V20h3.38V8.5ZM5.25 3A1.97 1.97 0 0 0 3.25 5c0 1.09.88 1.97 1.97 1.97h.03A1.97 1.97 0 1 0 5.25 3ZM20.75 12.62c0-3.46-1.85-5.07-4.33-5.07-2 0-2.89 1.1-3.39 1.87V8.5H9.66c.04.61 0 11.5 0 11.5h3.37v-6.42c0-.34.03-.68.13-.92.27-.68.88-1.39 1.91-1.39 1.35 0 1.89 1.03 1.89 2.54V20H20.75v-7.38Z'/%3E%3C/svg%3E");
}

.ui-icon-pdf {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l5 5v15H6V2Zm8 1.5V8h4.5L14 3.5ZM8 13h2.2a2.4 2.4 0 1 0 0-4.8H8V13Zm1.8-3.4h.4a1 1 0 1 1 0 2h-.4V9.6ZM12.5 8.2h2.1a2.9 2.9 0 1 1 0 5.8h-2.1V8.2Zm1.4 1.4v3h.6a1.5 1.5 0 0 0 0-3h-.6ZM17.5 9.6V8.2H21v1.4h-2.1v1.1h1.8v1.4h-1.8V14h-1.4V9.6Z'/%3E%3C/svg%3E");
}

.ui-icon-expertise-finance { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M11 3h2v18h-2V3Zm-5 5h2v8H6V8Zm10 2h2v6h-2v-6ZM4 18h16v2H4v-2Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-construction { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M1 19h22v2H1v-2Zm4-2h2V9H5v8Zm4 0h2V5H9v12Zm4 0h2v-7h-2v7Zm4 0h2V3h-2v14Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-data { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 3h14a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4l-3 3-3-3H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Zm2 10h2V8H7v5Zm4 0h2V6h-2v7Zm4 0h2V10h-2v3Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-government { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 3 6v2h18V6l-9-4ZM5 10h2v7H5v-7Zm4 0h2v7H9v-7Zm4 0h2v7h-2v-7Zm4 0h2v7h-2v-7ZM3 19h18v2H3v-2Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-growth { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m4 16 5-5 3 3 6-7 2 2-8 9-3-3-3 3-2-2Zm0 4h16v2H4v-2Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-pr { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 10v4h3l5 4V6L6 10H3Zm10-3h7v2h-7V7Zm2 4h5v2h-5v-2Zm-2 4h7v2h-7v-2Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-strategy { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 3h14a1 1 0 0 1 1 1v15l-5-3-5 3-5-3-5 3V4a1 1 0 0 1 1-1h4Zm2 4v2h10V7H7Zm0 4v2h7v-2H7Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-governance { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 6v6c0 5.25 3.5 10.06 8 11.77 4.5-1.71 8-6.52 8-11.77V6l-8-4Zm-1 12-3-3 1.4-1.4 1.6 1.58 4.6-4.58L17 8l-6 6Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-leadership { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm-5 9a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm10 0a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm-8 8h6v2H9v-2Zm-4-1h2v2H5v-2Zm12 0h2v2h-2v-2Zm-8.8-8.2 2.3-1.4 1 1.7-2.3 1.4-1-1.7Zm5.6 0 1 1.7-2.3 1.4-1-1.7 2.3-1.4Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-training { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 3 10 5-10 5L2 8l10-5Zm-6 8 6 3 6-3v5l-6 3-6-3v-5Zm14.5.5L22 12v6h-2v-6l.5-.5Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-continuity { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 4a8 8 0 1 0 7.75 10h-2.1A6 6 0 1 1 16.24 8.5L14 10.75H20V5l-2.3 2.3A7.96 7.96 0 0 0 12 4Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-quality { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 3 6v6c0 5.25 3.4 10.14 9 12 5.6-1.86 9-6.75 9-12V6l-9-4Zm-1 14-3-3 1.4-1.4 1.6 1.6 4.6-4.6L17 10l-6 6Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-project { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 2h6v2h5a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h5V2Zm0 4H4v13h16V6h-5v2H9V6Zm2 4h2v3h3v2h-5v-5Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-cyber { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a5 5 0 0 1 5 5v1h1a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8a2 2 0 0 1 2-2h1V7a5 5 0 0 1 5-5Zm-3 6h6V7a3 3 0 1 0-6 0v1Zm2 4h2v4h-2v-4Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-digital { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 3h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2h-4l-2 2-2-2H6a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Zm2 3v3h3V6H8Zm5 0v3h3V6h-3Zm-5 5v3h8v-3H8Zm2 9h4v2h-4v-2Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-supply { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 7h11v8H3V7Zm12 2h3l3 3v3h-2a2 2 0 1 1-4 0H9a2 2 0 1 1-4 0H3v2h1a2 2 0 1 0 4 0h8a2 2 0 1 0 4 0h1v-5l-4-4h-2v1Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-contracts { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l5 5v15H6V2Zm8 1.5V8h4.5L14 3.5ZM8 12h8v2H8v-2Zm0 4h6v2H8v-2Zm0-8h4v2H8V8Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-energy { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2 6 13h4l-1 9 9-12h-5l1-8Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-security { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 6v6c0 5.25 3.4 10.14 8 11.77 4.6-1.63 8-6.52 8-11.77V6l-8-4Zm0 4a2 2 0 0 1 2 2v1h1a2 2 0 0 1 2 2v3h-2v-3h-6v3H7v-3a2 2 0 0 1 2-2h1V8a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-admin { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 3h14a2 2 0 0 1 2 2v14l-4-2-5 3-5-3-4 2V5a2 2 0 0 1 2-2Zm2 4v2h10V7H7Zm0 4v2h10v-2H7Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-engineering { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m21.67 18.17-1.84-1.84a6.5 6.5 0 0 0-.23-8.92l-2.12 2.12a3.5 3.5 0 0 1-.13 4.82l-2.13-2.13-1.41 1.41 2.13 2.13a3.5 3.5 0 0 1-4.82.13L9 18l.23.23-4.9 4.89L1.5 20.3l4.89-4.9.23.23 2.12-2.12a6.5 6.5 0 0 0 8.92.23l1.84 1.84 2.17 2.17Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-writing { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 3h12v2H4V3Zm0 4h16v2H4V7Zm0 4h10v2H4v-2Zm0 4h8v2H4v-2Zm12.5-1.09 3.59 3.59L14.59 23H11v-3.59l5.5-5.5Z'/%3E%3C/svg%3E"); }
.ui-icon-expertise-hse { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2 4 6v6c0 5.25 3.4 10.14 8 11.77 4.6-1.63 8-6.52 8-11.77V6l-8-4Zm-1 13-3-3 1.4-1.4 1.6 1.6 4.6-4.6L17 9l-6 6Z'/%3E%3C/svg%3E"); }

.nav-link.has-caret::after {
    content: "";
    width: 6px;
    height: 6px;
    margin-top: -3px;
    margin-left: 3px;
    border-right: 1.25px solid currentColor;
    border-bottom: 1.25px solid currentColor;
    transform: rotate(45deg);
}

.mega-item.mega-open .nav-submenu-icon {
    transform: rotate(-135deg);
}

.nav-link.active {
    color: var(--blue);
    font-weight: 700;
}

.mega-item:hover .mega-menu,
.mega-item:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu {
    position: absolute;
    left: 50%;
    top: 100%;
    width: 100vw;
    transform: translateX(-50%) translateY(8px);
    padding: 22px 0 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
    background: rgba(255, 255, 255, 0.99);
    border-top: 1px solid var(--blue-border);
    border-bottom: 1px solid var(--blue-border);
    box-shadow: 0 20px 44px rgba(17, 44, 82, 0.12);
}

.header-meta {
    border-top: 1px solid #e5e9ef;
}

.header-meta-inner {
    display: flex;
    justify-content: flex-end;
    min-height: 30px;
}

.header-languages {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.header-languages a {
    color: #7c8696;
}

.header-languages a.active {
    color: #111927;
}

.mega-menu-inner {
    width: min(var(--container), calc(100vw - 48px));
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.mega-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.mega-menu-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
}

.mega-menu-copy {
    margin: 0;
    max-width: 340px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    text-align: right;
}

.mega-menu-list {
    display: grid;
    gap: 16px 28px;
}

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

.mega-menu-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #23334b;
    font-size: 14px;
    line-height: 1.5;
}

.mega-menu-link::before {
    content: "";
    width: 12px;
    height: 12px;
    flex: none;
    background-color: var(--blue);
    opacity: 0.85;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.3 4.3 10.9 5.7l5 5H4v2h11.9l-5 5 1.4 1.4 7.4-7.4-7.4-7.4Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.3 4.3 10.9 5.7l5 5H4v2h11.9l-5 5 1.4 1.4 7.4-7.4-7.4-7.4Z'/%3E%3C/svg%3E");
}

.mega-menu-link:hover {
    color: var(--blue);
}

.eyebrow,
.button,
.ghost-button,
.outline-button,
.chip,
.tag,
.footer-column h4 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.eyebrow::before,
.button::before,
.ghost-button::before,
.outline-button::before,
.chip::before,
.tag::before {
    content: "";
    width: 14px;
    height: 14px;
    flex: none;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.eyebrow::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 2 2.5 6.5L21 11l-6.5 2.5L12 20l-2.5-6.5L3 11l6.5-2.5L12 2Z'/%3E%3C/svg%3E");
}

.button::before,
.ghost-button::before,
.outline-button::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.3 4.3 10.9 5.7l5 5H4v2h11.9l-5 5 1.4 1.4 7.4-7.4-7.4-7.4Z'/%3E%3C/svg%3E");
}

.chip::before,
.tag::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10.59 2H4v6.59L14.41 19 21 12.41 10.59 2ZM7.5 8A1.5 1.5 0 1 1 9 6.5 1.5 1.5 0 0 1 7.5 8Z'/%3E%3C/svg%3E");
}

.footer-column h4 {
    gap: 10px;
}

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

.footer-links a::before {
    content: "";
    width: 12px;
    height: 12px;
    flex: none;
    background-color: var(--blue);
    opacity: 0.85;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12.3 4.3 10.9 5.7l5 5H4v2h11.9l-5 5 1.4 1.4 7.4-7.4-7.4-7.4Z'/%3E%3C/svg%3E");
}

/* Homepage-only link polish keeps interactions crisp without changing the whole site tone. */
.homepage .nav-link,
.homepage .footer-links a,
.homepage .center-link a,
.homepage .mega-menu-link {
    background-image: linear-gradient(currentColor, currentColor);
    background-repeat: no-repeat;
    background-position: 0 calc(100% - 1px);
    background-size: 0 1px;
    transition: color var(--motion-fast) var(--easing-smooth), background-size var(--motion-fast) var(--easing-smooth), transform var(--motion-fast) var(--easing-smooth);
}

.homepage .nav-link:hover,
.homepage .footer-links a:hover,
.homepage .center-link a:hover,
.homepage .mega-menu-link:hover {
    color: var(--blue);
    background-size: 100% 1px;
}

.hero {
    padding: 26px 0 36px;
}

.hero-shell {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border-radius: 0 0 32px 32px;
    border: 1px solid var(--blue-border);
    background: linear-gradient(180deg, #f7fbff 0%, #edf5fd 100%);
    box-shadow: 0 24px 56px rgba(10, 53, 104, 0.12);
}

.hero-stage {
    position: relative;
    min-height: 510px;
    padding: 72px 54px 160px;
    background:
        radial-gradient(circle at 14% 24%, rgba(255, 255, 255, 0.3), transparent 24%),
        linear-gradient(124deg, #d7e8fb 0%, #b8d3f0 42%, #8eb5df 100%);
    background-size: 100% 100%, 120% 120%;
    animation: heroGradientShift 18s ease-in-out infinite;
}

.hero-stage::before,
.hero-stage::after {
    content: "";
    position: absolute;
    inset: auto auto 40px 54%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.42) 0 32%, rgba(255, 255, 255, 0) 68%);
}

.hero-stage::after {
    inset: 22px 5% auto auto;
    width: 210px;
    height: 210px;
}

.hero-stage::before {
    animation: driftOrb 14s ease-in-out infinite;
}

.hero-stage::after {
    animation: driftOrb 18s ease-in-out infinite reverse;
}

.hero-copy {
    max-width: 480px;
    position: relative;
    z-index: 3;
    display: grid;
    gap: 16px;
}

.hero-copy h1 {
    margin: 0;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(46px, 7vw, 78px);
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--blue);
}

.hero-copy p {
    margin: 0;
    color: #395271;
    font-size: 18px;
    line-height: 1.6;
    max-width: 430px;
}

.hero-eyebrow {
    margin-bottom: 0;
}

.hero-lead {
    max-width: 560px;
}

.hero-typing {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    min-height: 50px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 14px 30px rgba(17, 44, 82, 0.09);
}

.hero-typing-label {
    color: #56708f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-typing-text {
    color: var(--blue);
    font-size: 17px;
    font-weight: 700;
}

.hero-typing-cursor {
    width: 2px;
    height: 18px;
    background: currentColor;
    color: var(--blue);
    border-radius: 999px;
    animation: blinkCursor 1s steps(1) infinite;
}

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

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 580px;
}

.hero-metric-card {
    display: grid;
    gap: 8px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 28px rgba(17, 44, 82, 0.08);
    transition: transform var(--motion-fast) var(--easing-smooth), box-shadow var(--motion-fast) var(--easing-smooth), border-color var(--motion-fast) var(--easing-smooth);
}

.hero-metric-card strong {
    display: block;
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.hero-metric-card span {
    color: #526b87;
    font-size: 13px;
    line-height: 1.5;
}

.hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-art-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-art-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(248, 251, 255, 0.97) 0%, rgba(248, 251, 255, 0.92) 18%, rgba(248, 251, 255, 0.78) 34%, rgba(248, 251, 255, 0.4) 50%, rgba(248, 251, 255, 0.08) 66%, rgba(248, 251, 255, 0) 80%),
        linear-gradient(180deg, rgba(10, 53, 104, 0.04), rgba(10, 53, 104, 0.18));
    z-index: 1;
}

.hero-art-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(0.96) contrast(1.02);
    transform-origin: center;
    animation: heroImageFloat 18s ease-in-out infinite;
}

.hero-floating-panel {
    position: absolute;
    top: 72px;
    right: 42px;
    z-index: 2;
    display: grid;
    gap: 10px;
    width: min(250px, 26vw);
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.64);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 36px rgba(17, 44, 82, 0.12);
    animation: floatPanel 9s ease-in-out infinite;
}

.hero-floating-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4f6782;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-floating-label::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #1ac37a;
    box-shadow: 0 0 0 6px rgba(26, 195, 122, 0.14);
}

.hero-floating-panel strong {
    color: #23415f;
    font-size: 16px;
    line-height: 1.5;
}

.hero-badge-mark {
    position: absolute;
    right: 42px;
    bottom: 150px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    animation: badgeFloat 8s ease-in-out infinite;
}

.hero-badge-mark-image {
    display: block;
    width: min(140px, 18vw);
    max-width: 140px;
    height: auto;
    filter: drop-shadow(0 16px 28px rgba(12, 43, 82, 0.22));
}

.search-panel {
    position: absolute;
    top: clamp(185px, 50%, 380px);
    left: auto;
    right: 54px;
    bottom: auto;
    width: min(48%, 560px);
    max-width: calc(100% - 108px);
    margin: 0;
    z-index: 3;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: transform var(--motion-base) var(--easing-smooth), opacity var(--motion-base) var(--easing-smooth);
}

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.search-header-stack {
    justify-content: flex-start;
    margin-bottom: 14px;
}

.search-header strong {
    font-size: clamp(24px, 2.3vw, 20px);
    line-height: 1.05;
    font-weight: 400;
    color: white;
    letter-spacing: -0.03em;
}

.search-tabs {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.9fr;
    gap: 0;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(196, 210, 228, 0.92);
    box-shadow: 0 12px 26px rgba(17, 44, 82, 0.08);
    transition: box-shadow var(--motion-fast) var(--easing-smooth), transform var(--motion-fast) var(--easing-smooth);
}

.search-tab {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    background: rgba(255, 255, 255, 0.98);
    color: #1f2f45;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: 0;
    border-right: 1px solid rgba(222, 228, 236, 0.9);
    cursor: pointer;
    transition: background-color var(--motion-fast) var(--easing-smooth), color var(--motion-fast) var(--easing-smooth), transform var(--motion-fast) var(--easing-smooth);
}

.search-tab:last-child {
    border-right: 0;
}

.search-tab::before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 10px;
    flex: none;
    background-color: currentColor;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.search-tab-active {
    color: #fff;
    background: var(--blue);
}

.search-tab-search::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M10 4a6 6 0 1 0 3.87 10.58l4.27 4.28 1.41-1.42-4.27-4.27A6 6 0 0 0 10 4Zm0 2a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z'/%3E%3C/svg%3E");
}

.search-tab-subject::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 3h9l5 5v13H6V3Zm8 1.5V9h4.5L14 4.5ZM8 12h10v2H8v-2Zm0 4h7v2H8v-2Z'/%3E%3C/svg%3E");
}

.search-tab-location::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

.search-tab-date::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 2h2v3h6V2h2v3h3v17H4V5h3V2Zm11 8H6v10h12V10Zm-6 2a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm1 1.5h-2V17l3 1 .75-1.23-1.75-1.02V13.5Z'/%3E%3C/svg%3E");
}

.search-form-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin-top: 18px;
}

.field,
.select-field,
.metric,
.chip,
.timeline-item,
.page-hero-stat,
.filter-chip,
.pagination a,
.sidebar-card,
.schedule-row,
.venue-highlight,
.travel-card {
    border: 1px solid var(--line);
}

.field,
.select-field {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 14px;
    color: #7b8798;
    background: #fff;
    font-size: 14px;
}

.search-input {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid rgba(230, 234, 239, 0.95);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.98);
    color: #34465d;
    font: inherit;
    font-size: 16px;
    box-shadow: 0 6px 16px rgba(17, 44, 82, 0.06);
    transition: border-color var(--motion-fast) var(--easing-smooth), box-shadow var(--motion-fast) var(--easing-smooth), transform var(--motion-fast) var(--easing-smooth);
}

.search-input::placeholder {
    color: #8a96a5;
}

.search-input:focus {
    outline: none;
    border-color: rgba(15, 92, 169, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 92, 169, 0.08);
}

.field::before,
.select-field::before {
    content: attr(data-icon);
    margin-right: 10px;
    color: var(--blue);
    font-size: 15px;
}

.search-button,
.button,
.ghost-button,
.tag,
.newsletter button,
.outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    font: inherit;
    cursor: pointer;
    transition: transform var(--motion-fast) var(--easing-smooth), box-shadow var(--motion-fast) var(--easing-smooth), background-color var(--motion-fast) var(--easing-smooth), border-color var(--motion-fast) var(--easing-smooth), color var(--motion-fast) var(--easing-smooth);
}

.search-button,
.button,
.newsletter button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 14px;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(0, 91, 170, 0.24);
}

.search-button {
    min-height: 46px;
    padding: 0 24px;
    border-radius: 999px;
}

.outline-button,
.ghost-button,
.tag,
.filter-chip,
.pagination a {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--blue-border);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.search-button:hover,
.button:hover,
.newsletter button:hover,
.utility-icon:hover,
.utility-phone:hover,
.utility-link:hover {
    transform: translateY(-2px);
}

.ghost-button:hover,
.outline-button:hover,
.tag:hover,
.search-tabs:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 91, 170, 0.22);
    box-shadow: 0 14px 26px rgba(17, 44, 82, 0.08);
}

.search-button:active,
.button:active,
.ghost-button:active,
.outline-button:active,
.tag:active,
.newsletter button:active,
.utility-icon:active,
.utility-phone:active,
.utility-link:active {
    transform: scale(0.98);
}

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

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

.outline-button {
    background: transparent;
}

.outline-button-linkedin::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.94 8.5H3.56V20h3.38V8.5ZM5.25 3A1.97 1.97 0 0 0 3.25 5c0 1.09.88 1.97 1.97 1.97h.03A1.97 1.97 0 1 0 5.25 3ZM20.75 12.62c0-3.46-1.85-5.07-4.33-5.07-2 0-2.89 1.1-3.39 1.87V8.5H9.66c.04.61 0 11.5 0 11.5h3.37v-6.42c0-.34.03-.68.13-.92.27-.68.88-1.39 1.91-1.39 1.35 0 1.89 1.03 1.89 2.54V20H20.75v-7.38Z'/%3E%3C/svg%3E");
}

.outline-button-pdf::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6 2h9l5 5v15H6V2Zm8 1.5V8h4.5L14 3.5ZM8 13h2.2a2.4 2.4 0 1 0 0-4.8H8V13Zm1.8-3.4h.4a1 1 0 1 1 0 2h-.4V9.6ZM12.5 8.2h2.1a2.9 2.9 0 1 1 0 5.8h-2.1V8.2Zm1.4 1.4v3h.6a1.5 1.5 0 0 0 0-3h-.6ZM17.5 9.6V8.2H21v1.4h-2.1v1.1h1.8v1.4h-1.8V14h-1.4V9.6Z'/%3E%3C/svg%3E");
}

section {
    padding: 42px 0;
}

.intro {
    padding-top: 24px;
}

.academy-highlights {
    padding-top: 10px;
}

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

.academy-highlight-card {
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
    border: 1px solid var(--line);
    box-shadow: 0 12px 28px rgba(28, 45, 74, 0.05);
}

.academy-highlight-media {
    position: relative;
    aspect-ratio: 1.35 / 0.82;
    overflow: hidden;
    background: linear-gradient(135deg, #dce9f8 0%, #b7d0ef 100%);
}

.academy-highlight-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
     
}

.academy-highlight-media .visual-lines {
    inset: 14px;
    border-radius: 14px;
}

.academy-highlight-overlay-title {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    color: #fff;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 18px;
    line-height: 1.12;
    text-shadow: 0 8px 18px rgba(12, 31, 52, 0.45);
}

.academy-highlight-body {
    padding: 18px 18px 20px;
}

.academy-highlight-title {
    margin: 0;
    color: #173a61;
    font-size: 19px;
    line-height: 1.24;
}

.academy-highlight-copy {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.why-choose-section {
    padding-top: 4px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    align-items: stretch;
}

.why-choose-intro-card,
.why-choose-copy-card {
    padding: 30px;
    border-radius: 26px;
    border: 1px solid var(--line);
    box-shadow: 0 14px 34px rgba(28, 45, 74, 0.05);
}

.why-choose-intro-card {
    background: radial-gradient(circle at 82% 18%, rgba(229, 239, 0, 0.34), transparent 18%), linear-gradient(145deg, #ffffff 0%, #eef5fd 100%);
}

.why-choose-copy-card {
    background: #fff;
}

.why-choose-title {
    max-width: 240px;
}

.why-choose-lead {
    margin: 18px 0 0;
    color: #4e6581;
    font-size: 15px;
    line-height: 1.8;
}

.why-choose-copy-card p {
    margin: 0;
    color: #4f627b;
    font-size: 15px;
    line-height: 1.85;
}

.why-choose-copy-card p + p {
    margin-top: 18px;
}

.cards-grid,
.course-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;

.bookmarks-page-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 26px;
}

.bookmarks-page-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: #eaf2fb;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.bookmarks-page-empty {
    display: grid;
    gap: 18px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
    box-shadow: 0 24px 54px rgba(19, 58, 102, 0.08);
}

.bookmarks-page-empty h2 {
    margin: 0;
}

.bookmarks-page-empty p {
    margin: 0;
    max-width: 620px;
    color: #56687d;
}

.bookmarks-page-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bookmarks-page-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 14px;
    color: #62748a;
    font-size: 13px;
}

.bookmarks-page-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.bookmarks-page-card-meta .ui-icon {
    width: 13px;
    height: 13px;
}

.bookmarks-page-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.bookmarks-page-card-actions .outline-button,
.bookmarks-page-card-actions .ghost-button,
.bookmarks-page-card-actions .button {
    min-height: 40px;
}

.bookmarks-page-card-fee {
    color: var(--blue);
    font-size: 16px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .bookmarks-page-controls {
        flex-direction: column;
        align-items: flex-start;
    }
}
}

.card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(28, 45, 74, 0.05);
}

/* Card motion stays subtle: lift, shadow, and a gentle image zoom. */
.homepage .academy-highlight-card,
.homepage .card,
.homepage .category-card,
.homepage .why-choose-intro-card,
.homepage .why-choose-copy-card,
.homepage .benefit-card,
.homepage .newsletter,
.homepage .map-card {
    transition: transform var(--motion-fast) var(--easing-smooth), box-shadow var(--motion-fast) var(--easing-smooth), border-color var(--motion-fast) var(--easing-smooth);
}

.homepage .academy-highlight-card:hover,
.homepage .card:hover,
.homepage .category-card:hover,
.homepage .why-choose-intro-card:hover,
.homepage .why-choose-copy-card:hover,
.homepage .benefit-card:hover,
.homepage .newsletter:hover,
.homepage .map-card:hover,
.homepage .hero-metric-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 91, 170, 0.16);
    box-shadow: 0 22px 42px rgba(17, 44, 82, 0.1);
}

.homepage .academy-highlight-media img,
.homepage .visual-image {
    transition: transform var(--motion-slow) var(--easing-smooth), filter var(--motion-slow) var(--easing-smooth);
}

.homepage .academy-highlight-card:hover .academy-highlight-media img,
.homepage .card:hover .visual-image {
    transform: scale(1.04);
}

/* Reveal-on-scroll is enabled only when JavaScript adds the enhanced-motion class. */
.enhanced-motion [data-home-reveal],
.enhanced-motion .home-reveal {
    opacity: 0;
    transform: translateY(26px);
    filter: saturate(0.92);
    transition: opacity var(--motion-base) var(--easing-smooth), transform var(--motion-base) var(--easing-smooth), filter var(--motion-base) var(--easing-smooth);
    will-change: transform, opacity;
}

.enhanced-motion [data-home-reveal="fade"],
.enhanced-motion .home-reveal[data-home-reveal="fade"] {
    transform: scale(0.985);
}

.enhanced-motion [data-home-reveal].is-visible,
.enhanced-motion .home-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
}

@keyframes heroGradientShift {
    0%,
    100% {
        background-position: 0 0, 0 0;
    }

    50% {
        background-position: 0 0, 100% 100%;
    }
}

@keyframes driftOrb {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(10px, -16px, 0) scale(1.04);
    }
}

@keyframes heroImageFloat {
    0%,
    100% {
        transform: scale(1.02) translateY(0);
    }

    50% {
        transform: scale(1.06) translateY(-8px);
    }
}

@keyframes floatPanel {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes badgeFloat {
    0%,
    100% {
        transform: rotate(-1deg) translateY(0);
    }

    50% {
        transform: rotate(1.5deg) translateY(-8px);
    }
}

@keyframes blinkCursor {
    0%,
    49% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

@keyframes bounceArrow {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(4px);
    }
}

.visual {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 80% 22%, rgba(229, 239, 0, 0.4), transparent 18%), linear-gradient(135deg, #dce9f8 0%, #c5daf0 55%, #b7cfe9 100%);
}

.visual.has-image {
    background: #0d2238;
}

.visual-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.visual-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 31, 52, 0.16) 0%, rgba(12, 31, 52, 0.56) 100%);
    z-index: 1;
}

.visual::before,
.visual::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
}

.visual::before {
    width: 120px;
    height: 120px;
    left: -20px;
    bottom: -36px;
    z-index: 1;
}

.visual::after {
    width: 86px;
    height: 86px;
    right: -18px;
    top: -14px;
    z-index: 1;
}

.seminar-card .visual,
.course-card .visual {
    height: 165px;
}

.visual-lines {
    position: absolute;
    inset: 18px;
    border-radius: 16px;
    border: 1px dashed rgba(255, 255, 255, 0.65);
    z-index: 2;
}

.visual-chip,
.catalog-badge,
.status-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 84px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    z-index: 3;
}

.visual-chip,
.status-chip {
    left: 16px;
    top: 16px;
}

.seminar-card:nth-child(2) .visual,
.course-card:nth-child(2) .visual,
.course-card:nth-child(6) .visual {
    background: radial-gradient(circle at 76% 22%, rgba(0, 91, 170, 0.14), transparent 18%), linear-gradient(135deg, #dde8f2 0%, #c1d1df 45%, #9fb1c4 100%);
}

.seminar-card:nth-child(3) .visual,
.course-card:nth-child(3) .visual,
.course-card:nth-child(7) .visual {
    background: radial-gradient(circle at 18% 24%, rgba(229, 239, 0, 0.42), transparent 18%), linear-gradient(135deg, #dce9f8 0%, #b7d0ef 45%, #96b6dc 100%);
}

.seminar-card:nth-child(4) .visual,
.seminar-card:nth-child(8) .visual,
.course-card:nth-child(4) .visual,
.course-card:nth-child(8) .visual {
    background: linear-gradient(135deg, #e2e7ee 0%, #cdd6e0 45%, #a7b4c2 100%);
}

.seminar-body,
.news-body,
.catalog-body,
.course-body {
    padding: 18px;
.catalog-hover-preview-copy {
    display: block;
}
    color: var(--blue);
    font-size: 12px;
    letter-spacing: 0.1em;
}

.meta-row,
.course-meta,
.schedule-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 12px;
    margin-top: 6px;
}

.seminar-title,
.news-title,
.catalog-title,
.category-title,
.course-title,
.sidebar-title,
.detail-title,
.venue-title {
    margin: 10px 0 6px;
    font-size: 17px;
    line-height: 1.3;
}

.seminar-copy,
.news-copy,
.catalog-copy,
.category-copy,
.testimonial-copy,
.contact-copy,
.advisor-copy,
.benefit-list,
.legal-copy,
.course-copy,
.detail-copy,
.venue-copy,
.timeline-copy {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.card-actions,
.toolbar-row,
.course-actions,
.cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.button {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 12px;
}

.news-grid,
.catalog-grid,
.categories-grid,
.testimonials-grid,
.logos-grid,
.contact-grid,
.benefits-grid,
.detail-grid,
.venue-grid,
.travel-grid,
.metrics-grid,
.page-hero-stats,
.feature-grid {
    display: grid;
    gap: 20px;
}

.news-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.news-card .visual {
    height: 190px;
}

.news-card:nth-child(1) .visual {
    background: radial-gradient(circle at 22% 22%, rgba(229, 239, 0, 0.88) 0 10%, transparent 11%), radial-gradient(circle at 38% 22%, rgba(229, 239, 0, 0.88) 0 10%, transparent 11%), radial-gradient(circle at 54% 22%, rgba(229, 239, 0, 0.88) 0 10%, transparent 11%), radial-gradient(circle at 70% 22%, rgba(229, 239, 0, 0.88) 0 10%, transparent 11%), radial-gradient(circle at 86% 22%, rgba(229, 239, 0, 0.88) 0 10%, transparent 11%), linear-gradient(135deg, #d7e4f3 0%, #b5c7dc 100%);
}

.news-card:nth-child(2) .visual,
.news-card:nth-child(4) .visual {
    background: linear-gradient(135deg, #dfe9f5 0%, #bccde0 58%, #a3b6cb 100%);
}

.news-card:nth-child(3) .visual {
    background: radial-gradient(circle at 78% 25%, rgba(229, 239, 0, 0.88) 0 12%, transparent 13%), linear-gradient(135deg, #0a4276 0%, #26639c 46%, #5d90bd 100%);
}

.center-link {
    display: flex;
    justify-content: center;
    margin-top: 18px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.tag-cloud,
.filter-bar,
.chip-list,
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.tag,
.filter-chip {
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 16px;
    background: #fff;
    color: #304766;
    font-weight: 400;
    border-color: var(--line);
}

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

.expertise-tag {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 168px;
    padding: 22px 20px 20px;
    border: 1px solid var(--blue-border);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    color: #203753;
    box-shadow: 0 16px 30px rgba(16, 46, 89, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.expertise-tag::before {
    content: none;
}

.expertise-tag:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 91, 170, 0.28);
    box-shadow: 0 24px 36px rgba(16, 46, 89, 0.1);
}

.expertise-tag-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #eef6ff 0%, #dcecff 100%);
    color: var(--blue);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.expertise-tag-icon {
    width: 28px;
    height: 28px;
}

.expertise-tag-label {
    display: block;
    color: #203753;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 18px;
    line-height: 1.2;
}

.expertise-tag-count {
    position: absolute;
    top: 18px;
    right: 18px;
    min-height: 30px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e9f2fb;
    color: #0f5ca9;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

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

    .expertise-tag {
        width: 100%;
        min-height: 156px;
    }
}

@media (max-width: 700px) {
    .expertise-cloud {
        grid-template-columns: 1fr;
    }
}

.filter-chip.active {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
}

.catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    margin-top: 24px;
}

.catalog-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border-color: rgba(23, 58, 97, 0.1);
    box-shadow: 0 16px 36px rgba(28, 45, 74, 0.08);
}

.catalog-card .visual {
    height: auto;
    min-height: 360px;
    aspect-ratio: 0.72 / 1;
    border-radius: 22px 22px 0 0;
}

.catalog-card .visual::before,
.catalog-card .visual::after,
.catalog-card .visual-lines {
    content: none;
    display: none;
}

.catalog-card .visual-image {
    filter: brightness(1);
    transition: transform var(--motion-fast) var(--easing-smooth), filter var(--motion-fast) var(--easing-smooth);
}

.catalog-cover-overlay {
    background: linear-gradient(180deg, rgba(8, 22, 37, 0.08) 0%, rgba(8, 22, 37, 0.28) 100%);
}

.catalog-card:hover .visual-image,
.catalog-card:focus-within .visual-image {
    transform: scale(1.03);
}

.catalog-card-program .catalog-cover-overlay {
    background: linear-gradient(180deg, rgba(6, 22, 39, 0.08) 0%, rgba(6, 22, 39, 0.36) 100%);
}

.catalog-card-elearning .catalog-cover-overlay {
    background: linear-gradient(180deg, rgba(4, 18, 33, 0.18) 0%, rgba(4, 18, 33, 0.48) 100%);
}

.catalog-card:hover .catalog-cover-overlay,
.catalog-card:focus-within .catalog-cover-overlay,
.catalog-card.is-preview-active .catalog-cover-overlay {
    background: linear-gradient(180deg, rgba(3, 15, 27, 0.74) 0%, rgba(3, 15, 27, 0.92) 100%);
}

.catalog-card:hover .visual-image,
.catalog-card:focus-within .visual-image,
.catalog-card.is-preview-active .visual-image {
    filter: brightness(0.3) saturate(0.78) blur(2.6px);
}

.catalog-card-leadership .catalog-cover-overlay {
    background: linear-gradient(180deg, rgba(6, 18, 31, 0.12) 0%, rgba(6, 18, 31, 0.34) 100%);
}

.catalog-badge {
    top: 22px;
    right: 22px;
    min-width: 98px;
    min-height: 98px;
    padding: 12px;
    border-radius: 50%;
    flex-direction: column;
    background: var(--yellow);
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 45px;
    line-height: 1;
    text-align: center;
    box-shadow: 0 18px 26px rgba(15, 38, 66, 0.14);
}

.catalog-badge span {
    display: block;
    margin-top: 6px;
    font-family: "CerebriSans", Arial, sans-serif;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: 0.04em;
    text-transform: none;
}

.catalog-cover-copy,
.catalog-cover-meta,
.catalog-hover-preview {
    position: absolute;
}

.catalog-badge,
.catalog-cover-copy,
.catalog-cover-meta {
    transition: opacity var(--motion-fast) var(--easing-smooth), transform var(--motion-fast) var(--easing-smooth);
}

.catalog-card:hover .catalog-badge,
.catalog-card:hover .catalog-cover-copy,
.catalog-card:hover .catalog-cover-meta,
.catalog-card:focus-within .catalog-badge,
.catalog-card:focus-within .catalog-cover-copy,
.catalog-card:focus-within .catalog-cover-meta,
.catalog-card.is-preview-active .catalog-badge,
.catalog-card.is-preview-active .catalog-cover-copy,
.catalog-card.is-preview-active .catalog-cover-meta {
    opacity: 0;
    transform: translateY(8px);
}

.catalog-cover-copy {
    left: 22px;
    right: 22px;
    bottom: 86px;
    z-index: 3;
    display: grid;
    gap: 2px;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    line-height: 0.94;
    text-shadow: 0 10px 22px rgba(10, 28, 48, 0.32);
}

.catalog-card-program .catalog-cover-copy {
    color: #edf11f;
    font-size: clamp(46px, 5.2vw, 45px);
}

.catalog-card-elearning .catalog-cover-copy {
    max-width: 70%;
    color: #ffffff;
    font-size: clamp(28px, 3.35vw, 44px);
}

.catalog-card-leadership .catalog-cover-copy {
    max-width: 70%;
    color: #fff;
    font-size: clamp(28px, 3.35vw, 44px);
}

.catalog-cover-meta {
    left: 22px;
    right: 22px;
    bottom: 34px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    text-shadow: 0 8px 18px rgba(10, 28, 48, 0.36);
}

.catalog-hover-preview {
    inset: 0;
    z-index: 4;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 0;
    opacity: 0;
    transform: scale(0.94);
    text-decoration: none;
    transition: opacity var(--motion-fast) var(--easing-smooth), transform var(--motion-fast) var(--easing-smooth);
}

.catalog-hover-preview-button {
    width: 100%;
    background: transparent;
    cursor: pointer;
}

.catalog-hover-preview-link {
    color: inherit;
}

.catalog-card:hover .catalog-hover-preview,
.catalog-card:focus-within .catalog-hover-preview,
.catalog-card.is-preview-active .catalog-hover-preview {
    opacity: 1;
    transform: none;
}

.catalog-hover-preview-shell,
.catalog-hover-preview-icon,
.catalog-hover-preview-copy {
    position: relative;
    z-index: 1;
}

.catalog-hover-preview-shell {
    display: grid;
    justify-items: center;
    gap: 14px;
    width: min(64%, 224px);
}

.catalog-hover-preview-icon {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-bottom: 0;
    color: #ffffff;
}

.catalog-hover-preview-icon-mark {
    display: inline-flex;
    width: 42px;
    height: 56px;
    color: #ffffff;
}

.catalog-hover-preview-icon-mark svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.catalog-hover-preview-icon-label {
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 1;
}

.catalog-hover-preview-copy {
    display: grid;
    justify-items: center;
    gap: 2px;
    width: 100%;
    color: #ffffff;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    text-align: center;
    line-height: 0.96;
}

.catalog-hover-preview-copy span {
    display: block;
}

.catalog-card-program .catalog-hover-preview-copy {
    font-size: clamp(22px, 2vw, 30px);
}

.catalog-card-elearning .catalog-hover-preview-copy {
    font-size: clamp(18px, 1.7vw, 23px);
}

.catalog-card-leadership .catalog-hover-preview-copy {
    font-size: clamp(18px, 1.7vw, 24px);
}

.catalog-body {
    padding: 14px 14px 18px;
}

.catalog-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.45;
}

.catalog-downloads {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-top: 10px;
}

.catalog-download {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.catalog-download-button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    font: inherit;
}

.catalog-download + .catalog-download {
    margin-left: 14px;
    padding-left: 14px;
}

.catalog-download + .catalog-download::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 14px;
    background: rgba(23, 58, 97, 0.18);
    transform: translateY(-50%);
}

.catalog-download:hover,
.catalog-download:focus-visible {
    color: #0a4276;
}

.catalog-download-disabled {
    color: #70849a;
    opacity: 0.72;
    cursor: default;
}

.home-pdf-dialog {
    width: min(1120px, calc(100vw - 32px));
    padding: 0;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 70px rgba(17, 44, 82, 0.24);
}

.home-pdf-dialog::backdrop {
    background: rgba(12, 31, 52, 0.56);
}

.home-pdf-dialog-close-row {
    display: flex;
    justify-content: flex-end;
    padding: 10px 10px 0;
}

.home-pdf-dialog-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--panel);
    color: #607289;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.home-pdf-dialog-body {
    display: grid;
    grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
    min-height: min(80vh, 760px);
}

.home-pdf-dialog-content {
    padding: 8px 24px 26px;
    border-right: 1px solid var(--line);
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
}

.home-pdf-dialog-content h3 {
    margin: 8px 0 0;
    color: #173a61;
    font-size: 28px;
    line-height: 1.08;
}

.home-pdf-dialog-copy {
    margin: 12px 0 0;
    color: #4e6581;
    font-size: 14px;
    line-height: 1.75;
}

.home-pdf-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.home-pdf-dialog-actions [hidden] {
    display: none;
}

.home-pdf-dialog-viewer {
    min-height: 100%;
    display: grid;
    background: linear-gradient(180deg, #eef5fc 0%, #e3edf8 100%);
}

.home-pdf-dialog-object {
    width: 100%;
    height: 100%;
    min-height: min(78vh, 720px);
    border: 0;
    display: block;
    background: #fff;
}

.home-pdf-dialog-fallback {
    min-height: min(78vh, 720px);
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 16px;
    padding: 32px;
    color: #4e6581;
    text-align: center;
}

.home-pdf-dialog-fallback p {
    margin: 0;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.7;
}

.catalog-epaper-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(255, 229, 0, 0.16), transparent 18%),
        radial-gradient(circle at top left, rgba(0, 91, 170, 0.16), transparent 26%),
        linear-gradient(180deg, #eef4fb 0%, #dbe6f2 100%);
}

.catalog-epaper-shell {
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto auto minmax(0, 1fr);
}

.catalog-epaper-topbar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    background: linear-gradient(135deg, #005baa 0%, #0a4c88 100%);
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(7, 31, 58, 0.24);
}

.catalog-epaper-topbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.catalog-epaper-topbar-brand img {
    display: block;
    width: 168px;
    height: auto;
}

.catalog-epaper-topbar-copy {
    min-width: 0;
}

.catalog-epaper-topbar-copy .eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

.catalog-epaper-topbar-copy h1 {
    margin: 8px 0 0;
    color: #ffffff;
    font-size: clamp(24px, 2vw, 38px);
    line-height: 1.06;
}

.catalog-epaper-status {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
}

.catalog-epaper-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalog-epaper-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(17, 44, 82, 0.08);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
}

.catalog-epaper-toolbar-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.catalog-epaper-toolbar-group-spacer {
    margin-left: auto;
}

.catalog-epaper-button,
.catalog-epaper-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(17, 44, 82, 0.12);
    background: #ffffff;
    color: #173a61;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(17, 44, 82, 0.08);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.catalog-epaper-button:hover,
.catalog-epaper-button:focus-visible,
.catalog-epaper-link:hover,
.catalog-epaper-link:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(17, 44, 82, 0.12);
}

.catalog-epaper-link-primary {
    background: #005baa;
    border-color: #005baa;
    color: #ffffff;
}

.catalog-epaper-button-icon {
    min-width: 42px;
    padding: 0;
    font-size: 18px;
}

.catalog-epaper-page-input {
    width: 76px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(17, 44, 82, 0.14);
    border-radius: 14px;
    background: #ffffff;
    color: #173a61;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
}

.catalog-epaper-page-total,
.catalog-epaper-zoom-value,
.catalog-epaper-status-text {
    color: #4e6581;
    font-size: 14px;
    font-weight: 700;
}

.catalog-epaper-body {
    min-height: 0;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
}

.catalog-epaper-thumbnails {
    min-height: 0;
    padding: 20px;
    overflow-y: auto;
    border-right: 1px solid rgba(17, 44, 82, 0.08);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(12px);
}

.catalog-epaper-thumbnails-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.catalog-epaper-thumbnails-header h2 {
    margin: 0;
    color: #173a61;
    font-size: 26px;
}

.catalog-epaper-thumbnails-list {
    display: grid;
    gap: 18px;
}

.catalog-epaper-thumbnail {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(17, 44, 82, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 16px 36px rgba(17, 44, 82, 0.08);
    cursor: pointer;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.catalog-epaper-thumbnail.is-active {
    border-color: rgba(0, 91, 170, 0.32);
    box-shadow: 0 18px 38px rgba(0, 91, 170, 0.16);
    transform: translateY(-1px);
}

.catalog-epaper-thumbnail-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.catalog-epaper-thumbnail-preview-single {
    grid-template-columns: 1fr;
}

.catalog-epaper-thumbnail-page {
    position: relative;
    min-height: 152px;
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f7fb 0%, #dee6f0 100%);
}

.catalog-epaper-thumbnail-page canvas,
.catalog-epaper-page-canvas canvas {
    display: block;
    width: 100%;
    height: auto;
}

.catalog-epaper-thumbnail-label {
    color: #173a61;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.catalog-epaper-stage {
    min-width: 0;
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 28px 28px 18px;
}

.catalog-epaper-stage-scroll {
    min-height: 0;
    overflow: auto;
    padding: 0 8px 8px;
}

.catalog-epaper-flip-shell {
    --catalog-epaper-zoom: 1;
    min-height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 16px 16px;
    transform: scale(var(--catalog-epaper-zoom));
    transform-origin: top center;
    transition: transform 180ms ease;
}

.catalog-epaper-flipbook {
    width: min(100%, 1220px);
    margin: 0 auto;
}

.catalog-epaper-flip-page {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 1) 100%);
    box-shadow:
        inset 0 0 0 1px rgba(16, 44, 82, 0.08),
        0 24px 60px rgba(17, 44, 82, 0.18);
}

.catalog-epaper-flip-page::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 14px;
    background: linear-gradient(90deg, rgba(17, 44, 82, 0.1), rgba(17, 44, 82, 0));
    pointer-events: none;
    z-index: 2;
}

.catalog-epaper-flip-page[data-density="hard"] {
    background:
        linear-gradient(135deg, rgba(0, 91, 170, 0.08), rgba(255, 229, 0, 0.1)),
        linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(245, 249, 253, 1) 100%);
}

.catalog-epaper-flip-canvas {
    display: block;
    width: 100%;
    height: auto;
}

.catalog-epaper-flip-page-number {
    position: absolute;
    right: 18px;
    bottom: 14px;
    min-width: 36px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #173a61;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 10px 24px rgba(17, 44, 82, 0.12);
    z-index: 3;
}

.catalog-epaper-flipbook .stf__parent {
    margin: 0 auto;
}

.catalog-epaper-flipbook .stf__wrapper {
    filter: drop-shadow(0 24px 48px rgba(17, 44, 82, 0.16));
}

.catalog-epaper-flipbook .stf__item.--left::after,
.catalog-epaper-flipbook .stf__item.--right::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(17, 44, 82, 0.02));
}

.catalog-epaper-bottombar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 18px;
}

.catalog-epaper-empty,
.catalog-epaper-loading,
.catalog-epaper-error {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 32px;
    color: #4e6581;
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
}

.catalog-epaper-error strong {
    display: block;
    margin-bottom: 8px;
    color: #173a61;
    font-size: 20px;
}

.catalog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    color: var(--muted);
    font-size: 12px;
}

.categories-strip {
    background: linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.categories-grid,
.feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
}

.category-card,
.sidebar-card,
.timeline-item,
.metric,
.page-hero-stat,
.travel-card,
.venue-highlight {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(28, 45, 74, 0.04);
}

.category-card .ghost-button {
    margin-top: 16px;
    min-height: 36px;
}

.testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.testimonial {
    padding: 30px 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(28, 45, 74, 0.05);
    text-align: center;
}

.testimonial-head {
    display: flex;
    justify-content: center;
    margin-bottom: 14px;
}

.testimonial-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 12px 24px rgba(17, 44, 82, 0.12);
    background: linear-gradient(135deg, #dce9f8 0%, #b7d0ef 100%);
}

.testimonial-quote {
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 36px;
    line-height: 1;
}

.testimonial-author {
    margin-top: 18px;
    color: #42516a;
    font-size: 13px;
    font-weight: 700;
}

.testimonial-role {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.slider-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c4d1df;
}

.slider-dots span.active {
    width: 20px;
    border-radius: 999px;
    background: var(--blue);
}

.logos-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: center;
    margin-top: 28px;
    gap: 18px;
}

.logo-pill {
    min-height: 54px;
    display: grid;
    place-items: center;
    padding: 12px 8px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
    color: #67768d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.contact-grid,
.detail-grid {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: start;
    margin-top: 24px;
}

.contact-form,
.advisor-card,
.benefit-card,
.newsletter,
.map-card,
.detail-section,
.course-overview,
.price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 14px 34px rgba(28, 45, 74, 0.05);
}

.contact-form,
.detail-section,
.course-overview,
.price-card {
    padding: 28px;
}

.form-grid,
.info-grid,
.schedule-grid,
.venue-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.form-grid .full,
.info-grid .full,
.schedule-grid .full,
.venue-facts .full {
    grid-column: 1 / -1;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fdfefe;
    padding: 15px 16px;
    font: inherit;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #94b9e4;
    box-shadow: 0 0 0 4px rgba(0, 91, 170, 0.08);
}

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

.consent {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    color: var(--muted);
    font-size: 12px;
}

.consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.consent input {
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin: 2px 0 0;
    padding: 0;
}

.advisor-card {
    padding: 24px;
    position: relative;
}

.advisor-bubble {
    position: absolute;
    top: -14px;
    right: 18px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    background: linear-gradient(180deg, #60a9ef, #3f85ce);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(0, 91, 170, 0.22);
}

.advisor-portrait {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    display: block;
    margin: 18px auto 22px;
    object-fit: cover;
    border: 4px solid #fff;
    background: linear-gradient(180deg, #dce9f7, #b9d0e8);
    box-shadow: 0 14px 28px rgba(19, 42, 74, 0.12);
}

.advisor-name {
    margin: 0;
    font-size: 20px;
}

.advisor-meta {
    margin: 14px 0 0;
    display: grid;
    gap: 10px;
    color: #42516a;
    font-size: 14px;
}

.advisor-meta-item {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.advisor-meta-item .ui-icon {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--blue);
}

.advisor-meta-item strong {
    display: block;
    font-size: 12px;
    color: #214265;
}

.advisor-meta span {
    display: block;
    margin-top: 2px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.advisor-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.advisor-social a,
.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--blue-border);
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 12px;
    font-weight: 700;
}

.company-profile-card,
.company-help-card {
    margin-top: 20px;
}

.company-profile-card h3 {
    margin: 0;
    font-size: 20px;
}

.company-profile-copy {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.company-profile-list,
.company-profile-partner-grid {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.company-profile-item,
.company-profile-partner {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #f9fbfe 0%, #f1f6fc 100%);
    border: 1px solid var(--blue-border);
}

.company-profile-item > div,
.company-profile-partner > div {
    min-width: 0;
}

.company-profile-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #0f5ca9, #0b4d93);
    color: #fff;
    box-shadow: 0 10px 20px rgba(15, 92, 169, 0.18);
}

.company-profile-icon .ui-icon {
    width: 16px;
    height: 16px;
}

.company-profile-item strong,
.company-profile-partner strong {
    display: block;
    color: #214265;
    font-size: 11px;
}

.company-profile-item > div > span:last-child,
.company-profile-partner > div > span:last-child {
    display: block;
    margin-top: 4px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.benefits-grid {
    grid-template-columns: 1fr 0.9fr 1.15fr;
    align-items: start;
    margin-top: 20px;
}

.benefit-card,
.newsletter,
.map-card {
    padding: 24px;
}

.benefit-list,
.timeline {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.benefit-list li,
.timeline li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.benefit-list li::before,
.timeline li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.newsletter {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
}

.newsletter input {
    background: #f6f9fd;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.map-box {
    position: relative;
    min-height: 230px;
    background: linear-gradient(90deg, transparent 48px, rgba(133, 154, 180, 0.16) 48px 50px, transparent 50px), linear-gradient(transparent 48px, rgba(133, 154, 180, 0.16) 48px 50px, transparent 50px), linear-gradient(135deg, #eef3f8 0%, #dde8f3 100%);
    background-size: 60px 60px, 60px 60px, auto;
}

.map-frame {
    min-height: 260px;
    background: linear-gradient(135deg, #eef3f8 0%, #dde8f3 100%);
}

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

.map-road {
    position: absolute;
    background: #ffffff;
    border: 3px solid #d3dce7;
    border-radius: 999px;
}

.map-road.road-one {
    left: 18px;
    right: 22px;
    top: 108px;
    height: 20px;
    transform: rotate(-4deg);
}

.map-road.road-two {
    left: 170px;
    top: 18px;
    bottom: 16px;
    width: 22px;
    transform: rotate(8deg);
}

.map-road.road-three {
    right: 54px;
    top: 24px;
    bottom: 26px;
    width: 18px;
    transform: rotate(-10deg);
}

.map-pin {
    position: absolute;
    left: 56%;
    top: 38%;
    width: 24px;
    height: 24px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    background: #ef4438;
    box-shadow: 0 12px 24px rgba(239, 68, 56, 0.25);
}

.map-pin::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    background: #fff;
}

.location-note {
    padding: 18px 24px 22px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.location-name {
    color: var(--text);
    font-weight: 600;
}

.location-note a {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.location-note a:hover,
.location-note a:focus-visible {
    text-decoration: underline;
}

.main-footer {
    padding: 34px 0 50px;
    border-top: 1px solid var(--line);
}

.footer-columns {
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
}

.footer-column {
    min-width: 0;
}

.footer-column h4 {
    margin: 0 0 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #44526a;
}

.footer-links {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.footer-social {
    margin-top: 14px;
    gap: 10px;
}

.footer-social a {
    text-decoration: none;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-brand-mark {
    margin-top: 16px;
}

.footer-brand-mark img {
    display: block;
    width: min(100%, 150px);
    height: auto;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.admin-auth-page,
.admin-page {
    min-height: 100vh;
    background:
    radial-gradient(circle at top left, rgba(0, 91, 170, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(229, 239, 0, 0.2), transparent 20%),
    linear-gradient(180deg, #eff5fb 0%, #dfeaf6 100%);
}

.admin-auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 18px;
}

.admin-auth-card,
.admin-header-card,
.admin-create-card,
.admin-summary-card,
.admin-table-shell,
.admin-section {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(149, 178, 209, 0.26);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(23, 50, 86, 0.08);
}

.admin-auth-card {
    width: min(100%, 520px);
    padding: 34px;
}

.admin-auth-kicker,
.admin-sidebar-kicker,
.admin-header-kicker,
.admin-section-kicker {
    display: inline-block;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-auth-brand h1,
.admin-section-header h3,
.admin-header-card h2,
.admin-dialog-header h3 {
    margin: 10px 0 10px;
    color: #16324f;
}

.admin-auth-brand p,
.admin-header-card p,
.admin-sidebar-top p,
.admin-summary-card p,
.admin-dialog-header p {
    margin: 0;
    color: #556579;
    line-height: 1.7;
}

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

.admin-auth-form {
    margin-top: 24px;
}

.admin-auth-form label,
.admin-form-grid label,
.admin-dialog-form label {
    display: grid;
    gap: 8px;
}

.admin-auth-form span,
.admin-form-grid span,
.admin-dialog-form span,
.admin-create-card h4,
.admin-summary-card h4,
.admin-auth-footnote span,
.admin-field-label {
    color: #35506d;
    font-size: 13px;
}

.admin-auth-footnote {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.admin-auth-footnote strong {
    color: #17324d;
}

.admin-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    max-width: 1720px;
    margin: 0 auto;
}

.admin-shell-editor {
    grid-template-columns: 280px minmax(0, 980px);
    align-items: start;
}

.admin-sidebar {
    position: sticky;
    top: 24px;
    align-self: start;
    display: grid;
    gap: 18px;
    padding: 28px 22px;
    border-radius: 28px;
    background: linear-gradient(180deg, #133555 0%, #0f2840 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(16, 37, 60, 0.24);
}

.admin-sidebar-top h1 {
    margin: 10px 0 8px;
    font-size: 30px;
}

.admin-sidebar-top p {
    color: rgba(255, 255, 255, 0.72);
}

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

.admin-nav-link {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-nav-link:hover,
.admin-nav-link.is-active {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    transform: translateX(2px);
}

.admin-logout-form .outline-button {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    background: transparent;
}

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

.admin-header-card {
    padding: 28px;
    display: grid;
    gap: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 0.98) 100%);
}

.admin-stat-grid,
.admin-summary-grid,
.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.admin-stat-card,
.admin-summary-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(149, 178, 209, 0.22);
}

.admin-stat-card strong {
    display: block;
    color: #15324f;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 30px;
}

.admin-stat-card span {
    color: #59708a;
    font-size: 13px;
}

.admin-section {
    display: grid;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.52);
}

.admin-section.is-featured {
    background: rgba(255, 255, 255, 0.82);
}

.admin-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.admin-toolbar-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-filter-input {
    min-width: min(100%, 360px);
    background: rgba(255, 255, 255, 0.96);
}

.admin-create-card {
    padding: 24px;
}

.admin-create-card h4 {
    margin: 0 0 18px;
    font-size: 18px;
    color: #15324f;
}

.admin-form-helper-copy {
    margin: 0 0 18px;
    color: #5a6f86;
    line-height: 1.7;
}

.admin-create-card-narrow {
    max-width: 720px;
}

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

.admin-form-span-2 {
    grid-column: span 2;
}

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

.admin-learner-session-card.is-submitting {
    opacity: 0.72;
    pointer-events: none;
}

.admin-learner-session-card button[disabled] {
    opacity: 0.7;
    cursor: wait;
}

.admin-inline-field-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
}

.admin-inline-button {
    min-width: 122px;
}

.admin-course-picker {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(15, 92, 169, 0.14);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(237, 245, 254, 0.85) 0%, rgba(255, 255, 255, 0.96) 100%);
}

.admin-course-picker input[type="search"] {
    padding-right: 44px;
    background-image: linear-gradient(transparent, transparent), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='11' cy='11' r='6.5' fill='none' stroke='%23005baa' stroke-width='2'/%3E%3Cpath d='M16 16l4.5 4.5' fill='none' stroke='%23005baa' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 0, right 14px center;
    background-size: auto, 16px 16px;
}

.admin-field-hint {
    color: #5a6f86;
    font-size: 12px;
    line-height: 1.6;
}

.admin-field-hint.is-error {
    color: #8f4135;
}

.admin-field-hint.is-success {
    color: #246340;
}

.admin-upload-card {
    display: grid;
    gap: 16px;
    padding: 20px;
    border: 1px dashed rgba(15, 92, 169, 0.26);
    border-radius: 20px;
    background: rgba(233, 242, 251, 0.44);
}

.admin-upload-card-header {
    display: grid;
    gap: 6px;
}

.admin-upload-link {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    word-break: break-all;
}

.admin-image-preview {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border-radius: 18px;
    border: 1px solid rgba(15, 92, 169, 0.16);
    background: linear-gradient(180deg, rgba(233, 242, 251, 0.9), rgba(244, 248, 252, 0.95));
    overflow: hidden;
}

.admin-image-preview.has-image {
    display: flex;
}

.admin-image-preview-media {
    display: block;
    width: 100%;
    max-height: 240px;
    object-fit: cover;
}

.admin-inline-code {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: #e9f2fb;
    color: #0f5ca9;
    font-size: 12px;
    line-height: 1.2;
}

.admin-table-shell {
    overflow: hidden;
}

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

.admin-table thead {
    background: rgba(15, 92, 169, 0.06);
}

.admin-table th,
.admin-table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(149, 178, 209, 0.22);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #4f6986;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-table td strong,
.admin-detail-item strong {
    display: block;
    color: #15324f;
    font-size: 15px;
}

.admin-table td span,
.admin-detail-item span {
    color: #5a6f86;
    line-height: 1.6;
}

.admin-table tbody tr:hover {
    background: rgba(15, 92, 169, 0.05);
}

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

.admin-table-actions form {
    margin: 0;
}

.admin-certificate-qr-link {
    display: inline-flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    color: inherit;
    text-decoration: none;
}

.admin-certificate-qr-image {
    display: block;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    border: 1px solid rgba(149, 178, 209, 0.35);
    background: #ffffff;
    padding: 6px;
}

.admin-danger-button {
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(151, 71, 59, 0.18);
    border-radius: 999px;
    background: rgba(255, 241, 238, 0.98);
    color: #97473b;
    font-weight: 700;
}

.admin-notice {
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.admin-notice.is-success {
    background: rgba(228, 241, 231, 0.96);
    border: 1px solid rgba(101, 146, 99, 0.2);
    color: #2d5a33;
}

.admin-notice.is-error {
    background: rgba(253, 236, 233, 0.96);
    border: 1px solid rgba(151, 71, 59, 0.2);
    color: #8f4135;
}

.admin-editor {
    position: relative;
    border: 1px solid rgba(149, 178, 209, 0.28);
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
}

.admin-editor:focus-within {
    border-color: rgba(15, 92, 169, 0.48);
    box-shadow: 0 0 0 4px rgba(15, 92, 169, 0.12);
}

.admin-editor-toolbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 12px;
    border-bottom: 1px solid rgba(149, 178, 209, 0.18);
    background: rgba(15, 92, 169, 0.04);
}

.admin-editor .ql-toolbar.ql-snow,
.admin-editor .ql-container.ql-snow {
    border: 0;
}

.admin-editor-toolbar .ql-formats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 0;
    padding-right: 10px;
    border-right: 1px solid rgba(149, 178, 209, 0.18);
}

.admin-editor-toolbar .ql-formats:last-child {
    padding-right: 0;
    border-right: 0;
}

.admin-editor-toolbar button,
.admin-editor-toolbar .ql-picker {
    min-height: 36px;
    border-radius: 12px;
}

.admin-editor-toolbar button {
    padding: 0 12px;
    border: 1px solid rgba(149, 178, 209, 0.24);
    background: #fff;
    color: #24466d;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.admin-editor-toolbar button:hover,
.admin-editor-toolbar button:focus,
.admin-editor-toolbar .ql-picker:hover,
.admin-editor-toolbar .ql-picker.ql-expanded {
    color: #0f5ca9;
}

.admin-editor-toolbar button.ql-active {
    border-color: #0f5ca9;
    background: #0f5ca9;
    color: #fff;
}

.admin-editor-toolbar .ql-stroke {
    stroke: currentColor;
}

.admin-editor-toolbar .ql-fill {
    fill: currentColor;
}

.admin-editor-surface {
    min-height: 260px;
    position: relative;
    z-index: 1;
    padding: 18px;
    color: #223048;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.7;
    cursor: text;
    outline: none;
    background: #fff;
}

.admin-editor-surface:empty::before {
    content: 'Start writing here...';
    color: #7b8da2;
}

.admin-editor-surface h2,
.admin-editor-surface h3,
.admin-editor-surface h4,
.admin-editor .ql-editor h2,
.admin-editor .ql-editor h3,
.admin-editor .ql-editor h4 {
    color: #214265;
    line-height: 1.35;
}

.admin-editor-surface ul,
.admin-editor-surface ol,
.admin-editor .ql-editor ul,
.admin-editor .ql-editor ol {
    padding-left: 1.4em;
}

.admin-editor-surface blockquote,
.admin-editor .ql-editor blockquote {
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid rgba(15, 92, 169, 0.2);
    color: #47627d;
}

.admin-editor .ql-editor {
    min-height: 260px;
    padding: 18px;
    color: #223048;
    font-family: inherit;
    font-size: 15px;
    line-height: 1.7;
}

.admin-editor .ql-editor.ql-blank::before {
    color: #7b8da2;
    font-style: normal;
}

.admin-dialog {
    width: min(840px, calc(100vw - 32px));
    border: 0;
    border-radius: 28px;
    padding: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 30px 60px rgba(21, 44, 82, 0.2);
}

.admin-dialog::backdrop {
    background: rgba(15, 44, 82, 0.3);
    backdrop-filter: blur(4px);
}

.admin-dialog-close-row {
    display: flex;
    justify-content: flex-end;
    padding: 16px 16px 0;
    margin: 0;
}

.admin-dialog-close {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 92, 169, 0.08);
    color: #0f5ca9;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.admin-dialog-header,
.admin-dialog-form {
    padding: 0 28px 28px;
}

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

.admin-detail-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(149, 178, 209, 0.18);
}

.admin-detail-item .ui-icon {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    color: #0f5ca9;
}

.admin-detail-section {
    display: grid;
    gap: 14px;
    padding: 0 28px 24px;
}

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

.admin-detail-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-detail-section-header strong {
    color: #15324f;
    font-size: 14px;
}

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

.admin-participant-card,
.admin-detail-facts,
.admin-detail-note-box {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(149, 178, 209, 0.18);
}

.admin-participant-card {
    display: grid;
    gap: 6px;
    padding: 16px;
}

.admin-participant-card strong,
.admin-detail-facts strong {
    color: #15324f;
}

.admin-participant-card span,
.admin-detail-facts span,
.admin-detail-note-box {
    color: #5a6f86;
    line-height: 1.6;
}

.admin-detail-facts {
    display: grid;
    gap: 0;
    overflow: hidden;
}

.admin-detail-facts div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(149, 178, 209, 0.16);
}

.admin-detail-facts div:last-child {
    border-bottom: 0;
}

.admin-detail-facts span {
    text-align: right;
}

.admin-detail-note-box {
    padding: 16px;
    white-space: pre-wrap;
}

.admin-learner-course-list {
    display: grid;
    gap: 16px;
}

.admin-learner-course-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(149, 178, 209, 0.22);
}

.admin-learner-course-card.is-pending {
    background: rgba(248, 251, 255, 0.94);
}

.admin-learner-session-list-shell {
    display: grid;
    gap: 14px;
    padding-top: 4px;
    border-top: 1px solid rgba(149, 178, 209, 0.22);
}

.admin-learner-session-list {
    display: grid;
    gap: 12px;
}

.admin-learner-session-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(238, 246, 252, 0.82);
    border: 1px solid rgba(149, 178, 209, 0.2);
}

.admin-learner-session-card h5 {
    margin: 0;
    color: #15324f;
}

.admin-learner-course-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.admin-learner-course-header strong {
    display: block;
    color: #15324f;
    margin-bottom: 4px;
}

.admin-learner-course-header span {
    color: #5a6f86;
    line-height: 1.5;
}

.admin-learner-course-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.admin-message-dialog {
    width: min(520px, calc(100vw - 32px));
}

.admin-message-dialog-body {
    display: grid;
    gap: 16px;
    padding: 30px;
}

.admin-message-dialog-body h3 {
    margin: 0;
    color: #15324f;
    font-size: 26px;
}

.admin-message-dialog-body p {
    margin: 0;
    color: #556579;
    line-height: 1.7;
}

.admin-message-dialog-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-message-dialog-badge.is-warning {
    background: rgba(229, 239, 0, 0.24);
    color: #5f6800;
}

.admin-message-dialog-badge.is-error {
    background: rgba(255, 240, 240, 0.96);
    color: #b03636;
}

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

@media (max-width: 1180px) {
    .admin-shell,
    .admin-shell-editor {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .admin-stat-grid,
    .admin-summary-grid,
    .admin-form-grid,
    .admin-detail-grid,
    .admin-detail-section-split,
    .admin-participant-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    .admin-shell {
        padding: 16px;
    }

    .admin-auth-card,
    .admin-header-card,
    .admin-create-card,
    .admin-summary-card,
    .admin-table-shell,
    .admin-section,
    .admin-sidebar,
    .admin-dialog {
        border-radius: 20px;
    }

    .admin-stat-grid,
    .admin-summary-grid,
    .admin-form-grid,
    .admin-detail-grid,
    .admin-detail-section-split,
    .admin-participant-list {
        grid-template-columns: 1fr;
    }

    .admin-form-span-2 {
        grid-column: span 1;
    }

    .admin-section-header,
    .admin-toolbar-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-inline-field-group {
        grid-template-columns: 1fr;
    }

    .admin-table-shell {
        overflow-x: auto;
    }

    .admin-dialog-header,
    .admin-detail-grid,
    .admin-dialog-form,
    .admin-detail-section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .admin-message-dialog-body {
        padding: 22px;
    }

    .admin-detail-facts div,
    .admin-detail-section-header,
    .admin-learner-course-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-learner-course-badges {
        justify-content: flex-start;
    }

    .admin-detail-facts span {
        text-align: left;
    }
}

.page-hero {
    padding: 26px 0 12px;
}

.page-hero-stage {
    position: relative;
    overflow: hidden;
    padding: 54px;
    border-radius: 0 0 32px 32px;
    border: 1px solid var(--blue-border);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.84) 36%, rgba(255, 255, 255, 0.44) 100%), radial-gradient(circle at right top, rgba(229, 239, 0, 0.3), transparent 24%), linear-gradient(135deg, #dce9f8 0%, #c0d7ee 55%, #b0cae6 100%);
    box-shadow: var(--shadow);
}

.page-hero-stage-home-background {
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.76) 34%, rgba(255, 255, 255, 0.4) 100%),
        radial-gradient(circle at right top, rgba(229, 239, 0, 0.28), transparent 24%),
        url('/images/hero-index.webp') center/cover no-repeat,
        linear-gradient(135deg, #dce9f8 0%, #c0d7ee 55%, #b0cae6 100%);
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    align-items: end;
}

.page-hero-copy h1 {
    margin: 0;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(38px, 6vw, 64px);
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: var(--blue);
}

.page-hero-copy p {
    max-width: 560px;
    margin: 18px 0 0;
    color: #3a4a64;
    font-size: 17px;
    line-height: 1.65;
}

.breadcrumbs {
    margin: 0 0 18px;
    color: #5e7089;
    font-size: 12px;
    gap: 10px;
}

.breadcrumbs span {
    color: var(--blue);
    font-weight: 700;
}

.page-hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
}

.page-hero-stat strong,
.metric strong {
    display: block;
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 30px;
    line-height: 1;
}

.page-hero-stat span,
.metric span {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.listing-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 26px;
}

.toolbar-copy {
    color: var(--muted);
    font-size: 14px;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.select-field {
    min-width: 200px;
    justify-content: space-between;
}

.select-field::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: auto;
}

.course-grid {
    margin-top: 24px;
}

.course-list-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
}

.course-list-status {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.course-list-actions .outline-button[hidden] {
    display: none;
}

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

.venue-hero-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 14px;
    margin-top: 22px;
}

.venue-filter-field {
    min-width: 220px;
    display: grid;
    gap: 8px;
}

.venue-filter-label {
    color: #35506d;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.venue-filter-reset[hidden] {
    display: none;
}

.venue-month-accordion {
    display: grid;
    gap: 18px;
}

.venue-month-section {
    display: grid;
    gap: 16px;
    scroll-margin-top: 140px;
}

.venue-month-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201, 125, 61, 0.9), rgba(53, 80, 109, 0.18));
}

.venue-month-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.venue-month-toggle::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #35506d;
    border-bottom: 2px solid #35506d;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.venue-month-toggle[aria-expanded='true']::after {
    transform: rotate(225deg);
}

.venue-month-title {
    margin: 0;
    white-space: nowrap;
    color: #35506d;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.venue-month-panel[hidden] {
    display: none;
}

.course-card .course-meta {
    margin-top: 12px;
}

.course-session-note {
    position: relative;
    display: grid;
    gap: 10px;
    margin-top: 12px;
    padding: 18px 18px 16px;
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 254, 0.98)),
        repeating-linear-gradient(
            180deg,
            rgba(0, 91, 170, 0.08) 0,
            rgba(0, 91, 170, 0.08) 1px,
            transparent 1px,
            transparent 30px
        );
    box-shadow: 0 14px 28px rgba(17, 44, 82, 0.08);
}

.course-session-note::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 45%);
    pointer-events: none;
}

.course-session-note-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.course-session-note-pin {
    flex: none;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--blue), var(--blue-strong));
    box-shadow: 0 4px 10px rgba(0, 91, 170, 0.22);
}

.course-session-note-title {
    margin: 0;
    color: var(--blue-strong);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 91, 170, 0.12);
}

.course-session-note-row {
    display: grid;
    gap: 4px;
}

.course-session-note-label {
    color: var(--blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.course-meta-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #35506d;
    font-size: 13px;
    line-height: 1.5;
}

.status-chip {
    background: rgba(255, 255, 255, 0.92);
}

.metrics-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 24px;
}

.chip-list {
    margin-top: 16px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: #fff;
    color: #35506d;
    font-size: 12px;
    font-weight: 700;
}

.detail-section + .detail-section,
.sidebar-card + .sidebar-card,
.price-card + .sidebar-card {
    margin-top: 18px;
}

.detail-section h2,
.sidebar-card h3,
.price-card h3,
.course-overview h2 {
    margin: 0;
    font-size: 24px;
}

.detail-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 14px;
}

.rich-content {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.rich-content > :first-child {
    margin-top: 0;
}

.rich-content > :last-child {
    margin-bottom: 0;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4 {
    margin: 20px 0 10px;
    color: var(--text);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    line-height: 1.2;
}

.rich-content p,
.rich-content ul,
.rich-content ol,
.rich-content blockquote,
.rich-content table {
    margin: 0 0 16px;
}

.rich-content ul,
.rich-content ol {
    padding-left: 22px;
}

.rich-content li {
    margin-bottom: 10px;
}

.rich-content strong {
    color: #2a4261;
}

.rich-content a {
    color: var(--blue);
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
}

.rich-content th,
.rich-content td {
    padding: 12px 14px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.rich-content th {
    background: var(--panel);
    color: #2a4261;
}

.detail-list li {
    padding: 16px 18px;
    border-radius: 16px;
    background: var(--panel);
    border: 1px solid var(--blue-border);
}

.detail-list strong,
.timeline-item strong,
.travel-card strong,
.venue-highlight strong,
.schedule-row strong {
    display: block;
    color: #2a4261;
    font-size: 15px;
}

.detail-list span,
.schedule-row span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.office-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
}
.office-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
}
.office-map-frame,
.office-map-box {
    min-height: 160px;
    border-radius: 16px;
    overflow: hidden;
}
.office-map-frame iframe {
    min-height: 160px;
}
.office-map-box {
    min-height: 160px;
}
.office-card-main {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    border-color: rgba(15, 92, 169, 0.22);
    box-shadow: 0 12px 26px rgba(15, 92, 169, 0.08);
}
.office-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.office-card-head .eyebrow {
    margin: 0;
}
.office-card strong {
    display: block;
    color: #2a4261;
    font-size: 18px;
}
.office-building,
.office-card span {
    display: block;
    align-content: center;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.office-building {
    color: var(--text);
    font-weight: 600;
}
.office-card a {
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.office-card a:hover,
.office-card a:focus-visible {
    text-decoration: underline;
}

.schedule-grid {
    margin-top: 20px;
}

.schedule-row {
    padding: 18px;
    border-radius: 18px;
    background: #fff;
}

.price-value {
    display: block;
    margin-top: 12px;
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 42px;
    line-height: 1;
}

.price-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.pagination a.active {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
}

.venue-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    margin-top: 24px;
}

.error-page {
    padding: 28px 0 56px;
}

.error-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 24px;
    align-items: start;
}

.error-card {
    padding: 34px;
    border-radius: 28px;
    background: radial-gradient(circle at top right, rgba(229, 239, 0, 0.3), transparent 22%), linear-gradient(145deg, #ffffff 0%, #f5f9fe 100%);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(17, 44, 82, 0.08);
}

.error-status-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}

.error-status-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 92px;
    padding: 18px;
    border-radius: 24px;
    background: var(--blue);
    color: #fff;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 38px;
    line-height: 1;
    box-shadow: 0 16px 28px rgba(0, 91, 170, 0.2);
}

.error-status-copy {
    color: #4c627f;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.error-card h1 {
    margin: 22px 0 0;
    color: #173a61;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.02;
}

.error-page-copy {
    max-width: 640px;
}

.error-page-actions {
    margin-top: 24px;
}

.error-sidebar {
    position: sticky;
    top: 112px;
    align-self: start;
}

.venue-sidebar {
    position: sticky;
    top: 112px;
    align-self: start;
}

.travel-grid,
.feature-grid {
    margin-top: 22px;
}

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

.venue-facts {
    margin-top: 20px;
}

.metrics-grid .metric,
.page-hero-stat,
.travel-card,
.venue-highlight {
    min-height: 100%;
}

.search-page-form {
    margin-top: 22px;
}

.search-results-toolbar {
    margin-bottom: 26px;
}

.search-empty-card {
    padding: 28px;
    border-radius: 24px;
}

.search-empty-title {
    margin: 0;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(24px, 2.2vw, 34px);
    line-height: 1.08;
}

.search-empty-copy {
    margin: 12px 0 0;
    max-width: 760px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.75;
}

.search-empty-tags {
    margin-top: 20px;
}

.course-detail-page {
    padding: 30px 0 32px;
}

.course-detail-breadcrumbs {
    margin-bottom: 18px;
}

.course-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.52fr) minmax(300px, 0.68fr);
    gap: 22px;
    align-items: start;
}

.course-detail-layout > div,
.course-detail-layout > aside {
    min-width: 0;
}

.course-detail-hero-card {
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(216, 226, 238, 0.95);
    background: #fff;
    box-shadow: 0 22px 54px rgba(28, 45, 74, 0.08);
}

.course-detail-hero-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 276px;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at 18% 18%, rgba(45, 123, 218, 0.92) 0 14%, transparent 15%), radial-gradient(circle at 28% 28%, rgba(45, 123, 218, 0.15) 0 23%, transparent 24%), radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.7) 0 18%, transparent 19%), linear-gradient(120deg, rgba(225, 235, 246, 0.96) 0%, rgba(198, 213, 231, 0.92) 42%, rgba(164, 186, 210, 0.96) 100%);
}

.course-detail-hero-visual.has-course-image {
    background: #dbe7f3;
}

.course-detail-hero-image {
    position: absolute;
    inset: 0;
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.course-detail-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 26%, rgba(255, 255, 255, 0.22) 56%, transparent 78%);
}

.course-detail-badge {
    min-height: 30px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--blue);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.course-detail-badge-group {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: calc(100% - 36px);
}

.course-detail-badge .ui-icon {
    width: 12px;
    height: 12px;
    margin-right: 6px;
    background: currentColor;
}

.course-detail-hero-badge-image {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 1;
    width: clamp(96px, 11vw, 148px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(18, 42, 73, 0.24));
}

.course-detail-hero-body {
    padding: 30px 30px 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.course-detail-hero-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 336px);
    gap: 28px;
    align-items: start;
}

.course-detail-title {
    margin: 0;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 0.98;
    color: #214265;
}

.course-detail-chips {
    margin-top: 14px;
}

.course-detail-action-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.course-detail-action-button {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: #29476b;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.course-detail-action-button:hover,
.course-detail-action-button.is-active {
    color: var(--blue);
    border-color: #9fc1e4;
    transform: translateY(-1px);
}

.course-detail-action-button[data-course-bookmark-button].is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 12px 24px rgba(31, 78, 140, 0.2);
}

.course-detail-action-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.course-detail-price-panel {
    position: relative;
    width: 100%;
    max-width: 336px;
    min-height: 316px;
    margin-left: auto;
    border-radius: 24px;
    perspective: 1200px;
    cursor: pointer;
}

.course-detail-price-panel:focus-visible {
    outline: none;
}

.course-detail-price-panel:focus-visible .course-detail-price-panel-inner {
    box-shadow: 0 0 0 4px rgba(15, 92, 169, 0.16);
}

.course-detail-price-panel-inner {
    position: relative;
    min-height: 316px;
    width: 100%;
    transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
    transform-style: preserve-3d;
}

.course-detail-price-panel.is-flipped .course-detail-price-panel-inner {
    transform: rotateY(180deg);
}

.course-detail-price-face {
    position: absolute;
    inset: 0;
    display: grid;
    align-content: start;
    gap: 16px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(211, 223, 236, 0.94);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-shadow: 0 18px 40px rgba(27, 67, 111, 0.12);
}

.course-detail-price-face-front {
    background: linear-gradient(180deg, #ffffff 0%, #f2f7fd 100%);
}

.course-detail-price-face-back {
    transform: rotateY(180deg);
    background: linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.course-detail-price-label {
    display: block;
    color: #5a6d86;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.course-detail-price-value {
    display: block;
    margin-top: -2px;
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(32px, 3.4vw, 40px);
    line-height: 0.94;
}

.course-detail-price-meta {
    display: grid;
    gap: 14px;
    margin-top: 4px;
}

.course-detail-price-meta-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 92, 169, 0.12);
    background: rgba(255, 255, 255, 0.82);
}

.course-detail-price-meta-item .ui-icon {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--blue);
}

.course-detail-price-meta-item strong {
    display: block;
    color: #214265;
    font-size: 12px;
}

.course-detail-price-meta-item span {
    display: block;
    margin-top: 2px;
    color: #4f6580;
    font-size: 13px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.course-detail-price-meta-item a {
    color: inherit;
}

.course-detail-price-button {
    width: 100%;
    margin-top: auto;
    justify-content: center;
}

.course-detail-media-strip {
    display: grid;
    grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.course-detail-media-card {
    min-height: 132px;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #f6f9fd 0%, #e3edf7 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    text-decoration: none;
}

.course-detail-media-card-featured {
    background: linear-gradient(135deg, #155cae 0%, #4d8fda 100%);
    color: #fff;
}

.course-detail-media-card strong {
    font-size: 15px;
    line-height: 1.35;
}

.course-detail-media-card span {
    color: inherit;
    opacity: 0.82;
    font-size: 12px;
    line-height: 1.5;
}

.course-detail-media-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.course-detail-media-meta-row {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    margin-top: 2px;
}

.course-detail-media-meta-row .ui-icon {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    color: currentColor;
}

.course-detail-sidebar {
    position: sticky;
    top: 112px;
}

.course-detail-help-widget {
    position: fixed;
    right: 18px;
    bottom: 25%;
    z-index: 35;
    display: flex;
    align-items: stretch;
    filter: drop-shadow(0 16px 30px rgba(17, 44, 82, 0.18));
}

.course-detail-help-widget-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    padding: 12px 0;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-strong) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.course-detail-help-widget-card {
    position: relative;
    width: min(296px, calc(100vw - 54px));
    border-radius: 0 12px 12px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface) 0%, var(--panel) 100%);
    border: 1px solid var(--blue-border);
}

.course-detail-help-widget-close {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    width: 24px;
    height: 24px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #6f7d92;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(17, 44, 82, 0.12);
}

.course-detail-help-widget-close:hover {
    color: var(--blue);
}

.course-detail-help-widget-main {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 12px 14px 10px;
}

.course-detail-help-widget-portrait {
    width: 68px;
    height: 58px;
    border-radius: 8px;
    display: block;
    object-fit: cover;
    background: var(--surface);
    border: 2px solid var(--surface);
}

.course-detail-help-widget-details {
    display: grid;
    gap: 8px;
    min-width: 0;
}

.course-detail-help-widget-link {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 8px;
    align-items: center;
    color: var(--text);
    font-size: 12px;
    line-height: 1.3;
}

.course-detail-help-widget-link .ui-icon {
    width: 14px;
    height: 14px;
    color: var(--blue);
}

.course-detail-help-widget-link span:last-of-type {
    overflow-wrap: anywhere;
}

.course-detail-help-widget-footer {
    padding: 10px 14px 11px;
    background: linear-gradient(180deg, var(--blue) 0%, var(--blue-strong) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.45;
}

.course-detail-sidebar-card + .course-detail-sidebar-card {
    margin-top: 18px;
}

.course-detail-booking-card {
    padding: 22px;
}

.course-detail-sidebar-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #52657f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.course-detail-sidebar-price {
    margin-top: 12px;
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 34px;
    line-height: 1;
}

.course-detail-sidebar-summary {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.course-detail-sidebar-summary-item {
    display: grid;
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: #42516a;
}

.course-detail-sidebar-summary-item .ui-icon {
    width: 16px;
    height: 16px;
    margin-top: 3px;
    color: var(--blue);
}

.course-detail-sidebar-summary-item strong {
    display: block;
    font-size: 12px;
    color: #214265;
}

.course-detail-sidebar-summary-item span {
    display: block;
    margin-top: 2px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.course-detail-sidebar-summary-item a {
    color: inherit;
}

.course-detail-sidebar-actions {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.course-detail-sidebar-actions .button,
.course-detail-sidebar-actions .outline-button {
    width: 100%;
}

.course-detail-sidebar-meta {
    display: grid;
    gap: 14px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.course-detail-sidebar-meta strong {
    display: block;
    color: #214265;
    font-size: 12px;
}

.course-detail-sidebar-meta span {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.course-detail-sidebar-meta-online {
    gap: 12px;
}

.course-detail-sidebar-meta-online-card {
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(237, 245, 254, 0.88) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 1px solid rgba(15, 92, 169, 0.14);
}

.course-detail-sidebar-meta-online-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 0;
}

.course-detail-sidebar-meta-online-item .ui-icon {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--blue);
}

.course-detail-sidebar-meta-online-item strong {
    display: block;
    font-size: 12px;
    color: #214265;
}

.course-detail-sidebar-meta-online-item span {
    display: block;
    margin-top: 4px;
    color: #35506d;
    font-size: 14px;
    line-height: 1.6;
}

.course-detail-sidebar-meta-online-date {
    padding-top: 12px;
    border-top: 1px solid rgba(15, 92, 169, 0.12);
}

.course-detail-sidebar-meta-online-actions {
    display: grid;
    gap: 10px;
}

.course-detail-sidebar-meta-online .button,
.course-detail-sidebar-meta-online .outline-button {
    width: 100%;
}

.course-detail-mini-schedule {
    display: grid;
    gap: 10px;
}

.course-detail-mini-row {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.course-detail-mini-row strong {
    display: block;
    color: #214265;
    font-size: 13px;
}

.course-detail-mini-row span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 12px;
}

.course-detail-content-section,
.course-detail-benefits-section,
.course-detail-outline-section,
.course-detail-faq-section,
.course-detail-certificate-section,
.course-detail-schedule-section,
.course-detail-testimonial-section,
.course-detail-related-section {
    margin-top: 20px;
}

.course-detail-certificate-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfdff 0%, #f2f7fc 100%);
    border: 1px solid var(--line);
}

.course-detail-certificate-icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background-color: var(--blue);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 58px;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3Cpath fill='black' d='M612.16 153.99l-265-85.68c-17.81-5.75-36.5-5.75-54.31 0l-265 85.68C10.94 159.46 0 174.38 0 192s10.94 32.54 27.84 38.01l29.71 9.6c-3.3 6.18-5.74 12.83-7.33 19.8C39.53 264.59 32 275.32 32 288c0 12.73 7.57 23.52 18.33 28.67L32.28 428.53C30.67 438.52 36.19 448 43.62 448h40.75c7.43 0 12.96-9.48 11.34-19.47L77.67 316.67C88.43 311.52 96 300.73 96 288c0-10.6-5.49-19.54-13.43-25.37 1.49-4.66 3.8-8.86 6.57-12.81l53.47 17.29L128 384c0 35.35 85.96 64 192 64s192-28.65 192-64l-14.61-116.89L612.16 230c16.9-5.46 27.84-20.38 27.84-38s-10.94-32.54-27.84-38.01zM479.48 381.86C468.72 393.19 414.04 416 320 416c-94.04 0-148.72-22.81-159.48-34.14l13.09-104.73 119.24 38.55c2.6.84 25.72 9.23 54.31 0l119.24-38.55 13.08 104.73zm122.8-182.28l-265 85.68c-11.31 3.66-23.25 3.66-34.56 0l-175.67-56.8 195.89-36.74c8.69-1.62 14.41-9.98 12.78-18.67-1.62-8.7-10.16-14.39-18.66-12.77l-203.78 38.2c-12.4 2.32-23.51 7.65-33.08 14.83l-42.49-13.74c-7.85-2.55-7.46-12.74 0-15.15l265-85.68c15.1-4.88 27.84-2.17 34.56 0l265 85.68c7.39 2.39 7.91 12.6.01 15.16z'/%3E%3C/svg%3E");
}

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

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

.course-detail-checklist {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.course-detail-checklist li {
    position: relative;
    padding-left: 24px;
    color: #41526b;
    font-size: 14px;
    line-height: 1.7;
}

.course-detail-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 14px;
    height: 14px;
    background: var(--blue);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9.55 18.2 4.8 13.45l1.4-1.4 3.35 3.35 8.25-8.25 1.4 1.4-9.65 9.65Z'/%3E%3C/svg%3E");
}

.course-detail-checklist.compact {
    margin-top: 14px;
}

.course-detail-rich-content {
    margin-top: 22px;
}

.course-detail-faq-list {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.course-detail-faq-item {
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
}

.course-detail-faq-item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    cursor: pointer;
    color: #214265;
    font-size: 14px;
    font-weight: 700;
}

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

.course-detail-faq-item summary::after {
    content: "+";
    color: var(--blue);
    font-size: 18px;
    line-height: 1;
}

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

.course-detail-faq-answer {
    padding: 0 20px 18px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
}

.course-detail-faq-answer p {
    margin: 0;
}

.course-detail-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.course-detail-schedule-meta {
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
}

.course-detail-schedule-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(15, 92, 169, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 245, 254, 0.92) 100%);
    box-shadow: 0 10px 24px rgba(17, 44, 82, 0.05);
}

.course-detail-schedule-tabs {
    margin-top: 22px;
}

.course-detail-schedule-tablist {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 4px;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 10px 24px rgba(17, 44, 82, 0.06);
}

.course-detail-schedule-tab {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: #214265;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.course-detail-schedule-tab.is-active {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 12px 22px rgba(15, 92, 169, 0.2);
}

.course-detail-schedule-panel {
    margin-top: 18px;
}

.course-detail-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(211, 223, 236, 0.95);
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 16px 34px rgba(17, 44, 82, 0.06);
}

.course-detail-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.course-detail-table th,
.course-detail-table td {
    padding: 18px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: middle;
    font-size: 13px;
}

.course-detail-table th {
    color: #5e7089;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.course-detail-table th:first-child,
.course-detail-table td:first-child {
    width: 23%;
    min-width: 188px;
}

.course-detail-table th:nth-child(2),
.course-detail-table td:nth-child(2) {
    width: 31%;
    min-width: 220px;
}

.course-detail-table th:nth-child(3),
.course-detail-table td:nth-child(3) {
    width: 14%;
    white-space: nowrap;
}

.course-detail-table th:nth-child(4),
.course-detail-table td:nth-child(4) {
    width: 16%;
    white-space: nowrap;
}

.course-detail-table th:last-child,
.course-detail-table td:last-child {
    width: 16%;
    text-align: right;
    white-space: nowrap;
}

.course-detail-table tbody tr:hover td {
    background: rgba(15, 92, 169, 0.04);
}

.course-detail-table tbody tr:last-child td {
    border-bottom: 0;
}

.course-detail-table td strong {
    display: block;
    color: #214265;
    font-size: 15px;
    line-height: 1.35;
}

.course-detail-table-button {
    min-height: 40px;
    padding: 0 16px;
    white-space: nowrap;
}

.course-detail-venue-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--blue);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    line-height: 1.55;
}

.course-detail-venue-dialog {
    width: min(760px, calc(100vw - 32px));
    padding: 0;
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(17, 44, 82, 0.22);
}

.course-detail-venue-dialog::backdrop {
    background: rgba(12, 31, 52, 0.44);
}

.course-detail-venue-dialog-close-row {
    display: flex;
    justify-content: flex-end;
    padding: 10px 10px 0;
}

.course-detail-venue-dialog-close {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 50%;
    background: var(--panel);
    color: #607289;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.course-detail-venue-dialog-body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 0;
}

.course-detail-venue-dialog-map {
    min-height: 320px;
    background: linear-gradient(135deg, #dce9f8 0%, #c1d6ed 100%);
}

.course-detail-venue-dialog-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.course-detail-venue-dialog-content {
    padding: 22px 24px 26px;
}

.course-detail-venue-dialog-content h3 {
    margin: 8px 0 0;
    color: #173a61;
    font-size: 28px;
    line-height: 1.08;
}

.course-detail-venue-dialog-building,
.course-detail-venue-dialog-address,
.course-detail-venue-dialog-details {
    margin: 12px 0 0;
    color: #4e6581;
    font-size: 14px;
    line-height: 1.75;
}

.course-detail-venue-dialog-building {
    color: #214265;
    font-weight: 700;
}

.course-detail-venue-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.course-detail-send-dialog {
    width: min(520px, calc(100vw - 32px));
}

.course-detail-send-dialog-content {
    padding: 0 24px 26px;
}

.course-detail-send-dialog-content h3 {
    margin: 8px 0 0;
    color: #173a61;
    font-size: 28px;
    line-height: 1.08;
}

.course-detail-send-dialog-copy {
    margin: 12px 0 0;
    color: #4e6581;
    font-size: 14px;
    line-height: 1.7;
}

.course-detail-send-dialog-form {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

.course-detail-send-dialog-form label {
    display: grid;
    gap: 8px;
}

.course-detail-send-dialog-form span {
    color: #214265;
    font-size: 13px;
    font-weight: 700;
}

.course-detail-send-dialog-form input {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #c9d8e8;
    border-radius: 14px;
    background: #fff;
    color: #173a61;
    font: inherit;
}

.course-detail-send-dialog-form input:focus {
    outline: none;
    border-color: #7ea8d6;
    box-shadow: 0 0 0 4px rgba(31, 78, 140, 0.12);
}

.course-detail-send-dialog-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.course-detail-send-dialog-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    line-height: 1.6;
}

.course-detail-send-dialog-status.is-success {
    background: #edf9f1;
    color: #1e6a3f;
}

.course-detail-send-dialog-status.is-error {
    background: #fff0f0;
    color: #9a2b2b;
}

.course-detail-send-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.course-detail-testimonials-grid {
    margin-top: 18px;
}

.course-detail-links-columns {
    align-items: start;
}

.course-detail-link-list {
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.course-detail-link-list a {
    color: var(--blue);
    font-size: 14px;
}

.registration-page,
.confirmation-page,
.verification-page {
    padding: 28px 0 56px;
}

.registration-shell,
.confirmation-shell,
.verification-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
    gap: 24px;
    align-items: start;
}

.registration-card,
.confirmation-card,
.verification-card,
.registration-summary-card {
    padding: 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 14px 36px rgba(17, 44, 82, 0.06);
}

.registration-card h1,
.confirmation-card h1,
.verification-card h1 {
    margin: 12px 0 0;
    color: var(--blue);
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.02;
    letter-spacing: -0.04em;
}

.registration-intro,
.confirmation-intro,
.verification-intro {
    max-width: 680px;
    color: #42536c;
    font-size: 15px;
    line-height: 1.8;
}

.registration-alert {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff4f4;
    border: 1px solid #ffd0d0;
    color: #8f2323;
    font-size: 13px;
    line-height: 1.7;
}

.registration-alert ul {
    margin: 0;
    padding-left: 18px;
}

.registration-mode-switch {
    display: inline-flex;
    gap: 10px;
    margin-top: 20px;
    padding: 6px;
    border-radius: 999px;
    background: var(--panel);
    border: 1px solid var(--line);
}

.registration-mode-switch a,
.registration-mode-switch span {
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.registration-mode-switch span {
    background: var(--blue);
    color: #fff;
}

.registration-mode-switch a {
    color: #214265;
}

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

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

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

.registration-participants-shell {
    gap: 16px;
}

.registration-participants-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.registration-participants-copy,
.registration-summary-copy {
    margin: 8px 0 0;
    color: #607289;
    font-size: 13px;
    line-height: 1.7;
}

.registration-coupon-message {
    margin-top: 10px;
    padding: 10px 12px;
    border: 1px solid rgba(0, 91, 170, 0.18);
    border-radius: 12px;
    background: rgba(0, 91, 170, 0.08);
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.registration-add-participant {
    min-height: 46px;
    white-space: nowrap;
}

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

.registration-participant-card {
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.registration-participant-card-primary {
    border-color: rgba(0, 91, 170, 0.18);
}

.registration-participant-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.registration-participant-card-header strong {
    color: #214265;
    font-size: 15px;
}

.registration-participant-card-header span {
    color: #607289;
    font-size: 12px;
}

.registration-remove-participant {
    min-height: 36px;
}

.registration-field label,
.registration-field-full label,
.registration-payment-title {
    color: #214265;
    font-size: 13px;
    font-weight: 700;
}

.registration-field input,
.registration-field textarea,
.registration-field select,
.registration-field-full input,
.registration-field-full textarea,
.registration-field-full select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: #fff;
    color: #214265;
    font: inherit;
    font-size: 14px;
}

.registration-field textarea,
.registration-field-full textarea {
    min-height: 140px;
    padding: 14px 16px;
    resize: vertical;
}

.registration-field input:focus,
.registration-field textarea:focus,
.registration-field select:focus,
.registration-field-full input:focus,
.registration-field-full textarea:focus,
.registration-field-full select:focus {
    outline: none;
    border-color: rgba(15, 92, 169, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 92, 169, 0.08);
}

.registration-field select,
.registration-field-full select {
    appearance: none;
    padding-right: 38px;
    background-image: linear-gradient(45deg, transparent 50%, #0f5ca9 50%), linear-gradient(135deg, #0f5ca9 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
}

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

.registration-choice {
    position: relative;
    display: grid;
    gap: 10px;
    min-height: 132px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
    cursor: pointer;
}

.registration-choice-compact {
    min-height: 112px;
}

.registration-choice:has(input:checked),
.registration-choice.is-selected {
    border-color: rgba(0, 91, 170, 0.34);
    box-shadow: inset 0 0 0 1px rgba(0, 91, 170, 0.22);
}

.registration-choice input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.registration-choice-header {
    position: relative;
    z-index: 2;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-size: 15px;
    font-weight: 700;
}

.registration-choice-copy {
    position: relative;
    z-index: 2;
    pointer-events: none;
    color: #55667d;
    font-size: 13px;
    line-height: 1.7;
}

.registration-billing-section {
    grid-column: 1 / -1;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}

.registration-form-grid-nested {
    margin-top: 0;
}

.registration-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.registration-note {
    color: #607289;
    font-size: 12px;
    line-height: 1.7;
}

.registration-summary-card {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 18px;
    background: linear-gradient(180deg, #f8fbff 0%, #eff6fc 100%);
}

.registration-summary-header {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 91, 170, 0.12);
}

.registration-summary-header strong {
    display: block;
    margin-top: 8px;
    color: var(--blue);
    font-size: 38px;
    line-height: 1;
}

.registration-summary-list,
.confirmation-details,
.verification-result-grid {
    display: grid;
    gap: 12px;
}

.registration-summary-item,
.confirmation-detail,
.verification-detail {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: #41526b;
    font-size: 14px;
    line-height: 1.7;
}

.registration-summary-item .ui-icon,
.confirmation-detail .ui-icon,
.verification-detail .ui-icon {
    margin-top: 3px;
    color: var(--blue);
}

.registration-summary-item strong,
.confirmation-detail strong,
.verification-detail strong {
    display: block;
    color: #214265;
    font-size: 12px;
    margin-bottom: 2px;
}

.registration-trust-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.registration-trust-list li {
    position: relative;
    padding-left: 24px;
    color: #42536c;
    font-size: 13px;
    line-height: 1.7;
}

.registration-trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    background: var(--blue);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 10 10A10 10 0 0 0 12 2Zm-1 14-4-4 1.4-1.4 2.6 2.6 4.6-4.6L17 10l-6 6Z'/%3E%3C/svg%3E");
}

.confirmation-badge,
.verification-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(0, 91, 170, 0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.confirmation-actions,
.verification-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.confirmation-status-note,
.verification-empty {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.7;
}

.confirmation-status-note.is-warning,
.verification-empty.is-missing {
    background: #fff8ec;
    border: 1px solid #ffd89a;
    color: #8b5b00;
}

.confirmation-status-note.is-success,
.verification-empty.is-idle {
    background: #f2fbf6;
    border: 1px solid #c6ecd3;
    color: #256043;
}

.verification-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    margin-top: 26px;
}

.verification-search-button {
    gap: 10px;
    min-width: 178px;
}

.verification-search-button-spinner {
    display: none;
}

.verification-search-button.is-loading .verification-search-button-label {
    opacity: 0.78;
}

.verification-search-button.is-loading .verification-search-button-spinner {
    display: inline-flex;
}

.verification-search-form input {
    min-height: 54px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid var(--line);
    font: inherit;
    font-size: 15px;
    color: #214265;
}

.verification-search-form input:focus {
    outline: none;
    border-color: rgba(15, 92, 169, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 92, 169, 0.08);
}

.verification-result-card {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.verification-certificate-shell {
    margin-top: 22px;
}

.verification-certificate-preview {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(17, 44, 82, 0.12);
    background: #fff;
    box-shadow: 0 18px 40px rgba(17, 44, 82, 0.08);
}

.verification-certificate-loading {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--motion-fast) var(--easing-smooth);
    z-index: 3;
}

.verification-certificate-preview.is-loading .verification-certificate-loading {
    opacity: 1;
}

.verification-loading-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 91, 170, 0.18);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: verificationSpinnerSpin 0.72s linear infinite;
}

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

.verification-certificate-image {
    display: block;
    width: 100%;
    height: auto;
}

.verification-certificate-copy {
    position: absolute;
    top: 15%;
    right: 7%;
    bottom: 15%;
    left: 39%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
    text-align: center;
    color: #1f2530;
    z-index: 2;
}

.verification-certificate-kicker {
    margin: 0;
    max-width: 32ch;
    color: #2a3340;
    font-size: clamp(10px, 0.98vw, 13px);
    font-weight: 500;
    line-height: 1.4;
}

.verification-certificate-lead {
    margin: 0;
    max-width: 42ch;
    color: #2a3340;
    font-size: clamp(10px, 0.98vw, 13px);
    font-weight: 500;
    line-height: 1.45;
}

.verification-certificate-name {
    margin: 0;
    color: #1d4b8f;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(19px, 2.3vw, 34px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.verification-certificate-course {
    margin: 0;
    max-width: 30ch;
    color: #2b2b2b;
    font-size: clamp(11px, 1.18vw, 15px);
    font-weight: 700;
    line-height: 1.45;
}

.verification-certificate-session,
.verification-certificate-outro {
    margin: 0;
    max-width: 40ch;
    color: #2a3340;
    line-height: 1.5;
}

.verification-certificate-session {
    font-size: clamp(10px, 1.04vw, 13px);
    font-weight: 500;
}

.verification-certificate-outro {
    max-width: 42ch;
    font-size: clamp(10px, 0.98vw, 13px);
}

.verification-certificate-barcode {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.verification-certificate-barcode-image {
    display: block;
    width: clamp(110px, 12vw, 155px);
    height: auto;
}

.verification-certificate-barcode-number {
    margin: 0;
    max-width: 34ch;
    color: #2a3340;
    font-size: clamp(9px, 0.85vw, 11px);
    line-height: 1.4;
}

.verification-help-card {
    display: grid;
    gap: 16px;
}

.verification-help-card h2,
.registration-summary-card h2,
.confirmation-aside-card h2 {
    margin: 0;
    color: #214265;
    font-size: 20px;
}

.confirmation-aside-card {
    display: grid;
    gap: 16px;
}

.apply-page {
    padding-top: 24px;
}

.apply-hero {
    position: relative;
    overflow: hidden;
}

.apply-hero::before,
.apply-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.apply-hero::before {
    width: 420px;
    height: 420px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(0, 91, 170, 0.16), rgba(0, 91, 170, 0));
}

.apply-hero::after {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(229, 239, 0, 0.18), rgba(229, 239, 0, 0));
}

.apply-hero .page-hero-grid {
    align-items: stretch;
}

.apply-hero-course-title {
    margin: 6px 0 0;
    color: var(--blue);
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.35;
}

.apply-hero-copy p:last-child {
    max-width: 720px;
    color: var(--muted);
    line-height: 1.8;
}

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

.apply-page-stat {
    min-height: 100%;
}

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

.apply-form-card,
.apply-aside-card,
.apply-trust-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.apply-form-card {
    position: relative;
    overflow: hidden;
}

.apply-form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #0f5ca9 0%, #4ba3f0 55%, #e5ef00 100%);
}

.apply-form-card h2,
.apply-aside-card h2,
.apply-trust-card h2 {
    margin: 0;
    color: #214265;
    font-size: 22px;
}

.apply-form-copy,
.apply-aside-copy {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.8;
}

.apply-notice,
.apply-alert {
    margin: 24px 0 0;
    padding: 16px 18px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.7;
}

.apply-notice {
    background: #f2fbf6;
    border: 1px solid #c6ecd3;
    color: #256043;
}

.apply-alert {
    background: #fff4f2;
    border: 1px solid #ffd1cb;
    color: #8d3427;
}

.apply-alert ul {
    margin: 0;
    padding-left: 18px;
}

.apply-form {
    margin-top: 28px;
}

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

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

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

.apply-field label,
.apply-field-full label {
    font-size: 13px;
    font-weight: 700;
    color: #214265;
}

.apply-field input,
.apply-field textarea,
.apply-field select,
.apply-field-full input,
.apply-field-full textarea,
.apply-field-full select {
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fbfdff;
    font: inherit;
    font-size: 15px;
    color: #214265;
}

.apply-field textarea,
.apply-field-full textarea {
    min-height: 140px;
    padding: 16px;
    resize: vertical;
}

.apply-field input:focus,
.apply-field textarea:focus,
.apply-field select:focus,
.apply-field-full input:focus,
.apply-field-full textarea:focus,
.apply-field-full select:focus {
    outline: none;
    border-color: rgba(15, 92, 169, 0.45);
    box-shadow: 0 0 0 4px rgba(15, 92, 169, 0.08);
}

.apply-file-shell {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px dashed #b5cbe4;
    border-radius: 18px;
    background: linear-gradient(180deg, #f9fbfe 0%, #f4f8fc 100%);
}

.apply-file-shell input[type="file"] {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.apply-file-copy,
.apply-field-note {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}
.apply-tag-picker {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(15, 92, 169, 0.12);
    border-radius: 20px;
    background: linear-gradient(180deg, #fbfdff 0%, #f4f8fc 100%);
}
.apply-tag-picker-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}
.apply-tag-counter {
    color: #35506d;
    font-size: 13px;
}
.apply-tag-counter.is-limit-reached {
    color: #0f5ca9;
}
.apply-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.apply-tag-option {
    position: relative;
    display: inline-flex;
}
.apply-tag-option input {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}
.apply-tag-option span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid rgba(15, 92, 169, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #214265;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, opacity 0.18s ease;
}
.apply-tag-option input:checked + span {
    border-color: #0f5ca9;
    background: #0f5ca9;
    color: #fff;
}
.apply-tag-option input:disabled + span {
    opacity: 0.42;
    cursor: not-allowed;
}
.apply-tag-option span:hover {
    transform: translateY(-1px);
}

.apply-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.apply-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.apply-meta-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.apply-aside-stack {
    display: grid;
    gap: 20px;
}

.apply-points,
.apply-trust-list {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.apply-points li,
.apply-trust-list li {
    position: relative;
    padding-left: 18px;
    color: #42536c;
    font-size: 14px;
    line-height: 1.8;
}

.apply-points li::before,
.apply-trust-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
}

.apply-specialisms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.apply-specialisms span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(0, 91, 170, 0.08);
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
}

.apply-trust-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.learner-auth-page,
.learner-dashboard-page {
    min-height: 100vh;
    background:
    radial-gradient(circle at top left, rgba(7, 82, 138, 0.12), transparent 32%),
    radial-gradient(circle at top right, rgba(0, 173, 181, 0.12), transparent 24%),
    linear-gradient(180deg, #f3f8fd 0%, #e8f2fb 100%);
}

.learner-auth-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 36px 20px;
}

.learner-auth-grid {
    width: min(1160px, 100%);
    display: grid;
    grid-template-columns: minmax(320px, 470px) minmax(0, 1fr);
    gap: 24px;
}

.learner-auth-grid-wide {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
}

.learner-auth-card,
.learner-hero-panel,
.learner-stat-card,
.learner-sidebar,
.learner-card,
.learner-course-card,
.learner-certificate-card {
    border: 1px solid rgba(128, 161, 197, 0.22);
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(18, 44, 77, 0.08);
}

.learner-auth-card,
.learner-card,
.learner-course-card,
.learner-certificate-card {
    background: rgba(255, 255, 255, 0.96);
}

.learner-auth-card,
.learner-hero-panel,
.learner-sidebar,
.learner-card {
    padding: 32px;
}

.learner-auth-card-accent,
.learner-sidebar {
    background:
    linear-gradient(155deg, rgba(16, 42, 67, 0.98) 0%, rgba(10, 76, 122, 0.96) 58%, rgba(7, 126, 139, 0.92) 100%);
    color: #ffffff;
}

.learner-auth-kicker,
.learner-section-kicker {
    display: inline-block;
    margin: 0;
    color: #83dddf;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.learner-auth-card h1,
.learner-auth-card h2,
.learner-hero-panel h1,
.learner-sidebar h2,
.learner-card h2,
.learner-course-card h3,
.learner-certificate-card h3 {
    margin: 12px 0 10px;
    color: #12314e;
}

.learner-auth-card-accent h1,
.learner-sidebar h2 {
    color: #ffffff;
}

.learner-auth-copy,
.learner-auth-header p,
.learner-hero-copy,
.learner-section-copy,
.learner-course-card p,
.learner-certificate-card p {
    margin: 0;
    color: #53657b;
    line-height: 1.75;
}

.learner-auth-card-accent .learner-auth-copy,
.learner-sidebar p,
.learner-sidebar a {
    color: rgba(255, 255, 255, 0.82);
}

.learner-auth-form,
.learner-form-grid {
    display: grid;
    gap: 16px;
}

.learner-auth-form {
    margin-top: 24px;
}

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

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

.learner-field span {
    color: #35506d;
    font-size: 13px;
}

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

.learner-inline-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.learner-auth-notice,
.learner-auth-errors {
    margin-top: 18px;
}

.learner-auth-notice {
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.learner-auth-notice.is-success {
    background: rgba(25, 135, 84, 0.12);
    color: #1f6b47;
}

.learner-auth-notice.is-error {
    background: rgba(176, 60, 44, 0.12);
    color: #943d31;
}

.learner-auth-notice.is-warning {
    background: #fff8ec;
    color: #8b5b00;
}

.learner-payment-reminder {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #fff8ec;
    border: 1px solid #ffd89a;
}

.learner-payment-reminder strong {
    display: block;
    color: #8b5b00;
    font-size: 15px;
}

.learner-payment-reminder p {
    margin: 6px 0 0;
    color: #715728;
    font-size: 14px;
    line-height: 1.6;
}

.learner-auth-errors {
    display: grid;
    gap: 8px;
    padding-left: 18px;
    color: #943d31;
    font-size: 14px;
}

.learner-section-errors {
    margin-bottom: 18px;
}

.learner-auth-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
    font-size: 14px;
}

.learner-auth-links a {
    color: var(--blue-strong);
    font-weight: 700;
}

.learner-auth-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.learner-auth-stat {
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.learner-auth-stat strong {
    display: block;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 28px;
}

.learner-auth-stat span,
.learner-auth-points li {
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.7;
}

.learner-auth-points {
    display: grid;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.learner-auth-points li {
    position: relative;
    padding-left: 18px;
}

.learner-auth-points li::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #83dddf;
}

.learner-hero {
    padding: 34px 0 12px;
}

.learner-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.9fr);
    gap: 24px;
    align-items: stretch;
}

.learner-hero-panel {
    background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(237, 247, 252, 0.98) 54%, rgba(223, 244, 246, 0.96) 100%);
}

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

.learner-stat-card {
    padding: 22px;
    background: rgba(255, 255, 255, 0.92);
}

.learner-stat-card strong {
    display: block;
    color: #0e456d;
    font-family: "GilroyExtraBold", "CerebriSans", sans-serif;
    font-size: 32px;
}

.learner-stat-card span {
    color: #557088;
    font-size: 13px;
}

.learner-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 24px;
    padding: 14px 0 52px;
    align-items: start;
}

.learner-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 22px;
    align-content: start;
}

.learner-sidebar-user {
    display: grid;
    gap: 8px;
}

.learner-sidebar form {
    margin: 0;
}

.learner-anchor-nav {
    display: grid;
    gap: 10px;
}

.learner-anchor-nav a {
    display: block;
    padding: 11px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 700;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.learner-anchor-nav a:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateX(2px);
}

.learner-logout-button {
    width: 100%;
    border-color: rgba(255, 255, 255, 0.34);
    color: #ffffff;
    background: transparent;
}

.learner-support-card {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.learner-main {
    display: grid;
    gap: 22px;
}

.learner-section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.learner-course-list,
.learner-certificate-list {
    display: grid;
    gap: 16px;
}

.learner-course-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    padding: 22px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fcff 100%);
}

.learner-course-meta,
.learner-certificate-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.learner-meta-chip,
.learner-certificate-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 91, 170, 0.08);
    color: #0c5c8f;
    font-size: 12px;
    font-weight: 700;
}

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

.learner-schedule-grid div {
    padding: 14px;
    border-radius: 16px;
    background: #eef6fc;
}

.learner-schedule-grid span,
.learner-progress-copy span {
    display: block;
    color: #5c7189;
    font-size: 12px;
}

.learner-schedule-grid strong,
.learner-progress-copy strong {
    display: block;
    margin-top: 6px;
    color: #12314e;
    font-size: 15px;
}

.learner-schedule-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
}

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

.learner-session-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(238, 246, 252, 0.86);
    border: 1px solid rgba(149, 178, 209, 0.2);
}

.learner-session-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.learner-session-head h4 {
    margin: 0;
    color: #12314e;
}

.learner-session-notes {
    margin: 14px 0 0;
    color: #5a6f86;
    line-height: 1.7;
    white-space: pre-wrap;
}

.learner-progress-block {
    margin-top: 18px;
}

.learner-progress-copy {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.learner-progress-bar {
    margin-top: 10px;
    height: 10px;
    border-radius: 999px;
    background: #dfebf8;
    overflow: hidden;
}

.learner-progress-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0b6ca8 0%, #1ab2b4 100%);
}

.learner-course-actions,
.learner-certificate-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 12px;
    min-width: 220px;
}

.learner-certificate-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
}

@media (max-width: 1200px) {
    .learner-auth-grid,
    .learner-auth-grid-wide,
    .learner-hero-inner,
    .learner-shell {
        grid-template-columns: 1fr;
    }

    .learner-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 980px) {
    .learner-form-grid,
    .learner-auth-stat-grid,
    .learner-schedule-grid,
    .learner-schedule-grid-compact,
    .learner-course-card {
        grid-template-columns: 1fr;
    }

    .learner-course-actions,
    .learner-certificate-card {
        min-width: 0;
    }

    .learner-certificate-card,
    .learner-section-head {
        flex-direction: column;
        align-items: stretch;
    }

    .learner-session-head,
    .admin-learner-course-header {
        flex-direction: column;
        align-items: stretch;
    }
}

@media (max-width: 720px) {
    .learner-auth-card,
    .learner-hero-panel,
    .learner-sidebar,
    .learner-card {
        padding: 22px;
    }
    .hero-badge-mark{
        display: none;
    }
    .learner-stat-grid,
    .learner-auth-stat-grid {
        grid-template-columns: 1fr;
    }

    .learner-course-card,
    .learner-certificate-card {
        padding: 18px;
    }

    .learner-auth-links,
    .learner-inline-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .learner-course-actions,
    .learner-certificate-actions {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .brand-logo-wrap {
        min-width: 170px;
    }

    .brand-logo {
        width: 160px;
    }

    .nav-links {
        gap: 14px;
        font-size: 13px;
    }

    .header-right {
        gap: 10px;
    }

    .course-detail-layout {
        grid-template-columns: 1fr;
    }

    .course-detail-sidebar {
        position: static;
    }

    .course-detail-hero-main {
        grid-template-columns: 1fr;
    }

    .course-detail-price-panel {
        width: 100%;
        max-width: 400px;
        margin-inline: auto;
    }

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

    .course-detail-benefit-columns {
        grid-template-columns: 1fr;
    }

    .registration-shell,
    .confirmation-shell,
    .verification-shell,
    .apply-layout {
        grid-template-columns: 1fr;
    }

    .verification-certificate-copy {
        top: 14%;
        right: 6%;
        bottom: 14%;
        left: 39%;
    }

    .hero-art {
        width: 52%;
        min-width: 480px;
    }

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

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

    .benefits-grid,
    .travel-grid {
        grid-template-columns: 1fr 1fr;
    }

    .benefits-grid .map-card,
    .travel-grid .travel-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    .container {
        width: min(var(--container), calc(100% - 32px));
    }

    .utility-link-bookmarks {
        display: none;
    }

    .nav {
        flex-wrap: wrap;
        gap: 20px;
        padding: 14px 0 10px;
    }

    .brand {
        width: 100%;
        justify-content: flex-start;
    }

    .header-right {
        width: 100%;
        align-items: stretch;
        flex: 1 1 auto;
        min-height: 0;
    }

    .header-actions {
        justify-content: space-between;
        gap: 16px;
    }

    .header-utility {
        justify-content: flex-start;
        flex: 1 1 auto;
    }

    .nav-toggle {
        display: inline-flex;
        flex: none;
    }

    .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        flex: 1 1 auto;
        gap: 0;
        padding-top: 16px;
        border-top: 1px solid #e5e9ef;
        min-height: 0;
    }

    .site-header.nav-open {
        position: fixed;
        inset: 0;
        z-index: 60;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .site-header.nav-open .nav {
        align-content: flex-start;
        align-items: stretch;
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
    }

    .site-header.nav-open .header-right {
        flex: 1 1 auto;
        min-height: 0;
    }

    .site-header.nav-ready .nav-links {
        display: none;
    }

    .site-header.nav-ready.nav-open .nav-links {
        display: flex;
        position: static;
        padding: 16px 0 28px;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-header.nav-open .header-meta {
        display: none;
    }

    html.nav-open,
    body.nav-open {
        overflow: hidden;
        height: 100%;
    }

    .site-header.nav-open .nav-toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.nav-open .nav-toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .nav-toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .nav-item {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
    }

    .nav-link-row {
        width: 100%;
        align-items: center;
        gap: 8px;
        border-bottom: 1px solid #e5e9ef;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        min-height: 48px;
        padding: 10px 0;
        white-space: normal;
    }

    .nav-submenu-toggle {
        display: inline-flex;
        flex: none;
        width: 44px;
        height: 44px;
        border-radius: 14px;
        background: #f3f7fc;
        color: var(--blue);
    }

    .mega-menu {
        position: relative;
        left: 0 !important;
        right: auto !important;
        top: 0 !important;
        inset: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0;
        transform: none !important;
        padding: 0;
        opacity: 0;
        visibility: hidden;
        display: none;
        transition: none;
        z-index: auto;
        background: transparent;
        border-top: 0;
        border-bottom: 0;
        box-shadow: none;
        overflow: hidden;
        min-width: 0;
    }

    .mega-item:hover .mega-menu,
    .mega-item:focus-within .mega-menu {
        opacity: 0;
        visibility: hidden;
        display: none;
    }

    .mega-item.mega-open .mega-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        padding: 8px 0 14px;
        transform: none !important;
    }

    .mega-menu-inner {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        border-radius: 20px;
        background: linear-gradient(180deg, #ffffff 0%, #f6fafe 100%);
        border: 1px solid #d9e7f8;
        box-shadow: 0 18px 34px rgba(17, 44, 82, 0.08);
        min-width: 0;
        overflow: hidden;
        margin-left: 0;
        margin-right: 0;
    }

    .mega-menu-header {
        display: block;
        margin-bottom: 14px;
        min-width: 0;
    }

    .mega-menu-copy {
        max-width: none;
        margin-top: 8px;
        text-align: left;
    }

    .mega-menu-columns-3 {
        grid-template-columns: 1fr;
    }

    .mega-menu-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-width: 0;
        width: 100%;
        max-width: 100%;
    }

    .mega-menu-link {
        display: flex;
        align-items: flex-start;
        padding: 10px 12px;
        border-radius: 14px;
        background: #ffffff;
        border: 1px solid #e3edf8;
        min-width: 0;
        max-width: 100%;
        width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .mega-menu-title,
    .mega-menu-copy {
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .hero-stage {
        min-height: unset;
        padding: 52px 28px 184px;
    }

    .hero-copy {
        max-width: 100%;
    }

    .hero-typing {
        width: fit-content;
    }

    .hero-metrics {
        max-width: 100%;
    }

    .hero-copy h1 {
        font-size: clamp(38px, 10vw, 62px);
    }

    .hero-art {
        inset: 0;
        height: 320px;
    }

    .hero-badge-mark {
        right: 20px;
        bottom: 122px;
    }

    .hero-floating-panel {
        top: 28px;
        right: 24px;
        width: min(228px, 40vw);
    }

    .hero-badge-mark-image {
        width: min(112px, 26vw);
    }

    .speech-panel {
        right: 8px;
        top: 8px;
        width: 180px;
        font-size: 24px;
    }

    .search-tabs,
    .academy-highlights-grid,
    .why-choose-grid,
    .cards-grid,
    .news-grid,
    .catalog-grid,
    .categories-grid,
    .testimonials-grid,
    .contact-grid,
    .benefits-grid,
    .course-grid,
    .detail-grid,
    .venue-grid,
    .travel-grid,
    .metrics-grid,
    .page-hero-grid,
    .page-hero-stats,
    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-grid {
        padding-bottom: 20px;
        max-height: none;
        overflow: visible;
    }

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

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

    .venue-hero-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .venue-filter-field {
        min-width: 0;
    }

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

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .course-detail-columns {
        grid-template-columns: 1fr;
    }

    .registration-form-grid,
    .registration-payment-grid,
    .verification-search-form,
    .apply-form-grid {
        grid-template-columns: 1fr;
    }

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

    .search-button {
        width: 100%;
    }

    .form-grid,
    .info-grid,
    .schedule-grid,
    .venue-facts {
        grid-template-columns: 1fr;
    }

    .form-grid .full,
    .info-grid .full,
    .schedule-grid .full,
    .venue-facts .full {
        grid-column: auto;
    }

    .listing-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .toolbar-actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .course-list-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    section {
        padding: 32px 0;
    }

    .nav {
        gap: 16px;
    }

    .brand {
        gap: 14px;
    }

    .brand-logo-wrap {
        min-width: 124px;
    }

    .brand-logo {
        width: 195px;
    }

    .apply-form-card,
    .apply-aside-card,
    .apply-trust-card {
        padding: 24px;
        border-radius: 24px;
    }

    .apply-hero-stats,
    .apply-page .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .brand-text {
        max-width: 90px;
    }

    .course-detail-hero-visual {
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .course-detail-hero-image {
        object-position: center top;
    }

    .course-detail-hero-badge-image {
        right: 16px;
        bottom: 16px;
        width: 88px;
    }

    .course-detail-certificate-card {
        grid-template-columns: 1fr;
    }

    .course-detail-hero-body {
        padding: 22px 18px;
    }

    .course-detail-media-strip {
        grid-template-columns: 1fr;
    }

    .course-detail-schedule-tablist {
        width: 100%;
    }

    .course-detail-table {
        min-width: 620px;
    }

    .course-detail-venue-dialog-body {
        grid-template-columns: 1fr;
    }

    .course-detail-venue-dialog-map {
        min-height: 260px;
    }

    .course-detail-help-widget {
        right: 12px;
        bottom: 12px;
    }

    .learner-payment-reminder {
        flex-direction: column;
        align-items: flex-start;
    }

    .course-detail-help-widget-card {
        width: min(280px, calc(100vw - 42px));
    }

    .registration-card,
    .confirmation-card,
    .verification-card,
    .registration-summary-card {
        padding: 22px 18px;
    }

    .verification-certificate-preview {
        border-radius: 22px;
    }

    .verification-certificate-copy {
        top: 13%;
        right: 5%;
        bottom: 14%;
        left: 38%;
        gap: 8px;
    }

    .verification-certificate-kicker {
        font-size: 10px;
    }

    .verification-certificate-lead,
    .verification-certificate-outro,
    .verification-certificate-session,
    .verification-certificate-barcode-number {
        font-size: 10px;
    }

    .verification-certificate-barcode-image {
        width: 120px;
    }

    .nav-links {
        padding-top: 14px;
    }

    .header-utility {
        width: 100%;
        flex-wrap: wrap;
    }

    .utility-phone {
        order: -1;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .header-meta-inner {
        min-height: 28px;
    }

    h1 {
        margin: 10px !important;
        padding-bottom: 11px;
    }

    .hero-stage {
        display: grid;
        gap: 18px;
        padding: 28px 18px 34px;
    }

    .hero-copy {
        order: 1;
        gap: 12px;
        max-width: 100%;
        justify-items: start;
    }

    .hero-typing {
        width: 100%;
        border-radius: 18px;
        align-items: flex-start;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .hero-copy h1,
    .page-hero-copy h1 {
        margin: 0;
        padding-bottom: 0;
    }

    .hero-copy h1 {
        font-size: clamp(34px, 13vw, 52px);
        line-height: 0.92;
    }

    .hero-copy p,
    .hero-lead,
    .hero-metrics,
    .hero-actions {
        width: 100%;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button,
    .hero-actions .ghost-button {
        width: 100%;
    }

    .hero-metrics {
        order: 4;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .hero-metric-card {
        gap: 6px;
        min-height: 0;
        padding: 12px 10px;
        border-radius: 18px;
    }

    .hero-metric-card strong {
        font-size: 24px;
    }

    .hero-metric-card span {
        font-size: 11px;
        line-height: 1.35;
    }

    .hero-copy p,
    .page-hero-copy p {
        font-size: 16px;
    }

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

    .academy-highlight-body {
        padding: 16px 16px 18px;
    }

    .academy-highlight-title {
        font-size: 18px;
    }

    .academy-highlight-overlay-title {
        left: 18px;
        right: 18px;
        bottom: 18px;
        font-size: 18px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-choose-title {
        max-width: none;
    }

    .why-choose-intro-card,
    .why-choose-copy-card {
        padding: 22px 18px;
    }

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

    .error-card {
        padding: 24px 20px;
        border-radius: 24px;
    }

    .error-status-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .error-status-code {
        min-width: 78px;
        min-height: 78px;
        font-size: 32px;
        border-radius: 20px;
    }

    .hero-art {
        position: relative;
        inset: auto;
        order: 2;
        height: 260px;
        min-width: 0;
        width: 100%;
        border-radius: 28px;
        overflow: hidden;
        pointer-events: none;
    }

    .hero-art-frame,
    .hero-art-image {
        border-radius: inherit;
    }

    .hero-floating-panel {
        top: 16px;
        right: 16px;
        left: auto;
        bottom: auto;
        width: min(210px, 58vw);
        padding: 14px 16px;
        border-radius: 20px;
    }

    .speech-panel {
        width: 148px;
        padding: 14px;
        font-size: 18px;
    }
    .admin-tag-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    .admin-tag {
        display: inline-flex;
        align-items: center;
        min-height: 30px;
        padding: 0 10px;
        border-radius: 999px;
        background: #e9f2fb;
        color: #0f5ca9;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.3;
    }
    .admin-inline-link {
        color: #0f5ca9;
        font-weight: 700;
        word-break: break-word;
    }

    .search-panel {
        position: relative;
        order: 3;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: none;
        padding-top: 4px;
        margin: 0;
    }

    .hero-badge-mark {
        display: none;
    }

    .hero-badge-mark-image {
        width: min(92px, 24vw);
    }

    .search-header-stack {
        margin-bottom: 10px;
    }

    .search-header strong {
        font-size: clamp(18px, 6vw, 26px);
    }

    .search-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-tabs,
    .cards-grid,
    .news-grid,
    .catalog-grid,
    .categories-grid,
    .testimonials-grid,
    .contact-grid,
    .benefits-grid,
    .logos-grid,
    .footer-columns,
    .course-grid,
    .detail-grid,
    .venue-grid,
    .travel-grid,
    .metrics-grid,
    .page-hero-grid,
    .page-hero-stats,
    .feature-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

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

    .search-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border-radius: 22px 22px 0 0;
    }

    .venue-course-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card .visual {
        min-height: 420px;
    }

    .catalog-card-program .catalog-cover-copy {
        font-size: clamp(40px, 12vw, 58px);
    }

    .catalog-card-leadership .catalog-cover-copy {
        font-size: clamp(26px, 8vw, 40px);
    }

    .home-pdf-dialog {
        width: min(920px, calc(100vw - 24px));
    }

    .home-pdf-dialog-body {
        grid-template-columns: 1fr;
    }

    .home-pdf-dialog-content {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-pdf-dialog-object,
    .home-pdf-dialog-fallback {
        min-height: 62vh;
    }

    .catalog-epaper-topbar {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .catalog-epaper-status {
        justify-self: start;
    }

    .catalog-epaper-body {
        grid-template-columns: 1fr;
    }

    .catalog-epaper-thumbnails {
        max-height: 320px;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 44, 82, 0.08);
    }

    .error-sidebar,
    .venue-sidebar {
        position: static;
    }

    .search-tab {
        justify-content: center;
        min-height: 56px;
        padding: 0 10px;
        font-size: 13px;
        text-align: center;
    }


@media (max-width: 780px) {
    .catalog-epaper-topbar,
    .catalog-epaper-toolbar,
    .catalog-epaper-stage {
        padding-left: 16px;
        padding-right: 16px;
    }

    .catalog-epaper-thumbnails {
        padding: 16px;
    }

    .catalog-epaper-thumbnails-header h2 {
        font-size: 22px;
    }

    .catalog-epaper-thumbnail-preview {
        grid-template-columns: 1fr;
    }

    .catalog-epaper-flip-shell {
        padding-left: 0;
        padding-right: 0;
    }
}
    .search-form-row {
        gap: 12px;
    }

    .search-ui {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 18px 34px rgba(17, 44, 82, 0.14);
    }

    .search-input,
    .search-button {
        min-height: 58px;
    }

    .toggle-row {
        width: 100%;
    }

    .toggle-row span {
        flex: 1;
        text-align: center;
    }

    .tag-cloud,
    .filter-bar,
    .chip-list,
    .breadcrumbs,
    .toolbar-actions,
    .cta-row {
        gap: 10px;
    }

    .tag,
    .filter-chip,
    .select-field,
    .outline-button,
    .pagination a {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 20px;
    }

    .page-hero-stage,
    .detail-section,
    .course-overview,
    .price-card {
        padding: 24px 18px;
    }

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

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

        * {
            -webkit-print-color-adjust: exact;
            print-color-adjust: exact;
        }

        html,
        body {
            background: #fff;
        }

        .site-header,
        .header-meta,
        .course-detail-breadcrumbs,
        .course-detail-sidebar,
        .course-detail-help-widget,
        .course-detail-benefits-section,
        .course-detail-certificate-section,
        .course-detail-faq-section,
        .course-detail-testimonial-section,
        .course-detail-related-section,
        .categories-strip,
        .course-detail-action-bar,
        .course-detail-media-strip,
        .course-detail-schedule-tablist,
        .course-detail-table-button,
        .course-detail-price-button,
        .course-detail-venue-dialog,
        footer {
            display: none !important;
        }

        main,
        .course-detail-page,
        .course-detail-page .container,
        .course-detail-layout,
        .course-detail-layout > div {
            display: block !important;
            width: 100% !important;
            max-width: none !important;
            margin: 0 !important;
            padding: 0 !important;
        }

        .course-detail-layout {
            gap: 0 !important;
        }

        .course-detail-hero-card,
        .course-detail-content-section,
        .course-detail-outline-section,
        .course-detail-schedule-section {
            break-inside: avoid;
            page-break-inside: avoid;
            box-shadow: none !important;
        }

        .course-detail-hero-card,
        .detail-section {
            border-color: #d8e0ea !important;
            background: #fff !important;
        }

        .course-detail-hero-card {
            margin-bottom: 18px !important;
        }

        .course-detail-hero-body,
        .detail-section {
            padding: 18px !important;
        }

        .course-detail-hero-main {
            grid-template-columns: minmax(0, 1fr) 248px !important;
            gap: 18px !important;
        }

        .course-detail-price-panel {
            width: 100% !important;
            max-width: none !important;
            perspective: none !important;
            min-height: auto !important;
        }

        .course-detail-price-panel-inner {
            transform: none !important;
            min-height: auto !important;
        }

        .course-detail-price-face {
            position: relative !important;
            inset: auto !important;
            padding: 18px !important;
            box-shadow: none !important;
        }

        .course-detail-price-face-back {
            display: none !important;
        }

        .course-detail-title {
            font-size: 30px !important;
            line-height: 1.02 !important;
        }

        .course-detail-schedule-panel[hidden] {
            display: none !important;
        }

        .course-detail-table-wrap {
            overflow: visible !important;
        }

        .course-detail-table {
            width: 100% !important;
            min-width: 0 !important;
            table-layout: fixed !important;
        }

        .course-detail-table th,
        .course-detail-table td {
            padding: 12px 10px !important;
        }

        .course-detail-table th:first-child,
        .course-detail-table td:first-child {
            width: 26% !important;
        }

        .course-detail-table th:nth-child(2),
        .course-detail-table td:nth-child(2) {
            width: 31% !important;
        }

        .course-detail-table th:nth-child(3),
        .course-detail-table td:nth-child(3) {
            width: 15% !important;
        }

        .course-detail-table th:nth-child(4),
        .course-detail-table td:nth-child(4) {
            width: 16% !important;
        }

        .course-detail-venue-link {
            color: inherit !important;
        }
    }