/* =====================================================================
   DevTeam — design system & components
   Brand #0288d1 · Accent #f5a623 · Poppins + Jost
   ===================================================================== */

/* -------------------------------------------------- Tokens */
:root {
	--brand: #0288d1;
	--brand-rgb: 2, 136, 209;
	--brand-dark: #026da8;
	--accent: #f5a623;
	--accent-rgb: 245, 166, 35;
	--ink: #14152b;          /* dark header bar / dark cards */
	--dark: #0d0b1e;         /* footer */
	--dark-2: #171334;       /* funfacts / approach bands */
	--heading: #12141d;      /* near-black headings on light */
	--text: #667085;         /* body copy */
	--muted: #98a0b0;
	--ghost: #cdd2dd;        /* faded section headings on light */
	--ghost-dark: rgba(255, 255, 255, .28);
	--bg: #ffffff;
	--bg-soft: #f5f6fa;
	--bg-soft-2: #eef1f8;
	--line: #e8ebf3;
	--white: #ffffff;

	--font-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 24px;
	--radius-xl: 34px;
	--container: 1290px;
	--header-h: 96px;

	--shadow-sm: 0 8px 24px rgba(20, 24, 60, .06);
	--shadow: 0 24px 60px rgba(20, 24, 60, .09);
	--shadow-lg: 0 40px 90px rgba(20, 24, 60, .14);
	--ease: cubic-bezier(.22, .61, .36, 1);
}

/* -------------------------------------------------- Reset & base */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.75;
	color: var(--text);
	background: var(--bg);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .25s var(--ease); }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-head);
	color: var(--heading);
	line-height: 1.18;
	margin: 0 0 .5em;
	font-weight: 700;
	letter-spacing: -.01em;
}
h1 { font-size: clamp(38px, 5vw, 62px); }
h2 { font-size: clamp(30px, 3.4vw, 44px); }
h3 { font-size: clamp(20px, 1.8vw, 24px); }
p { margin: 0 0 1.1rem; }
ul, ol { margin: 0 0 1.1rem; padding-left: 1.2em; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
::selection { background: rgba(var(--brand-rgb), .18); }

.skip {
	position: absolute; left: -9999px; top: 0; z-index: 1000;
	background: var(--brand); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* -------------------------------------------------- Layout */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { position: relative; padding: 104px 0; }
.section--sm { padding: 72px 0; }
.section--tight { padding: 80px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-ink { background: var(--ink); color: #fff; }
.bg-dark { background: var(--dark); color: #fff; }
.text-center { text-align: center; }

/* Section heading (eyebrow + ghost/solid title + divider) */
.sec-head { margin-bottom: 52px; }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.eyebrow {
	display: inline-flex; align-items: center; gap: 14px;
	font-family: var(--font-head); font-weight: 600; font-size: 14px;
	letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
	margin: 0 0 16px;
}
.eyebrow::after { content: ""; width: 42px; height: 2px; background: var(--brand); border-radius: 2px; }
.eyebrow.center::before { content: ""; width: 42px; height: 2px; background: var(--brand); border-radius: 2px; }
.sec-head__title {
	font-family: var(--font-head); font-weight: 700; letter-spacing: -.02em;
	font-size: clamp(32px, 4vw, 52px); line-height: 1.12; margin: 0;
	color: var(--ghost);
}
.sec-head__title.solid { color: var(--heading); }
.sec-head__title b, .sec-head__title strong { color: var(--brand); font-weight: 700; }
.sec-head p { margin-top: 18px; max-width: 620px; }
.sec-head.center p { margin-inline: auto; }
.on-dark .sec-head__title, .bg-ink .sec-head__title, .bg-dark .sec-head__title { color: var(--ghost-dark); }
.on-dark .sec-head__title.solid { color: #fff; }
.on-dark, .bg-ink, .bg-dark { color: rgba(255, 255, 255, .74); }
.on-dark h1, .on-dark h2, .on-dark h3, .bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-dark h3 { color: #fff; }

/* Split heading (title left, intro paragraph right) */
.dt-head-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: end; margin-bottom: 52px; }
.dt-head-split .sec-head { margin-bottom: 0; }
.dt-head-split__text { padding-bottom: 8px; }
.dt-head-split__text p { margin: 0; }
@media (max-width: 900px) { .dt-head-split { grid-template-columns: 1fr; gap: 18px; } }

/* -------------------------------------------------- Buttons */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	font-family: var(--font-head); font-weight: 600; font-size: 14px;
	letter-spacing: .06em; text-transform: uppercase; line-height: 1;
	padding: 17px 30px; border-radius: 50px; border: 2px solid transparent;
	background: var(--brand); color: #fff; cursor: pointer;
	transition: all .3s var(--ease); white-space: nowrap;
}
.btn:hover { background: var(--brand-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(var(--brand-rgb), .32); }
.btn--pill { padding: 8px 8px 8px 30px; gap: 16px; }
.btn--pill .btn__circle {
	width: 42px; height: 42px; border-radius: 50%; background: #fff; color: var(--ink);
	display: inline-grid; place-items: center; flex: none; transition: transform .3s var(--ease);
}
.btn--pill:hover .btn__circle { transform: rotate(45deg); }
.btn--pill.btn--icon { min-height: 58px; }
.btn--lg { padding: 20px 36px; font-size: 15px; }
.btn--lg.btn--pill { padding: 9px 9px 9px 34px; }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #000; box-shadow: 0 14px 30px rgba(20, 24, 60, .3); }
.btn--dark .btn__circle { background: var(--brand); color: #fff; }
.btn--accent { background: var(--accent); color: var(--ink); }
.btn--accent:hover { background: #e0940f; color: var(--ink); }
.btn--outline { background: transparent; border-color: var(--brand); color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--ghost-light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); }
.btn--block { width: 100%; }

/* Icon buttons */
.icon-btn {
	width: 44px; height: 44px; display: inline-grid; place-items: center;
	background: transparent; border: none; color: inherit; border-radius: 50%;
	transition: color .25s var(--ease), background .25s var(--ease);
}
.icon-btn:hover { color: var(--brand); }

/* -------------------------------------------------- Brand */
.brand { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-head); }
.brand__mark { width: 40px; height: 40px; flex: none; }
.brand__name { font-size: 26px; font-weight: 700; color: var(--heading); letter-spacing: -.02em; line-height: 1; }
.brand--light .brand__name { color: #fff; }

/* Uploaded logo (Appearance → Customize → Site Identity).
   Size is controlled from DevTeam → Theme Settings → Logo. */
.custom-logo-link { display: inline-block; line-height: 0; }
.custom-logo {
	display: block;
	height: var(--logo-h, 46px);
	width: auto;
	max-width: var(--logo-max-w, 220px);
	object-fit: contain;
}
.site-footer .custom-logo { height: var(--logo-h-footer, var(--logo-h, 46px)); }
@media (max-width: 680px) { .custom-logo { height: calc(var(--logo-h, 46px) * .8); } }

/* =====================================================================
   HEADER
   ===================================================================== */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 90; transition: all .35s var(--ease); }
/* Offset the fixed header below the WordPress admin bar. */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }
.site-header__inner { display: flex; align-items: center; gap: 28px; }
.site-header__brand { flex: none; }
.site-header .nav { margin-inline: auto; }
.site-header__actions { display: flex; align-items: center; gap: 14px; flex: none; }
.site-header__divider { width: 1px; height: 26px; background: currentColor; opacity: .18; }

/* Primary nav */
.nav .menu { list-style: none; display: flex; align-items: center; gap: 6px; margin: 0; padding: 0; }
.nav .menu > li { position: relative; }
.nav .menu > li > a {
	display: flex; align-items: center; gap: 6px;
	font-family: var(--font-head); font-weight: 500; font-size: 15px; letter-spacing: .04em;
	text-transform: uppercase; color: var(--heading); padding: 14px 16px; position: relative;
}
.nav .menu > li > a svg { opacity: .7; }
.nav .menu > li > a::after {
	content: ""; position: absolute; left: 16px; right: 16px; bottom: 10px; height: 2px;
	background: var(--brand); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav .menu > li:hover > a::after,
.nav .menu > li.current-menu-item > a::after { transform: scaleX(1); }
.nav .menu > li:hover > a,
.nav .menu > li.current-menu-item > a { color: var(--brand); }

/* Dropdowns */
.nav .sub-menu {
	position: absolute; top: calc(100% + 6px); left: 0; min-width: 220px; list-style: none;
	margin: 0; padding: 12px; background: #fff; border-radius: 14px; box-shadow: var(--shadow);
	opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .28s var(--ease); z-index: 20;
}
.nav .menu > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav .sub-menu li a {
	display: block; padding: 10px 14px; border-radius: 9px; font-family: var(--font-head);
	font-weight: 500; font-size: 14px; color: var(--heading);
}
.nav .sub-menu li a:hover, .nav .sub-menu li.current-menu-item > a { background: var(--bg-soft); color: var(--brand); }

/* Classic (light) header */
.site-header--classic .site-header__inner { min-height: var(--header-h); }
.site-header--classic { background: transparent; }

/* Floating (dark) header */
.site-header--floating { padding-top: 22px; }
.site-header--floating .site-header__inner {
	background: var(--ink); border-radius: var(--radius); padding: 14px 26px; min-height: 74px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}
.site-header--floating .brand--light .brand__name { color: #fff; }
.site-header--floating .nav .menu > li > a { color: rgba(255, 255, 255, .82); }
.site-header--floating .nav .menu > li:hover > a,
.site-header--floating .nav .menu > li.current-menu-item > a { color: var(--brand); }
.site-header--floating .icon-btn { color: #fff; }

/* Scrolled / sticky state — clean WHITE full-width bar for BOTH variants */
.site-header.solid { background: #fff; box-shadow: 0 6px 30px rgba(20, 24, 60, .08); }
.site-header--classic.solid .site-header__inner { min-height: 78px; }
.site-header--floating.solid { padding-top: 0; }
.site-header--floating.solid .site-header__inner { background: transparent; border-radius: 0; box-shadow: none; padding: 10px 24px; min-height: 74px; }
.site-header--floating.solid .brand--light .brand__name { color: var(--heading); }
.site-header--floating.solid .nav .menu > li > a { color: var(--heading); }
.site-header--floating.solid .nav .menu > li:hover > a,
.site-header--floating.solid .nav .menu > li.current-menu-item > a { color: var(--brand); }
.site-header--floating.solid .icon-btn,
.site-header--floating.solid .nav-toggle { color: var(--heading); }
.site-header--floating.solid .header-call__text small { color: var(--muted); }
.site-header--floating.solid .header-call__text b { color: var(--heading); }

/* Header call block (floating variant) */
.header-call { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.header-call__icon {
	width: 46px; height: 46px; border-radius: 50%; background: var(--brand); color: #fff;
	display: grid; place-items: center; flex: none;
}
.header-call__text { display: flex; flex-direction: column; line-height: 1.3; }
.header-call__text small { font-size: 12px; color: rgba(255, 255, 255, .6); text-transform: uppercase; letter-spacing: .05em; }
.header-call__text b { font-family: var(--font-head); font-weight: 600; font-size: 15px; }

/* Hamburger */
.nav-toggle {
	width: 46px; height: 46px; border: none; background: transparent; display: none;
	flex-direction: column; justify-content: center; gap: 5px; padding: 0; color: inherit;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin-inline: auto; border-radius: 2px; transition: all .3s var(--ease); }
.nav-toggle span:nth-child(2) { width: 18px; margin-right: calc(50% - 20px); }
.site-header--floating .nav-toggle { color: #fff; display: flex; }
.site-header--classic .nav-toggle { color: var(--heading); }

/* =====================================================================
   OFF-CANVAS
   ===================================================================== */
.nav-backdrop {
	position: fixed; inset: 0; background: rgba(10, 12, 30, .55); backdrop-filter: blur(3px);
	opacity: 0; visibility: hidden; transition: all .35s var(--ease); z-index: 120;
}
.nav-backdrop.show { opacity: 1; visibility: visible; }
.offcanvas { position: fixed; inset: 0; z-index: 130; pointer-events: none; }
.offcanvas__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: 400px; max-width: 88vw;
	background: #fff; padding: 34px 34px 40px; overflow-y: auto; transform: translateX(100%);
	transition: transform .4s var(--ease); pointer-events: auto; box-shadow: -30px 0 80px rgba(0, 0, 0, .2);
}
.offcanvas.open .offcanvas__panel { transform: translateX(0); }
.offcanvas__close { position: absolute; top: 22px; right: 22px; background: var(--bg-soft); color: var(--heading); }
.offcanvas__close:hover { background: var(--brand); color: #fff; }
.offcanvas__brand { margin-bottom: 26px; }
.offcanvas__nav { display: none; margin-bottom: 26px; }
.offcanvas__nav .menu { list-style: none; margin: 0; padding: 0; }
.offcanvas__nav .menu a { display: block; padding: 11px 0; font-family: var(--font-head); font-weight: 600; color: var(--heading); border-bottom: 1px solid var(--line); }
.offcanvas__nav .sub-menu { list-style: none; padding-left: 14px; }
.offcanvas__block { margin-bottom: 28px; }
.offcanvas__block h4 { font-size: 20px; margin-bottom: 12px; }
.offcanvas__block > p { color: var(--text); font-size: 15px; margin-bottom: 20px; }
.offcanvas__contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.offcanvas__contact li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text); }
.offcanvas__contact li svg { color: var(--brand); flex: none; }
.offcanvas__contact a { color: var(--text); }
.offcanvas__contact a:hover { color: var(--brand); }

/* Socials */
.socials { display: flex; gap: 10px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--brand); background: rgba(var(--brand-rgb), .1); transition: all .3s var(--ease); }
.socials a:hover { background: var(--brand); color: #fff; transform: translateY(-3px); }
.socials--fill a { background: var(--brand); color: #fff; }
.socials--fill a:hover { background: var(--brand-dark); }

/* =====================================================================
   HERO (home)
   ===================================================================== */
.hero { position: relative; padding-top: calc(var(--header-h) + 46px); }
.hero__wave { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero__wave::before {
	content: ""; position: absolute; top: 6%; left: -6%; width: 460px; height: 460px; border-radius: 50%;
	background: radial-gradient(circle at 40% 40%, rgba(var(--accent-rgb), .12), transparent 62%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: center; }
.hero__title { font-size: clamp(42px, 5.4vw, 68px); font-weight: 700; line-height: 1.08; margin: 22px 0 0; letter-spacing: -.03em; }
.hero__title b, .hero__title span { color: var(--brand); }
.hero__lead { font-size: 18px; margin-bottom: 30px; }
.hero__contact { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.hero__contact-icon { width: 58px; height: 58px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.hero__contact-label { display: flex; flex-direction: column; }
.hero__contact-label small { font-family: var(--font-head); font-weight: 600; color: var(--heading); font-size: 15px; line-height: 1.3; }
.hero__contact-num { font-family: var(--font-head); font-weight: 600; color: var(--heading); }
.hero__media { position: relative; z-index: 1; margin-top: 44px; border-radius: var(--radius-lg); overflow: hidden; }
.hero__media img { display: block; width: 100%; height: clamp(300px, 32vw, 460px); object-fit: cover; object-position: center; }
.hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(20, 21, 51, .55), transparent 55%); }
.hero__play {
	position: absolute; top: 40px; left: 40px; z-index: 2; width: 84px; height: 84px; border: none;
	background: var(--brand); color: #fff; display: grid; place-items: center; border-radius: 8px;
	transition: transform .3s var(--ease);
}
.hero__play::after { content: ""; position: absolute; inset: -8px; border-radius: 12px; border: 2px solid rgba(var(--brand-rgb), .4); animation: dt-ping 2s ease-out infinite; }
.hero__play:hover { transform: scale(1.06); }
@keyframes dt-ping { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.25); opacity: 0; } }

/* =====================================================================
   PAGE BANNER
   ===================================================================== */
.page-banner { position: relative; padding: calc(var(--header-h) + 66px) 0 90px; overflow: hidden; text-align: center; }
.page-banner__bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: 0; }
.page-banner__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(105deg, rgba(20, 21, 51, .92) 8%, rgba(24, 26, 60, .78) 42%, rgba(var(--accent-rgb), .72) 100%); }
.page-banner__inner { position: relative; z-index: 1; }
.page-banner__title { color: #fff; font-size: clamp(40px, 5vw, 62px); margin: 0 0 14px; }
.crumb { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 500; color: rgba(255, 255, 255, .8); }
.crumb a { color: #fff; }
.crumb a:hover { color: var(--accent); }
.crumb__sep { display: inline-flex; color: var(--brand); }
.crumb__cur { color: rgba(255, 255, 255, .7); }

/* =====================================================================
   SERVICES GRID (cards with icon badge)
   ===================================================================== */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px 30px; }
.svc-card { position: relative; transition: transform .35s var(--ease); }
.svc-card__media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 21, 51, .9) 6%, rgba(20, 21, 51, .05) 56%); }
/* Icon badge — sits on the image, top-right, matching the design */
.svc-card__badge {
	position: absolute; top: 20px; right: 20px; width: 72px; height: 72px; border-radius: 50%;
	background: #fff; color: var(--brand); display: grid; place-items: center; z-index: 3;
	box-shadow: 0 10px 24px rgba(0, 0, 0, .2); transition: transform .35s var(--ease);
}
.svc-card__body { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; }
.svc-card__num { color: rgba(255, 255, 255, .8); font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.svc-card__title { color: #fff; font-size: 21px; margin: 6px 0 0; }
.svc-card__title a { color: #fff; }
.svc-card:hover { transform: translateY(-8px); }
.svc-card:hover .svc-card__media { box-shadow: var(--shadow); }
.svc-card:hover .svc-card__media img { transform: scale(1.07); }
.svc-card:hover .svc-card__badge { transform: scale(1.08); }
.svc-card:hover .svc-card__title a { color: var(--brand); }
/* Dark badge variant (services page / dark sections) */
.svc-grid--dark-badge .svc-card__badge { background: var(--ink); color: var(--brand); }

/* =====================================================================
   ABOUT SPLIT
   ===================================================================== */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__collage { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.about__collage img { width: 100%; border-radius: var(--radius); object-fit: cover; }
.about__collage img:first-child { grid-row: span 2; height: 100%; min-height: 420px; }
.about__badge {
	position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 132px; height: 132px;
	border-radius: 50%; background: var(--accent); display: grid; place-items: center; border: 8px solid #fff;
	box-shadow: var(--shadow); z-index: 3;
}
.about__badge svg { width: 46px; height: 46px; color: var(--ink); }
.about__badge .about__badge-ring { position: absolute; inset: 0; animation: dt-spin 14s linear infinite; }
@keyframes dt-spin { to { transform: rotate(360deg); } }
.about__check { list-style: none; margin: 24px 0 28px; padding: 0; display: grid; gap: 14px; }
.about__check li { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 500; color: var(--heading); }
.about__check li .tick { width: 26px; height: 26px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.about__skill { margin: 8px 0 30px; }
.about__skill-label { display: flex; justify-content: space-between; font-family: var(--font-head); font-weight: 600; color: var(--heading); margin-bottom: 10px; }
.about__bar { height: 8px; border-radius: 8px; background: var(--bg-soft-2); overflow: hidden; }
.about__bar span { display: block; height: 100%; border-radius: 8px; background: var(--brand); width: 0; transition: width 1.4s var(--ease); }
.about__foot { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.about__avatars { display: flex; }
.about__avatars img { width: 46px; height: 46px; border-radius: 50%; border: 3px solid #fff; object-fit: cover; margin-left: -14px; }
.about__avatars img:first-child { margin-left: 0; }

/* =====================================================================
   FUN FACTS (dark stats)
   ===================================================================== */
.funfacts { position: relative; background: var(--dark-2); border-radius: var(--radius-lg); padding: 78px 40px; overflow: hidden; }
.funfacts::before { content: ""; position: absolute; width: 420px; height: 420px; left: 30%; top: 20%; background: radial-gradient(circle, rgba(var(--accent-rgb), .16), transparent 60%); }
.funfacts__inner { position: relative; z-index: 2; }
.funfacts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 46px; }
.stat { display: flex; align-items: center; gap: 18px; justify-content: center; }
.stat__num { font-family: var(--font-head); font-weight: 700; font-size: clamp(44px, 5vw, 68px); color: #fff; line-height: 1; }
.stat__label { color: rgba(255, 255, 255, .74); font-family: var(--font-head); font-weight: 600; font-size: 15px; line-height: 1.35; }
.funfacts .sec-head { text-align: center; }

/* =====================================================================
   FEATURES (why choose us)
   ===================================================================== */
.features { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px 34px; margin-top: 30px; }
.feat { }
.feat__icon { width: 66px; height: 66px; border-radius: 50%; background: var(--bg-soft); color: var(--brand); display: grid; place-items: center; margin-bottom: 16px; transition: all .35s var(--ease); }
.feat:hover .feat__icon { background: var(--brand); color: #fff; }
.feat__title { font-size: 20px; margin: 0 0 8px; }
.feat__text { font-size: 15.5px; margin: 0; }
.features__media { position: relative; border-radius: var(--radius); overflow: hidden; clip-path: polygon(14% 0, 100% 0, 86% 100%, 0 100%); }
.features__media img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }

/* =====================================================================
   WORK SHOWCASE (carousel)
   ===================================================================== */
.showcase__track { display: flex; gap: 30px; }
.showcase__item { flex: 0 0 calc(25% - 22.5px); border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 3 / 4; }
.showcase__track { align-items: stretch; }
.showcase__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.showcase__item::after { content: ""; position: absolute; inset: 0; background: rgba(var(--brand-rgb), .85); opacity: 0; transition: opacity .4s var(--ease); }
.showcase__cap { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; opacity: 0; transform: translateY(14px); transition: all .4s var(--ease); }
.showcase__cap h3 { color: #fff; font-size: 19px; margin: 0; }
.showcase__cap span { color: rgba(255, 255, 255, .85); font-size: 14px; }
.showcase__item:hover::after { opacity: 1; }
.showcase__item:hover .showcase__cap { opacity: 1; transform: translateY(0); }
.showcase__item:hover img { transform: scale(1.08); }

/* Carousels (JS transform sliders) */
.dt-carousel { position: relative; }
.dt-carousel__viewport { overflow: hidden; }
[data-track] { transition: transform .55s var(--ease); will-change: transform; touch-action: pan-y; }
.slider-btn[disabled] { opacity: .4; cursor: default; }
.slider-btn[disabled]:hover { background: #fff; border-color: var(--line); color: var(--heading); }

/* Slider controls (shared) */
.slider-nav { display: flex; gap: 12px; justify-content: center; margin-top: 40px; }
.slider-btn { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--heading); display: grid; place-items: center; transition: all .3s var(--ease); }
.slider-btn:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* =====================================================================
   OUR APPROACH (dark numbered cards)
   ===================================================================== */
.approach { position: relative; background: linear-gradient(160deg, #16123a, #241a44 60%, #2a1b3f); border-radius: var(--radius-lg); padding: 90px 40px; overflow: hidden; }
.approach::before { content: ""; position: absolute; width: 520px; height: 520px; left: -6%; bottom: -14%; background: radial-gradient(circle, rgba(var(--accent-rgb), .2), transparent 60%); }
.approach__inner { position: relative; z-index: 2; }
.appr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.appr-card { position: relative; background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--radius); padding: 40px 30px; min-height: 320px; overflow: hidden; }
.appr-card__num { position: absolute; top: 18px; right: 22px; width: 62px; height: 62px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .16); display: grid; place-items: center; font-family: var(--font-head); font-weight: 600; font-size: 22px; color: #fff; }
.appr-card__title { color: #fff; font-size: 24px; margin: 0 0 22px; }
.appr-card__pills { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.appr-card__pill { display: inline-block; padding: 11px 22px; border-radius: 40px; border: 1px solid rgba(255, 255, 255, .16); color: rgba(255, 255, 255, .86); font-size: 14px; font-family: var(--font-head); }
.appr-card__shape { position: absolute; right: -20px; bottom: -20px; width: 150px; opacity: .9; }

/* =====================================================================
   SERVICES LIST (big numbered)
   ===================================================================== */
.svc-list { }
.svc-row { display: flex; align-items: center; gap: 28px; padding: 34px 10px; border-top: 1px solid var(--line); transition: padding .3s var(--ease); }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row__num { font-family: var(--font-head); font-weight: 500; font-size: 22px; color: var(--muted); font-style: italic; flex: none; width: 44px; }
.svc-row__title { font-family: var(--font-head); font-weight: 700; font-size: clamp(28px, 3.6vw, 46px); color: var(--heading); margin: 0; flex: 1; letter-spacing: -.02em; transition: color .3s var(--ease); }
.svc-row__arrow { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--heading); flex: none; transition: all .3s var(--ease); }
.svc-row:hover .svc-row__title { color: var(--brand); }
.svc-row:hover .svc-row__arrow { background: var(--brand); border-color: var(--brand); color: #fff; transform: rotate(45deg); }
.on-dark .svc-row { border-color: rgba(255, 255, 255, .12); }
.on-dark .svc-row__title { color: #fff; }
.on-dark .svc-row__arrow { border-color: rgba(255, 255, 255, .2); color: #fff; }

/* =====================================================================
   PROCESS STEPS
   ===================================================================== */
.process { display: grid; gap: 26px; }
.proc-step { display: flex; gap: 22px; align-items: flex-start; }
.proc-step__num { width: 58px; height: 58px; border-radius: 50%; background: var(--bg-soft); color: var(--heading); font-family: var(--font-head); font-weight: 600; font-size: 20px; display: grid; place-items: center; flex: none; transition: all .3s var(--ease); }
.proc-step:hover .proc-step__num { background: var(--brand); color: #fff; }
.proc-step__title { font-size: 20px; margin: 6px 0 8px; }
.proc-step__text { margin: 0; font-size: 15.5px; }

/* =====================================================================
   CTA BANNER (image band)
   ===================================================================== */
.cta-band { position: relative; border-radius: var(--radius-lg); overflow: hidden; padding: 120px 24px; text-align: center; }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(20, 21, 51, .6); }
.cta-band__frame { position: absolute; inset: 26px; border: 1px solid rgba(255, 255, 255, .35); border-radius: var(--radius); z-index: 1; pointer-events: none; }
.cta-band__inner { position: relative; z-index: 2; }
.cta-band__title { color: #fff; font-size: clamp(30px, 4vw, 52px); margin: 0 0 26px; }

/* =====================================================================
   PROMO BAR (orange consultant)
   ===================================================================== */
.promo { position: relative; background: linear-gradient(90deg, var(--accent), #f7b53f); border-radius: var(--radius-lg); display: grid; grid-template-columns: 260px 1fr auto; align-items: center; gap: 20px; padding: 0 40px 0 0; overflow: hidden; min-height: 210px; }
.promo::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(120deg, rgba(255, 255, 255, .06) 0 2px, transparent 2px 26px); }
.promo__img { position: relative; align-self: end; height: 100%; }
.promo__img img { height: 100%; max-height: 240px; object-fit: contain; object-position: bottom; }
.promo__title { position: relative; font-size: clamp(26px, 3vw, 38px); color: var(--ink); margin: 0; }
.promo__title svg { display: inline; }
.promo__action { position: relative; z-index: 2; }
.promo__media { position: absolute; right: 0; top: 0; bottom: 0; width: 300px; opacity: .5; }
.promo__media img { width: 100%; height: 100%; object-fit: cover; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.faq__list { display: grid; gap: 16px; }
.faq__item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__q { width: 100%; text-align: left; border: none; background: none; padding: 22px 26px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: var(--font-head); font-weight: 600; font-size: 17px; color: var(--heading); }
.faq__q .faq__icon { width: 34px; height: 34px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; transition: all .3s var(--ease); }
.faq__item.open .faq__q { color: var(--brand); }
.faq__item.open .faq__icon { background: var(--brand); transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a-inner { padding: 0 26px 24px; color: var(--text); }
.faq__aside-check { list-style: none; margin: 6px 0 0; padding: 0; display: grid; gap: 26px; }
.faq__aside-check li { display: flex; gap: 16px; }
.faq__aside-check .tick { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.faq__aside-check h4 { margin: 4px 0 6px; font-size: 19px; }
.faq__aside-check p { margin: 0; font-size: 15px; }
.faq--stack { display: block; }
.faq--stack .faq__list { max-width: 860px; margin-inline: auto; }

/* =====================================================================
   PROJECTS GRID
   ===================================================================== */
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; grid-auto-rows: 300px; }
.proj-card { position: relative; border-radius: var(--radius); overflow: hidden; }
.proj-card--tall { grid-row: span 2; }
.proj-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.proj-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20, 21, 51, .85), transparent 55%); opacity: 0; transition: opacity .4s var(--ease); }
.proj-card__body { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 2; opacity: 0; transform: translateY(16px); transition: all .4s var(--ease); }
.proj-card__cat { color: var(--accent); font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.proj-card__title { color: #fff; font-size: 22px; margin: 4px 0 0; }
.proj-card__title a { color: #fff; }
.proj-card__link { position: absolute; top: 20px; right: 20px; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; z-index: 2; opacity: 0; transform: scale(.7); transition: all .4s var(--ease); }
/* Whole card clickable (stretched link over the card via the title link) */
.proj-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 4; }
/* Masonry variant (natural image heights) */
.proj-masonry { column-count: 3; column-gap: 24px; }
.proj-masonry .proj-card { display: block; break-inside: avoid; margin-bottom: 24px; }
.proj-masonry .proj-card img { height: auto; }
@media (max-width: 1100px) { .proj-masonry { column-count: 2; } }
@media (max-width: 680px) { .proj-masonry { column-count: 1; } }
.proj-card:hover::after { opacity: 1; }
.proj-card:hover img { transform: scale(1.07); }
.proj-card:hover .proj-card__body { opacity: 1; transform: translateY(0); }
.proj-card:hover .proj-card__link { opacity: 1; transform: scale(1); }

/* =====================================================================
   TEAM
   ===================================================================== */
.team { }
.team__track { display: flex; gap: 30px; }
.team-card { flex: 0 0 calc(33.333% - 20px); background: var(--bg-soft); border-radius: var(--radius); padding: 18px; text-align: center; transition: all .35s var(--ease); }
.team-card__photo { border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1 / 1; margin-bottom: 18px; position: relative; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card__social { position: absolute; inset: auto 0 0 0; display: flex; justify-content: center; gap: 8px; padding: 14px; background: linear-gradient(to top, rgba(20, 21, 51, .78), transparent); transform: translateY(100%); transition: transform .4s var(--ease); }
.team-card__social a { width: 36px; height: 36px; border-radius: 50%; background: #fff; color: var(--brand); display: grid; place-items: center; }
.team-card:hover { background: #fff; box-shadow: var(--shadow); }
.team-card:hover .team-card__social { transform: translateY(0); }
.team-card__name { font-size: 21px; margin: 0 0 4px; }
.team-card__role { color: var(--text); font-size: 14px; }

/* =====================================================================
   BLOG / NEWS
   ===================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.post-card { position: relative; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: all .35s var(--ease); }
/* Whole blog card clickable, while Read More stays a distinct hover target */
.post-card__title a::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.post-card__foot { position: relative; z-index: 2; }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.post-card__media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__date { position: absolute; top: 18px; right: 18px; background: var(--brand); color: #fff; border-radius: 8px; padding: 8px 12px; text-align: center; font-family: var(--font-head); line-height: 1.1; }
.post-card__date b { display: block; font-size: 18px; font-weight: 700; }
.post-card__date span { font-size: 12px; text-transform: uppercase; }
.post-card__body { padding: 24px 26px 8px; }
.post-card__meta { display: flex; gap: 18px; flex-wrap: wrap; color: var(--text); font-size: 14px; margin-bottom: 12px; }
.post-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-card__meta svg { color: var(--brand); }
.post-card__title { font-size: 21px; margin: 0; }
.post-card__title a { color: var(--heading); }
.post-card__title a:hover { color: var(--brand); }
.post-card__foot { display: flex; align-items: center; justify-content: space-between; padding: 16px 26px; border-top: 1px solid var(--line); margin-top: 18px; }
.post-card__more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--heading); }
.post-card__more:hover { color: var(--brand); }
.post-card__comments { display: inline-flex; align-items: center; gap: 6px; color: var(--brand); font-size: 14px; }

/* =====================================================================
   CONTACT
   ===================================================================== */
/* Dark "Get in Touch" form */
.contact-dark { position: relative; background: linear-gradient(150deg, #191338, #241a3e); border-radius: var(--radius-lg); padding: 74px 50px; overflow: hidden; }
.contact-dark__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: end; }
.contact-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form-fields .full { grid-column: 1 / -1; }
.dt-field { width: 100%; font-family: var(--font-body); font-size: 16px; padding: 16px 20px; border-radius: var(--radius-sm); border: 1px solid transparent; background: rgba(0, 0, 0, .28); color: #fff; transition: border-color .25s var(--ease); }
.dt-field::placeholder { color: rgba(255, 255, 255, .5); }
.dt-field:focus { outline: none; border-color: var(--brand); }
textarea.dt-field { min-height: 130px; resize: vertical; }
.contact-dark__img { position: relative; align-self: end; }
.contact-dark__img img { position: relative; z-index: 2; }
.contact-dark__ring { position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 300px; height: 300px; border-radius: 50%; border: 3px solid var(--brand); z-index: 1; }

/* Light form (contact page / service page) */
.contact-form--light .dt-field { background: var(--bg-soft); color: var(--heading); }
.contact-form--light .dt-field::placeholder { color: var(--muted); }

/* Contact info cards */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.contact-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 46px 30px; text-align: center; transition: all .35s var(--ease); }
.contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.contact-card__icon { width: 78px; height: 78px; border-radius: 50%; background: rgba(var(--brand-rgb), .1); color: var(--brand); display: grid; place-items: center; margin: 0 auto 22px; transition: all .35s var(--ease); }
.contact-card:hover .contact-card__icon { background: var(--brand); color: #fff; }
.contact-card__title { font-size: 22px; margin: 0 0 10px; }
.contact-card p { margin: 0; }

/* Map + floating card */
.dt-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.dt-map iframe, .dt-map__frame { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; filter: grayscale(.4); }
.dt-map__card { position: absolute; top: 40px; right: 40px; background: linear-gradient(150deg, var(--accent), #f7b53f); color: var(--ink); border-radius: var(--radius); padding: 30px; max-width: 340px; box-shadow: var(--shadow); }
.dt-map__card h3 { color: var(--ink); margin: 0 0 20px; }
.dt-map__card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.dt-map__card li { display: flex; align-items: center; gap: 14px; }
.dt-map__card li .ic { width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--brand); display: grid; place-items: center; flex: none; }
.dt-map__card li + li { border-top: 1px solid rgba(0, 0, 0, .1); padding-top: 18px; }

/* Form success */
.form-success { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); background: rgba(var(--brand-rgb), .12); color: var(--brand); font-weight: 500; }
.form-success.show { display: block; }

/* =====================================================================
   FOOTER (default)
   ===================================================================== */
.site-footer { position: relative; background: var(--dark); color: rgba(255, 255, 255, .72); overflow: hidden; }
.site-footer a { color: rgba(255, 255, 255, .72); }
.site-footer a:hover { color: var(--brand); }
.site-footer__watermark { position: absolute; left: 50%; bottom: 40px; transform: translateX(-50%); font-family: var(--font-head); font-weight: 800; font-size: clamp(80px, 16vw, 240px); color: rgba(255, 255, 255, .02); letter-spacing: .02em; pointer-events: none; white-space: nowrap; z-index: 0; }
.site-footer__inner { position: relative; z-index: 1; padding: 90px 0 0; }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-col h4 { color: #fff; font-size: 21px; margin: 0 0 26px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 15px; margin-bottom: 22px; max-width: 320px; }
.footer-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.footer-menu a { font-size: 15.5px; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.footer-contact li { display: flex; gap: 16px; align-items: flex-start; }
.footer-contact .ic { width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--brand); display: grid; place-items: center; flex: none; }
.footer-contact small { display: block; color: rgba(255, 255, 255, .55); font-size: 13px; }
.footer-contact b { color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 15px; }
.footer-newsletter { position: relative; max-width: 340px; }
.footer-newsletter input { width: 100%; padding: 16px 60px 16px 20px; border-radius: var(--radius-sm); border: none; background: #fff; font-family: var(--font-body); font-size: 15px; }
.footer-newsletter button { position: absolute; right: 6px; top: 6px; bottom: 6px; width: 48px; border-radius: 8px; border: none; background: var(--brand); color: #fff; display: grid; place-items: center; }
.footer-bottom { position: relative; z-index: 1; margin-top: 70px; border-top: 1px solid rgba(255, 255, 255, .08); padding: 26px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 14px; }
.footer-bottom__links { display: flex; gap: 22px; }

/* Footer promo (style 2) — the orange consultant bar sits above the columns */
.site-footer .promo { margin-bottom: 74px; }

/* Back-to-top */
.to-top { position: fixed; right: 26px; bottom: 26px; width: 50px; height: 50px; border-radius: 50%; background: var(--brand); color: #fff; border: none; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(14px); transition: all .35s var(--ease); z-index: 80; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brand-dark); }
.footer-scrolltop { display: flex; justify-content: center; margin-top: 40px; }
.footer-scrolltop button { width: 54px; height: 54px; border-radius: 12px; background: var(--accent); color: var(--ink); border: none; display: grid; place-items: center; }

/* =====================================================================
   SINGLE — SERVICE / PROJECT / POST
   ===================================================================== */
.single-layout { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: start; }
.single-layout--right { grid-template-columns: 1fr 340px; }
.svc-sidebar { display: grid; gap: 30px; }
.svc-sidebar__box { background: var(--bg-soft); border-radius: var(--radius); padding: 34px 30px; }
.svc-sidebar__box h3 { margin: 0 0 22px; font-size: 22px; }
.svc-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.svc-menu a { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: #fff; border-radius: var(--radius-sm); padding: 16px 20px; font-family: var(--font-head); font-weight: 600; color: var(--heading); }
.svc-menu a:hover, .svc-menu .active a, .svc-menu a.active { background: var(--brand); color: #fff; }
.svc-menu a svg { color: var(--brand); }
.svc-menu a:hover svg, .svc-menu a.active svg { color: #fff; }
.svc-help { position: relative; border-radius: var(--radius); overflow: hidden; color: #fff; padding: 40px 30px; text-align: center; }
.svc-help__bg { position: absolute; inset: 0; z-index: 0; }
.svc-help__bg img { width: 100%; height: 100%; object-fit: cover; }
.svc-help__bg::after { content: ""; position: absolute; inset: 0; background: rgba(20, 21, 51, .8); }
.svc-help__inner { position: relative; z-index: 1; }
.svc-help__icon { width: 66px; height: 66px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; margin: 0 auto 18px; }
.svc-help h4 { color: #fff; }
.entry-content > * + * { margin-top: 1.3rem; }
.entry-content h2, .entry-content h3 { margin-top: 2rem; }
.entry-content img { border-radius: var(--radius); }
.entry-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 30px 0; }
.entry-gallery img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }
.entry-media-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 30px 0; }
.entry-media-2 img { border-radius: var(--radius); }

/* Project meta sidebar */
.proj-meta { background: var(--bg-soft); border-radius: var(--radius); padding: 40px 34px; display: grid; gap: 26px; }
.proj-meta h4 { margin: 0 0 4px; font-size: 15px; letter-spacing: .04em; }
.proj-meta p { margin: 0; color: var(--text); }
.proj-checklist { list-style: none; margin: 20px 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.proj-checklist li { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-weight: 600; color: var(--heading); }
.proj-checklist .tick { color: var(--brand); flex: none; }

/* =====================================================================
   BLOG / ARCHIVE (native)
   ===================================================================== */
.dt-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 54px; }
.dt-pagination .page-numbers { min-width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid var(--line); font-family: var(--font-head); font-weight: 600; color: var(--heading); padding: 0 14px; }
.dt-pagination .page-numbers.current, .dt-pagination .page-numbers:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.entry-wrap { max-width: 820px; margin-inline: auto; }
.comments-area { max-width: 820px; margin: 60px auto 0; }
.comment-list { list-style: none; padding: 0; }
.comment-list .children { list-style: none; padding-left: 40px; }

/* =====================================================================
   404
   ===================================================================== */
.error-404 { max-width: 620px; margin-inline: auto; }
.error-404__code { font-family: var(--font-head); font-weight: 800; font-size: clamp(120px, 20vw, 240px); line-height: 1; color: var(--brand); letter-spacing: -.04em; }
.error-404 h2 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 14px; }
.error-404 p { margin-bottom: 30px; }

/* =====================================================================
   COMMENTS
   ===================================================================== */
.comments-title { font-size: 26px; margin-bottom: 26px; }
.comment-list { list-style: none; padding: 0; display: grid; gap: 24px; }
.comment-list .comment-body { background: var(--bg-soft); border-radius: var(--radius); padding: 24px 26px; }
.comment-list .children { list-style: none; padding-left: 40px; margin-top: 24px; display: grid; gap: 24px; }
.comment-author { display: flex; align-items: center; gap: 12px; }
.comment-author .avatar { border-radius: 50%; }
.comment-author .fn { font-family: var(--font-head); font-weight: 600; color: var(--heading); font-style: normal; }
.comment-metadata, .comment-metadata a { font-size: 13px; color: var(--muted); }
.comment-reply-link { font-family: var(--font-head); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.comment-respond { margin-top: 40px; }
.comment-respond .comment-form { display: grid; gap: 16px; }
.comment-respond input:not([type=submit]), .comment-respond textarea { width: 100%; padding: 15px 18px; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-soft); font-family: var(--font-body); font-size: 16px; }
.comment-respond .comment-form-comment { grid-column: 1 / -1; }
.comment-form-author, .comment-form-email { display: inline-block; }
@media (min-width: 620px) { .comment-respond .comment-form { grid-template-columns: 1fr 1fr; } .comment-form-comment, .comment-form-url, .form-submit { grid-column: 1 / -1; } }

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8, 10, 24, .92); z-index: 999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 86vw; max-height: 86vh; border-radius: 8px; }
.lightbox__close, .lightbox__nav { position: absolute; background: rgba(255, 255, 255, .12); border: none; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 24px; cursor: pointer; }
.lightbox__close { top: 26px; right: 26px; }
.lightbox__nav.prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 26px; top: 50%; transform: translateY(-50%); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
	.hero__grid { grid-template-columns: 1fr; gap: 24px; }
	.about, .features, .faq, .contact-dark__grid, .single-layout, .single-layout--right { grid-template-columns: 1fr; }
	.svc-grid, .blog-grid, .contact-cards, .proj-grid, .appr-grid, .funfacts__grid, .feat-grid { grid-template-columns: 1fr 1fr; }
	.showcase__item { flex-basis: calc(50% - 15px); }
	.team-card { flex-basis: calc(50% - 15px); }
	.footer-cols { grid-template-columns: 1fr 1fr; }
	.proj-card--tall { grid-row: span 1; }
	.contact-dark__img { display: none; }
	.dt-map__card { position: static; max-width: none; margin-top: 20px; }
}
@media (max-width: 900px) {
	.nav { display: none; }
	.nav-toggle { display: flex; }
	.offcanvas__nav { display: block; }
	.site-header--classic .nav-toggle { display: flex; }
	.section { padding: 72px 0; }
	.header-call__text { display: none; }
	.site-header__divider, .header-search { display: none; }
}
@media (max-width: 680px) {
	body { font-size: 16px; }
	.svc-grid, .blog-grid, .contact-cards, .proj-grid, .appr-grid, .funfacts__grid, .feat-grid, .entry-gallery, .entry-media-2, .proj-checklist { grid-template-columns: 1fr; }
	.showcase__item, .team-card { flex-basis: 82%; }
	.about__collage img:first-child { min-height: 300px; }
	.footer-cols, .footer-bottom { grid-template-columns: 1fr; }
	.footer-bottom { flex-direction: column; text-align: center; }
	.promo { grid-template-columns: 1fr; text-align: center; padding: 30px; }
	.promo__img { display: none; }
	.contact-dark, .funfacts, .approach, .cta-band { padding-left: 22px; padding-right: 22px; }
	.stat { flex-direction: column; text-align: center; gap: 6px; }
	.funfacts__grid { gap: 40px; }
	.sec-head__title, .svc-row__title { font-size: 30px; }
}

/* Elementor spacing reset for our full-width sections */
.devteam-elementor-section > .elementor-container { max-width: 100%; }
.elementor-widget-devteam_site_header, .elementor-widget-devteam_site_footer { width: 100%; }

/* =====================================================================
   COLOR GUARDS
   Some Elementor global-color kits (and some plugins) set a site-wide
   link/button color that leaks into the theme's Elementor-rendered
   header & footer, turning links and buttons an unexpected navy. These
   lock the essential component colors so they stay legible.
   ===================================================================== */
.site-footer .footer-menu a,
.site-footer .footer-col a,
.site-footer .footer-brand a { color: rgba(255, 255, 255, .72) !important; }
.site-footer .footer-menu a:hover,
.site-footer .footer-col a:hover,
.site-footer .footer-brand a:hover { color: var(--brand) !important; }
.site-footer .footer-contact a { color: #fff !important; }
.site-footer .footer-contact a:hover { color: var(--brand) !important; }
.site-footer .footer-bottom__links a { color: rgba(255, 255, 255, .58) !important; }
.site-footer .footer-bottom__links a:hover { color: var(--brand) !important; }

/* Theme buttons keep their intended text color even under a global override */
.btn.btn--dark, a.btn.btn--dark, .btn.btn--dark:hover { color: #fff !important; }
.btn.btn--dark .btn__circle { color: #fff !important; }
.btn.btn--pill, a.btn.btn--pill { color: #fff; }
.btn.btn--outline, a.btn.btn--outline { color: var(--brand); }
.btn.btn--outline:hover, a.btn.btn--outline:hover { color: #fff; }
.btn.btn--accent, a.btn.btn--accent { color: var(--ink); }

/* Utility buttons */
.footer-scrolltop button { background: var(--accent) !important; color: var(--ink) !important; }
.to-top { background: var(--brand) !important; color: #fff !important; }
.nav-toggle { background: transparent !important; }
