/* SKE Print — original theme stylesheet */

:root {
	--primary-color: #002ee0;
	--secondary-color: #0f1f3d;
	--accent-color: #3d5cff;
	--text-color: #222;
	--background-color: #fff;
	--muted: #3a3a4a;
	--line: #e8e9f2;
	--paper: #f5f6fa;
	--hero-primary: var(--primary-color);
	--hero-accent: var(--accent-color);
	--hero-ink: #0f1f3d;
	--hero-muted: #3a3a4a;
	--hero-white: #fff;
	--font-display: "Alexandria", sans-serif;
	--font-body: "Alexandria", sans-serif;
	--nav-height: 90px;
	--radius-sm: 5px;
	--radius-md: 8px;
	--ease: cubic-bezier(.4, 0, .2, 1);
	--shadow-md: 0 4px 20px #00000022;
	--container: 1240px;
	--wide: 1600px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text-color);
	background: var(--background-color);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { color: var(--accent-color); }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--secondary-color); }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px; width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}
.skip-link:focus {
	clip: auto;
	height: auto; width: auto;
	z-index: 100000;
	background: #fff;
	padding: 8px 16px;
	top: 8px; left: 8px;
}

.container {
	width: min(100% - 48px, var(--container));
	margin-inline: auto;
}

.site-main { padding-top: var(--nav-height); }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 30px;
	border-radius: 4px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	border: 2px solid transparent;
	transition: background .22s, color .22s, border-color .22s, transform .18s, box-shadow .22s;
	cursor: pointer;
}
.btn-primary,
.hero-cta,
.btn-header {
	background: var(--primary-color);
	color: #fff;
	border-color: var(--primary-color);
}
.btn-primary:hover,
.hero-cta:hover,
.btn-header:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 22px #002ee059;
}
.btn-ghost {
	background: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/* Header */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 50;
	height: var(--nav-height);
	background: #002ee0;
	border-bottom: 1px solid transparent;
	transition: height .22s var(--ease), box-shadow .22s, background .22s;
}
.site-header.is-scrolled {
	height: 72px;
	box-shadow: 0 8px 24px #001a8033;
	background: #0026c4;
}
.site-header__inner {
	height: 100%;
	width: min(100% - 40px, var(--wide));
	margin-inline: auto;
	display: flex;
	align-items: center;
	gap: 24px;
}
.site-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; color: #fff; }
.site-logo:hover { color: #fff; }
.site-logo img { height: 44px; width: auto; display: block; }
.site-title {
	display: block;
	max-width: 11.5rem;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.15;
	text-transform: uppercase;
	color: #fff;
}
body.nav-lock { overflow: hidden; }

.primary-nav {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 8px;
}
.menu {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.menu-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px 14px;
	color: #fff;
	font-size: 0.92rem;
	font-weight: 500;
	position: relative;
}
.menu-link:hover,
.current-menu-item > .menu-link { color: #fff; opacity: .85; }
.submenu-toggle {
	width: 6px; height: 6px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg) translateY(-2px);
}
.sub-menu {
	position: absolute;
	top: calc(100% - 4px);
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid #c7d9f5;
	border-radius: 8px;
	box-shadow: var(--shadow-md);
	padding: 10px 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .2s var(--ease);
	z-index: 20;
}
.menu-item-has-children { position: relative; }
.menu-item-has-children:hover > .sub-menu,
.menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: none;
}
.sub-menu .menu-link {
	display: block;
	padding: 9px 18px;
	font-weight: 400;
	font-size: 0.88rem;
	color: var(--secondary-color);
	opacity: 1;
}
.sub-menu .menu-link:hover { background: #dbeafe; color: #002ee0; }
.btn-header {
	margin-left: 12px;
	padding: 10px 20px;
	font-size: 0.82rem;
	background: #fff;
	color: #002ee0;
	border-color: #fff;
}
.btn-header:hover {
	background: #eef2ff;
	border-color: #eef2ff;
	color: #002ee0;
}

.nav-toggle {
	display: none;
	margin-left: auto;
	width: 44px; height: 44px;
	border: 0; background: transparent;
	flex-direction: column;
	justify-content: center;
	gap: 6px;
	cursor: pointer;
}
.nav-toggle__bar {
	display: block;
	width: 22px; height: 2px;
	background: #fff;
	transition: .2s;
}
.site-header.is-nav-open .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.site-header.is-nav-open .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header.is-nav-open .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Hero */
.hero-banner {
	position: relative;
	overflow: hidden;
	background: #d6dff0;
	height: clamp(420px, 56vw, 700px);
	user-select: none;
}
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide { opacity: 0; transition: opacity 1.1s var(--ease); }
.hero-slide.is-active { opacity: 1; z-index: 2; }
.hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transform: scale(1);
	transition: transform 8s linear;
	z-index: 1;
}
.hero-slide.is-active .hero-img { transform: scale(1.06); }
.hero-overlay {
	position: absolute; inset: 0; z-index: 3; pointer-events: none;
	background: linear-gradient(90deg, #eceaea 0%, #eceaeaf0 26%, #ffffffb8 48%, #ffffff40 68%, transparent 100%);
}
.hero-inner {
	position: absolute;
	inset: 0;
	z-index: 4;
	display: flex;
	align-items: center;
	padding: 0 max(24px, calc((100% - var(--wide)) / 2));
	pointer-events: none;
}
.hero-content { max-width: 560px; pointer-events: auto; animation: heroContentIn .75s cubic-bezier(.22,1,.36,1) both; }
.hero-eyebrow { margin: 0 0 4px; font-weight: 500; font-size: clamp(.92rem, 1.3vw, 1.15rem); color: #111; }
.hero-heading {
	margin: 0 0 12px;
	font-size: clamp(3rem, 7.5vw, 6.5rem);
	font-weight: 600;
	line-height: 1;
	color: #002ee0;
}
.hero-body {
	max-width: 460px;
	margin: 0 0 28px;
	font-size: clamp(.82rem, 1.05vw, .96rem);
	line-height: 1.35;
	color: #222;
}
.hero-cta { margin-top: -10px; }
.hero-arrow {
	position: absolute; z-index: 5; top: 50%;
	transform: translateY(-50%);
	width: 46px; height: 46px;
	border-radius: 50%;
	border: 1.5px solid #ffffff80;
	background: #ffffff38;
	backdrop-filter: blur(6px);
	color: var(--primary-color);
	cursor: pointer;
	display: grid; place-items: center;
}
.hero-arrow svg { width: 18px; height: 18px; }
.hero-arrow--prev { left: 18px; }
.hero-arrow--next { right: 18px; }
.hero-counter {
	position: absolute; z-index: 5; left: 64px; bottom: 28px;
	color: var(--secondary-color); font-weight: 600; letter-spacing: .08em;
}
.hero-dots {
	position: absolute; z-index: 5; right: 64px; bottom: 32px;
	display: flex; gap: 8px;
}
.hero-dot {
	width: 28px; height: 4px; border: 0; border-radius: 4px;
	background: #ffffff80; cursor: pointer;
}
.hero-dot.is-active { background: var(--primary-color); }

@keyframes heroContentIn {
	from { opacity: 0; transform: translateY(24px); }
	to { opacity: 1; transform: none; }
}
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(12px); }
	to { opacity: 1; transform: none; }
}

/* Sections */
.section { padding: 88px 0; }
.section-header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-header h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 16px; }
.section-header p { margin: 0; color: var(--muted); }
.eyebrow { text-transform: none; font-weight: 500; color: var(--primary-color); margin: 0 0 8px; }

.intro-strip {
	background: #fff;
	border-top: 1px solid #e8e8e8;
	border-bottom: 1px solid #e8e8e8;
	padding: 28px 0;
}
.intro-strip__grid {
	display: grid;
	grid-template-columns: minmax(220px, 1fr) auto minmax(280px, 1.15fr);
	gap: 36px;
	align-items: center;
}
.intro-strip__text {
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.45;
	font-weight: 400;
	color: #222;
	margin: 0;
	max-width: 36rem;
}
.intro-strip__rule { width: 1px; height: 72px; background: #e0e0e0; }
.intro-badges { display: flex; justify-content: space-evenly; align-items: center; gap: 28px; }
.intro-badge-seal { width: 108px; height: 108px; flex-shrink: 0; }
.intro-badge-seal svg,
.intro-badge-seal img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

.card-grid { display: grid; gap: 22px; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.media-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	min-height: 280px;
	color: #fff;
	display: block;
}
.media-card__media { position: absolute; inset: 0; }
.media-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .7s var(--ease);
}
.media-card:hover .media-card__media img { transform: scale(1.08); }
.media-card::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 35%, #0f1f3de6 100%);
}
.media-card__title {
	position: absolute; z-index: 2; left: 20px; right: 20px; bottom: 18px;
	margin: 0; color: #fff; font-size: 1.25rem;
}

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.work-card { background: #fff; }
.work-card__media { overflow: hidden; border-radius: 10px; display: block; }
.work-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s; }
.work-card:hover .work-card__media img { transform: scale(1.05); }
.work-card__body h3, .work-card__body h2 { margin: 16px 0 8px; font-size: 1.2rem; }
.work-card__body p { color: var(--muted); margin: 0 0 10px; }
.text-link { font-weight: 700; font-size: .88rem; letter-spacing: .04em; }

.quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.quality-card { background: var(--paper); border-radius: 12px; overflow: hidden; }
.quality-card__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.quality-card h3 { margin: 16px 16px 6px; font-size: 1.05rem; }
.quality-card p { margin: 0 16px 18px; color: var(--muted); font-size: .9rem; }
.partners-row { margin-top: 48px; text-align: center; }
.partners-label { font-weight: 600; margin-bottom: 18px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.logo-chip {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 10px 16px;
	min-width: 120px;
	font-size: .82rem;
	color: var(--muted);
	display: grid;
	place-items: center;
}
.logo-chip img { max-height: 36px; width: auto; margin: 0 auto; }

.clients-section { padding-bottom: 40px; overflow: hidden; }
.clients-head { text-align: center; margin-bottom: 32px; }
.clients-count { font-size: clamp(3rem, 8vw, 6rem); font-weight: 700; color: var(--primary-color); line-height: 1; margin: 0; }
.clients-count span { display: block; font-size: 1.1rem; color: var(--secondary-color); font-weight: 500; margin-top: 6px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 42s linear infinite; }
.marquee__item {
	flex: 0 0 auto;
	width: 160px;
	height: 72px;
	margin: 0 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	display: grid; place-items: center;
	background: #fff;
	color: #888; font-size: .8rem;
}
.marquee__item img { max-height: 40px; width: auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

.testimonials-section { background: #f4f6fb; padding-top: 72px; padding-bottom: 72px; }
.tm-inner { width: min(100% - 48px, var(--wide)); margin: 0 auto; }
.tm-heading {
	margin: 0 0 28px;
	font-size: clamp(2.6rem, 7vw, 5.8rem);
	font-weight: 800;
	line-height: 1;
	color: #002ee0;
	text-align: left;
}
.tm-track-wrap { overflow: hidden; }
.tm-cards-row {
	display: flex;
	gap: 28px;
	transition: transform .6s cubic-bezier(.4, 0, .2, 1);
	will-change: transform;
	cursor: grab;
}
.tm-card {
	position: relative;
	flex: 0 0 calc(50% - 14px);
	height: 400px;
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 28px #0a125014;
}
.tm-card-grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-image:
		repeating-linear-gradient(90deg, #e8ecf6 0 1px, transparent 1px 48px),
		repeating-linear-gradient(0deg, #e8ecf6 0 1px, transparent 1px 48px);
	opacity: .7;
	pointer-events: none;
}
.tm-quote {
	position: relative;
	z-index: 2;
	max-width: 55%;
	margin: 0;
	padding: 44px 28px 96px 44px;
	font-size: 1.12rem;
	font-weight: 300;
	line-height: 1.35;
	color: #111;
}
.tm-img-wrap {
	position: absolute;
	right: 0;
	bottom: 56px;
	top: 8px;
	z-index: 3;
	width: 45%;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
}
.tm-img {
	max-height: 100%;
	width: auto;
	height: 100%;
	object-fit: contain;
	object-position: bottom right;
}
.tm-img--fallback {
	width: 180px;
	height: 220px;
	margin: 0 24px 8px 0;
	display: grid;
	place-items: center;
	background: #e8ecf8;
	color: #002ee0;
	font-size: 2.4rem;
	font-weight: 800;
}
.tm-name-bar {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	z-index: 4;
	display: flex;
	flex-direction: column;
	gap: 2px;
	background: #002ee0;
	color: #fff;
	padding: 18px 28px;
}
.tm-name { font-weight: 700; font-size: 1.05rem; color: #fff; }
.tm-role { font-size: .9rem; color: rgba(255,255,255,.75); }
.tm-dots { display: flex; justify-content: center; gap: 18px; margin-top: 32px; }
.tm-dot {
	position: relative;
	width: auto; height: 32px;
	padding: 8px 4px 0;
	border: 0; border-radius: 0;
	background: transparent;
	color: #9ca3af;
	font-weight: 600;
	font-size: 1.05rem;
	cursor: pointer;
}
.tm-dot.is-active { color: #002ee0; }
.tm-dot.is-active::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 8px;
	background: #002ee0;
}

.ws-slider { overflow: hidden; }
.ws-track { display: flex; gap: 16px; width: max-content; animation: marquee 50s linear infinite; padding: 0 24px; }
.ws-item { width: min(70vw, 420px); }
.ws-item img { width: 100%; aspect-ratio: 16/11; object-fit: cover; border-radius: 12px; }

.hub-section { background: #fff; padding-bottom: 32px; }
.hub-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hub-eyebrow { margin: 0 0 4px; color: #9aa0b4; font-size: 1.35rem; font-weight: 500; }
.hub-copy h2 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); margin: 0 0 18px; color: #002ee0; font-weight: 800; line-height: 1; }
.hub-copy p { color: #111; line-height: 1.55; margin: 0; max-width: 36rem; }
.hub-copy strong { font-weight: 700; }
.hub-map { border-radius: 14px; overflow: hidden; min-height: 360px; background: #e8eef8; }
.hub-map iframe { width: 100%; height: 380px; border: 0; display: block; }
.hub-banner { text-align: center; padding: 56px 24px 8px; }
.hub-banner p { margin: 0; color: #002ee0; font-weight: 800; font-size: clamp(1.35rem, 2.6vw, 2rem); line-height: 1.25; }
.hub-banner-row { display: inline-flex; align-items: center; justify-content: center; gap: 12px; margin-top: 6px; }
.hub-seal { width: 44px; height: 44px; flex-shrink: 0; }

.process-section { background: #f4f6fb; }
.process-layout {
	width: min(100% - 48px, var(--wide));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(180px, .85fr) minmax(200px, .75fr) minmax(280px, 1.35fr);
	gap: 36px;
	align-items: center;
}
.process-heading {
	margin: 0;
	max-width: 11ch;
	color: #002ee0;
	font-size: clamp(2rem, 4.2vw, 3.5rem);
	font-weight: 800;
	line-height: 1.05;
}
.process-tablist { display: flex; flex-direction: column; gap: 10px; }
.process-tab {
	display: flex;
	align-items: center;
	gap: 12px;
	border: 0;
	background: #eceff5;
	color: #4b5563;
	padding: 14px 22px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	text-align: left;
}
.process-tab__dot {
	width: 8px; height: 8px; border-radius: 50%;
	background: #9ca3af; flex-shrink: 0;
}
.process-tab.is-active { background: #002ee0; color: #fff; }
.process-tab.is-active .process-tab__dot { background: #fff; }
.process-stage { min-height: 280px; }
.process-panel { display: none; }
.process-panel.is-active { display: block; animation: fadeUp .4s ease; }
.process-video { position: relative; border-radius: 16px; overflow: hidden; background: #d7dde8; aspect-ratio: 16/10; }
.process-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.process-video__ph {
	position: absolute; inset: 0;
	display: flex; flex-direction: column; align-items: center; justify-content: center;
	gap: 16px; padding: 24px; text-align: center; color: #334;
}
.process-play { width: 64px; height: 64px; display: block; }
.process-play svg { width: 100%; height: 100%; display: block; }
.process-video__ph p { margin: 0; max-width: 28rem; font-size: .95rem; }

/* Inner pages */
.page-hero { padding: 72px 0 40px; background: linear-gradient(180deg, #eef1fb, #fff 70%); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); margin: 0 0 12px; color: var(--primary-color); }
.page-hero__split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.page-hero__image img { width: 100%; border-radius: 14px; aspect-ratio: 4/5; object-fit: cover; }
.lead { font-size: 1.05rem; color: var(--muted); max-width: 640px; }
.prose { max-width: 760px; margin: 0 auto 64px; }
.prose h2 { margin-top: 1.6em; }
.tip-box { background: var(--paper); border-left: 4px solid var(--primary-color); padding: 16px 20px; margin: 32px 0; }
.about-page__header { padding: 72px 0 20px; }
.about-page__title { font-size: clamp(2.8rem, 6vw, 5rem); color: var(--primary-color); margin: 0 0 20px; }
.about-page__intro-text { font-size: 1.1rem; max-width: 860px; color: var(--muted); }
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; }
.about-facts { display: grid; gap: 16px; }
.fact-card { background: var(--paper); padding: 24px; border-radius: 12px; }
.fact-card span { display: block; font-size: 2rem; font-weight: 700; color: var(--primary-color); }

.contact-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 48px; }
.contact-aside { background: var(--paper); padding: 28px; border-radius: 14px; height: fit-content; }
.ske-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ske-field { margin: 0; }
.ske-field--full { grid-column: 1 / -1; }
.ske-field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 6px; }
.ske-field label span { color: #e63b3b; }
.ske-field input,
.ske-field select,
.ske-field textarea {
	width: 100%;
	border: 1px solid #c7d9f5;
	border-radius: 6px;
	padding: 12px 14px;
	background: #f4f8ff;
}
.ske-field input:focus,
.ske-field select:focus,
.ske-field textarea:focus {
	outline: 2px solid var(--primary-color);
	outline-offset: 1px;
	background: #fff;
}
.ske-hp { position: absolute; left: -9999px; }
.ske-form-status { min-height: 1.4em; margin-top: 10px; }
.ske-form-status.is-error { color: #e63b3b; }
.ske-form-status.is-success { color: #0d8a4b; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
	width: 100%;
	text-align: left;
	background: none;
	border: 0;
	padding: 20px 36px 20px 0;
	font-size: 1.05rem;
	font-weight: 600;
	cursor: pointer;
	position: relative;
	color: var(--secondary-color);
}
.faq-icon {
	position: absolute; right: 0; top: 50%;
	width: 12px; height: 12px;
	border-right: 2px solid var(--primary-color);
	border-bottom: 2px solid var(--primary-color);
	transform: translateY(-70%) rotate(45deg);
	transition: .2s;
}
.faq-item.is-open .faq-icon { transform: translateY(-20%) rotate(225deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--muted); }
.faq-item.is-open .faq-a { display: block; }

.layout-with-sidebar { display: grid; grid-template-columns: 1fr 280px; gap: 40px; padding: 48px 0 80px; }
.post-grid { display: grid; gap: 28px; }
.post-card { display: grid; grid-template-columns: 220px 1fr; gap: 20px; }
.post-card__media img { width: 100%; height: 140px; object-fit: cover; border-radius: 10px; }
.single-header { padding-top: 48px; }
.single-hero-image img { width: 100%; border-radius: 14px; margin: 24px 0; }
.widget { margin-bottom: 28px; }
.widget-title { font-size: 1.1rem; }

/* Footer */
.site-footer {
	position: relative;
	overflow: hidden;
	background: var(--footer-color, #002ee0);
	color: #fff;
	margin-top: 40px;
}
.footer-lines {
	pointer-events: none;
	position: absolute; inset: 0;
	background-image: repeating-linear-gradient(-55deg, rgba(0, 18, 90, .28) 0 1px, transparent 1px 7px);
}
.site-footer.is-plain .footer-lines { display: none; }
.footer-glow {
	pointer-events: none;
	position: absolute;
	right: -8%;
	bottom: -55%;
	width: 52%;
	height: 120%;
	background: radial-gradient(ellipse at center, rgba(150, 198, 255, .5) 0%, rgba(0, 46, 224, 0) 68%);
	z-index: 0;
}
.site-footer.is-no-glow .footer-glow { display: none; }
.footer-inner { position: relative; z-index: 1; width: min(100% - 48px, var(--wide)); margin: 0 auto; padding: 36px 0 28px; }
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	padding-bottom: 22px;
	border-bottom: 1px solid rgba(255,255,255,.4);
}
.footer-logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.footer-logo:hover { color: #fff; }
.footer-logo-icon { height: 48px; width: auto; }
.footer-title {
	font-size: 1.05rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.15;
	text-transform: uppercase;
	color: #fff;
	max-width: none;
}
.footer-menu { display: flex; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-menu a { color: #fff; padding: 0 18px; font-size: .92rem; }
.footer-menu a:hover { color: #fff; opacity: .85; }
.footer-menu li:first-child a { padding-left: 0; }
.footer-menu li + li { border-left: 1px solid rgba(255,255,255,.55); }
.footer-mid {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	padding: 28px 0;
	border-bottom: 1px solid rgba(255,255,255,.4);
}
.footer-mid-block {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	color: #fff;
	font-size: .92rem;
	line-height: 1.45;
	padding: 4px 28px;
	border-left: 1px solid rgba(255,255,255,.28);
	flex: 1 1 160px;
	min-width: 140px;
}
.footer-mid-block:first-child { border-left: 0; padding-left: 0; }
.footer-icon { display: grid; place-items: start; color: #fff; flex-shrink: 0; margin-top: 2px; }
.footer-icon-link { color: #fff; }
.footer-icon-link:hover { color: #fff; }
.footer-phone-list { display: flex; flex-direction: column; gap: 6px; }
.footer-phone-list a,
.footer-social-col a { color: #fff; }
.footer-phone-list a:hover,
.footer-social-col a:hover { color: #fff; opacity: .85; }
.footer-address p { margin: 0; max-width: 22rem; }
.footer-social-col { align-items: center; }
.footer-social-stack {
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}
.footer-social-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.footer-social-img { width: 22px; height: 22px; object-fit: contain; display: block; }
.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 20px;
	font-size: .88rem;
	color: #fff;
}
.footer-collab strong { font-weight: 700; }
.social-list { display: flex; gap: 10px; }
.social-link {
	width: 36px; height: 36px; border-radius: 50%;
	border: 1px solid #ffffff55;
	display: grid; place-items: center;
	color: #fff;
}
.social-link:hover { color: #fff; }

/* Reveal — only hide when JS is available so images stay visible if the script fails */
html.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

/* Focus */
:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 3px; }

/* Comments */
.comments-area { margin: 48px 0; }

@media (max-width: 1200px) {
	.quality-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-inner { padding-left: 0; padding-right: 0; }
}

@media (max-width: 1023px) {
	:root { --nav-height: 72px; }
	.nav-toggle { display: flex; }
	.primary-nav {
		position: fixed;
		inset: var(--nav-height) 0 0 0;
		background: #fff;
		flex-direction: column;
		align-items: stretch;
		padding: 16px 20px 32px;
		transform: translateX(110%);
		transition: transform .28s var(--ease);
		overflow: auto;
	}
	.site-header.is-nav-open .primary-nav { transform: none; }
	.primary-nav .menu-link { color: var(--secondary-color); opacity: 1; }
	.primary-nav .menu-link:hover { color: #002ee0; }
	.primary-nav .btn-header {
		background: #002ee0;
		color: #fff;
		border-color: #002ee0;
	}
	.menu { flex-direction: column; align-items: stretch; }
	.sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		display: none;
		box-shadow: none;
		border: 0;
		padding-left: 12px;
	}
	.menu-item-has-children.is-open > .sub-menu { display: block; }
	.btn-header { margin: 16px 0 0; width: fit-content; }
	.card-grid--3, .work-grid, .intro-strip__grid, .hub-grid, .about-grid, .contact-grid, .page-hero__split, .layout-with-sidebar, .post-card, .process-layout {
		grid-template-columns: 1fr;
	}
	.intro-strip__rule { width: 100%; height: 1px; }
	.process-heading { max-width: none; }
	.hero-arrow { display: none; }
	.hero-counter { left: 24px; }
	.hero-dots { right: 24px; }
	.footer-mid { flex-direction: column; }
	.footer-mid-block {
		border-left: 0;
		border-top: 1px solid rgba(255,255,255,.28);
		padding: 16px 0;
		flex: 1 1 auto;
	}
	.footer-mid-block:first-child { border-top: 0; padding-top: 0; }
}

@media (max-width: 767px) {
	:root { --nav-height: 60px; }
	.section { padding: 56px 0; }
	.container { width: min(100% - 32px, var(--container)); }
	.hero-heading { font-size: clamp(2.4rem, 12vw, 3.4rem); }
	.quality-grid { grid-template-columns: 1fr; }
	.ske-form-grid { grid-template-columns: 1fr; }
	.site-logo img { height: 36px; }
	.site-title { font-size: 0.62rem; max-width: 7.5rem; }
	.tm-heading { font-size: clamp(2.2rem, 12vw, 3.2rem); }
	.tm-card { height: auto; flex: 0 0 100%; }
	.tm-quote { max-width: 100%; padding: 28px 24px 16px; }
	.tm-img-wrap { position: relative; inset: auto; width: 100%; height: 220px; justify-content: center; }
	.tm-name-bar { position: relative; }
	.intro-badges { justify-content: center; flex-wrap: wrap; }
	.hub-banner { padding-top: 36px; }
}

@media (max-width: 575px) {
	.intro-strip__text { font-size: 1.1rem; }
	.hero-banner { height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	.hero-slide, .hero-img, html.js .reveal, .marquee__track, .ws-track, .media-card__media img {
		animation: none !important;
		transition: none !important;
		transform: none !important;
	}
	html.js .reveal, .reveal { opacity: 1; }
}
