/* =============================================================================
   WebTech Section Widgets — v1.2.0
   Every rule targets my own class names. Zero conflict with Elementor's CSS.
   ========================================================================== */

/* ---- Shared button variants (idempotent with buttons.css) ---- */
.wt-hero-section .wt-btn,
.wt-cta-section .wt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 30px;
	border-radius: 999px;
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1;
	text-decoration: none;
	transition: all 0.2s ease;
	border: 0;
	cursor: pointer;
	white-space: nowrap;
}
.wt-hero-section .wt-btn-primary,
.wt-cta-section .wt-btn-primary {
	background: #00288e;
	color: #ffffff;
}
.wt-hero-section .wt-btn-primary:hover {
	background: #1e40af;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(0, 40, 142, 0.24);
}
.wt-hero-section .wt-btn-secondary {
	background: transparent;
	color: #00288e;
	box-shadow: inset 0 0 0 1.5px #00288e;
}
.wt-hero-section .wt-btn-secondary:hover {
	background: rgba(0, 40, 142, 0.05);
	color: #00288e;
}
.wt-cta-section .wt-btn-amber {
	background: #ffa929;
	color: #0F172A;
}
.wt-cta-section .wt-btn-amber:hover {
	background: #ffbb52;
	color: #0F172A;
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(255, 169, 41, 0.32);
}
.wt-cta-section .wt-btn-ghost-light {
	background: transparent;
	color: #ffffff;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.7);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}
.wt-cta-section .wt-btn-ghost-light:hover {
	background: #ffffff;
	color: #00288e;
	box-shadow: inset 0 0 0 1.5px #ffffff;
	transform: translateY(-2px);
}
/* Page-hero secondary — explicit so it always renders as a clean outlined button */
.wt-page-hero__buttons .wt-btn-secondary {
	background: transparent !important;
	color: #00288e !important;
	box-shadow: inset 0 0 0 1.5px #00288e !important;
	padding: 16px 32px !important;
	border-radius: 14px !important;
}
.wt-page-hero__buttons .wt-btn-secondary:hover {
	background: rgba(0, 40, 142, 0.06) !important;
	color: #00288e !important;
	transform: translateY(-2px);
}

/* =============================================================================
   HERO SECTION
   ========================================================================== */
.wt-hero-section {
	padding: 96px 32px;
	background:
		radial-gradient(at 12% 15%, #c8d0ff 0%, transparent 55%),
		radial-gradient(at 88% 20%, #a8b8ff 0%, transparent 55%),
		radial-gradient(at 45% 100%, #dde1ff 0%, transparent 60%),
		linear-gradient(180deg, #eef1ff 0%, #f6f4ff 100%);
	overflow: hidden;
	position: relative;
}
.wt-hero-section__container {
	max-width: 1280px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: 48px;
	align-items: center;
}
.wt-hero-section__left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: flex-start;
}
.wt-hero-section__pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 20px;
	background: rgba(0, 40, 142, 0.08);
	border: 1px solid rgba(0, 40, 142, 0.15);
	border-radius: 999px;
	color: #00288e;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	line-height: 1;
}
.wt-hero-section__pill::before {
	content: '';
	display: inline-block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ffa929;
	box-shadow: 0 0 0 0 rgba(255, 169, 41, 0.7);
	animation: wt-hero-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
	flex-shrink: 0;
}
@keyframes wt-hero-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255, 169, 41, 0.7); }
	50%      { box-shadow: 0 0 0 8px rgba(255, 169, 41, 0); }
}
.wt-hero-section__headline {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(38px, 4.4vw, 60px);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #00288e;
	margin: 0;
	max-width: 100%;
	text-wrap: balance;
}
.wt-hero-section__subhead {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: #131b2e;
	max-width: 560px;
	margin: 0;
}
.wt-hero-section__buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin-top: 8px;
}
.wt-hero-section__right {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 480px;
}
.wt-hero-section__viz {
	position: absolute;
	inset: 15%;
	background:
		radial-gradient(circle at 55% 45%, rgba(59, 130, 246, 0.35) 0%, transparent 55%),
		radial-gradient(circle at 40% 60%, rgba(30, 64, 175, 0.30) 0%, transparent 50%);
	filter: blur(24px);
	pointer-events: none;
}
.wt-hero-section__chip {
	position: absolute;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0, 40, 142, 0.14);
	padding: 14px 18px;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	animation: wt-hero-float 6s ease-in-out infinite;
	z-index: 2;
}
.wt-hero-section__chip:nth-child(2) { top: 6%; left: 4%; animation-delay: 0s; }
.wt-hero-section__chip:nth-child(3) { top: 44%; right: 0%; animation-delay: -2s; }
.wt-hero-section__chip:nth-child(4) { bottom: 8%; left: 8%; animation-delay: -4s; }
@keyframes wt-hero-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-8px); }
}
.wt-hero-section__chip-label {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 11px;
	font-weight: 600;
	color: #00288e;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
.wt-hero-section__chip-value {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #131b2e;
}

@media (max-width: 900px) {
	.wt-hero-section { padding: 64px 20px; }
	.wt-hero-section__container { grid-template-columns: 1fr; gap: 32px; }
	.wt-hero-section__right { min-height: 400px; }
	.wt-hero-section__chip { min-width: 160px; padding: 10px 14px; }
}

/* =============================================================================
   BENTO SECTION
   ========================================================================== */
.wt-bento-section {
	padding: 96px 32px;
	background: #faf8ff;
}
.wt-bento-section__container {
	max-width: 1280px;
	margin: 0 auto;
}
.wt-bento-section__header {
	text-align: center;
	margin-bottom: 48px;
}
.wt-bento-section__eyebrow {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #00288e;
	margin: 0 0 8px;
}
.wt-bento-section__heading {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	color: #00288e;
	margin: 0;
}
.wt-bento-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.wt-bento-section__card {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(196, 197, 213, 0.5);
	border-radius: 24px;
	padding: 32px;
	overflow: hidden;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	min-height: 240px;
}
.wt-bento-section__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 40, 142, 0.10);
}
.wt-bento-section__card--inverted {
	background: #00288e;
	border-color: #00288e;
	color: #ffffff;
}
.wt-bento-section__card--high {
	background: #eaedff;
	border-color: rgba(0, 40, 142, 0.15);
}
.wt-bento-section__deco {
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 96px !important;
	color: rgba(0, 40, 142, 0.08);
	line-height: 1;
	pointer-events: none;
	user-select: none;
}
.wt-bento-section__card--inverted .wt-bento-section__deco {
	color: rgba(255, 255, 255, 0.10);
}
.wt-bento-section__body {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.wt-bento-section__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(0, 40, 142, 0.08);
	border-radius: 12px;
	color: #00288e;
	font-size: 24px !important;
	margin-bottom: 8px;
}
.wt-bento-section__card--inverted .wt-bento-section__icon {
	background: rgba(255, 255, 255, 0.12);
	color: #ffffff;
}
.wt-bento-section__title {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	color: #00288e;
	margin: 0;
}
.wt-bento-section__card--inverted .wt-bento-section__title {
	color: #ffffff;
}
.wt-bento-section__desc {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #444653;
	margin: 0;
}
.wt-bento-section__card--inverted .wt-bento-section__desc {
	color: rgba(255, 255, 255, 0.85);
}
.wt-bento-section__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Inter', system-ui, sans-serif;
	font-weight: 700;
	font-size: 14px;
	color: #00288e;
	text-decoration: none;
	margin-top: 24px;
	position: relative;
	z-index: 1;
	transition: gap 0.2s ease;
}
.wt-bento-section__card--inverted .wt-bento-section__cta {
	color: #ffa929;
}
.wt-bento-section__cta:hover {
	gap: 12px;
}
.wt-bento-section__cta .material-symbols-outlined {
	font-size: 18px !important;
}

@media (max-width: 900px) {
	.wt-bento-section { padding: 64px 20px; }
	.wt-bento-section__grid { grid-template-columns: 1fr; gap: 20px; }
	.wt-bento-section__card { padding: 24px; }
}

/* =============================================================================
   STATS SECTION
   ========================================================================== */
.wt-stats-section {
	padding: 96px 32px;
	background: #00288e;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}
.wt-stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(at 20% 30%, rgba(30, 64, 175, 0.85) 0%, transparent 60%),
		radial-gradient(at 80% 70%, rgba(59, 130, 246, 0.45) 0%, transparent 55%);
	z-index: 0;
}
.wt-stats-section__container {
	position: relative;
	z-index: 1;
	max-width: 1280px;
	margin: 0 auto;
}
.wt-stats-section__title {
	text-align: center;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 32px;
}
.wt-stats-section__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	gap: 48px 80px;
}
.wt-stats-section__stat {
	text-align: center;
	padding: 8px;
	flex: 0 1 200px;
}
.wt-stats-section__value {
	display: block;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(40px, 5vw, 72px);
	font-weight: 800;
	line-height: 1;
	color: #ffa929;
	letter-spacing: -0.02em;
	margin-bottom: 12px;
	white-space: nowrap;
}
.wt-stats-section__label {
	display: block;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.4;
}

@media (max-width: 900px) {
	.wt-stats-section { padding: 64px 20px; }
	.wt-stats-section__grid { gap: 40px 56px; }
}
@media (max-width: 500px) {
	.wt-stats-section__grid { gap: 36px; }
	.wt-stats-section__stat { flex-basis: 100%; }
}

/* =============================================================================
   CTA SECTION
   ========================================================================== */
.wt-cta-section {
	padding: 96px 32px;
	background: #00288e;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	text-align: center;
}
.wt-cta-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		radial-gradient(at 20% 30%, rgba(30, 64, 175, 0.85) 0%, transparent 60%),
		radial-gradient(at 80% 70%, rgba(59, 130, 246, 0.55) 0%, transparent 55%);
	z-index: 0;
}
.wt-cta-section__container {
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.wt-cta-section__heading {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
	margin: 0;
}
.wt-cta-section__subhead {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0;
	max-width: 560px;
}
.wt-cta-section__buttons {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 8px;
}

@media (max-width: 900px) {
	.wt-cta-section { padding: 64px 20px; }
}

/* =============================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.wt-testimonials-section {
	padding: 96px 32px;
	background: #faf8ff;
}
.wt-testimonials-section__container {
	max-width: 1280px;
	margin: 0 auto;
}
.wt-testimonials-section__header {
	text-align: center;
	margin-bottom: 48px;
}
.wt-testimonials-section__eyebrow {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #00288e;
	margin: 0 0 8px;
}
.wt-testimonials-section__heading {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(32px, 4vw, 48px);
	font-weight: 700;
	line-height: 1.1;
	color: #00288e;
	margin: 0;
}
.wt-testimonials-section__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wt-testimonials-section__quote {
	position: relative;
	background: #ffffff;
	border: 1px solid rgba(196, 197, 213, 0.5);
	border-radius: 20px;
	padding: 32px 24px 24px;
	display: flex;
	flex-direction: column;
}
.wt-testimonials-section__mark {
	position: absolute;
	top: 8px;
	left: 24px;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 64px;
	font-weight: 800;
	color: #ffa929;
	line-height: 1;
	pointer-events: none;
	user-select: none;
}
.wt-testimonials-section__body {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #131b2e;
	margin: 32px 0 24px;
	flex: 1;
}
.wt-testimonials-section__attribution {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 16px;
	border-top: 1px solid rgba(196, 197, 213, 0.5);
}
.wt-testimonials-section__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(135deg, #00288e 0%, #1e40af 100%);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 700;
	flex-shrink: 0;
}
.wt-testimonials-section__author {
	display: block;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 700;
	color: #00288e;
	line-height: 1.2;
}
.wt-testimonials-section__role {
	display: block;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 12px;
	color: #444653;
	line-height: 1.3;
	margin-top: 2px;
}

@media (max-width: 900px) {
	.wt-testimonials-section { padding: 64px 20px; }
	.wt-testimonials-section__grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =====================================================================
 * v1.3.0 — Interior page hero + service detail section widgets.
 * Self-contained: all layout on .wt-* classes, no Elementor container CSS.
 * ===================================================================== */

/* ---- Reusable image placeholder ---- */
.wt-img-ph {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0;
	width: 100%;
	border-radius: 16px;
	background: linear-gradient(135deg, #eef1ff 0%, #e2e7ff 100%);
	color: #4a5578;
	text-align: center;
	padding: 24px;
	box-sizing: border-box;
}
.wt-img-ph--hero,
.wt-img-ph--feature {
	aspect-ratio: 4 / 3;
	border: 2px dashed #b8c4ff;
}
.wt-img-ph--card {
	aspect-ratio: 16 / 9;
	border-radius: 0;
	background: linear-gradient(135deg, #e8ecff 0%, #dae2fd 100%);
	padding: 16px;
}
.wt-img-ph__icon {
	font-size: 44px;
	color: #00288e;
	opacity: 0.55;
}
.wt-img-ph--card .wt-img-ph__icon { font-size: 34px; }
.wt-img-ph__caption {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #4a5578;
	line-height: 1.3;
}
.wt-img-ph--card .wt-img-ph__caption { font-size: 12px; }

/* ---- Interior page hero ---- */
.wt-page-hero {
	padding: 88px 32px;
	background:
		radial-gradient(at 90% 10%, #dde1ff 0%, transparent 55%),
		linear-gradient(180deg, #f4f6ff 0%, #f8f6ff 100%);
	overflow: hidden;
}
.wt-page-hero__container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 56px;
	align-items: center;
}
.wt-page-hero--stacked .wt-page-hero__container {
	grid-template-columns: 1fr;
	max-width: 820px;
	text-align: center;
	justify-items: center;
}
.wt-page-hero__content {
	display: flex;
	flex-direction: column;
	gap: 18px;
	align-items: flex-start;
}
.wt-page-hero--stacked .wt-page-hero__content { align-items: center; }
.wt-page-hero__eyebrow {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #1e40af;
	padding: 6px 14px;
	background: rgba(0, 40, 142, 0.08);
	border-radius: 999px;
	line-height: 1;
}
.wt-page-hero__headline {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(34px, 4.2vw, 52px);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #00288e;
	margin: 0;
	text-wrap: balance;
}
.wt-page-hero__subhead {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 18px;
	line-height: 1.6;
	color: #131b2e;
	max-width: 560px;
	margin: 0;
}
.wt-page-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
	margin-top: 6px;
}
.wt-page-hero__media { width: 100%; }

/* ---- Service detail section ---- */
.wt-service-detail {
	padding: 88px 32px;
	background: #ffffff;
}
.wt-service-detail__container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 72px;
}
.wt-service-detail__eyebrow,
.wt-service-detail__section-heading + .wt-service-detail__grid {
	margin: 0;
}
.wt-service-detail__eyebrow {
	display: inline-block;
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #1e40af;
	margin-bottom: 8px;
}
.wt-service-detail__overview {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.wt-service-detail__title {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.01em;
	color: #00288e;
	margin: 0 0 16px;
}
.wt-service-detail__body p {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 17px;
	line-height: 1.7;
	color: #444653;
	margin: 0 0 16px;
}
.wt-service-detail__body p:last-child { margin-bottom: 0; }
.wt-service-detail__section-heading {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(24px, 2.6vw, 32px);
	font-weight: 700;
	color: #00288e;
	margin: 0 0 32px;
	text-align: center;
}
.wt-service-detail__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}
.wt-service-detail__card {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border: 1px solid #e2e7ff;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.wt-service-detail__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -20px rgba(0, 40, 142, 0.35);
	border-color: #b8c4ff;
}
.wt-service-detail__card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px;
}
.wt-service-detail__card-icon {
	font-size: 30px;
	color: #1e40af;
}
.wt-service-detail__card-title {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: #131b2e;
	margin: 0;
}
.wt-service-detail__card-desc {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #444653;
	margin: 0;
}
.wt-service-detail__extras {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 48px;
	padding: 40px;
	background: #f4f6ff;
	border-radius: 20px;
}
.wt-service-detail__extras-heading {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #00288e;
	margin: 0 0 20px;
}
.wt-service-detail__checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.wt-service-detail__checkitem {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #131b2e;
}
.wt-service-detail__checkitem .material-symbols-outlined {
	font-size: 22px;
	color: #ffa929;
	flex-shrink: 0;
	margin-top: 1px;
}
.wt-service-detail__tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.wt-service-detail__tag {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: #00288e;
	background: #ffffff;
	border: 1px solid #dae2fd;
	padding: 8px 14px;
	border-radius: 999px;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
	.wt-page-hero { padding: 64px 20px; }
	.wt-page-hero__container { grid-template-columns: 1fr; gap: 36px; }
	.wt-service-detail { padding: 64px 20px; }
	.wt-service-detail__container { gap: 56px; }
	.wt-service-detail__overview { grid-template-columns: 1fr; gap: 32px; }
	.wt-service-detail__extras { grid-template-columns: 1fr; gap: 32px; padding: 28px; }
}

/* =====================================================================
 * v1.3.0 — Legal document pages (classic content, not Elementor).
 * ===================================================================== */
.wt-legal {
	max-width: 820px;
	margin: 0 auto;
	padding: 72px 24px 96px;
	font-family: 'Inter', system-ui, sans-serif;
	color: #131b2e;
}
.wt-legal__title {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(34px, 4vw, 48px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #00288e;
	margin: 0 0 8px;
}
.wt-legal__meta {
	font-size: 15px;
	color: #444653;
	margin: 0 0 8px;
}
.wt-legal__intro {
	font-size: 18px;
	line-height: 1.7;
	color: #444653;
	margin: 24px 0 0;
}
.wt-legal h2 {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	color: #00288e;
	margin: 40px 0 12px;
	line-height: 1.25;
}
.wt-legal h3 {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 17px;
	font-weight: 600;
	color: #131b2e;
	margin: 24px 0 8px;
}
.wt-legal p { font-size: 16px; line-height: 1.7; color: #2b3245; margin: 0 0 14px; }
.wt-legal ul { margin: 0 0 16px; padding-left: 22px; }
.wt-legal li { font-size: 16px; line-height: 1.65; color: #2b3245; margin: 0 0 8px; }
.wt-legal a { color: #1e40af; text-decoration: underline; }
.wt-legal a:hover { color: #00288e; }
.wt-legal table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: 15px; }
.wt-legal th, .wt-legal td { text-align: left; padding: 10px 12px; border: 1px solid #dae2fd; vertical-align: top; }
.wt-legal th { background: #eef1ff; color: #00288e; font-family: 'Sora', system-ui, sans-serif; font-weight: 600; }
.wt-legal__contact {
	margin-top: 40px;
	padding: 24px;
	background: #f4f6ff;
	border: 1px solid #dae2fd;
	border-radius: 16px;
}
.wt-legal__contact p { margin: 0 0 6px; }

/* =====================================================================
 * v1.4.0 — Industries grid + Values/content section widgets.
 * ===================================================================== */

/* ---- Industries grid ---- */
.wt-industries-section { padding: 88px 32px; background: #ffffff; }
.wt-industries-section__container { max-width: 1200px; margin: 0 auto; }
.wt-industries-section__header { text-align: center; margin-bottom: 48px; }
.wt-industries-section__eyebrow {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.12em; color: #1e40af; margin: 0 0 10px;
}
.wt-industries-section__heading {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(26px, 3vw, 38px); font-weight: 700; color: #00288e;
	margin: 0; line-height: 1.15; text-wrap: balance;
}
.wt-industries-section__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
}
.wt-industries-section__tile {
	display: flex; flex-direction: column; gap: 8px;
	background: #ffffff; border: 1px solid #e2e7ff; border-radius: 16px;
	padding: 24px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.wt-industries-section__tile:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px -20px rgba(0, 40, 142, 0.35);
	border-color: #b8c4ff;
}
.wt-industries-section__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 12px;
	background: rgba(0, 40, 142, 0.08); color: #00288e;
	font-size: 26px !important; margin-bottom: 4px;
}
.wt-industries-section__label {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 18px; font-weight: 700; color: #131b2e; margin: 0;
}
.wt-industries-section__desc {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 14px; line-height: 1.6; color: #444653; margin: 0;
}

/* ---- Values / content section ---- */
.wt-values-section { padding: 88px 32px; }
.wt-values-section--light { background: #ffffff; }
.wt-values-section--tint  { background: #f4f6ff; }
.wt-values-section__container { max-width: 1160px; margin: 0 auto; }
.wt-values-section__header { margin: 0 auto 48px; max-width: 760px; }
.wt-values-section--center .wt-values-section__header { text-align: center; }
.wt-values-section--left .wt-values-section__header { text-align: left; margin-left: 0; }
.wt-values-section__header:last-child { margin-bottom: 0; }
.wt-values-section__eyebrow {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 12px; font-weight: 600; text-transform: uppercase;
	letter-spacing: 0.12em; color: #1e40af; margin: 0 0 10px;
}
.wt-values-section__heading {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: clamp(26px, 3vw, 40px); font-weight: 700; color: #00288e;
	margin: 0; line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance;
}
.wt-values-section__body { margin-top: 18px; }
.wt-values-section__body p {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 17px; line-height: 1.7; color: #444653; margin: 0 0 14px;
}
.wt-values-section__body p:last-child { margin-bottom: 0; }
.wt-values-section__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 24px;
}
.wt-values-section__card {
	display: flex; flex-direction: column; gap: 10px;
	background: #ffffff; border: 1px solid #e2e7ff; border-radius: 16px;
	padding: 28px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.wt-values-section--tint .wt-values-section__card { background: #ffffff; }
.wt-values-section__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px -20px rgba(0, 40, 142, 0.35);
	border-color: #b8c4ff;
}
.wt-values-section__icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 48px; height: 48px; border-radius: 12px;
	background: rgba(0, 40, 142, 0.08); color: #1e40af;
	font-size: 26px !important; margin-bottom: 4px;
}
.wt-values-section__card-title {
	font-family: 'Sora', system-ui, sans-serif;
	font-size: 19px; font-weight: 700; color: #131b2e; margin: 0;
}
.wt-values-section__card-desc {
	font-family: 'Inter', system-ui, sans-serif;
	font-size: 15px; line-height: 1.6; color: #444653; margin: 0;
}

@media (max-width: 900px) {
	.wt-industries-section { padding: 64px 20px; }
	.wt-values-section { padding: 64px 20px; }
}

/* =====================================================================
 * v1.4.1 — Eyebrow legibility + heading scale consistency.
 * ===================================================================== */
.wt-page-hero__eyebrow,
.wt-service-detail__eyebrow,
.wt-bento-section__eyebrow,
.wt-industries-section__eyebrow,
.wt-values-section__eyebrow,
.wt-stats-section__title {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
}
