/* ==========================================================================
   TBCLTech Corporate — main stylesheet
   ========================================================================== */

:root {
	--c-brand: #0B5FFF;
	--c-brand-dark: #0847C2;
	--c-accent: #00A99D;
	--c-navy: #0A1F44;
	--c-navy-2: #0F2B5B;
	--c-ink: #1B2537;
	--c-body: #445066;
	--c-muted: #6B778C;
	--c-line: #E3E8F0;
	--c-mist: #F3F6FB;
	--c-white: #FFFFFF;
	--c-ok: #0E9F6E;
	--c-err: #D92D20;

	--f-body: "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
	--f-head: "Urbanist", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

	--r-sm: 8px;
	--r: 14px;
	--r-lg: 22px;
	--shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
	--shadow: 0 10px 30px -12px rgba(10, 31, 68, .18);
	--shadow-lg: 0 30px 60px -20px rgba(10, 31, 68, .30);

	--container: 1240px;
	--gutter: clamp(16px, 4vw, 32px);
	--section: clamp(64px, 9vw, 120px);
	--header-h: 76px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
html, body { overflow-x: clip; }
body { margin: 0; font-family: var(--f-body); font-size: 18px; font-weight: 500; line-height: 1.65; color: var(--c-body); background: var(--c-white); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--c-brand); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-brand-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--f-head); color: var(--c-ink); line-height: 1.2; margin: 0 0 .6em; font-weight: 700; letter-spacing: -.015em; }
p { margin: 0 0 1.1em; }
ul, ol { padding-left: 1.2em; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid var(--c-brand); outline-offset: 3px; border-radius: 4px; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 1000; background: var(--c-navy); color: #fff; padding: 10px 16px; border-radius: var(--r-sm); }
.skip-link:focus { top: 12px; color: #fff; }
.site-main:focus { outline: none; }
.center { text-align: center; }
.muted { color: var(--c-muted); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 860px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .8em 1.5em; border-radius: 999px; font-family: var(--f-head); font-weight: 700; font-size: 15px; letter-spacing: .01em; line-height: 1.2; border: 2px solid transparent; cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn .tbcl-icon { transition: transform .2s; }
.btn:hover .tbcl-icon { transform: translateX(3px); }
.btn--primary { background: var(--c-brand); color: #fff; box-shadow: 0 8px 20px -8px rgba(11, 95, 255, .6); }
.btn--primary:hover { background: var(--c-brand-dark); color: #fff; }
.btn--light { background: #fff; color: var(--c-navy); }
.btn--light:hover { background: var(--c-mist); color: var(--c-navy); }
.btn--outline { border-color: var(--c-brand); color: var(--c-brand); background: transparent; }
.btn--outline:hover { background: var(--c-brand); color: #fff; }
.btn--ghost-light { border-color: rgba(255, 255, 255, .35); color: #fff; background: rgba(255, 255, 255, .04); }
.btn--ghost-light:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, .1); }
.btn--sm { padding: .6em 1.15em; font-size: 14px; }
.btn--lg { padding: 1em 1.8em; font-size: 16px; }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--center { justify-content: center; margin-top: 24px; }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-family: var(--f-head); font-weight: 700; font-size: 15px; color: var(--c-brand); }
.link-arrow .tbcl-icon { transition: transform .2s; }
.link-arrow:hover .tbcl-icon, .sol-card:hover .link-arrow .tbcl-icon, .rel-card:hover .link-arrow .tbcl-icon { transform: translateX(4px); }
.flip { transform: rotate(180deg); }
.up { transform: rotate(-90deg); }

/* ---------- Eyebrows / section heads ---------- */
.eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-head); font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--c-brand); margin-bottom: 14px; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: linear-gradient(90deg, var(--c-brand), var(--c-accent)); border-radius: 2px; }
.eyebrow--light { color: #8FB6FF; }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title { font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; }
.section-lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--c-muted); margin: 0; }
.split-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.split-head .section-head { margin-bottom: clamp(32px, 4vw, 48px); }
.split-head > .link-arrow { margin-bottom: clamp(32px, 4vw, 48px); }

/* ---------- Sections ---------- */
.section { padding: var(--section) 0; position: relative; }
.section--tight { padding: 48px 0; }
.section--mist { background: var(--c-mist); }
.section--navy { background: var(--c-navy); color: #C5D1E8; overflow: hidden; }
.section--navy h2, .section--navy h3, .section--navy .section-title { color: #fff; }
.section--navy .section-lead { color: #A9B8D6; }
.section--navy .eyebrow { color: #8FB6FF; }
.section__pattern { position: absolute; inset: 0; background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px); background-size: 26px 26px; mask-image: radial-gradient(ellipse at 80% 0%, #000 0%, transparent 65%); -webkit-mask-image: radial-gradient(ellipse at 80% 0%, #000 0%, transparent 65%); pointer-events: none; }
.section--navy .container { position: relative; }

/* ---------- Top bar & header ---------- */
.topbar { background: var(--c-navy); color: #B7C4DD; font-size: 13.5px; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 40px; gap: 16px; }
.topbar ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; align-items: center; }
.topbar a { color: #B7C4DD; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { color: #fff; }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar .social { gap: 12px; }

.site-header { background: rgba(255, 255, 255, .96); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--c-line); z-index: 100; position: relative; }
.has-sticky-header .site-header { position: sticky; top: 0; }
.admin-bar.has-sticky-header .site-header { top: 32px; }
.site-header.is-scrolled { box-shadow: 0 6px 24px -12px rgba(10, 31, 68, .25); }
.site-header__inner { display: flex; align-items: center; gap: 28px; min-height: var(--header-h); }
.brand { flex: 0 0 auto; }
.brand img { max-height: 48px; width: auto; }
.brand__text { display: inline-flex; align-items: center; gap: 10px; color: var(--c-navy); }
.brand__text:hover { color: var(--c-navy); }
.brand__name { font-family: var(--f-head); font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.brand__text--light, .brand__text--light:hover { color: #fff; }

.primary-nav { flex: 1 1 auto; display: flex; justify-content: center; }
.primary-nav .menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; }
.primary-nav .menu > li { position: relative; display: flex; align-items: center; }
.primary-nav .menu > li > a { display: flex; align-items: center; padding: 26px 12px; font-family: var(--f-head); font-weight: 600; font-size: 15.5px; color: var(--c-ink); position: relative; }
.primary-nav .menu > li > a::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 18px; height: 2px; background: var(--c-brand); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.primary-nav .menu > li:hover > a::after, .primary-nav .menu > li.current-menu-item > a::after, .primary-nav .menu > li.current-menu-ancestor > a::after, .primary-nav .menu > li.current_page_parent > a::after { transform: scaleX(1); }
.primary-nav .menu > li > a:hover { color: var(--c-brand); }
.submenu-toggle { background: none; border: 0; padding: 4px; margin-left: -8px; color: var(--c-muted); cursor: pointer; display: inline-flex; }
.primary-nav .sub-menu { list-style: none; margin: 0; padding: 10px; position: absolute; top: 100%; left: -12px; min-width: 340px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s, transform .2s, visibility .2s; }
.primary-nav .menu > li:hover > .sub-menu, .primary-nav .menu > li:focus-within > .sub-menu, .primary-nav .menu > li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--c-ink); font-weight: 600; font-size: 15px; font-family: var(--f-head); }
.primary-nav .sub-menu a:hover { background: var(--c-mist); color: var(--c-brand); }
.menu-desc { display: block; font-family: var(--f-body); font-weight: 400; font-size: 13px; color: var(--c-muted); margin-top: 2px; }
.nav-cta-mobile { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.icon-btn { background: none; border: 0; width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--c-ink); cursor: pointer; transition: background .2s; }
.icon-btn:hover { background: var(--c-mist); }
.nav-toggle { display: none; }
.nav-toggle__close { display: none; }
.nav-open .nav-toggle__open { display: none; }
.nav-open .nav-toggle__close { display: inline-flex; }
.header-search { border-top: 1px solid var(--c-line); padding: 16px 0; background: #fff; }

.search-form { display: flex; align-items: center; background: #fff; border: 1.5px solid var(--c-line); border-radius: 999px; padding: 4px 4px 4px 20px; max-width: 640px; margin: 0 auto; }
.search-form:focus-within { border-color: var(--c-brand); }
.search-form__input { flex: 1; border: 0; outline: none; background: transparent; padding: 8px 0; min-width: 0; }
.search-form__btn { width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--c-brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; }

/* ---------- Homepage hero ---------- */
.hero { position: relative; background: var(--c-navy); color: #C5D1E8; overflow: hidden; padding: clamp(64px, 9vw, 120px) 0 clamp(72px, 10vw, 130px); }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; }
.hero__glow--1 { width: 620px; height: 620px; background: #0B5FFF; top: -260px; right: -120px; }
.hero__glow--2 { width: 460px; height: 460px; background: #00A99D; bottom: -280px; left: -160px; opacity: .35; }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse at 70% 40%, #000 10%, transparent 70%); -webkit-mask-image: radial-gradient(ellipse at 70% 40%, #000 10%, transparent 70%); }
.hero__inner { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero__title { color: #fff; font-size: clamp(36px, 4.6vw, 62px); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; margin-bottom: 24px; }
.hero__title span { display: block; background: linear-gradient(90deg, #6FA3FF 0%, #3DDBD0 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { font-size: clamp(17px, 1.7vw, 20px); color: #B7C4DD; max-width: 580px; margin-bottom: 32px; }
.hero__proof { list-style: none; padding: 0; margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 12px 24px; font-size: 14.5px; }
.hero__proof li { display: inline-flex; align-items: center; gap: 8px; }
.hero__proof .tbcl-icon { color: #3DDBD0; }
.hero__media { position: relative; }
.hero__img { width: 100%; filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .35)); animation: floaty 7s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ---------- Inner page hero ---------- */
.page-hero { position: relative; background: var(--c-navy); color: #B7C4DD; overflow: hidden; padding: clamp(48px, 7vw, 96px) 0; }
.page-hero__bg { position: absolute; inset: 0; background: radial-gradient(900px 500px at 90% -10%, rgba(11, 95, 255, .55), transparent 60%), radial-gradient(600px 400px at -10% 120%, rgba(0, 169, 157, .35), transparent 60%); pointer-events: none; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 48px 48px; mask-image: linear-gradient(90deg, transparent, #000 60%); -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%); }
.page-hero__inner { position: relative; }
.page-hero--media .page-hero__inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.page-hero__title { color: #fff; font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; letter-spacing: -.025em; line-height: 1.08; }
.page-hero__lead { font-size: clamp(17px, 1.6vw, 20px); max-width: 680px; margin-bottom: 28px; color: #B7C4DD; }
.page-hero--compact { padding: clamp(40px, 6vw, 72px) 0; }
.page-hero--compact .page-hero__lead { margin-bottom: 0; }
.page-hero__img { width: 100%; filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .35)); }
.partner-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); color: #E4ECFA; border-radius: 999px; padding: 8px 16px; font-size: 14.5px; margin-bottom: 28px; }
.partner-pill .tbcl-icon { color: #3DDBD0; }
.partner-pill strong { color: #fff; }

.breadcrumbs ol { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; font-size: 14px; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; color: #8FA2C5; }
.breadcrumbs li + li::before { content: "/"; opacity: .5; }
.breadcrumbs a { color: #C5D1E8; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs [aria-current] { color: #fff; }

/* ---------- Client logos ---------- */
.clients { border-bottom: 1px solid var(--c-line); }
.clients__title { text-align: center; font-size: 14px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 28px; }
.clients__track { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.clients__list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: clamp(32px, 5vw, 64px); width: max-content; }
.clients__list.is-marquee { animation: marquee var(--marquee-duration, 40s) linear infinite; }
.clients__track:hover .clients__list { animation-play-state: paused; }
.clients__list li { flex: 0 0 auto; }
.clients__list img { height: 48px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: .65; transition: filter .3s, opacity .3s; }
.clients__list li:hover img { filter: none; opacity: 1; }
.clients__name { font-family: var(--f-head); font-weight: 800; font-size: 20px; color: #98A2B3; }
@keyframes marquee { to { transform: translateX(-50%); } }
.admin-hint { display: flex; align-items: center; gap: 10px; justify-content: center; margin: 0; padding: 14px 18px; border: 1.5px dashed #B8C6E0; border-radius: var(--r); color: var(--c-muted); font-size: 14.5px; background: #FAFBFE; }

/* ---------- Cards / grids ---------- */
.card-grid { display: grid; gap: 24px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--solutions { grid-template-columns: repeat(6, 1fr); }
.card-grid--solutions .sol-card { grid-column: span 2; }
.card-grid--solutions .sol-card--feature { grid-column: span 4; flex-direction: row; }
.card-grid--solutions .sol-card--wide { grid-column: span 6; }
.card-grid--solutions .sol-card--wide .sol-card__media { flex: 0 0 40%; }
.card-grid--solutions .sol-card--feature .sol-card__media { flex: 0 0 48%; aspect-ratio: auto; }

.sol-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.sol-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.sol-card__media { background: linear-gradient(135deg, #EAF1FF, #E6F7F5); aspect-ratio: 16 / 10; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sol-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 14px 14px 0; transition: transform .5s; }
.sol-card:hover .sol-card__media img { transform: scale(1.04); }
.sol-card__body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.sol-card__body p { font-size: 15.5px; }
.sol-card__body .link-arrow { margin-top: auto; }
.sol-card__icon { width: 48px; height: 48px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--c-brand); color: #fff; margin: -52px 0 14px; position: relative; box-shadow: 0 10px 20px -8px rgba(11, 95, 255, .6); }
.sol-card--feature .sol-card__icon { margin-top: 0; }
.sol-card--feature .sol-card__body { padding: 36px; }
.sol-card--feature .sol-card__title { font-size: 26px; }
.sol-card--feature .check-list li { font-size: 14.5px; }
.sol-card--feature .sol-card__media img { padding: 20px; }
.sol-card__partner { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--c-accent); margin-bottom: 6px; }
.sol-card__title { font-size: 21px; margin-bottom: 10px; }
.sol-card__title a { color: var(--c-ink); }
.stretched::after { content: ""; position: absolute; inset: 0; z-index: 1; }

.svc-card { display: block; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: 28px; color: var(--c-body); transition: transform .25s, box-shadow .25s, border-color .25s; position: relative; overflow: hidden; }
.svc-card::before { content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%; background: linear-gradient(90deg, var(--c-brand), var(--c-accent)); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--c-body); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon, .cap-card__icon, .feature__icon, .rel-card__icon, .mv-card__icon, .info-card__icon { width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, rgba(11, 95, 255, .12), rgba(0, 169, 157, .12)); color: var(--c-brand); margin-bottom: 18px; }
.svc-card__title { font-size: 18px; margin-bottom: 8px; }
.svc-card p { font-size: 15px; margin: 0; }

.cap-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: 32px; transition: box-shadow .25s, transform .25s; }
.cap-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.cap-card__title { font-size: 19px; }
.cap-card p { font-size: 15.5px; margin: 0; }

.rel-card { position: relative; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: 30px; transition: box-shadow .25s, transform .25s; }
.rel-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.rel-card h3 { font-size: 19px; }
.rel-card h3 a { color: var(--c-ink); }
.rel-card p { font-size: 15px; }

/* Features (why) */
.why__layout { display: grid; grid-template-columns: .9fr 1.4fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.why__intro .section-head { margin-bottom: 28px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why .feature-grid { grid-template-columns: repeat(2, 1fr); }
.feature { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: 28px; }
.feature__title { font-size: 18px; margin-bottom: 8px; }
.feature p { font-size: 15px; margin: 0; }
.feature-grid--dark .feature { background: rgba(255, 255, 255, .04); border-color: rgba(255, 255, 255, .1); transition: background .25s, border-color .25s; }
.feature-grid--dark .feature:hover { background: rgba(255, 255, 255, .07); border-color: rgba(143, 182, 255, .35); }
.feature-grid--dark .feature__icon { background: rgba(143, 182, 255, .12); color: #8FB6FF; }
.feature-grid--dark .feature p { color: #A9B8D6; }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--c-line); }
.stat { padding: 32px 24px 0; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 32px; bottom: 0; width: 1px; background: var(--c-line); }
.stat__value { display: block; font-family: var(--f-head); font-weight: 800; font-size: clamp(36px, 4.4vw, 56px); line-height: 1; letter-spacing: -.03em; background: linear-gradient(90deg, var(--c-brand), var(--c-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; }
.stat__label { font-size: 15px; color: var(--c-muted); }
.stats--dark { border-color: rgba(255, 255, 255, .12); }
.stats--dark .stat + .stat::before { background: rgba(255, 255, 255, .12); }
.stats--dark .stat__value { background: linear-gradient(90deg, #8FB6FF, #3DDBD0); -webkit-background-clip: text; background-clip: text; }
.stats--dark .stat__label { color: #A9B8D6; }

/* Partner strip */
.partner-strip { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.partner-strip a { display: flex; align-items: center; gap: 14px; height: 100%; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); padding: 20px; color: var(--c-body); transition: box-shadow .25s, transform .25s, border-color .25s; }
.partner-strip a:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: transparent; }
.partner-strip__icon { flex: 0 0 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: var(--c-navy); color: #fff; }
.partner-strip strong { display: block; font-family: var(--f-head); color: var(--c-ink); font-size: 16.5px; line-height: 1.25; }
.partner-strip small { display: block; font-size: 13px; color: var(--c-muted); line-height: 1.35; margin-top: 2px; }
.partner-strip--light a { background: rgba(255, 255, 255, .05); border-color: rgba(255, 255, 255, .12); }
.partner-strip--light strong { color: #fff; }
.partner-strip--light small { color: #A9B8D6; }
.partner-strip--light .partner-strip__icon { background: var(--c-brand); }

/* Industries tabs */
.tabs__list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.tabs__tab { display: inline-flex; align-items: center; gap: 8px; padding: 12px 18px; border: 1.5px solid var(--c-line); background: #fff; border-radius: 999px; font-family: var(--f-head); font-weight: 600; font-size: 14.5px; color: var(--c-ink); cursor: pointer; transition: all .2s; }
.tabs__tab:hover { border-color: var(--c-brand); color: var(--c-brand); }
.tabs__tab[aria-selected="true"] { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.ind-panel { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; background: linear-gradient(135deg, #F3F7FF, #EEF9F8); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 56px); animation: fade .35s ease; }
.ind-panel__title { font-size: clamp(24px, 2.6vw, 32px); }
.ind-panel__text { font-size: 18px; }
.ind-panel__box { background: #fff; border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.ind-panel__label { font-family: var(--f-head); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--c-accent); margin-bottom: 14px; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.check-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; color: var(--c-ink); }
.check-list .tbcl-icon { flex: 0 0 auto; margin-top: 3px; color: var(--c-accent); }
.check-list--2col { grid-template-columns: 1fr 1fr; }

/* Process steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; counter-reset: s; position: relative; }
.steps::before { content: ""; position: absolute; top: 28px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, #C9D6EE 0 8px, transparent 8px 16px); }
.step { position: relative; text-align: center; padding: 0 6px; }
.step__num { position: relative; display: inline-flex; align-items: center; justify-content: center; width: 58px; height: 58px; border-radius: 50%; background: #fff; border: 2px solid var(--c-brand); color: var(--c-brand); font-family: var(--f-head); font-weight: 800; font-size: 18px; margin-bottom: 18px; box-shadow: 0 0 0 8px #fff; transition: background .25s, color .25s; }
.section--mist .step__num { box-shadow: 0 0 0 8px var(--c-mist); }
.step:hover .step__num { background: var(--c-brand); color: #fff; }
.step__title { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; margin: 0; }

/* Testimonials */
.t-slider { position: relative; max-width: 920px; margin: 0 auto; }
.t-slider__track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; gap: 24px; scrollbar-width: none; }
.t-slider__track::-webkit-scrollbar { display: none; }
.t-card { flex: 0 0 100%; scroll-snap-align: center; margin: 0; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(28px, 5vw, 56px); text-align: center; }
.t-card__mark { color: var(--c-brand); opacity: .25; margin: 0 auto 12px; }
.t-card__quote { margin: 0 0 28px; font-family: var(--f-head); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; color: var(--c-ink); font-weight: 500; }
.t-card__quote p:last-child { margin: 0; }
.t-card__by { display: inline-flex; align-items: center; gap: 14px; text-align: left; }
.t-card__by strong { display: block; color: var(--c-ink); font-family: var(--f-head); }
.t-card__by small { color: var(--c-muted); font-size: 14px; }
.t-card__avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.t-card__avatar--initials { display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-brand), var(--c-accent)); color: #fff; font-weight: 800; font-family: var(--f-head); font-size: 20px; }
.t-slider__nav { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.t-slider__btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--c-line); background: #fff; color: var(--c-ink); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; }
.t-slider__btn:hover { background: var(--c-navy); border-color: var(--c-navy); color: #fff; }
.t-slider.is-single .t-slider__nav { display: none; }

/* Post cards */
.post-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .25s, transform .25s; }
.post-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.post-card__media { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--c-mist); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.post-card:hover .post-card__media img { transform: scale(1.04); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__cat { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--c-accent); margin-bottom: 8px; }
.post-card__title { font-size: 19px; line-height: 1.35; margin-bottom: 10px; }
.post-card__title a { color: var(--c-ink); }
.post-card__title a:hover { color: var(--c-brand); }
.post-card__excerpt { font-size: 15px; }
.post-card__meta { margin: auto 0 0; display: flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--c-muted); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--c-brand) 0%, #0A44C9 55%, var(--c-navy) 100%); color: #DCE6FB; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; right: -120px; top: -160px; width: 480px; height: 480px; border-radius: 50%; border: 70px solid rgba(255, 255, 255, .06); }
.cta-band__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; padding: clamp(48px, 6vw, 80px) var(--gutter); }
.cta-band__inner > div:first-child { flex: 1 1 520px; }
.cta-band__title { color: #fff; font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin-bottom: 8px; }
.cta-band__text { margin: 0; font-size: 18px; }

/* Solutions overview rows */
.sol-rows { display: grid; gap: clamp(56px, 7vw, 96px); }
.sol-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.sol-row--reverse .sol-row__media { order: 2; }
.sol-row__media { background: linear-gradient(135deg, #EAF1FF, #E6F7F5); border-radius: var(--r-lg); padding: clamp(16px, 3vw, 32px); }
.sol-row__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; }
.sol-row__lead { font-size: 18px; }

.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; counter-reset: f; }
.flow__step { position: relative; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12); border-radius: var(--r); padding: 28px 22px; }
.flow__step > span { display: inline-flex; width: 52px; height: 52px; border-radius: 14px; align-items: center; justify-content: center; background: var(--c-brand); color: #fff; margin-bottom: 16px; }
.flow__step:nth-child(even) > span { background: var(--c-accent); }
.flow__step h3 { font-size: 19px; }
.flow__step p { font-size: 15px; color: #A9B8D6; margin: 0; }
.flow__step:not(:last-child)::after { content: "→"; position: absolute; right: -14px; top: 40px; color: #8FB6FF; font-size: 20px; z-index: 1; }

/* Solution detail */
.overview { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.overview__text p { font-size: 18px; }
.overview__text .section-title { font-size: clamp(26px, 3vw, 38px); }
.info-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow); position: sticky; top: calc(var(--header-h) + 24px); }
.info-card h3 { font-size: 20px; }
.info-card h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .1em; color: var(--c-muted); margin-top: 20px; }
.info-card p { font-size: 15.5px; }
.outcomes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.outcome { border-top: 2px solid rgba(143, 182, 255, .4); padding-top: 24px; }
.outcome .tbcl-icon { color: #3DDBD0; margin-bottom: 14px; }
.outcome h3 { font-size: 20px; }
.outcome p { color: #A9B8D6; font-size: 15.5px; margin: 0; }
.modules { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.modules .section-head { margin-bottom: 24px; }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.chips li { padding: 10px 18px; border-radius: 999px; background: var(--c-mist); border: 1px solid var(--c-line); font-weight: 600; font-size: 14.5px; color: var(--c-ink); transition: all .2s; }
.chips li:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.ind-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.ind-chip { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: var(--r); border: 1px solid var(--c-line); background: #fff; font-family: var(--f-head); font-weight: 600; color: var(--c-ink); transition: all .2s; }
.ind-chip .tbcl-icon { color: var(--c-brand); }
.ind-chip:hover { box-shadow: var(--shadow); border-color: transparent; color: var(--c-brand); }

.faq-wrap { display: grid; grid-template-columns: .8fr 1.4fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.faq { display: grid; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary h3 { font-size: 17.5px; margin: 0; }
.faq__item summary .tbcl-icon { flex: 0 0 auto; color: var(--c-brand); transition: transform .25s; }
.faq__item[open] summary .tbcl-icon { transform: rotate(45deg); }
.faq__a { padding: 0 24px 20px; }
.faq__a p { margin: 0; font-size: 16px; }

/* Services page */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--c-line); }
.svc-item { display: grid; grid-template-columns: 120px 1.3fr 1fr; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--c-line); align-items: start; }
.svc-item__head { display: flex; flex-direction: column; gap: 14px; }
.svc-item__num { font-family: var(--f-head); font-weight: 800; font-size: 15px; color: var(--c-muted); }
.svc-item__icon { width: 60px; height: 60px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: var(--c-navy); color: #fff; }
.svc-item__title { font-size: clamp(22px, 2.2vw, 28px); }
.svc-item__body p { font-size: 17px; margin: 0; }
.svc-item__list { margin: 0; background: var(--c-mist); border-radius: var(--r); padding: 24px; }
.model-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: 36px; }
.model-card h3 { font-size: 22px; }
.model-card__best { display: flex; align-items: center; gap: 8px; margin: 20px 0 0; padding-top: 18px; border-top: 1px solid var(--c-line); font-weight: 600; font-size: 14.5px; color: var(--c-brand); }
.model-card--highlight { background: var(--c-navy); border-color: var(--c-navy); color: #B7C4DD; transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.model-card--highlight h3 { color: #fff; }
.model-card--highlight .model-card__best { border-color: rgba(255, 255, 255, .15); color: #8FB6FF; }

/* Industries page */
.ind-list { display: grid; gap: 24px; }
.ind-item { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(24px, 3vw, 40px); transition: box-shadow .25s; }
.ind-item:hover { box-shadow: var(--shadow); }
.ind-item__icon { width: 64px; height: 64px; border-radius: 16px; display: inline-flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-brand), var(--c-accent)); color: #fff; margin-bottom: 18px; }
.ind-item__title { font-size: 24px; }
.ind-item__box { background: var(--c-mist); border-radius: var(--r); padding: 24px; }
.ind-item__box .check-list { margin: 0; }
.link-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.link-list a { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15.5px; }

/* About */
.story { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.story__text p { font-size: 17.5px; }
.story__cards { display: grid; gap: 20px; }
.mv-card { background: var(--c-mist); border-radius: var(--r-lg); padding: 36px; }
.mv-card h3 { font-size: 22px; }
.mv-card p { margin: 0; font-size: 17px; }
.mv-card--dark { background: var(--c-navy); color: #B7C4DD; }
.mv-card--dark h3 { color: #fff; }
.mv-card--dark .mv-card__icon { background: rgba(143, 182, 255, .14); color: #8FB6FF; }
.careers { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center; background: linear-gradient(135deg, #F3F7FF, #EEF9F8); border-radius: var(--r-lg); padding: clamp(32px, 5vw, 64px); }
.careers__list { margin: 0; background: #fff; padding: 28px; border-radius: var(--r); box-shadow: var(--shadow); }

/* Contact */
.contact { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact__form { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 48px); box-shadow: var(--shadow); }
.contact__title { font-size: clamp(24px, 2.4vw, 30px); margin-bottom: 6px; }
.contact__aside { display: grid; gap: 20px; }
.contact-card { background: var(--c-mist); border-radius: var(--r-lg); padding: 32px; }
.contact-card__title { font-size: 22px; }
.contact-card__list { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 18px; }
.contact-card__list li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--c-ink); }
.contact-card__list small { display: block; color: var(--c-muted); font-size: 13px; }
.contact-card__icon { flex: 0 0 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; background: #fff; color: var(--c-brand); box-shadow: var(--shadow-sm); }
.contact-card--dark { background: var(--c-navy); color: #B7C4DD; }
.contact-card--dark h3 { color: #fff; font-size: 20px; }
.next-steps { margin: 0; padding-left: 1.2em; display: grid; gap: 10px; }
.map-embed iframe { display: block; filter: grayscale(.3); }

/* Forms */
.tbcl-form { margin-top: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
.field { margin: 0 0 18px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-weight: 600; font-size: 14.5px; color: var(--c-ink); margin-bottom: 6px; }
.field label span { color: var(--c-err); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--c-line); border-radius: 10px; background: #FBFCFE; transition: border-color .2s, box-shadow .2s, background .2s; font-size: 16px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-brand); background: #fff; box-shadow: 0 0 0 4px rgba(11, 95, 255, .12); }
.field--check label { display: flex; gap: 10px; align-items: flex-start; font-weight: 400; font-size: 14.5px; color: var(--c-body); }
.field--check input { margin-top: 5px; accent-color: var(--c-brand); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-alert { display: flex; gap: 10px; align-items: center; padding: 16px 20px; border-radius: 12px; margin: 20px 0 0; font-weight: 600; }
.form-alert--ok { background: #E7F7F0; color: #05603A; }
.form-alert--err { background: #FEECEB; color: #B42318; }

/* Blog */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.cat-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cat-filter a { padding: 8px 16px; border-radius: 999px; border: 1.5px solid var(--c-line); color: var(--c-ink); font-weight: 600; font-size: 14px; }
.cat-filter a:hover, .cat-filter a.is-active { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.blog-sidebar { display: grid; gap: 24px; position: sticky; top: calc(var(--header-h) + 24px); }
.widget { background: var(--c-mist); border-radius: var(--r); padding: 24px; }
.widget-title { font-size: 16px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.widget ul { list-style: none; margin: 0; padding: 0; }
.widget li { padding: 8px 0; border-bottom: 1px solid var(--c-line); font-size: 15px; }
.widget li:last-child { border: 0; }
.widget li a { color: var(--c-ink); }
.widget li a:hover { color: var(--c-brand); }
.widget .search-form { max-width: none; }
.widget--cta { background: linear-gradient(135deg, var(--c-brand), var(--c-navy)); color: #DCE6FB; }
.widget--cta .widget-title { color: #fff; }
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.pagination .page-numbers { min-width: 44px; height: 44px; padding: 0 14px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1.5px solid var(--c-line); color: var(--c-ink); font-weight: 600; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background: var(--c-navy); color: #fff; border-color: var(--c-navy); }
.empty-state { text-align: center; padding: 48px 24px; background: var(--c-mist); border-radius: var(--r-lg); }

.post-hero { position: relative; background: var(--c-navy); padding: clamp(48px, 6vw, 88px) 0 clamp(96px, 10vw, 140px); overflow: hidden; }
.post-hero__inner { position: relative; }
.post-hero__cat { display: inline-block; padding: 6px 14px; border-radius: 999px; background: rgba(61, 219, 208, .14); color: #3DDBD0; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.post-hero__title { color: #fff; font-size: clamp(30px, 4.2vw, 50px); font-weight: 800; letter-spacing: -.025em; line-height: 1.12; }
.post-hero__meta { display: flex; flex-wrap: wrap; gap: 20px; color: #A9B8D6; font-size: 14.5px; margin: 0; }
.post-hero__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-cover { margin: clamp(-80px, -7vw, -60px) 0 40px; position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.post-cover img { width: 100%; }
.single-post .entry-content { padding-top: 48px; }
.single-post .post-cover + .entry-content { padding-top: 0; }

.entry-content { font-size: 18px; line-height: 1.75; color: #36415A; }
.entry-content > * { max-width: 100%; }
.entry-content h2 { font-size: clamp(24px, 2.6vw, 32px); margin-top: 1.8em; }
.entry-content h3 { font-size: clamp(20px, 2vw, 24px); margin-top: 1.6em; }
.entry-content ul, .entry-content ol { padding-left: 1.3em; margin: 0 0 1.4em; }
.entry-content li { margin-bottom: .5em; }
.entry-content ul li::marker { color: var(--c-brand); }
.entry-content blockquote { margin: 1.8em 0; padding: 20px 28px; border-left: 4px solid var(--c-brand); background: var(--c-mist); border-radius: 0 var(--r) var(--r) 0; font-family: var(--f-head); font-size: 20px; color: var(--c-ink); }
.entry-content img { border-radius: var(--r); }
.entry-content table { width: 100%; border-collapse: collapse; margin: 0 0 1.5em; font-size: 16px; }
.entry-content th, .entry-content td { border: 1px solid var(--c-line); padding: 12px 14px; text-align: left; }
.entry-content th { background: var(--c-mist); color: var(--c-ink); }
.entry-content a { text-decoration: underline; text-underline-offset: 3px; }
.entry-content .wp-block-button__link { text-decoration: none; }
.extra-content .entry-content { font-size: 17px; }

.post-footer { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--c-line); display: grid; gap: 24px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags a { padding: 6px 14px; background: var(--c-mist); border-radius: 999px; font-size: 14px; color: var(--c-ink); }
.share { display: flex; align-items: center; gap: 10px; font-weight: 600; color: var(--c-ink); }
.share a { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--c-line); display: inline-flex; align-items: center; justify-content: center; color: var(--c-ink); }
.share a:hover { background: var(--c-brand); border-color: var(--c-brand); color: #fff; }
.author-box { display: flex; gap: 18px; align-items: center; padding: 24px; background: var(--c-mist); border-radius: var(--r); }
.author-box img { border-radius: 50%; }
.author-box p { margin: 0; font-size: 15px; }
.author-box__name { font-family: var(--f-head); font-weight: 700; color: var(--c-ink); font-size: 17px !important; }
.post-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin: 48px 0; padding: 32px; border-radius: var(--r-lg); background: var(--c-navy); color: #B7C4DD; }
.post-cta h2 { color: #fff; font-size: 22px; margin-bottom: 4px; }
.post-cta p { margin: 0; }
.comments { margin: 48px 0; }
.comment-list { list-style: none; padding: 0; }

.error-404 { padding: clamp(80px, 12vw, 160px) 0; }
.error-404__code { font-family: var(--f-head); font-weight: 800; font-size: clamp(96px, 16vw, 180px); line-height: 1; margin: 0 0 16px; background: linear-gradient(90deg, var(--c-brand), var(--c-accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.error-404 .search-form { margin-top: 32px; }

/* ---------- Footer ---------- */
.site-footer { background: #071631; color: #8FA2C5; font-size: 15px; padding-top: clamp(56px, 7vw, 88px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-about { margin: 18px 0 22px; max-width: 380px; }
.footer-contact { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact .tbcl-icon { flex: 0 0 auto; margin-top: 3px; color: #3DDBD0; }
.site-footer a { color: #C5D1E8; }
.site-footer a:hover { color: #fff; }
.footer-title { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 18px; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col--news p { margin-bottom: 18px; }
.social { list-style: none; margin: 0; padding: 0; display: flex; gap: 10px; }
.site-footer .social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255, 255, 255, .06); display: inline-flex; align-items: center; justify-content: center; }
.site-footer .social a:hover { background: var(--c-brand); }
.contact-card .social a { width: 38px; height: 38px; border-radius: 50%; background: #fff; display: inline-flex; align-items: center; justify-content: center; color: var(--c-navy); }
.footer-partners { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 14px; }
.footer-partners span { color: #6F82A8; }
.footer-partners a { font-family: var(--f-head); font-weight: 700; color: #C5D1E8; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .08); font-size: 13.5px; }
.footer-bottom p { margin: 0; }
.footer-tm { display: block; color: #6F82A8; font-size: 12.5px; margin-top: 4px; }
.legal-links { list-style: none; margin: 0; padding: 0; display: flex; gap: 20px; }
.back-to-top { position: fixed; right: 20px; bottom: 20px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--c-brand); color: #fff; display: inline-flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s; z-index: 90; }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }

/* Elementor full width */
.elementor-page-wrap { min-height: 40vh; }

/* ---------- Reveal animations ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
	.js .reveal { opacity: 1; transform: none; }
}

/* ---------- WordPress core ---------- */
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption-text, figcaption { font-size: 14px; color: var(--c-muted); text-align: center; margin-top: 8px; }
.sticky, .bypostauthor, .gallery-caption { }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
	.primary-nav .menu > li > a { padding: 26px 9px; font-size: 15px; }
	.footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
	.footer-col--news { grid-column: 1 / -1; }
	.partner-strip { grid-template-columns: repeat(3, 1fr); }
	.flow { grid-template-columns: repeat(3, 1fr); }
	.flow__step::after { display: none; }
}

@media (max-width: 1024px) {
	:root { --header-h: 68px; }
	.nav-toggle { display: inline-flex; }
	.header-cta { display: none; }
	.site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
	.primary-nav { position: fixed; inset: var(--nav-top, var(--header-h)) 0 0 0; background: #fff; display: block; padding: 16px var(--gutter) 40px; overflow-y: auto; transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s; z-index: 99; }
	.nav-open .primary-nav { transform: none; visibility: visible; }
	.nav-open { overflow: hidden; }
	.primary-nav .menu { flex-direction: column; align-items: stretch; gap: 0; }
	.primary-nav .menu > li { flex-wrap: wrap; border-bottom: 1px solid var(--c-line); }
	.primary-nav .menu > li > a { flex: 1; padding: 16px 0; font-size: 17px; }
	.primary-nav .menu > li > a::after { display: none; }
	.submenu-toggle { width: 44px; height: 44px; justify-content: center; margin: 0; }
	.primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 12px; min-width: 0; width: 100%; display: none; }
	.primary-nav .menu > li.is-open > .sub-menu { display: block; }
	.primary-nav .menu > li:hover > .sub-menu { display: none; }
	.primary-nav .menu > li.is-open:hover > .sub-menu { display: block; }
	.submenu-toggle[aria-expanded="true"] .tbcl-icon { transform: rotate(180deg); }
	.nav-cta-mobile { display: flex; margin-top: 24px; width: 100%; }
	.hero__inner, .page-hero--media .page-hero__inner { grid-template-columns: 1fr; }
	.hero__media { max-width: 640px; }
	.page-hero__media { max-width: 520px; }
	.why__layout, .overview, .modules, .faq-wrap, .story, .contact, .careers, .blog-layout { grid-template-columns: 1fr; }
	.info-card, .blog-sidebar { position: static; }
	.card-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.card-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.card-grid--solutions { grid-template-columns: repeat(2, 1fr); }
	.card-grid--solutions .sol-card { grid-column: span 1; }
	.card-grid--solutions .sol-card--feature, .card-grid--solutions .sol-card--wide { grid-column: span 2; }
	.steps { grid-template-columns: repeat(3, 1fr); row-gap: 40px; }
	.steps::before { display: none; }
	.outcomes { grid-template-columns: repeat(2, 1fr); }
	.ind-panel { grid-template-columns: 1fr; }
	.ind-item { grid-template-columns: 1fr 1fr; }
	.ind-item__intro { grid-column: 1 / -1; }
	.svc-item { grid-template-columns: 80px 1fr; }
	.svc-item__list { grid-column: 2; }
	.sol-row, .sol-row--reverse { grid-template-columns: 1fr; }
	.sol-row--reverse .sol-row__media { order: 0; }
	.model-card--highlight { transform: none; }
	.stats { grid-template-columns: repeat(2, 1fr); }
	.stat:nth-child(3)::before { display: none; }
}

@media (max-width: 782px) {
	.admin-bar.has-sticky-header .site-header { top: 0; }
}

@media (max-width: 720px) {
	body { font-size: 16px; }
	.btn { white-space: normal; text-align: center; }
	.sol-row > *, .overview > *, .contact > * { min-width: 0; }
	.topbar__contact li:last-child, .topbar__right { display: none; }
	.topbar__inner { justify-content: center; }
	.topbar__right .social { display: none; }
	.card-grid--2, .card-grid--3, .card-grid--4, .card-grid--solutions { grid-template-columns: 1fr; }
	.card-grid--solutions .sol-card--feature, .card-grid--solutions .sol-card--wide { grid-column: span 1; flex-direction: column; }
	.card-grid--solutions .sol-card--feature .sol-card__media { aspect-ratio: 16 / 10; }
	.card-grid--solutions .sol-card--feature .sol-card__icon { margin-top: -52px; }
	.feature-grid, .why .feature-grid { grid-template-columns: 1fr; }
	.steps { grid-template-columns: 1fr; text-align: left; }
	.step { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; text-align: left; }
	.step__num { grid-row: span 2; margin: 0; }
	.outcomes, .flow, .partner-strip { grid-template-columns: 1fr; }
	.check-list--2col { grid-template-columns: 1fr; }
	.ind-item { grid-template-columns: 1fr; }
	.svc-item { grid-template-columns: 1fr; gap: 16px; padding: 32px 0; }
	.svc-item__head { flex-direction: row; align-items: center; }
	.svc-item__list { grid-column: auto; }
	.form-grid { grid-template-columns: 1fr; }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }
	.tabs__list { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding-left: var(--gutter); padding-right: var(--gutter); scrollbar-width: none; }
	.tabs__tab { flex: 0 0 auto; }
	.btn-row .btn { flex: 1 1 auto; }
	.cta-band__inner .btn-row { width: 100%; }
	.stats { grid-template-columns: 1fr 1fr; }
	.stat { padding: 24px 12px 0; }
}
