/* ==========================================================================
   Talentcore — "Vantage" design system
   Indigo #1E2A6E · Sky #19B2E3 · Cool-white #F4F8FC · Ink #0F1522 · Slate #43506B
   Space Grotesk (headings) + Inter (body). Flat, modern, no gradients/shadows.
   ========================================================================== */

:root {
	--tc-indigo: #1E2A6E;
	--tc-indigo-700: #18225A;
	--tc-sky: #19B2E3;
	--tc-sky-soft: #E4F5FC;
	--tc-sky-ink: #0B6E92; /* accent text on light — AA */
	--tc-red: #C8102E; /* brand red (from logo) */
	--tc-red-soft: #FCE8EB;
	--tc-bg: #F4F8FC;
	--tc-surface: #FFFFFF;
	--tc-ink: #0F1522;
	--tc-slate: #43506B;
	--tc-border: #E2E8F2;
	--tc-radius: 12px;
	--tc-radius-sm: 8px;
	--tc-maxw: 1200px;
	--tc-font-head: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
	--tc-font-body: "Inter", "Segoe UI", system-ui, sans-serif;
	--tc-gap: 24px;
}

/* Reset / base ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--tc-font-body);
	font-size: 17px;
	line-height: 1.7;
	color: var(--tc-ink);
	background: var(--tc-bg);
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--tc-sky-ink); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--tc-font-head); color: var(--tc-ink); line-height: 1.2; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.2em; }

.tc-container { width: 100%; max-width: var(--tc-maxw); margin-inline: auto; padding-inline: 24px; }
.tc-section { padding-block: clamp(48px, 7vw, 88px); }
.tc-section--tight { padding-block: clamp(36px, 5vw, 60px); }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.tc-skip { position: absolute; left: -999px; top: 0; background: var(--tc-indigo); color: #fff; padding: 10px 16px; z-index: 1000; }
.tc-skip:focus { left: 8px; top: 8px; }

/* Section headings -------------------------------------------------------- */
.tc-section__head { max-width: 720px; margin: 0 auto 40px; text-align: center; }
.tc-section__head--left { margin-inline: 0; text-align: left; }
.tc-eyebrow { font-family: var(--tc-font-head); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--tc-red); margin: 0 0 .6em; }
.tc-section__lead { color: var(--tc-slate); font-size: 1.1rem; margin: 0; }

/* Buttons ----------------------------------------------------------------- */
.tc-btn {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--tc-font-head); font-weight: 600; font-size: .98rem;
	padding: 13px 24px; border-radius: var(--tc-radius-sm);
	border: 2px solid transparent; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
	text-decoration: none; line-height: 1;
}
.tc-btn:hover { text-decoration: none; }
.tc-btn .tc-icon { width: 20px; height: 20px; }
.tc-btn--primary { background: var(--tc-indigo); color: #fff; border-color: var(--tc-indigo); }
.tc-btn--primary:hover { background: var(--tc-indigo-700); color: #fff; border-color: var(--tc-indigo-700); }
.tc-btn--primary:focus-visible { color: #fff; outline: 3px solid var(--tc-sky); outline-offset: 2px; }
.tc-btn--outline { background: transparent; color: var(--tc-indigo); border-color: var(--tc-indigo); }
.tc-btn--outline:hover { background: var(--tc-indigo); color: #fff; border-color: var(--tc-indigo); }
.tc-btn--outline:focus-visible { color: var(--tc-indigo); outline: 3px solid var(--tc-sky); outline-offset: 2px; }
.tc-btn--sky { background: var(--tc-sky); color: var(--tc-ink); border-color: var(--tc-sky); }
.tc-btn--sky:hover { background: #12A0CE; color: var(--tc-ink); border-color: #12A0CE; }
.tc-btn--sky:focus-visible { color: var(--tc-ink); outline: 3px solid var(--tc-indigo); outline-offset: 2px; }
.tc-btn--ghost { background: transparent; color: var(--tc-slate); border-color: var(--tc-border); }
.tc-btn--ghost:hover { background: #fff; color: var(--tc-ink); border-color: var(--tc-slate); }
.tc-btn--ghost:focus-visible { color: var(--tc-ink); outline: 3px solid var(--tc-sky); outline-offset: 2px; }
.tc-btn--light { background: #fff; color: var(--tc-indigo); border-color: #fff; }
.tc-btn--light:hover { background: var(--tc-sky-soft); color: var(--tc-indigo); border-color: var(--tc-sky-soft); }
.tc-btn--light:focus-visible { color: var(--tc-indigo); outline: 3px solid var(--tc-sky); outline-offset: 2px; }

/* Icons ------------------------------------------------------------------- */
.tc-icon { width: 24px; height: 24px; flex: none; }

/* Header / nav ------------------------------------------------------------ */
.tc-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--tc-border); }
.tc-header__inner { display: flex; align-items: center; gap: 24px; min-height: 72px; }
.tc-logo { display: inline-flex; align-items: center; gap: 10px; }
.tc-logo:hover { text-decoration: none; }
.tc-logo__text { font-family: var(--tc-font-head); font-weight: 700; font-size: 1.25rem; color: var(--tc-ink); letter-spacing: -.01em; }
.tc-logo__img { height: 48px; width: auto; display: block; }
.tc-logo__img--footer { height: 60px; }
.tc-mark { flex: none; }
.tc-nav { margin-left: auto; }
.tc-nav__list { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.tc-nav__list a { display: inline-block; padding: 10px 12px; color: var(--tc-slate); font-weight: 500; font-size: .95rem; border-radius: var(--tc-radius-sm); white-space: nowrap; }
.tc-nav__list a:hover { color: var(--tc-indigo); background: var(--tc-sky-soft); text-decoration: none; }
.tc-nav__list .current-menu-item > a { color: var(--tc-indigo); }
.tc-nav .sub-menu { list-style: none; margin: 0; padding: 8px; position: absolute; background: #fff; border: 1px solid var(--tc-border); border-radius: var(--tc-radius); min-width: 220px; box-shadow: 0 12px 30px rgba(15,21,34,.08); display: none; z-index: 60; }
.tc-nav .menu-item-has-children { position: relative; }
.tc-nav .menu-item-has-children:hover > .sub-menu,
.tc-nav .menu-item-has-children:focus-within > .sub-menu { display: block; }
.tc-header__actions { display: flex; align-items: center; gap: 12px; }
.tc-nav__mobile-cta { display: none; }
.tc-navtoggle { display: none; background: none; border: 0; padding: 8px; color: var(--tc-ink); cursor: pointer; }
.tc-navtoggle__close { display: none; }
.tc-nav-overlay { position: fixed; inset: 0; background: rgba(15,21,34,.45); z-index: 40; }

/* Hero -------------------------------------------------------------------- */
.tc-hero { background: linear-gradient(0deg, var(--tc-bg), var(--tc-bg)); padding-block: clamp(48px, 7vw, 96px); }
.tc-hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.tc-hero__title { margin-bottom: .35em; }
.tc-hero__text { font-size: 1.2rem; color: var(--tc-slate); max-width: 46ch; }
.tc-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.tc-hero__media { border-radius: 16px; overflow: hidden; background: var(--tc-sky-soft); aspect-ratio: 4 / 3; position: relative; border: 1px solid var(--tc-border); }
.tc-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.tc-hero__badge { position: absolute; left: 18px; bottom: 18px; background: #fff; border-radius: 12px; padding: 12px 16px; font-family: var(--tc-font-head); font-weight: 600; color: var(--tc-indigo); border: 1px solid var(--tc-border); }
.tc-media-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: var(--tc-sky); }
.tc-media-fallback .tc-icon { width: 72px; height: 72px; opacity: .5; }

/* Value-props band -------------------------------------------------------- */
.tc-band { background: var(--tc-indigo); color: #fff; }
.tc-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.tc-band__item { text-align: left; }
.tc-band__item .tc-icon { width: 30px; height: 30px; color: var(--tc-sky); margin-bottom: 12px; }
.tc-band__item h3 { color: #fff; font-size: 1.08rem; margin-bottom: .25em; }
.tc-band__item p { color: #C9D2E8; font-size: .96rem; margin: 0; }

/* Countries --------------------------------------------------------------- */
.tc-country-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.tc-country { display: flex; align-items: center; gap: 12px; background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 16px 18px; }
.tc-country__flag { font-size: 1.6rem; line-height: 1; }
.tc-country__name { font-family: var(--tc-font-head); font-weight: 600; font-size: 1rem; color: var(--tc-ink); }
.tc-country__region { display: block; font-family: var(--tc-font-body); font-weight: 400; font-size: .8rem; color: var(--tc-slate); }

/* Industries -------------------------------------------------------------- */
.tc-industry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.tc-industry { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 24px; transition: border-color .15s, transform .15s; }
.tc-industry:hover { border-color: var(--tc-sky); transform: translateY(-2px); }
.tc-industry__icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--tc-sky-soft); color: var(--tc-indigo); margin-bottom: 14px; }
.tc-industry__icon .tc-icon { width: 26px; height: 26px; }
.tc-industry h3 { font-size: 1.08rem; margin-bottom: .35em; }
.tc-industry p { color: var(--tc-slate); font-size: .94rem; margin: 0; }

/* Two-audience split ------------------------------------------------------ */
.tc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tc-split__panel { border-radius: 16px; padding: 40px; border: 1px solid var(--tc-border); background: var(--tc-surface); }
.tc-split__panel--jobseekers { background: var(--tc-sky-soft); border-color: transparent; }
.tc-split__panel--employers { background: var(--tc-indigo); border-color: transparent; color: #fff; }
.tc-split__panel--employers h2, .tc-split__panel--employers p { color: #fff; }
.tc-split__panel h2 { font-size: 1.6rem; }
.tc-split__panel p { color: var(--tc-slate); margin-bottom: 24px; }
.tc-split__panel--employers p { color: #C9D2E8; }

/* Steps ------------------------------------------------------------------- */
.tc-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: step; }
.tc-steps--two { grid-template-columns: repeat(2, 1fr); }
.tc-step { position: relative; padding-top: 8px; }
.tc-step__num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--tc-indigo); color: #fff; font-family: var(--tc-font-head); font-weight: 600; margin-bottom: 14px; }
.tc-step h3 { font-size: 1.02rem; margin-bottom: .3em; }
.tc-step p { color: var(--tc-slate); font-size: .92rem; margin: 0; }
.tc-process { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.tc-process__col h2 { font-size: 1.4rem; }

/* How-it-works paths (vertical timeline) ---------------------------------- */
.tc-paths { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tc-path { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: 16px; padding: 32px 32px 12px; }
.tc-path__head { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.tc-path__icon { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; flex: none; }
.tc-path__icon .tc-icon { width: 24px; height: 24px; }
.tc-path--jobseekers .tc-path__icon { background: var(--tc-red-soft); color: var(--tc-red); }
.tc-path--employers .tc-path__icon { background: var(--tc-indigo); color: #fff; }
.tc-path__title { margin: 0; font-size: 1.25rem; }
.tc-path__title span { display: block; font-family: var(--tc-font-body); font-weight: 400; font-size: .85rem; color: var(--tc-slate); }
.tc-timeline { list-style: none; margin: 0; padding: 0; position: relative; }
.tc-timeline::before { content: ""; position: absolute; left: 21px; top: 12px; bottom: 40px; width: 2px; background: var(--tc-border); }
.tc-tl-step { position: relative; padding: 0 0 24px 52px; }
.tc-tl-step:last-child { padding-bottom: 20px; }
.tc-tl-step__num { position: absolute; left: 0; top: 0; width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; font-family: var(--tc-font-head); font-weight: 600; font-size: .95rem; color: #fff; background: var(--tc-indigo); border: 4px solid var(--tc-surface); box-sizing: content-box; z-index: 1; }
.tc-path--jobseekers .tc-tl-step__num { background: var(--tc-red); color: #fff; }
.tc-tl-step h4 { font-size: 1.05rem; margin: 6px 0 4px; }
.tc-tl-step p { color: var(--tc-slate); font-size: .93rem; margin: 0; }

/* Pillars ----------------------------------------------------------------- */
.tc-pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tc-pillar { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 28px; }
.tc-pillar__icon { color: var(--tc-sky); margin-bottom: 12px; }
.tc-pillar__icon .tc-icon { width: 30px; height: 30px; }
.tc-pillar h3 { font-size: 1.1rem; margin-bottom: .3em; }
.tc-pillar p { color: var(--tc-slate); font-size: .95rem; margin: 0; }

/* CTA band ---------------------------------------------------------------- */
.tc-cta-band { background: var(--tc-indigo); color: #fff; text-align: center; }
.tc-cta-band h2 { color: #fff; }
.tc-cta-band p { color: #C9D2E8; max-width: 52ch; margin: 0 auto 28px; font-size: 1.1rem; }
.tc-cta-band__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Page hero + prose ------------------------------------------------------- */
.tc-page-hero { background: var(--tc-indigo); color: #fff; padding-block: clamp(48px, 6vw, 80px); }
.tc-page-hero--photo { background-size: cover; background-position: center; }
.tc-page-hero h1 { color: #fff; margin: 0; }
.tc-page-hero__lead { color: #C9D2E8; font-size: 1.15rem; margin: .6em 0 0; max-width: 60ch; }
.tc-page-hero__crumbs { color: #9FB0D6; font-size: .9rem; margin: 0 0 .8em; }
.tc-page-hero__crumbs a { color: #C9D2E8; }
.tc-prose { max-width: 760px; margin-inline: auto; }
.tc-prose h2 { margin-top: 1.6em; }
.tc-prose h3 { margin-top: 1.3em; }
.tc-prose ul { padding-left: 1.2em; }
.tc-prose li { margin-bottom: .4em; }

/* Info table (company info) ---------------------------------------------- */
.tc-infotable { width: 100%; border-collapse: collapse; margin: 1.5em 0; table-layout: fixed; }
.tc-infotable th, .tc-infotable td { text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--tc-border); vertical-align: top; overflow-wrap: anywhere; }
.tc-infotable th { width: 34%; font-family: var(--tc-font-head); font-weight: 600; color: var(--tc-indigo); }

/* FAQ --------------------------------------------------------------------- */
.tc-faq { max-width: 820px; margin-inline: auto; }
.tc-faq-grouped { max-width: 860px; margin-inline: auto; }
.tc-faq-grouped .tc-faq { max-width: none; }
.tc-faq-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.tc-faq-nav a { padding: 8px 16px; border: 1px solid var(--tc-border); border-radius: 999px; background: var(--tc-surface); color: var(--tc-slate); font-family: var(--tc-font-head); font-weight: 500; font-size: .9rem; }
.tc-faq-nav a:hover { border-color: var(--tc-sky); color: var(--tc-indigo); background: var(--tc-sky-soft); text-decoration: none; }
.tc-faq-group { margin-bottom: 40px; scroll-margin-top: 96px; }
.tc-faq-group:last-child { margin-bottom: 0; }
.tc-faq-group__title { font-size: 1.3rem; margin-bottom: 16px; }
.tc-faq__item { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); margin-bottom: 12px; overflow: hidden; }
.tc-faq__q { margin: 0; list-style: none; padding: 18px 22px; font-family: var(--tc-font-head); font-weight: 600; font-size: 1.05rem; color: var(--tc-ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.tc-faq__q::-webkit-details-marker { display: none; }
.tc-faq__q .tc-icon { color: var(--tc-sky); transition: transform .2s; flex: none; }
.tc-faq__item[open] .tc-faq__q .tc-icon { transform: rotate(180deg); }
.tc-faq__a { padding: 0 22px 20px; color: var(--tc-slate); }

/* Contact info block ------------------------------------------------------ */
.tc-contact-info { display: grid; gap: 14px; margin-bottom: 28px; }
.tc-contact-info__row { display: flex; align-items: flex-start; gap: 12px; }
.tc-contact-info__row .tc-icon { color: var(--tc-sky); flex: none; margin-top: 3px; }
.tc-contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tc-contact-list li { display: flex; align-items: center; gap: 10px; }
.tc-contact-list a, .tc-contact-info a { overflow-wrap: anywhere; }
.tc-contact-list__icon { color: var(--tc-sky); display: inline-flex; }
.tc-contact-list__icon .tc-icon { width: 20px; height: 20px; }

/* Forms ------------------------------------------------------------------- */
.tc-form { display: grid; gap: 18px; background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: 16px; padding: 32px; }
.tc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.tc-field { display: grid; gap: 6px; }
.tc-field label { font-weight: 500; font-size: .95rem; color: var(--tc-ink); }
.tc-req { color: var(--tc-red); }
.tc-field input, .tc-field select, .tc-field textarea {
	width: 100%; font-family: var(--tc-font-body); font-size: 1rem; color: var(--tc-ink);
	padding: 12px 14px; border: 1px solid var(--tc-border); border-radius: var(--tc-radius-sm); background: #fff;
}
.tc-field input:focus, .tc-field select:focus, .tc-field textarea:focus { outline: 3px solid var(--tc-sky-soft); border-color: var(--tc-sky); }
.tc-field input[type="file"] { padding: 10px; background: var(--tc-bg); }
.tc-field__hint { font-size: .82rem; color: var(--tc-slate); }
.tc-field__error { color: #B42318; font-size: .85rem; }
.tc-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.tc-form__submit { justify-self: start; }
.tc-form-success { background: var(--tc-sky-soft); border: 1px solid var(--tc-sky); border-radius: var(--tc-radius); padding: 20px 24px; display: flex; align-items: center; gap: 12px; }
.tc-form-success .tc-icon { color: var(--tc-indigo); }
.tc-form-error { background: #FEF3F2; border: 1px solid #FDA29B; color: #B42318; border-radius: var(--tc-radius-sm); padding: 12px 16px; }

/* Cookie banner ----------------------------------------------------------- */
.tc-cookie { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; background: #fff; border-top: 1px solid var(--tc-border); box-shadow: 0 -8px 24px rgba(15,21,34,.06); }
.tc-cookie__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 16px; }
.tc-cookie__text { margin: 0; font-size: .95rem; color: var(--tc-slate); }
.tc-cookie__actions { display: flex; gap: 10px; flex: none; }
.tc-cookie__actions .tc-btn { padding: 10px 18px; }

/* Footer ------------------------------------------------------------------ */
.tc-footer { background: #0C1230; color: #C9D2E8; margin-top: 0; }
.tc-footer__top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 60px 44px; }
.tc-footer .tc-logo__text { color: #fff; font-size: 1.1rem; }
.tc-footer__tagline { color: #9FB0D6; margin: 16px 0 0; max-width: 40ch; font-size: .95rem; }
.tc-footer__reg { color: #8595BC; margin: 14px 0 0; font-size: .85rem; }
.tc-footer__heading { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.tc-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.tc-footer__list a, .tc-footer__contact a { color: #C9D2E8; font-size: .95rem; }
.tc-footer__list a:hover, .tc-footer__contact a:hover { color: #fff; }
.tc-footer__contact .tc-contact-list { margin-bottom: 20px; }
.tc-footer__contact .tc-contact-list li { color: #C9D2E8; font-size: .95rem; align-items: center; }
.tc-footer__cta { padding: 10px 18px; }
.tc-footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.tc-footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px 24px; padding-block: 20px; flex-wrap: wrap; }
.tc-footer__copy { margin: 0; font-size: .85rem; color: #8595BC; }
.tc-footer__legal { display: flex; flex-wrap: wrap; gap: 8px 20px; align-items: center; }
.tc-footer__legal a { color: #9FB0D6; font-size: .85rem; position: relative; }
.tc-footer__legal a:hover { color: #fff; }
.tc-footer__legal a:not(:last-child)::after { content: "·"; position: absolute; right: -12px; color: #4A567E; }

/* Post list (blog fallback) ---------------------------------------------- */
.tc-post-list { display: grid; gap: 24px; }
.tc-post-card { background: #fff; border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 24px; }

/* Rich page components ---------------------------------------------------- */
.tc-page-body > .tc-prose:first-child { margin-top: 0; }
.tc-block { margin-block: clamp(40px, 6vw, 72px); }
.tc-block:first-child { margin-top: 0; }
.tc-block:last-child { margin-bottom: 0; }

/* Two-column feature (text + media), alternating */
.tc-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.tc-feature--reverse .tc-feature__media { order: 2; }
.tc-feature__media img { border-radius: 16px; width: 100%; height: 100%; max-height: 420px; object-fit: cover; border: 1px solid var(--tc-border); }
.tc-feature__body h2 { margin-top: 0; }
.tc-feature__body p { color: var(--tc-slate); }

/* Checklist with sky ticks */
.tc-checklist { list-style: none; padding: 0; margin: 1rem 0; display: grid; gap: 12px; }
.tc-checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--tc-ink); }
.tc-checklist li::before { content: "✓"; flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--tc-sky-soft); color: var(--tc-sky-ink); font-weight: 700; font-size: .85rem; display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }

/* Value / info cards (2-up) */
.tc-cards2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tc-card { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: var(--tc-radius); padding: 28px; }
.tc-card__icon { color: var(--tc-sky); margin-bottom: 12px; }
.tc-card__icon .tc-icon { width: 30px; height: 30px; }
.tc-card h3 { margin-top: 0; font-size: 1.15rem; }
.tc-card p { color: var(--tc-slate); margin: 0; }
.tc-card--soft { background: var(--tc-sky-soft); border-color: transparent; }

/* Inline CTA band inside content */
.tc-cta-inline { background: var(--tc-indigo); color: #fff; border-radius: 16px; padding: clamp(28px, 4vw, 48px); text-align: center; }
.tc-cta-inline h2 { color: #fff; margin-top: 0; }
.tc-cta-inline p { color: #C9D2E8; max-width: 52ch; margin: 0 auto 24px; }
.tc-cta-inline__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Countries grouped by region */
.tc-region { margin-bottom: 32px; }
.tc-region__title { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; margin-bottom: 16px; }
.tc-region__title .tc-icon { color: var(--tc-sky); width: 22px; height: 22px; }

/* Contact two-column layout */
.tc-contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.tc-contact-aside { background: var(--tc-surface); border: 1px solid var(--tc-border); border-radius: 16px; padding: 32px; }
.tc-contact-aside h2 { margin-top: 0; font-size: 1.3rem; }

/* Prose emphasis */
.tc-prose--wide { max-width: 900px; }
.tc-lede { font-size: 1.2rem; color: var(--tc-slate); }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 1000px) {
	.tc-band__grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
	.tc-country-grid { grid-template-columns: repeat(3, 1fr); }
	.tc-industry-grid { grid-template-columns: repeat(2, 1fr); }
	.tc-pillars { grid-template-columns: repeat(2, 1fr); }
	.tc-steps { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
	.tc-process { grid-template-columns: 1fr; gap: 32px; }
	.tc-paths { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
	.tc-nav { display: none; }
	.tc-header__cta { display: none; }
	.tc-navtoggle { display: inline-flex; }
	.tc-nav__mobile-cta { display: block; margin-top: 12px; padding: 12px 14px; border-radius: var(--tc-radius-sm); background: var(--tc-indigo); color: #fff; font-family: var(--tc-font-head); font-weight: 600; text-align: center; }
	.tc-nav__mobile-cta:hover { background: var(--tc-indigo-700); color: #fff; text-decoration: none; }
	html.tc-nav-open .tc-nav {
		display: block; position: fixed; top: 72px; right: 0; bottom: 0; width: min(320px, 84vw);
		background: #fff; border-left: 1px solid var(--tc-border); z-index: 45; padding: 16px; overflow-y: auto;
	}
	html.tc-nav-open .tc-navtoggle__open { display: none; }
	html.tc-nav-open .tc-navtoggle__close { display: inline-flex; }
	.tc-nav__list { flex-direction: column; gap: 2px; }
	.tc-nav .sub-menu { position: static; display: block; box-shadow: none; border: 0; padding-left: 12px; min-width: 0; }
	.tc-hero__inner { grid-template-columns: 1fr; gap: 32px; }
	.tc-hero__media { order: -1; aspect-ratio: 16 / 10; }
	.tc-split, .tc-pillars { grid-template-columns: 1fr; }
	.tc-feature { grid-template-columns: 1fr; gap: 28px; }
	.tc-feature--reverse .tc-feature__media { order: -1; }
	.tc-cards2, .tc-contact-layout { grid-template-columns: 1fr; }
	.tc-footer__top { grid-template-columns: 1fr 1fr; gap: 32px; padding-block: 44px 32px; }
	.tc-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
	body { font-size: 16px; }
	.tc-band__grid, .tc-country-grid, .tc-industry-grid, .tc-steps { grid-template-columns: 1fr; }
	.tc-form__row { grid-template-columns: 1fr; }
	.tc-cookie__inner { flex-direction: column; align-items: flex-start; }
	.tc-split__panel { padding: 28px; }
	.tc-contact-aside { padding: 24px; }
	.tc-form { padding: 22px; }
	.tc-logo__img { height: 40px; }
	.tc-footer__top { grid-template-columns: 1fr; }
	.tc-footer__bar-inner { flex-direction: column; align-items: flex-start; }
}
