/* =====================================================================
   DevTeam — design system & components
   Brand #4f46e5 · Accent #fd740c · Poppins + Jost
   ===================================================================== */

/* -------------------------------------------------- Tokens */
:root {
	--brand: #4f46e5;
	--brand-rgb: 79, 70, 229;
	--brand-dark: #4338ca;
	--accent: #fd740c;
	--accent-rgb: 253, 116, 12;
	--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; } }

/* Heading with a "View All" button pinned to its right */
.dt-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.dt-head-row .sec-head { margin-bottom: 0; }
.dt-head-row__btn { flex: 0 0 auto; padding-bottom: 6px; }
@media (max-width: 780px) {
	.dt-head-row { flex-direction: column; align-items: flex-start; gap: 24px; margin-bottom: 38px; }
	.dt-head-row__btn { padding-bottom: 0; }
}

/* "View All" button under the cards */
.dt-allbtn { margin-top: 52px; text-align: center; }
@media (max-width: 780px) { .dt-allbtn { margin-top: 36px; } }

/* A DevTeam widget switched OFF — editor-only marker (it is not output at all
   on the live site). Keeps the widget selectable so it can be switched back. */
.dt-widget-off { position: relative; opacity: .4; filter: grayscale(.75); outline: 2px dashed rgba(var(--brand-rgb), .55); outline-offset: 6px; }
.dt-widget-off > * { pointer-events: none; }
.dt-widget-off__badge {
	position: absolute; top: 10px; left: 10px; z-index: 99; pointer-events: none;
	background: var(--ink); color: #fff; border-radius: 30px; padding: 7px 14px;
	font-family: var(--font-head); font-weight: 600; font-size: 11px;
	letter-spacing: .12em; text-transform: uppercase; opacity: 1;
}

/* "Load More" button under a grid */
.dt-loadmore { margin-top: 48px; text-align: center; }
.dt-loadmore__btn[disabled] { opacity: .65; cursor: default; }
@media (max-width: 780px) { .dt-loadmore { margin-top: 34px; } }

/* -------------------------------------------------- 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: #dd5d00; 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, .brand--img { display: inline-block; line-height: 0; }
/* Logo — sized by HEIGHT by default; the dynamic CSS overrides to size by
   WIDTH when the user sets one. Always responsive: never wider than its box,
   and a max-height stops a tall logo from breaking the header. */
.custom-logo {
	display: block;
	height: var(--logo-h, 46px);
	width: auto;
	max-width: min(100%, var(--logo-max-w, 220px));
	max-height: 60px;
	object-fit: contain;
}
.site-footer .custom-logo, .footer-brand .custom-logo {
	height: var(--logo-h-footer, var(--logo-h, 46px));
	max-height: 80px;
	max-width: min(100%, 260px);
}
@media (max-width: 680px) { .custom-logo { max-width: 62vw; } }

/* =====================================================================
   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; z-index: 2; padding-top: calc(var(--header-h) + 46px); padding-bottom: 96px; }
.hero--none { padding-bottom: 112px; }
.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__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-bottom: 30px; }
.btn--icon-after { gap: 10px; }
.btn--icon-after svg { transition: transform .3s var(--ease); }
.btn--icon-after:hover svg { transform: translateX(4px); }
/* Mirror of the above, for buttons set to lead with their icon. The nudge runs
   the other way so the motion still points along the reading direction. */
.btn--icon-before { gap: 10px; flex-direction: row-reverse; }
.btn--icon-before svg { transition: transform .3s var(--ease); }
.btn--icon-before:hover svg { transform: translateX(-4px); }
/* A full-width button is a block, so it must not sit in the inline flex row. */
.hero__actions .btn--block { flex: 0 0 100%; justify-content: center; }
.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-wrap { position: relative; z-index: 1; margin-top: 46px; }
.hero__media { position: relative; z-index: 2; 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 image layouts (Hero widget → Image Layout) --- */
/* Offset: narrower, right-aligned, with soft accent shapes behind */
.hero--offset .hero__media { max-width: 90%; margin-left: auto; box-shadow: var(--shadow); }
.hero--offset .hero__media-wrap::before {
	content: ""; position: absolute; left: 0; bottom: -28px; width: 38%; height: 70%; z-index: 0;
	border-radius: var(--radius-lg); background: rgba(var(--brand-rgb), .12);
}
.hero--offset .hero__media-wrap::after {
	content: ""; position: absolute; right: -18px; top: -18px; width: 104px; height: 104px; z-index: 0;
	border-radius: 50%; background: rgba(var(--accent-rgb), .18);
}
/* Overlap: the image bridges down into the following section */
.hero--overlap { padding-bottom: 0; }
.hero--overlap .hero__media-wrap { margin-bottom: -100px; z-index: 5; }
.hero--overlap .hero__media { box-shadow: var(--shadow-lg); }
/* Framed: subtle outlined frame around the image */
.hero--framed .hero__media-wrap { padding: 16px; border: 1px solid var(--line); border-radius: calc(var(--radius-lg) + 16px); }
/* Wide: original edge-to-edge banner */
.hero--wide .hero__media img { height: clamp(320px, 34vw, 480px); }
@media (max-width: 680px) {
	.hero--offset .hero__media { max-width: 100%; }
	.hero--offset .hero__media-wrap::before, .hero--offset .hero__media-wrap::after { display: none; }
	.hero--overlap .hero__media-wrap { margin-bottom: -60px; }
}
.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; } }

/* Animated scroll-down prompt */
.hero__scroll { position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-family: var(--font-head); font-weight: 600; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; text-decoration: none; }
.hero__scroll:hover { color: var(--brand); }
.hero__scroll-mouse { width: 24px; height: 38px; border: 2px solid currentColor; border-radius: 14px; display: block; position: relative; }
.hero__scroll-wheel { position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: currentColor; transform: translateX(-50%); animation: dt-scroll 1.6s var(--ease) infinite; }
@keyframes dt-scroll { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }
@media (max-width: 900px) { .hero__scroll { display: none; } }

/* =====================================================================
   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; }
.page-banner__subtitle { color: rgba(255, 255, 255, .82); font-size: 18px; max-width: 640px; margin: 0 auto 18px; }
.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 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; 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; }

/* --- Image layout variants (About widget → Media → Image Layout) --- */
/* Collage: one tall image beside two stacked */
.about__collage--collage img:first-child { grid-row: span 2; height: 100%; min-height: 420px; }
.about__collage--collage img:not(:first-child) { height: clamp(180px, 20vw, 246px); }
/* Grid: even 2 × 2 */
.about__collage--grid img { height: clamp(170px, 19vw, 240px); }
/* Split: two side by side */
.about__collage--split img { height: clamp(300px, 34vw, 440px); }
/* Single: one large image */
.about__collage--single { grid-template-columns: 1fr; }
.about__collage--single img { height: clamp(340px, 42vw, 520px); }
/* Offset: large image with a smaller one overlapping the corner */
.about__collage--offset { display: block; position: relative; padding-bottom: 64px; }
.about__collage--offset img:first-child { width: 84%; height: clamp(320px, 38vw, 470px); }
.about__collage--offset img:nth-child(2) { position: absolute; right: 0; bottom: 0; width: 54%; height: clamp(200px, 22vw, 260px); border: 8px solid #fff; box-shadow: var(--shadow); }
.on-dark .about__collage--offset img:nth-child(2), .bg-dark .about__collage--offset img:nth-child(2), .bg-ink .about__collage--offset img:nth-child(2) { border-color: var(--dark); }
/* Media on the right instead of the left */
.about--media-right .about__media { order: 2; }
.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__cta { margin-top: 36px; }
.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; }
/* Explicit height (not aspect-ratio) so every card is identical and the image
   always fills it, whatever the source image's dimensions are. */
.showcase__track { align-items: stretch; }
.showcase__item {
	flex: 0 0 calc(25% - 22.5px); position: relative; overflow: hidden;
	border-radius: var(--radius); height: clamp(300px, 27vw, 420px);
}
.showcase__item img {
	position: absolute; inset: 0; width: 100%; height: 100%;
	object-fit: cover; object-position: center; 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 18px; }
.cta-band__text { color: rgba(255, 255, 255, .85); font-size: 18px; max-width: 620px; margin: 0 auto 28px; }

/* =====================================================================
   PROMO BAR (orange consultant)
   ===================================================================== */
.promo { position: relative; background: linear-gradient(90deg, var(--accent), #ffa067); 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; }
/* No promo image: drop the image column and give the bar even padding so it
   never leaves an empty gap where the photo was. */
.promo--noimg { grid-template-columns: 1fr auto; padding: 40px 44px; min-height: 0; }
@media (max-width: 720px) { .promo--noimg { grid-template-columns: 1fr; padding: 30px; } }

/* =====================================================================
   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__aside-cta { margin-top: 30px; }
.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; }
/* In the uniform grid the card owns the height and the image always fills it. */
.proj-grid .proj-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.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); }

/* Platform chips — obvious platform icons on project cards & the single page */
.plat-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.plat-chip { display: inline-flex; align-items: center; }
.plat-chip__icon { display: inline-grid; place-items: center; line-height: 0; }
/* On a project card: solid white chips, brand-coloured icon, top-left overlay */
.proj-card .plat-chips { position: absolute; top: 14px; left: 14px; z-index: 3; }
.proj-card .plat-chip { width: 32px; height: 32px; justify-content: center; border-radius: 10px; background: #fff; color: var(--brand); box-shadow: 0 5px 14px rgba(20, 24, 60, .18); }
/* Labelled pills on the single-project meta card */
.plat-chips--labelled { gap: 8px; margin-top: 2px; }
.plat-chips--labelled .plat-chip { gap: 7px; padding: 7px 14px 7px 11px; border-radius: 30px; background: rgba(var(--brand-rgb), .1); color: var(--brand); font-family: var(--font-head); font-weight: 600; font-size: 13.5px; }
.proj-meta .plat-chips--labelled { margin-top: 6px; }

/* =====================================================================
   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 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.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 { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; 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
   ===================================================================== */
/* Contact form panel — one shape, three modes (dark / light / plain).
   Every colour below is overridable from the widget's Style tab. */
.contact-panel { position: relative; border-radius: var(--radius-lg); padding: 74px 50px; overflow: hidden; }
.contact-panel--dark { background: linear-gradient(150deg, #191338, #241a3e); }
.contact-panel--light { background: var(--bg-soft); }
.contact-panel--plain { background: none; border-radius: 0; padding: 0; overflow: visible; }
.contact-panel__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: end; }
.contact-panel__grid--none { grid-template-columns: 1fr; }
.contact-panel__grid--left .contact-panel__img { order: -1; }
.contact-panel__img { position: relative; align-self: end; }
/* Not width:100% — the ring is meant to peek out from behind the portrait. */
.contact-panel__img img { position: relative; z-index: 2; max-width: 100%; height: auto; display: block; margin: 0 auto; }
.contact-panel__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; }
/* "Personal touch" caption card floating over the contact image */
.contact-panel__person { position: absolute; left: 18px; bottom: 18px; z-index: 3; display: flex; align-items: center; gap: 12px; max-width: 260px; padding: 12px 16px; background: rgba(255, 255, 255, .96); border-radius: 14px; box-shadow: var(--shadow); }
.contact-panel__person-badge { width: 38px; height: 38px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; flex: none; }
.contact-panel__person-text { display: flex; flex-direction: column; }
.contact-panel__person-text b { font-family: var(--font-head); font-size: 14.5px; color: var(--heading); line-height: 1.2; }
.contact-panel__person-text small { font-size: 12px; color: var(--text); line-height: 1.35; margin-top: 2px; }

.contact-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form-fields .full { grid-column: 1 / -1; }

/* Fields default to the LIGHT treatment so they are readable anywhere —
   including the [devteam_contact_form] shortcode and the Contact Form Split
   section. The dark panel opts into the dark treatment below. */
.dt-field {
	width: 100%; font-family: var(--font-body); font-size: 16px; padding: 16px 20px;
	border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-soft);
	color: var(--heading); transition: border-color .25s var(--ease);
}
.dt-field::placeholder { color: var(--muted); }
.dt-field:focus { outline: none; border-color: var(--brand); }
textarea.dt-field { min-height: 130px; resize: vertical; }

.contact-panel--dark .dt-field, .on-dark .dt-field {
	background: rgba(0, 0, 0, .28); border-color: transparent; color: #fff;
}
.contact-panel--dark .dt-field::placeholder, .on-dark .dt-field::placeholder { color: rgba(255, 255, 255, .5); }
.contact-panel--dark .dt-field:focus, .on-dark .dt-field:focus { border-color: var(--brand); }

/* Compact form in a sidebar (single service template) */
.dt-sidebar-form .contact-form-fields { grid-template-columns: 1fr; }

/* 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), #ffa067); 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(--footer-bg, #1e1b4b); color: var(--f-text, 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: var(--f-head, #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-meta--sticky { position: sticky; top: 100px; }

/* Single Project built with Elementor columns (Project Body + Project Info) */
.devteam-project-single .entry-content > .elementor-widget-container,
.devteam-project-single .proj-meta { height: auto; }
.devteam-project-single .elementor-column { align-self: start; }
.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-panel__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-panel__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; }
	/* The centered nav normally pushes these right; it's hidden here, so do it explicitly. */
	.site-header__actions { margin-left: auto; }
}
@media (max-width: 600px) {
	.site-header__inner { gap: 12px; }
	.site-header__actions { gap: 8px; }
	.site-header__actions .btn--pill { padding: 6px 6px 6px 18px; font-size: 12px; gap: 10px; min-height: 46px; }
	.site-header__actions .btn--pill .btn__circle { width: 34px; height: 34px; }
}
@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-panel, .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%; }

/* =====================================================================
   DEVTEAM BLOCKS — styles native Elementor elements (Heading, Text, Image,
   Button, Icon Box, Accordion) so an inserted block matches the design while
   every part stays individually editable.
   ===================================================================== */
.dt-b.section, .dt-b { padding: 90px 0; }
.dt-b--tight { padding: 90px 0 0; }		/* heading row that sits above a card row */
.dt-b--top { padding: 34px 0 90px; }	/* the card row that follows it */
.dt-b-center { text-align: center; }
.dt-b-center .dt-b-eyebrow .elementor-heading-title { justify-content: center; }
.dt-b-dark { background: var(--dark-2); }
.dt-b-soft { background: var(--bg-soft); }

.dt-b-eyebrow .elementor-heading-title {
	display: inline-flex; align-items: center; gap: 14px; margin: 0;
	font-family: var(--font-head); font-weight: 600; font-size: 14px;
	letter-spacing: .14em; text-transform: uppercase; color: var(--brand);
}
.dt-b-eyebrow .elementor-heading-title::after { content: ""; width: 42px; height: 2px; background: var(--brand); border-radius: 2px; }

.dt-b-title .elementor-heading-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);
}
.dt-b-title--solid .elementor-heading-title { color: var(--heading); }
.dt-b-dark .dt-b-title .elementor-heading-title { color: var(--ghost-dark); }
.dt-b-dark .dt-b-title--solid .elementor-heading-title,
.dt-b-dark .dt-b-cardtitle .elementor-heading-title { color: #fff; }
.dt-b-dark, .dt-b-dark .dt-b-text { color: rgba(255, 255, 255, .74); }

.dt-b-text { margin-top: 14px; }
.dt-b-lead { font-size: 18px; }
.dt-b-img img { border-radius: var(--radius); display: block; width: 100%; }
.dt-b-img--wide img { border-radius: var(--radius-lg); }
.dt-b-collage .elementor-widget-image + .elementor-widget-image { margin-top: 18px; }
.dt-b-collage .elementor-widget-image img { height: clamp(220px, 21vw, 310px); object-fit: cover; object-position: center; }

.dt-b-btn .elementor-button {
	background: var(--brand); color: #fff; border-radius: 50px; padding: 17px 32px;
	font-family: var(--font-head); font-weight: 600; font-size: 14px;
	letter-spacing: .06em; text-transform: uppercase;
}
.dt-b-btn .elementor-button:hover { background: var(--brand-dark); color: #fff; }
.dt-b-btn--dark .elementor-button { background: var(--ink); }

.dt-b-feat .elementor-icon-box-icon .elementor-icon {
	width: 66px; height: 66px; border-radius: 50%; background: var(--bg-soft);
	color: var(--brand); display: grid; place-items: center; font-size: 26px;
}
.dt-b-feat .elementor-icon-box-title { font-family: var(--font-head); font-size: 20px; margin-bottom: 8px; }
.dt-b-feat .elementor-icon-box-description { font-size: 15.5px; }
.dt-b-featgrid { margin-top: 26px; }

.dt-b-stat .elementor-counter-number-wrapper {
	font-family: var(--font-head); font-weight: 700; font-size: clamp(40px, 5vw, 64px); color: #fff; line-height: 1;
}
.dt-b-stat .elementor-counter-title { font-family: var(--font-head); font-weight: 600; font-size: 15px; color: rgba(255, 255, 255, .74); margin-top: 8px; }

.dt-b-card > .elementor-widget-wrap {
	background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1);
	border-radius: var(--radius); padding: 34px 28px; margin: 0 12px; align-content: flex-start;
}
.dt-b-cardtitle .elementor-heading-title { font-size: 22px; margin: 6px 0 12px; }

.dt-b-step .elementor-icon-box-icon .elementor-icon { width: 54px; height: 54px; border-radius: 50%; background: var(--bg-soft); color: var(--brand); font-size: 12px; display: grid; place-items: center; }
.dt-b-step .elementor-icon-box-title { font-family: var(--font-head); font-size: 19px; }

.dt-b-cta { border-radius: var(--radius-lg); text-align: center; padding: 110px 24px; position: relative; }
.dt-b-cta .dt-b-title .elementor-heading-title { color: #fff; }

.dt-b-promo { background: linear-gradient(90deg, var(--accent), #ffa067); border-radius: var(--radius-lg); padding: 26px 34px; align-items: center; }
.dt-b-promo-title .elementor-heading-title { font-size: clamp(22px, 2.6vw, 34px); color: var(--ink); margin: 0; }

.dt-b-check .elementor-icon-list-item { margin-bottom: 12px; }
.dt-b-check .elementor-icon-list-icon { color: var(--brand); }
.dt-b-check .elementor-icon-list-text { font-family: var(--font-head); font-weight: 500; color: var(--heading); }

/* FAQ section — the native Elementor accordion, styled to match the FAQ
   widget's card design (separate white cards, soft shadow, circular brand
   chevron on the right, brand-blue active question). */
.dt-b-faq .elementor-accordion { display: grid; gap: 16px; }
.dt-b-faq .elementor-accordion-item {
	background: #fff; border: 0; border-radius: var(--radius);
	box-shadow: var(--shadow-sm); overflow: hidden;
}
.dt-b-faq .elementor-tab-title {
	display: flex; align-items: center; justify-content: space-between; gap: 16px;
	margin: 0; padding: 22px 26px; border: 0; background: none; cursor: pointer;
	transition: color .3s var(--ease);
}
.dt-b-faq .elementor-accordion-title {
	order: 1; flex: 1; font-family: var(--font-head); font-weight: 600;
	font-size: 17px; color: var(--heading); transition: color .3s var(--ease);
}
.dt-b-faq .elementor-tab-title.elementor-active,
.dt-b-faq .elementor-tab-title.elementor-active .elementor-accordion-title { color: var(--brand); }

/* The chevron button — pinned right regardless of the icon's DOM position. */
.dt-b-faq .elementor-accordion-icon {
	order: 2; flex: none; width: 34px; height: 34px; margin: 0; padding: 0;
	border-radius: 50%; background: var(--brand); color: #fff;
	display: grid; place-items: center; font-size: 13px; line-height: 1;
	transition: transform .3s var(--ease);
}
.dt-b-faq .elementor-accordion-icon svg { width: 14px; height: 14px; fill: #fff; }
.dt-b-faq .elementor-accordion-icon i { color: #fff; }
.dt-b-faq .elementor-accordion-icon-opened { display: none; }
.dt-b-faq .elementor-tab-title.elementor-active .elementor-accordion-icon-closed { display: none; }
.dt-b-faq .elementor-tab-title.elementor-active .elementor-accordion-icon-opened { display: block; }

.dt-b-faq .elementor-tab-content {
	border: 0; padding: 0 26px 24px; color: var(--text); background: none;
}
.dt-b-faq .elementor-tab-content p:last-child { margin-bottom: 0; }
.dt-b-contact-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px 26px; text-align: center; }
.dt-b-contact-card .elementor-icon { width: 76px; height: 76px; border-radius: 50%; background: rgba(var(--brand-rgb), .1); color: var(--brand); display: grid; place-items: center; font-size: 28px; margin: 0 auto 6px; }
.dt-b-contact-card .elementor-icon-box-icon { text-align: center; }
.dt-b-contact-card .elementor-icon-box-title { font-family: var(--font-head); font-size: 20px; margin-bottom: 6px; }

/* --- Hero block ------------------------------------------------------- */
.dt-b-hero { padding: 150px 0 40px; }
.dt-b-hero-copy { display: flex; flex-direction: column; justify-content: flex-end; }
.dt-b-hero-media { padding: 0 0 90px; }
.dt-b-hero-media .dt-b-img img { height: clamp(300px, 40vw, 560px); object-fit: cover; }

/* --- Page title banner ------------------------------------------------ */
.dt-b-pagehero { padding: 190px 0 110px; }
.dt-b-pagehero .dt-b-title .elementor-heading-title { color: #fff; }
.dt-b-crumb { color: rgba(255, 255, 255, .74); margin-top: 10px; font-family: var(--font-head); font-weight: 500; letter-spacing: .04em; }

/* --- Service cards ---------------------------------------------------- */
/* The card surface lives on the column's widget wrap, not the column itself, so
   the margin can open a real gutter between cards without breaking the widths. */
.dt-b-svccol > .elementor-widget-wrap {
	background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
	padding: 40px 30px 34px; margin: 0 12px; align-content: flex-start;
	transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.dt-b-svccol:hover > .elementor-widget-wrap { box-shadow: var(--shadow); transform: translateY(-6px); }
.dt-b-svc .elementor-icon-box-icon .elementor-icon { width: 68px; height: 68px; border-radius: 18px; background: rgba(var(--brand-rgb), .1); color: var(--brand); display: grid; place-items: center; font-size: 26px; }
.dt-b-svc .elementor-icon-box-title { font-family: var(--font-head); font-size: 21px; margin-bottom: 10px; }
.dt-b-btn--link .elementor-button { background: transparent; color: var(--brand); padding: 12px 0 0; letter-spacing: .08em; }
.dt-b-btn--link .elementor-button:hover { background: transparent; color: var(--brand-dark); }

/* --- Image showcase --------------------------------------------------- */
.dt-b-showcase { padding: 0; }
.dt-b-shot img { border-radius: var(--radius); height: clamp(260px, 24vw, 380px); object-fit: cover; object-position: center; }

/* --- Numbered approach cards ------------------------------------------ */
.dt-b-num .elementor-heading-title { font-family: var(--font-head); font-weight: 700; font-size: 46px; line-height: 1; color: var(--brand); margin: 0; }

/* --- Team cards ------------------------------------------------------- */
.dt-b-member { text-align: center; }
.dt-b-avatar img { border-radius: var(--radius); height: clamp(260px, 24vw, 340px); object-fit: cover; object-position: top center; }
.dt-b-membername .elementor-heading-title { font-family: var(--font-head); font-size: 20px; margin: 18px 0 2px; color: var(--heading); }
.dt-b-memberrole { margin-top: 0; color: var(--brand); font-size: 14.5px; font-weight: 500; letter-spacing: .04em; }

/* --- Testimonials ----------------------------------------------------- */
.dt-b-quote .elementor-testimonial-wrapper { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 34px 30px; text-align: left; height: 100%; }
.dt-b-quote .elementor-testimonial-content { font-size: 16px; color: var(--body); line-height: 1.75; }
.dt-b-quote .elementor-testimonial-meta { margin-top: 22px; }
.dt-b-quote .elementor-testimonial-image img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.dt-b-quote .elementor-testimonial-name { font-family: var(--font-head); font-weight: 600; color: var(--heading); }
.dt-b-quote .elementor-testimonial-job { color: var(--brand); font-size: 13.5px; }

/* --- Promo strip ------------------------------------------------------ */
.dt-b-promo-img img { border-radius: var(--radius); height: 120px; width: auto; object-fit: cover; }

/* --- Contact form split ----------------------------------------------- */
.dt-b-contactlist .elementor-icon-list-item { margin-bottom: 14px; gap: 12px; }
.dt-b-contactlist .elementor-icon-list-icon { color: var(--brand); }
.dt-b-contactlist .elementor-icon-list-text { color: var(--heading); font-weight: 500; }
.dt-b-formwrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.dt-shortcode-form .contact-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dt-shortcode-form .dt-field--full { grid-column: 1 / -1; }

/* --- Map -------------------------------------------------------------- */
.dt-b-mapwrap { padding: 0; }
.dt-b-map iframe { display: block; width: 100%; filter: grayscale(.25); }

/* --- Image box card --------------------------------------------------- */
.dt-b-imgbox .elementor-image-box-img img { border-radius: var(--radius); }
.dt-b-imgbox .elementor-image-box-title { font-family: var(--font-head); font-size: 21px; }

@media (max-width: 860px) {
	.dt-b, .dt-b.section { padding: 60px 0; }
	.dt-b--tight { padding: 60px 0 0; }
	.dt-b--top { padding: 26px 0 60px; }
	.dt-b-hero { padding: 120px 0 24px; }
	.dt-b-pagehero { padding: 140px 0 70px; }
	.dt-shortcode-form .contact-form-fields { grid-template-columns: 1fr; }
}

/* Third-party form shortcodes dropped into the Contact Form widget */
.dt-form-shortcode input[type=text], .dt-form-shortcode input[type=email], .dt-form-shortcode input[type=tel], .dt-form-shortcode textarea, .dt-form-shortcode select {
	width: 100%; font-family: var(--font-body); font-size: 16px; padding: 16px 20px;
	border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--bg-soft); color: var(--heading);
}
.contact-panel--dark .dt-form-shortcode input[type=text], .contact-panel--dark .dt-form-shortcode input[type=email],
.contact-panel--dark .dt-form-shortcode input[type=tel], .contact-panel--dark .dt-form-shortcode textarea, .contact-panel--dark .dt-form-shortcode select {
	background: rgba(0, 0, 0, .28); border-color: transparent; color: #fff;
}
.dt-form-shortcode input[type=submit], .dt-form-shortcode button[type=submit] {
	background: var(--brand); color: #fff; border: none; border-radius: 50px; padding: 16px 32px; cursor: pointer;
	font-family: var(--font-head); font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
}

/* =====================================================================
   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.
   ===================================================================== */
/* The !important locks stay (they defeat Elementor's global-kit leak), but the
   colours come from footer CSS variables so the Site Footer widget's Style
   controls can override them by simply setting the variable. */
.site-footer .footer-menu a,
.site-footer .footer-col a,
.site-footer .footer-brand a { color: var(--f-link, 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(--f-link-hover, var(--brand)) !important; }
.site-footer .footer-contact a { color: var(--f-contact, #fff) !important; }
.site-footer .footer-contact a:hover { color: var(--f-link-hover, var(--brand)) !important; }
.site-footer .footer-bottom__links a { color: var(--f-bottom-link, rgba(255, 255, 255, .58)) !important; }
.site-footer .footer-bottom__links a:hover { color: var(--f-link-hover, 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; }
