:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-blue: #eef6fb;
  --bg-teal: #effafa;
  --primary: #246b8e;
  --primary-dark: #19536f;
  --teal: #2a8c8c;
  --text: #24313d;
  --muted: #667785;
  --border: #dde7ec;
  --success: #2f855a;
  --danger: #b42318;
  --shadow: 0 16px 42px rgba(36, 49, 61, .08);
  --shadow-soft: 0 8px 24px rgba(36, 49, 61, .07);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--text); background: var(--bg); line-height: 1.65; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3 { margin: 0 0 .7rem; font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif; line-height: 1.15; letter-spacing: -.035em; }
h1 { font-size: clamp(2.35rem, 5vw, 4.7rem); font-weight: 720; }
h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.22rem; font-weight: 680; letter-spacing: -.02em; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 92px 0; }
.section-compact { padding: 58px 0 92px; }
.section-tint { background: linear-gradient(180deg, var(--bg-soft), var(--bg-blue)); }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 10px 14px; border-radius: 8px; color: white; background: var(--primary); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.icon { width: 24px; height: 24px; display: inline-grid; place-items: center; flex: none; }
.icon svg, .button svg, .text-link svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button svg, .text-link svg { width: 18px; height: 18px; margin-left: 8px; transition: transform .2s ease; }
.button:hover svg, .text-link:hover svg { transform: translateX(4px); }

.site-header { position: sticky; top: 0; z-index: 1000; height: var(--header-height); border-bottom: 1px solid transparent; background: rgba(255,255,255,.92); backdrop-filter: blur(16px); transition: box-shadow .25s ease, border-color .25s ease; }
.site-header.is-scrolled { border-color: var(--border); box-shadow: 0 8px 30px rgba(36,49,61,.07); }
.header-inner { min-height: var(--header-height); display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: Manrope, Inter, sans-serif; font-weight: 760; font-size: 1.18rem; letter-spacing: -.025em; }
.brand-logo { width: auto; height: 60px; display: block; object-fit: contain; }
.brand-logo-footer { width: 150px; height: auto; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; color: white; background: linear-gradient(135deg, var(--primary), var(--teal)); box-shadow: 0 8px 18px rgba(36,107,142,.18); font-size: .9rem; letter-spacing: -.01em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 25px; margin-left: auto; }
.nav-link { position: relative; padding: 28px 0; font-size: .91rem; color: #4b5c68; font-weight: 580; white-space: nowrap; }
.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 18px; height: 2px; border-radius: 4px; background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform .2s ease; }
.nav-link:hover, .nav-link.is-active { color: var(--primary-dark); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.language-control { min-height: 42px; display: flex; align-items: center; gap: 5px; padding: 0 8px; border: 1px solid var(--border); border-radius: 11px; background: white; }
.language-control .icon { width: 18px; height: 18px; color: var(--primary); }
.language-control select { max-width: 92px; border: 0; outline: 0; color: var(--text); background: transparent; font-size: .84rem; cursor: pointer; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 12px; color: var(--text); background: white; }
.menu-button .icon { margin: auto; }
.menu-close { display: none; width: 22px; height: 22px; margin: auto; }
.menu-button.is-open .icon { display: none; }
.menu-button.is-open .menu-close { display: block; }
.menu-close svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mobile-panel { display: none; position: fixed; z-index: 900; top: var(--header-height); left: 0; right: 0; max-height: calc(100dvh - var(--header-height)); padding: 24px 20px 30px; overflow-y: auto; border-top: 1px solid var(--border); background: white; box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); transition: opacity .22s ease, transform .22s ease; }
.mobile-panel.is-open { opacity: 1; transform: translateY(0); }
.mobile-nav { display: grid; margin-bottom: 22px; }
.mobile-nav .nav-link { padding: 13px 4px; border-bottom: 1px solid var(--border); }
.mobile-nav .nav-link::after { display: none; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 21px; border: 1px solid transparent; border-radius: 12px; font-weight: 690; font-size: .94rem; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .nav-link:focus-visible, .text-link:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible { outline: 3px solid rgba(42,140,140,.28); outline-offset: 3px; }
.button-primary { color: white; background: var(--primary); box-shadow: 0 10px 24px rgba(36,107,142,.19); }
.button-primary:hover { background: var(--primary-dark); box-shadow: 0 13px 28px rgba(36,107,142,.24); }
.button-secondary { color: var(--primary-dark); border-color: #bdd3df; background: white; }
.button-secondary:hover { border-color: var(--primary); background: #f7fbfd; }
.button-small { min-height: 42px; padding: 9px 14px; font-size: .83rem; }
.button-full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.text-link { display: inline-flex; align-items: center; color: var(--primary); font-weight: 720; font-size: .93rem; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px; color: var(--teal); font-size: .76rem; font-weight: 780; letter-spacing: .095em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 4px; background: currentColor; }
.eyebrow-light { color: #d8ffff; }
.section-heading { max-width: 720px; margin-bottom: 44px; }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-left { margin-left: 0; text-align: left; }
.section-copy { margin: 12px auto 0; max-width: 650px; color: var(--muted); font-size: 1.04rem; }
.section-heading-left .section-copy { margin-left: 0; }

.hero { position: relative; min-height: 690px; display: flex; align-items: center; overflow: hidden; background: var(--bg-blue); }
.hero-backdrop { position: absolute; inset: 0; }
.hero-backdrop::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.99) 0%, rgba(255,255,255,.96) 39%, rgba(255,255,255,.72) 60%, rgba(238,246,251,.24) 100%); }
.hero-backdrop img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(280px,.58fr); align-items: center; gap: 50px; padding-top: 60px; padding-bottom: 60px; }
.hero-copy { max-width: 760px; }
.hero h1 { max-width: 780px; }
.hero-lead { max-width: 680px; margin: 22px 0 30px; color: #536773; font-size: clamp(1.04rem, 1.7vw, 1.22rem); }
.hero-card { align-self: end; margin-bottom: 18px; padding: 28px; border: 1px solid rgba(255,255,255,.8); border-radius: var(--radius); background: rgba(255,255,255,.9); box-shadow: var(--shadow); backdrop-filter: blur(8px); }
.hero-card-label { display: block; margin-bottom: 17px; font-weight: 760; }
.hero-card .check-list { margin-bottom: 18px; }
.hero-card .check-list li { font-size: .93rem; }
.hero-item { opacity: 0; transform: translateY(18px); animation: heroReveal .65s cubic-bezier(.2,.7,.2,1) forwards; }
.hero-item:nth-child(2) { animation-delay: .08s; }
.hero-item:nth-child(3) { animation-delay: .16s; }
.hero-item:nth-child(4) { animation-delay: .24s; }
.hero-card.hero-item { animation-delay: .32s; }
@keyframes heroReveal { to { opacity: 1; transform: translateY(0); } }

.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(5,1fr); }
.trust-grid span { min-height: 82px; display: grid; place-items: center; padding: 16px 18px; text-align: center; color: #50616c; font-size: .83rem; font-weight: 680; border-right: 1px solid var(--border); }
.trust-grid span:last-child { border-right: 0; }

.service-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.service-card { position: relative; min-height: 330px; padding: 36px; overflow: hidden; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: #b8d4df; box-shadow: var(--shadow); }
.service-card::after { content: ""; position: absolute; width: 180px; height: 180px; right: -60px; bottom: -80px; border-radius: 50%; background: var(--bg-teal); transition: transform .3s ease; }
.service-card:hover::after { transform: scale(1.12); }
.service-card > * { position: relative; z-index: 1; }
.service-icon { width: 62px; height: 62px; display: grid; place-items: center; margin-bottom: 42px; border-radius: 18px; color: var(--primary); background: var(--bg-blue); }
.service-icon .icon { width: 29px; height: 29px; }
.service-number { position: absolute; top: 32px; right: 34px; color: #b5c6ce; font-weight: 780; }
.service-card p { max-width: 560px; color: var(--muted); }

.split-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: clamp(48px,7vw,92px); }
.split-grid-reverse .image-frame { order: 2; }
.image-frame { position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); background: #e5eef2; }
.image-frame img { width: 100%; min-height: 360px; object-fit: cover; transition: transform .55s ease; }
.image-frame:hover img { transform: scale(1.025); }
.image-badge { position: absolute; right: 20px; bottom: 20px; width: 152px; display: grid; padding: 18px; border-radius: 16px; background: rgba(255,255,255,.92); box-shadow: var(--shadow-soft); backdrop-filter: blur(8px); }
.image-badge strong { color: var(--primary); font-family: Manrope, sans-serif; font-size: 2rem; line-height: 1; }
.image-badge small { margin-top: 7px; color: var(--muted); line-height: 1.35; }
.large-check-list, .check-list { list-style: none; display: grid; gap: 12px; }
.large-check-list li, .check-list li { display: flex; align-items: flex-start; gap: 11px; }
.large-check-list li { padding: 13px 0; border-bottom: 1px solid var(--border); font-weight: 620; }
.check-list .icon, .large-check-list .icon { width: 20px; height: 20px; margin-top: 2px; color: var(--success); }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { padding: 26px; border: 1px solid var(--border); border-radius: 16px; background: white; transition: transform .22s ease, box-shadow .22s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.feature-card > .icon { width: 46px; height: 46px; padding: 11px; margin-bottom: 21px; border-radius: 13px; color: var(--primary); background: var(--bg-blue); }
.feature-card p { color: var(--muted); font-size: .94rem; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.timeline::before { content: ""; position: absolute; top: 29px; left: 9%; right: 9%; height: 2px; background: #c9dbe3; }
.timeline::after { content: ""; position: absolute; top: 29px; left: 9%; width: 0; height: 2px; background: var(--teal); transition: width 1.2s cubic-bezier(.2,.7,.2,1); }
.timeline.is-visible::after { width: 82%; }
.timeline-step { position: relative; z-index: 1; padding: 0 9px; text-align: center; }
.timeline-step > span { width: 60px; height: 60px; display: grid; place-items: center; margin: 0 auto 22px; border: 7px solid var(--bg-blue); border-radius: 50%; color: white; background: var(--primary); font-weight: 760; box-shadow: 0 0 0 1px #c5d9e2; }
.timeline-step h3 { font-size: 1rem; }
.timeline-step p { color: var(--muted); font-size: .85rem; }

.feature-banner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 38px 42px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(120deg, white, var(--bg-teal)); box-shadow: var(--shadow-soft); }
.feature-banner > div { max-width: 760px; }
.feature-banner p { color: var(--muted); margin-bottom: 0; }
.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 46px; border-radius: 24px; color: white; background: linear-gradient(120deg, var(--primary-dark), var(--teal)); box-shadow: 0 18px 46px rgba(25,83,111,.24); }
.cta-panel p { max-width: 680px; margin-bottom: 0; color: rgba(255,255,255,.82); }
.cta-panel .button-secondary { border-color: rgba(255,255,255,.48); color: white; background: transparent; }
.cta-panel .button-secondary:hover { background: rgba(255,255,255,.1); }

.page-hero { position: relative; padding: 88px 0 74px; overflow: hidden; background: linear-gradient(130deg, var(--bg-blue), white 62%, var(--bg-teal)); }
.page-hero::after { content: ""; position: absolute; width: 340px; height: 340px; right: -110px; top: -180px; border: 54px solid rgba(42,140,140,.07); border-radius: 50%; }
.page-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(320px,.72fr); align-items: center; gap: 70px; }
.page-hero h1 { max-width: 850px; font-size: clamp(2.25rem,4.5vw,4.15rem); }
.page-hero p { max-width: 720px; margin: 20px 0 28px; color: #536773; font-size: 1.08rem; }
.page-hero-image { padding: 13px; border: 1px solid rgba(255,255,255,.8); border-radius: 28px; background: rgba(255,255,255,.68); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.page-hero-image img { width: 100%; min-height: 330px; object-fit: cover; border-radius: 19px; }
.page-hero-simple { padding-bottom: 86px; }
.page-hero-simple .container { max-width: 920px; margin-left: max(20px, calc((100vw - var(--container))/2)); }
.page-hero-simple p { margin-bottom: 0; }

.mini-card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.mini-card { min-height: 135px; display: flex; flex-direction: column; justify-content: space-between; padding: 21px; border: 1px solid var(--border); border-radius: 15px; background: white; transition: transform .2s ease, border-color .2s ease; }
.mini-card:hover { transform: translateY(-3px); border-color: #b7d1dc; }
.mini-card .icon { width: 32px; height: 32px; color: var(--primary); }
.mini-card h3 { margin: 21px 0 0; font-size: .98rem; letter-spacing: -.01em; }
.number-list { list-style: none; display: grid; gap: 18px; }
.number-list li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.number-list li > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; color: var(--primary); background: var(--bg-blue); font-weight: 780; }
.number-list strong { display: block; margin-bottom: 2px; }
.number-list p { color: var(--muted); font-size: .91rem; }
.image-stack { position: relative; align-self: stretch; min-height: 480px; }
.image-stack > img { width: 90%; height: 72%; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow); }
.note-card { position: absolute; right: 0; bottom: 16px; width: 72%; padding: 23px; border: 1px solid var(--border); border-radius: 16px; background: white; box-shadow: var(--shadow); }
.note-card strong { color: var(--primary); }
.note-card p { margin: 7px 0 0; color: var(--muted); font-size: .9rem; }
.responsibility-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.responsibility-card { padding: 31px; border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.responsibility-card:first-child { border-top: 4px solid var(--teal); }
.responsibility-card:last-child { border-top: 4px solid var(--primary); }
.responsibility-card .check-list { margin-top: 20px; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; align-items: start; }
.faq-list { display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: white; overflow: hidden; }
.faq-item summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 22px; font-weight: 700; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--primary); background: var(--bg-blue); transition: transform .2s ease; }
.faq-item[open] summary span { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 21px; color: var(--muted); animation: faqOpen .25s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-5px); } }

.three-column-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.detail-card { padding: 29px; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: var(--shadow-soft); }
.detail-card > .icon { width: 50px; height: 50px; padding: 12px; margin-bottom: 24px; border-radius: 14px; color: var(--primary); background: var(--bg-blue); }
.detail-card ul { list-style: none; display: grid; gap: 9px; color: var(--muted); font-size: .92rem; }
.detail-card li::before { content: "•"; margin-right: 8px; color: var(--teal); font-weight: 800; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-cloud span { padding: 9px 13px; border: 1px solid #cadce4; border-radius: 999px; color: #4f6570; background: white; font-size: .87rem; }
.horizontal-steps { display: grid; grid-template-columns: repeat(7,1fr); gap: 10px; }
.horizontal-step { min-height: 150px; padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: white; }
.horizontal-step span { width: 32px; height: 32px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 9px; color: white; background: var(--primary); font-size: .8rem; font-weight: 760; }
.horizontal-step h3 { font-size: .9rem; }

.leadership-card { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 36px; max-width: 850px; margin-inline: auto; padding: 38px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(120deg, white, var(--bg-blue)); box-shadow: var(--shadow); }
.leadership-avatar { width: 130px; height: 130px; display: grid; place-items: center; border-radius: 35px; color: white; background: linear-gradient(145deg, var(--primary), var(--teal)); font-family: Manrope, sans-serif; font-size: 2rem; font-weight: 780; box-shadow: 0 16px 32px rgba(36,107,142,.22); }
.leadership-card .role { color: var(--teal); font-weight: 720; }

.resource-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 34px; padding: 16px; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-soft); }
.resource-toolbar label { min-width: 300px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 1px solid var(--border); border-radius: 12px; background: white; }
.resource-toolbar label .icon { color: var(--muted); width: 19px; height: 19px; }
.resource-toolbar input { width: 100%; min-height: 44px; border: 0; outline: 0; background: transparent; }
.resource-filters { display: flex; flex-wrap: wrap; gap: 7px; }
.resource-filters button { padding: 9px 13px; border: 1px solid transparent; border-radius: 10px; color: var(--muted); background: transparent; }
.resource-filters button:hover, .resource-filters button.is-active { border-color: #bfd4dd; color: var(--primary-dark); background: white; }
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.resource-card { overflow: hidden; border: 1px solid var(--border); border-radius: 18px; background: white; box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease; }
.resource-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.resource-card img, .resource-placeholder { width: 100%; height: 220px; object-fit: cover; }
.resource-card > div:last-child { padding: 24px; }
.resource-card span { color: var(--teal); font-size: .75rem; font-weight: 720; text-transform: uppercase; letter-spacing: .05em; }
.resource-card h2 { margin-top: 10px; font-size: 1.28rem; }
.resource-card p { color: var(--muted); font-size: .92rem; }
.resource-placeholder { display: grid; place-items: center; background: var(--bg-blue); }
.resource-placeholder .icon { width: 58px; height: 58px; color: var(--primary); }
.no-results { padding: 60px 20px; text-align: center; color: var(--muted); }

.contact-direct { display: inline-flex; align-items: center; gap: 12px; margin-top: 8px; padding: 13px 16px; border: 1px solid var(--border); border-radius: 13px; background: rgba(255,255,255,.72); }
.contact-direct > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; color: var(--primary); background: var(--bg-blue); }
.contact-direct small { display: block; color: var(--muted); }
.contact-direct a { color: var(--primary-dark); font-weight: 720; }
.contact-layout { display: grid; grid-template-columns: minmax(0,1.5fr) minmax(290px,.65fr); gap: 28px; align-items: start; }
.contact-form-card, .contact-aside { border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.contact-form-card { padding: 38px; }
.contact-form-card .section-heading { margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-grid label { display: grid; gap: 7px; color: #465762; font-size: .86rem; font-weight: 650; }
.form-full { grid-column: 1/-1; }
input, select, textarea { width: 100%; border: 1px solid #cddbe2; border-radius: 10px; color: var(--text); background: white; transition: border-color .18s ease, box-shadow .18s ease; }
input, select { min-height: 48px; padding: 0 12px; }
textarea { min-height: 140px; padding: 12px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(42,140,140,.1); outline: 0; }
[aria-invalid="true"] { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .78rem; font-weight: 570; }
.checkbox-label { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; }
.checkbox-label input { min-height: 0; width: 18px; height: 18px; margin-top: 3px; }
.honeypot { position: absolute; left: -10000px; opacity: 0; pointer-events: none; }
.contact-form-card form > .button { margin-top: 24px; }
.form-status { display: none; margin-bottom: 20px; padding: 13px 15px; border-radius: 10px; }
.form-status.is-error, .form-status.is-success { display: block; }
.form-status.is-error { color: #8a1c15; border: 1px solid #f0b9b5; background: #fff2f1; }
.form-status.is-success { color: #226840; border: 1px solid #add7bd; background: #effaf3; animation: statusPop .35s ease; }
@keyframes statusPop { 0% { transform: scale(.98); opacity: 0; } }
.contact-aside { position: sticky; top: calc(var(--header-height) + 24px); padding: 31px; }
.contact-aside dl { margin: 24px 0; }
.contact-aside dl div { padding: 15px 0; border-bottom: 1px solid var(--border); }
.contact-aside dt { color: var(--muted); font-size: .8rem; }
.contact-aside dd { margin: 3px 0 0; font-weight: 680; overflow-wrap: anywhere; }
.contact-aside a { color: var(--primary); }
.aside-note { padding: 18px; border-radius: 13px; background: var(--bg-blue); }
.aside-note p { margin: 6px 0 0; color: var(--muted); font-size: .84rem; }

.article-hero { padding: 88px 0 70px; background: linear-gradient(135deg, var(--bg-blue), white); }
.article-container { max-width: 880px; }
.breadcrumb { display: inline-flex; margin-bottom: 26px; color: var(--muted); font-size: .84rem; }
.article-hero h1 { max-width: 840px; font-size: clamp(2.2rem,5vw,4.3rem); }
.article-hero p { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.article-layout { display: grid; grid-template-columns: 250px minmax(0,760px); justify-content: center; gap: 72px; align-items: start; }
.article-toc { position: sticky; top: calc(var(--header-height) + 30px); padding: 20px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-soft); }
.article-toc ol { margin: 15px 0 20px; padding-left: 20px; display: grid; gap: 9px; color: var(--muted); font-size: .86rem; }
.article-toc a:not(.button):hover { color: var(--primary); }
.article-content { max-width: 760px; }
.article-content .article-intro { padding-bottom: 24px; border-bottom: 1px solid var(--border); color: #455965; font-size: 1.15rem; }
.article-content section { padding: 28px 0; border-bottom: 1px solid var(--border); }
.article-content h2 { font-size: 1.65rem; }
.article-content p, .legal-content p { color: #546873; }
.article-disclaimer, .review-notice { margin-top: 28px; padding: 20px; border-left: 4px solid var(--teal); border-radius: 0 12px 12px 0; background: var(--bg-teal); }
.article-disclaimer p, .review-notice p { margin: 6px 0 0; color: var(--muted); }
.related-links { margin-top: 38px; }
.related-links a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 56px; padding: 15px 0; border-bottom: 1px solid var(--border); color: var(--primary); font-weight: 650; }
.related-links svg { width: 20px; height: 20px; flex: 0 0 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: transform .2s ease; }
.related-links a:hover svg { transform: translateX(4px); }
.checklist-page { max-width: 820px; }
.checklist-page h2 { margin: 40px 0 18px; font-size: 1.6rem; }
.checklist-page > label { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.checklist-page input { width: 20px; height: 20px; min-height: 0; margin-top: 2px; }
.legal-content { max-width: 820px; }
.legal-content h2 { margin-top: 34px; font-size: 1.55rem; }
.legal-content ul { padding-left: 20px; color: var(--muted); }

.site-footer { padding: 64px 0 22px; border-top: 1px solid var(--border); background: #f6f9fb; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3,.7fr); gap: 50px; }
.footer-brand { margin-bottom: 18px; }
.footer-copy { max-width: 330px; color: var(--muted); font-size: .92rem; }
.footer-email { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 650; }
.footer-email .icon { width: 19px; height: 19px; }
.footer-grid h2 { margin: 6px 0 16px; font-size: .9rem; letter-spacing: .02em; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid > div:not(:first-child) a { color: var(--muted); font-size: .88rem; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--border); color: #7b8992; font-size: .76rem; }
.footer-bottom p { margin: 0; }

.cookie-banner { position: fixed; z-index: 2000; left: 20px; right: 20px; bottom: 20px; max-width: 760px; display: none; align-items: center; justify-content: space-between; gap: 22px; margin: auto; padding: 18px 20px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,.97); box-shadow: 0 18px 55px rgba(36,49,61,.18); backdrop-filter: blur(12px); }
.cookie-banner.is-visible { display: flex; animation: cookieIn .35s ease; }
.cookie-banner p { margin: 3px 0 0; color: var(--muted); font-size: .82rem; }
.cookie-actions { display: flex; gap: 8px; flex: none; }
@keyframes cookieIn { from { transform: translateY(20px); opacity: 0; } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .58s cubic-bezier(.2,.7,.2,1) var(--delay,0ms), transform .58s cubic-bezier(.2,.7,.2,1) var(--delay,0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 17px; }
  .header-cta { display: none; }
  .hero { min-height: 640px; }
  .hero-grid { grid-template-columns: 1fr .48fr; }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .mini-card-grid { grid-template-columns: repeat(3,1fr); }
  .horizontal-steps { grid-template-columns: repeat(4,1fr); }
  .resource-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  :root { --header-height: 70px; }
  .container { width: min(calc(100% - 30px), var(--container)); }
  .desktop-nav, .header-actions > .language-control, .header-cta { display: none; }
  .menu-button { display: grid; margin-left: auto; }
  .mobile-panel { display: block; visibility: hidden; }
  .mobile-panel.is-open { visibility: visible; }
  .mobile-panel .language-control { display: flex; width: max-content; margin: 16px 0; }
  .brand-logo { width: auto; height: 52px; }
  .brand-logo-footer { width: 142px; height: auto; }
  .section { padding: 72px 0; }
  .hero { min-height: auto; }
  .hero-backdrop::after { background: rgba(255,255,255,.86); }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; padding: 72px 0; }
  .hero-card { max-width: 520px; align-self: auto; margin: 0; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid span { border-bottom: 1px solid var(--border); }
  .trust-grid span:nth-child(2n) { border-right: 0; }
  .trust-grid span:last-child { grid-column: 1/-1; }
  .split-grid, .page-hero-grid, .faq-layout, .contact-layout, .article-layout { grid-template-columns: 1fr; gap: 44px; }
  .split-grid-reverse .image-frame { order: 0; }
  .page-hero { padding: 68px 0; }
  .page-hero-image { max-width: 580px; }
  .page-hero-image img { min-height: 270px; }
  .timeline { grid-template-columns: 1fr; gap: 20px; }
  .timeline::before, .timeline::after { left: 29px; top: 28px; bottom: 28px; width: 2px; height: auto; }
  .timeline::after { height: 0; transition: height 1.2s ease; }
  .timeline.is-visible::after { width: 2px; height: calc(100% - 56px); }
  .timeline-step { display: grid; grid-template-columns: 60px 1fr; gap: 18px; text-align: left; padding: 0; }
  .timeline-step > span { grid-row: 1/3; margin: 0; }
  .timeline-step h3 { margin-top: 7px; }
  .timeline-step p { grid-column: 2; }
  .three-column-grid { grid-template-columns: 1fr; }
  .mini-card-grid { grid-template-columns: repeat(2,1fr); }
  .horizontal-steps { grid-template-columns: repeat(2,1fr); }
  .contact-aside, .article-toc { position: static; }
  .article-layout { max-width: 760px; }
  .article-toc { order: 2; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  h1 { font-size: clamp(2.15rem,11vw,3.15rem); }
  h2 { font-size: clamp(1.75rem,8vw,2.35rem); }
  .section { padding: 60px 0; }
  .section-compact { padding: 38px 0 62px; }
  .button { width: 100%; }
  .button-row { width: 100%; }
  .hero-grid { padding: 58px 0; }
  .hero-card { padding: 22px; }
  .trust-grid span { min-height: 72px; padding: 13px 10px; font-size: .76rem; }
  .service-grid, .card-grid, .responsibility-grid, .resource-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; padding: 28px; }
  .image-frame img { min-height: 280px; }
  .mini-card-grid { grid-template-columns: 1fr; }
  .feature-banner, .cta-panel, .resource-toolbar, .cookie-banner { align-items: stretch; flex-direction: column; }
  .feature-banner, .cta-panel { padding: 28px 23px; }
  .cta-panel .button-row { display: grid; }
  .horizontal-steps { grid-template-columns: 1fr; }
  .horizontal-step { min-height: auto; display: grid; grid-template-columns: 40px 1fr; align-items: center; gap: 12px; }
  .horizontal-step span { margin: 0; }
  .horizontal-step h3 { margin: 0; }
  .leadership-card { grid-template-columns: 1fr; padding: 28px; }
  .leadership-avatar { width: 100px; height: 100px; border-radius: 26px; }
  .resource-toolbar label { min-width: 0; }
  .resource-filters { display: grid; grid-template-columns: 1fr; }
  .resource-filters button { text-align: left; }
  .form-full { grid-column: auto; }
  .contact-form-card { padding: 24px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-actions { display: grid; }
  .cookie-banner .button { width: 100%; }
  .image-stack { min-height: 410px; }
  .note-card { width: 86%; }
  .article-hero { padding: 65px 0 50px; }
  .no-print.button { width: auto; }
}

@media print {
  .site-header, .site-footer, .cookie-banner, .no-print { display: none !important; }
  .section, .article-hero { padding: 20px 0; }
  body { color: black; }
  .checklist-page > label { break-inside: avoid; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .hero-item { opacity: 1 !important; transform: none !important; }
}


/* Interactive UK hiring readiness check */
.checklist-hero { background: radial-gradient(circle at 82% 20%, rgba(42,140,140,.12), transparent 28%), linear-gradient(135deg, var(--bg-blue), white 68%); }
.readiness-layout { display: grid; grid-template-columns: minmax(230px,.55fr) minmax(0,1.45fr); gap: 28px; align-items: start; }
.readiness-aside, .readiness-card { border: 1px solid var(--border); border-radius: var(--radius); background: white; box-shadow: var(--shadow-soft); }
.readiness-aside { position: sticky; top: calc(var(--header-height) + 24px); padding: 28px; }
.readiness-step-label { margin: 13px 0 8px; color: var(--muted); }
.readiness-step-label strong:first-child { color: var(--primary-dark); font-size: 1.45rem; }
.readiness-progress { height: 8px; overflow: hidden; border-radius: 999px; background: #e6eef2; }
.readiness-progress span { display: block; width: 33.333%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--primary), var(--teal)); transition: width .35s ease; }
.readiness-step-list { margin: 25px 0; padding: 0; display: grid; gap: 12px; list-style: none; counter-reset: readiness; }
.readiness-step-list li { position: relative; min-height: 34px; display: flex; align-items: center; gap: 10px; color: #7a8b94; font-size: .86rem; font-weight: 650; }
.readiness-step-list li::before { counter-increment: readiness; content: counter(readiness); width: 30px; height: 30px; display: grid; place-items: center; flex: none; border: 1px solid var(--border); border-radius: 50%; background: var(--bg-soft); }
.readiness-step-list li.is-active { color: var(--primary-dark); }
.readiness-step-list li.is-active::before { color: white; border-color: var(--primary); background: var(--primary); box-shadow: 0 0 0 5px rgba(36,107,142,.09); }
.readiness-step-list li.is-complete::before { content: "✓"; color: white; border-color: var(--teal); background: var(--teal); }
.readiness-card { min-height: 640px; padding: 40px; }
.readiness-status { display: none; margin-bottom: 20px; padding: 13px 15px; border-radius: 10px; }
.readiness-status.is-error { display: block; color: #8a1c15; border: 1px solid #f0b9b5; background: #fff2f1; }
.readiness-step { margin: 0; padding: 0; border: 0; animation: readinessStepIn .32s ease; }
.readiness-step legend { padding: 0; color: var(--text); font-family: Manrope, sans-serif; font-size: clamp(1.65rem,3vw,2.25rem); font-weight: 750; letter-spacing: -.03em; }
.step-intro { max-width: 680px; margin-bottom: 30px; color: var(--muted); }
@keyframes readinessStepIn { from { opacity: 0; transform: translateY(10px); } }
.choice-label { display: block; margin-bottom: 12px; color: #465762; font-size: .9rem; font-weight: 680; }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; }
.choice-card { position: relative; display: block; cursor: pointer; }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card span { min-height: 110px; display: flex; flex-direction: column; justify-content: center; padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-soft); transition: border-color .18s ease, background .18s ease, transform .18s ease, box-shadow .18s ease; }
.choice-card strong { color: var(--primary-dark); }
.choice-card small { margin-top: 5px; color: var(--muted); font-weight: 470; line-height: 1.45; }
.choice-card:hover span { transform: translateY(-2px); border-color: #b9d2dc; background: white; box-shadow: var(--shadow-soft); }
.choice-card input:focus-visible + span { outline: 3px solid rgba(42,140,140,.18); outline-offset: 2px; }
.choice-card input:checked + span { border-color: var(--teal); background: var(--bg-teal); box-shadow: inset 0 0 0 1px var(--teal); }
.readiness-fields { margin-top: 24px; }
.question-list { display: grid; gap: 13px; }
.question-row { display: grid; grid-template-columns: minmax(0,1fr) 180px; align-items: center; gap: 22px; padding: 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--bg-soft); }
.question-row strong { display: block; color: #40545f; font-size: .95rem; }
.question-row small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.45; }
.question-row select { background: white; }
.compact-notice { margin-top: 22px; }
.readiness-actions { display: flex; justify-content: flex-end; gap: 10px; margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--border); }
.readiness-actions .button { min-width: 150px; }
.readiness-actions [data-readiness-back] { margin-right: auto; }
.readiness-result { animation: readinessResultIn .45s ease; }
@keyframes readinessResultIn { from { opacity: 0; transform: translateY(14px); } }
.result-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }
.result-heading h2 { margin-top: 8px; }
.readiness-score { width: 88px; height: 88px; display: grid; place-content: center; grid-template-columns: auto auto; align-items: baseline; flex: none; border: 8px solid #d9eef0; border-radius: 50%; color: var(--teal); background: white; box-shadow: var(--shadow-soft); }
.readiness-score strong { font-size: 1.8rem; }
.readiness-score span { font-size: .75rem; }
.result-summary-card { margin-top: 28px; padding: 22px; border: 1px solid var(--border); border-radius: 15px; background: var(--bg-blue); }
.result-summary-card h3 { margin-bottom: 15px; }
.result-summary-card dl { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 22px; margin: 0; }
.result-summary-card dl div { display: grid; grid-template-columns: minmax(120px,.7fr) 1fr; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(36,107,142,.12); }
.result-summary-card dt { color: var(--muted); font-size: .82rem; }
.result-summary-card dd { margin: 0; color: var(--primary-dark); font-weight: 650; overflow-wrap: anywhere; }
.result-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 20px; }
.result-list { padding: 22px; border: 1px solid var(--border); border-radius: 15px; }
.result-list.is-ready { background: #f2faf5; }
.result-list.is-clarify { background: #fffaf0; }
.result-list h3 { font-size: 1.05rem; }
.result-list ul { margin: 14px 0 0; padding-left: 20px; color: #536873; }
.result-list li + li { margin-top: 8px; }
.result-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.checklist-transfer { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; margin-bottom: 24px; padding: 17px 18px; border: 1px solid #bcdcdf; border-radius: 13px; background: var(--bg-teal); }
.checklist-transfer p { margin: 4px 0 0; color: var(--muted); font-size: .86rem; }
.checklist-transfer-actions { display: flex; align-items: center; gap: 12px; flex: none; }
.checklist-transfer-actions a, .checklist-transfer-actions button { padding: 0; border: 0; color: var(--primary); background: transparent; font-size: .82rem; font-weight: 700; cursor: pointer; }
.checklist-transfer-actions button { color: #8a4b36; }

@media (max-width: 860px) {
  .readiness-layout { grid-template-columns: 1fr; }
  .readiness-aside { position: static; }
  .readiness-card { min-height: 0; padding: 25px; }
  .choice-grid, .result-columns, .result-summary-card dl { grid-template-columns: 1fr; }
  .question-row { grid-template-columns: 1fr; gap: 12px; }
  .readiness-actions, .result-actions { display: grid; }
  .readiness-actions [data-readiness-back] { margin-right: 0; order: 2; }
  .result-heading { align-items: center; }
  .checklist-transfer { flex-direction: column; }
}

@media print {
  body.checklist-complete .readiness-aside, body.checklist-complete [data-readiness-form] { display: none !important; }
  body.checklist-complete .readiness-layout { display: block; }
  body.checklist-complete .readiness-card { padding: 0; border: 0; box-shadow: none; }
  body.checklist-complete [data-readiness-result] { display: block !important; }
}

/* Contact page email-client submission note */
.contact-email-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.55;
}
