/* ==========================================================================
   Dicitil — main.css
   --------------------------------------------------------------------------
   Compiled output of /sass/main.sass (expanded). Hand-maintained to mirror
   the SASS partials. Fonts (Heebo + Poppins) are loaded via Google Fonts in
   each page <head>. Colour tokens resolved from sass/_colors.sass.
   ========================================================================== */

/* ===== Reset ===== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Poppins', system-ui, sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.7;
	color: #2E2348;
	background: #ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, figure { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }

/* ===== Root custom properties ===== */
:root {
	--primary: #B791C2;
	--primaryMid: #9A77B5;
	--primaryDeep: #6F5291;
	--primaryDark: #593694;
	--primaryInk: #06001e;
	--periwinkle: #9D9BDB;
	--blue: #3FC4EC;
	--blueDeep: #1FA6D0;
	--blueSoft: #E2F6FD;
	--yellow: #E1E323;
	--orange: #EC8723;
	--green: #66BD57;
	--text: #2E2348;
	--textMid: #5B5170;
	--textLight: #8A82A0;
	--bg: #ffffff;
	--bgSoft: #FAFAFB;
	--bgWash: #F5F1F8;
	--border: rgba(111, 82, 145, 0.14);
	--cardShadow: 0 12px 34px rgba(111, 82, 145, 0.10);
	--maxw: 1480px;
}

/* ==========================================================================
   CONTENT & TYPOGRAPHY  (_content.sass)
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	color: #6F5291;
	line-height: 1.12;
	letter-spacing: -0.015em;
}

/* The signature TITLE COMBO — kicker over large display title */
.kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.82rem;
	letter-spacing: 0.26rem;
	text-transform: uppercase;
	color: #1FA6D0;
}
.kicker::before {
	content: "";
	width: 30px;
	height: 3px;
	border-radius: 100px;
	background: #3FC4EC;
}
.kicker.is-light { color: #3FC4EC; }
.kicker.is-light::before { background: #3FC4EC; }
.kicker.is-centered { justify-content: center; }

.display-title {
	font-family: 'Heebo', sans-serif;
	font-weight: 900;
	color: #6F5291;
	font-size: 2.1rem;
	line-height: 1.05;
	letter-spacing: -0.025em;
	padding-top: 18px;
	text-wrap: balance;
}
.display-title em { font-style: normal; color: #B791C2; }
.display-title .pop { color: #3FC4EC; }

.section-title {
	font-family: 'Heebo', sans-serif;
	font-weight: 900;
	color: #6F5291;
	font-size: 1.9rem;
	line-height: 1.08;
	letter-spacing: -0.02em;
	padding-top: 16px;
	text-wrap: balance;
}
.section-title em { font-style: normal; color: #B791C2; }
.section-title .pop { color: #3FC4EC; }

p {
	color: #5B5170;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	line-height: 1.7;
}
.lead { font-size: 1.12rem; line-height: 1.7; color: #5B5170; }
.text-light { color: #8A82A0; }

/* Rich text (blog/long-form) */
.rich h2 { font-size: 1.7rem; padding: 8px 0 12px; }
.rich h3 { font-size: 1.3rem; color: #6F5291; padding: 6px 0 8px; }
.rich p { padding-bottom: 18px; font-size: 1.02rem; }
.rich ul { display: flex; flex-direction: column; gap: 10px; padding: 4px 0 22px; }
.rich ul li {
	position: relative;
	padding-left: 30px;
	color: #5B5170;
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
}
.rich ul li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #E2F6FD;
	border: 2px solid #3FC4EC;
}
.rich a { color: #1FA6D0; font-weight: 600; border-bottom: 2px solid rgba(63, 196, 236, 0.3); }
.rich a:hover { border-bottom-color: #3FC4EC; }

.hidden { display: none !important; }
.text-center { text-align: center; }
.flex-spacer { flex: 1; }

@media all and (min-width: 768px) {
	.display-title { font-size: 2.9rem; }
	.section-title { font-size: 2.4rem; }
	.rich h2 { font-size: 2rem; }
}
@media all and (min-width: 1200px) {
	.display-title { font-size: 3.6rem; }
	.section-title { font-size: 2.9rem; }
}

/* ==========================================================================
   ANIMATIONS  (_animations.sass)
   ========================================================================== */
@keyframes pulse {
	0%   { box-shadow: 0 0 0 0 rgba(63, 196, 236, 0.55); }
	70%  { box-shadow: 0 0 0 12px rgba(63, 196, 236, 0); }
	100% { box-shadow: 0 0 0 0 rgba(63, 196, 236, 0); }
}
@keyframes float {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(-16px); }
	100% { transform: translateY(0); }
}
@keyframes drift {
	0%   { transform: translateY(0) rotate(0deg); }
	50%  { transform: translateY(-14px) rotate(3deg); }
	100% { transform: translateY(0) rotate(0deg); }
}
@keyframes riseIn {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* ==========================================================================
   HEADER  (_header.sass)
   ========================================================================== */
#header {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 60;
}
#header-wrapper {
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 22px 6%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
#header-logo a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}
#header-logo img { width: 46px; height: auto; }
#header-logo-text {
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.95rem;
	letter-spacing: 0.04em;
	color: #6F5291;
	line-height: 1;
}
#header-nav { display: none; }

.nav-link {
	padding: 10px 16px;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.82rem;
	letter-spacing: 0.12rem;
	text-transform: uppercase;
	color: #6F5291;
	border-radius: 100px;
	transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover { color: #1FA6D0; background: #E2F6FD; }
.nav-link.is-active { color: #1FA6D0; }

#header-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}
#header-cta .btn { display: none; }

#mobile-nav-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 14px;
	color: #6F5291;
	box-shadow: 0 6px 18px rgba(111, 82, 145, 0.10);
}
#mobile-nav-toggle svg {
	width: 22px; height: 22px;
	stroke: currentColor; stroke-width: 2.2; fill: none;
}

/* Header on inner/dark pages */
body.inner #header-logo-text { color: #ffffff; }
body.inner .nav-link { color: rgba(255, 255, 255, 0.92); }
body.inner .nav-link:hover { color: #06001e; background: #3FC4EC; }
body.inner .nav-link.is-active { color: #3FC4EC; }
body.inner #mobile-nav-toggle {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.25);
	color: #ffffff;
}

@media all and (min-width: 1024px) {
	#header-nav { display: flex; align-items: center; gap: 6px; }
	#header-cta .btn { display: inline-flex; }
	#mobile-nav-toggle { display: none; }
}

/* Mobile nav — CSS-only :target drawer */
#mobile-nav {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 200;
	background: #06001e;
	padding: 88px 9% 48px;
	flex-direction: column;
	align-items: stretch;
	gap: 4px;
	overflow-y: auto;
}
#mobile-nav:target { display: flex; }
#mobile-nav::before {
	content: "";
	position: absolute;
	right: -120px; top: -80px;
	width: 420px; height: 420px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.22;
	pointer-events: none;
}
#mobile-nav a {
	position: relative;
	z-index: 1;
	color: #ffffff;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 1.5rem;
	letter-spacing: 0.04em;
	padding: 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
#mobile-nav a:hover { color: #3FC4EC; }
#mobile-nav .mobile-nav-cta {
	margin-top: 26px;
	border-bottom: none;
	align-self: flex-start;
}
#mobile-nav .mobile-nav-close {
	position: absolute;
	top: 26px; right: 9%;
	z-index: 2;
	width: 48px; height: 48px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.12);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-bottom: none;
	padding: 0;
}
#mobile-nav .mobile-nav-close svg {
	width: 24px; height: 24px;
	stroke: #ffffff; stroke-width: 2.4; fill: none;
}

/* ==========================================================================
   FOOTER  (_footer.sass)
   ========================================================================== */
#footer {
	background: #06001e;
	color: rgba(255, 255, 255, 0.74);
	position: relative;
	overflow: hidden;
}
#footer::before {
	content: "";
	position: absolute;
	left: -160px; top: -120px;
	width: 460px; height: 460px;
	background: radial-gradient(circle, rgba(111, 82, 145, 0.45) 0%, transparent 62%);
	pointer-events: none;
}
#footer::after {
	content: "";
	position: absolute;
	right: -140px; bottom: -160px;
	width: 420px; height: 420px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.16;
	pointer-events: none;
}
#footer-wrapper {
	position: relative;
	z-index: 1;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 72px 6% 32px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-bottom: 44px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
	padding-bottom: 18px;
}
.footer-brand img { width: 52px; height: auto; }
.footer-brand strong {
	color: #ffffff;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 1.15rem;
	letter-spacing: 0.04em;
}
.footer-col p {
	color: rgba(255, 255, 255, 0.66);
	font-family: 'Poppins', sans-serif;
	font-size: 0.92rem;
	line-height: 1.7;
	max-width: 340px;
}
.footer-col h4 {
	color: #3FC4EC;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.76rem;
	letter-spacing: 0.22rem;
	text-transform: uppercase;
	padding-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li {
	color: rgba(255, 255, 255, 0.68);
	font-family: 'Poppins', sans-serif;
	font-size: 0.92rem;
	line-height: 1.5;
}
.footer-col a:hover { color: #3FC4EC; }
.footer-col .contact-line {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 7px 0;
}
.footer-col .contact-line svg {
	width: 17px; height: 17px;
	fill: #3FC4EC;
	flex-shrink: 0;
	margin-top: 3px;
}
.footer-socials { display: flex; gap: 10px; padding-top: 20px; }
.footer-socials a {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.8);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-socials a:hover { background: #3FC4EC; color: #06001e; transform: translateY(-3px); }
.footer-socials svg { width: 17px; height: 17px; fill: currentColor; }
.footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	justify-content: space-between;
	padding-top: 30px;
	font-family: 'Poppins', sans-serif;
	font-size: 0.8rem;
	color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a { color: #B791C2; }
.footer-bottom a:hover { color: #3FC4EC; }

@media all and (min-width: 640px) {
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-bottom { flex-direction: row; }
}
@media all and (min-width: 1024px) {
	.footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 52px; }
}

/* ==========================================================================
   SECTIONS — buttons, hero, cross-page bands  (_sections.sass)
   ========================================================================== */

/* ----- Buttons ----- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 16px 30px;
	border-radius: 100px;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.8rem;
	letter-spacing: 0.16rem;
	text-transform: uppercase;
	border: none;
	cursor: pointer;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
	white-space: nowrap;
	line-height: 1;
}
.btn .icon-arrow {
	width: 16px; height: 16px;
	stroke: currentColor; stroke-width: 2.6; fill: none;
	transition: transform 0.25s ease;
}
.btn:hover .icon-arrow { transform: translateX(5px); }

.btn-primary { background: #3FC4EC; color: #06001e; box-shadow: 0 10px 26px rgba(63, 196, 236, 0.34); }
.btn-primary:hover { background: #1FA6D0; color: #ffffff; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(31, 166, 208, 0.42); }

.btn-purple { background: #6F5291; color: #ffffff; box-shadow: 0 10px 26px rgba(111, 82, 145, 0.30); }
.btn-purple:hover { background: #593694; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(89, 54, 148, 0.40); }

.btn-ghost { background: transparent; color: #ffffff; border: 2px solid rgba(255, 255, 255, 0.55); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #ffffff; transform: translateY(-3px); }

.btn-outline { background: transparent; color: #6F5291; border: 2px solid #6F5291; }
.btn-outline:hover { background: #6F5291; color: #ffffff; transform: translateY(-3px); }

.btn-orange { background: #EC8723; color: #ffffff; box-shadow: 0 10px 26px rgba(236, 135, 35, 0.34); }
.btn-orange:hover { background: #d4761a; transform: translateY(-3px); }

.btn-sm { padding: 12px 22px; font-size: 0.72rem; letter-spacing: 0.14rem; }
.btn-lg { padding: 19px 40px; font-size: 0.86rem; }

.text-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0.12rem;
	text-transform: uppercase;
	color: #1FA6D0;
}
.text-link .icon-arrow {
	width: 15px; height: 15px;
	stroke: currentColor; stroke-width: 2.6; fill: none;
	transition: transform 0.2s ease;
}
.text-link:hover { color: #6F5291; }
.text-link:hover .icon-arrow { transform: translateX(4px); }

/* ----- Generic section wrappers ----- */
section { background: #ffffff; position: relative; }
.section-wrapper { max-width: var(--maxw); margin: 0 auto; padding: 64px 6%; }
.section-head { max-width: 720px; padding-bottom: 44px; }
.section-head.center { text-align: center; margin: 0 auto; }
.section-head.center .kicker { justify-content: center; }
.section-head p { padding-top: 18px; color: #5B5170; font-size: 1.05rem; line-height: 1.7; }

.bg-soft { background: #FAFAFB; }
.bg-wash { background: #F5F1F8; }
.bg-ink { background: #06001e; color: #ffffff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #ffffff; }

/* ----- HERO ----- */
#hero {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: #F5F1F8;
	background-size: cover;
	background-position: center;
}
#hero-wrapper {
	position: relative;
	z-index: 3;
	max-width: var(--maxw);
	width: 100%;
	margin: 0 auto;
	padding: 120px 6% 80px;
}
body.home #hero { min-height: 100dvh; }
#hero-foreground {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: url('../images/hero-foreground.png');
	background-size: cover;
	background-position: center;
	pointer-events: none;
}
#hero-title .kicker { margin-bottom: 6px; }
.hero-title {
	font-family: 'Heebo', sans-serif;
	font-weight: 900;
	color: #6F5291;
	font-size: 2.8rem;
	line-height: 0.98;
	letter-spacing: -0.03em;
}
.hero-title span { display: block; color: #B791C2; }
#hero-subtitle {
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	color: #6F5291;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
	padding-top: 26px;
}
#hero-text {
	max-width: 440px;
	color: #5B5170;
	font-family: 'Poppins', sans-serif;
	font-size: 1rem;
	line-height: 1.7;
	padding-top: 16px;
}
#hero-actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 34px; }

/* Inner-page hero */
body.inner #hero {
	min-height: 60dvh;
	background: linear-gradient(135deg, #593694 0%, #6F5291 55%, #9A77B5 120%);
	color: #ffffff;
}
body.inner #hero::before {
	content: "";
	position: absolute;
	right: -120px; top: -120px;
	width: 520px; height: 520px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.30;
	animation: drift 9s ease-in-out infinite;
	pointer-events: none;
}
body.inner #hero::after {
	content: "";
	position: absolute;
	left: -160px; bottom: -160px;
	width: 460px; height: 460px;
	background: radial-gradient(circle, rgba(63, 196, 236, 0.30) 0%, transparent 65%);
	pointer-events: none;
}
body.inner #hero-wrapper { text-align: center; padding: 110px 6%; }
body.inner #hero-title { display: flex; flex-direction: column; align-items: center; }
body.inner .hero-title { color: #ffffff; font-size: 2.4rem; }
body.inner .hero-title span { color: #3FC4EC; }
body.inner #hero-text { margin: 0 auto; max-width: 600px; color: rgba(255, 255, 255, 0.86); padding-top: 20px; }
body.inner .kicker { color: #3FC4EC; }
body.inner #hero-actions { justify-content: center; }
#hero-breadcrumbs {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	font-family: 'Poppins', sans-serif;
	font-size: 0.82rem;
	letter-spacing: 0.06rem;
	padding-top: 22px;
}
#hero-breadcrumbs span { opacity: 0.5; }
#hero-breadcrumbs a:hover { color: #3FC4EC; }

/* ----- Process / steps ----- */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.step-card {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 20px;
	padding: 32px 28px;
	position: relative;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); }
.step-num { font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 2.6rem; line-height: 1; color: #3FC4EC; opacity: 0.5; }
.step-card h3 { font-size: 1.15rem; color: #6F5291; padding: 16px 0 8px; }
.step-card p { font-size: 0.95rem; color: #5B5170; }

/* ----- Stats ----- */
#stats { background: #06001e; color: #ffffff; position: relative; overflow: hidden; }
#stats::before {
	content: "";
	position: absolute;
	right: -120px; top: -120px;
	width: 380px; height: 380px;
	background: radial-gradient(circle, rgba(63, 196, 236, 0.22) 0%, transparent 62%);
	pointer-events: none;
}
#stats-wrapper {
	position: relative;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 64px 6%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	text-align: center;
}
.stat-card { padding: 12px; }
.stat-num { font-family: 'Heebo', sans-serif; font-weight: 900; color: #3FC4EC; font-size: 3.2rem; line-height: 1; letter-spacing: -0.03em; }
.stat-label { padding-top: 12px; color: rgba(255, 255, 255, 0.75); font-family: 'Poppins', sans-serif; font-size: 0.82rem; letter-spacing: 0.12rem; text-transform: uppercase; }

/* ----- Testimonials ----- */
#testimonials { background: #FAFAFB; }
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.testimonial-card {
	background: #ffffff;
	border-radius: 22px;
	padding: 34px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	border: 1px solid rgba(111, 82, 145, 0.14);
	box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10);
}
.testimonial-rating { display: flex; gap: 4px; color: #F4C534; }
.testimonial-rating svg { width: 18px; height: 18px; fill: currentColor; }
.testimonial-card blockquote { font-family: 'Poppins', sans-serif; font-size: 1.02rem; line-height: 1.6; color: #2E2348; margin: 0; }
.testimonial-author { display: flex; align-items: center; gap: 14px; padding-top: 14px; border-top: 1px solid rgba(111, 82, 145, 0.14); }
.testimonial-author-avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3FC4EC, #B791C2);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
}
.testimonial-author-info strong { display: block; color: #6F5291; font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 0.95rem; }
.testimonial-author-info span { color: #8A82A0; font-family: 'Poppins', sans-serif; font-size: 0.8rem; }

/* ----- Clients / trust strip ----- */
#clients { background: #ffffff; }
#clients-wrapper { max-width: var(--maxw); margin: 0 auto; padding: 56px 6%; text-align: center; }
.clients-eyebrow { color: #8A82A0; font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 0.76rem; letter-spacing: 0.24rem; text-transform: uppercase; padding-bottom: 30px; }
.clients-row { display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: nowrap; flex-direction: column; }
.client-logo {
	width: 100%;
	height: 100%;
	padding: 40px 10% 20px 10%;
	background: #ffffff;
	border: none;
	border-radius: 14px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	color: #6F5291;
	font-size: 0.8rem;
	letter-spacing: 0.04rem;
	opacity: 0.9;
	transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.client-logo:hover { opacity: 1; transform: translateY(-3px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0); }

.client-logo img {
	max-width: 300px;
}

@media all and (min-width: 768px) {
	.clients-row {
		flex-direction: row;
	}
}

/* ----- Bottom CTA ----- */
#bottom-cta { background: #ffffff; }
#bottom-cta-wrapper { max-width: var(--maxw); margin: 0 auto; padding: 60px 6%; }
.bottom-cta-card {
	background: linear-gradient(135deg, #593694 0%, #6F5291 55%, #9A77B5 130%);
	color: #ffffff;
	border-radius: 30px;
	padding: 52px 36px;
	display: flex;
	flex-direction: column;
	gap: 26px;
	align-items: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.bottom-cta-card::before {
	content: "";
	position: absolute;
	right: -80px; top: -80px;
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(63, 196, 236, 0.34) 0%, transparent 62%);
	pointer-events: none;
}
.bottom-cta-card::after {
	content: "";
	position: absolute;
	left: -120px; bottom: -140px;
	width: 380px; height: 380px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.22;
	pointer-events: none;
}
.bottom-cta-card > * { position: relative; z-index: 1; }
.bottom-cta-card .kicker { color: #3FC4EC; }
.bottom-cta-card .kicker::before { background: #3FC4EC; }
.bottom-cta-card h2 { color: #ffffff; font-size: 1.9rem; line-height: 1.08; text-wrap: balance; }
.bottom-cta-card h2 span { display: block; color: #3FC4EC; }
.bottom-cta-card p { color: rgba(255, 255, 255, 0.85); max-width: 560px; }
.bottom-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

@media all and (min-width: 768px) {
	.section-wrapper { padding: 88px 8%; }
	.hero-title { font-size: 4rem; }
	#hero-subtitle { font-size: 1.5rem; }
	#hero-text { font-size: 1.08rem; }
	body.inner .hero-title { font-size: 3.2rem; }
	.steps-grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media all and (min-width: 1024px) {
	.steps-grid { grid-template-columns: repeat(4, 1fr); }
	.testimonials-grid { grid-template-columns: repeat(3, 1fr); }
	#stats-wrapper { grid-template-columns: repeat(4, 1fr); padding: 84px 8%; }
	.bottom-cta-card { flex-direction: row; text-align: left; align-items: center; justify-content: space-between; padding: 70px 64px; }
	.bottom-cta-card h2 { font-size: 2.5rem; max-width: 640px; }
	.bottom-cta-card .bottom-cta-copy { max-width: 620px; }
}
@media all and (min-width: 1200px) {
	.section-wrapper { padding: 112px 10%; }
	.hero-title { font-size: 5rem; }
	#hero-wrapper { padding: 140px 10% 100px; }
	#hero-subtitle { font-size: 1.7rem; }
	body.inner .hero-title { font-size: 3.8rem; }
}

/* ==========================================================================
   HOME PAGE  (_homePage.sass)
   ========================================================================== */
.clients-lead { max-width: 620px; margin: 0 auto; color: #5B5170; font-family: 'Poppins', sans-serif; font-size: 1.02rem; padding-bottom: 8px; }

/* Problem -> Promise */
#problem { background: #F5F1F8; overflow: hidden; }
#problem-wrapper {
	position: relative;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 72px 6%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 36px;
}
#problem-wrapper::before {
	content: "";
	position: absolute;
	right: -140px; top: -100px;
	width: 360px; height: 360px;
	background: radial-gradient(circle, rgba(157, 155, 219, 0.30) 0%, transparent 64%);
	pointer-events: none;
}
.problem-copy .display-title { padding-top: 18px; }
.problem-copy p { padding-top: 20px; max-width: 540px; }
.problem-copy .text-link { margin-top: 26px; }
.promise-card {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 24px;
	padding: 16px;
	box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10);
	position: relative;
	z-index: 1;
}
.promise-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: 18px; }
.promise-row + .promise-row { margin-top: 10px; }
.promise-row.is-bad { background: #FAFAFB; }
.promise-row.is-good { background: linear-gradient(135deg, rgba(63, 196, 236, 0.14), rgba(183, 145, 194, 0.14)); }
.promise-icon { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; }
.promise-row.is-bad .promise-icon { background: rgba(138, 130, 160, 0.16); color: #8A82A0; }
.promise-row.is-good .promise-icon { background: #3FC4EC; color: #06001e; }
.promise-icon svg { width: 22px; height: 22px; stroke: currentColor; stroke-width: 2.2; fill: none; }
.promise-row h4 { font-size: 1rem; color: #6F5291; padding-bottom: 4px; }
.promise-row p { font-size: 0.92rem; padding: 0; line-height: 1.55; }

/* Services overview grid */
#home-services { background: #ffffff; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.service-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 22px;
	padding: 32px 30px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(111, 82, 145, 0.18); border-color: rgba(63, 196, 236, 0.5); }
.service-card.is-featured {
	background: linear-gradient(155deg, #593694 0%, #6F5291 60%, #9A77B5 130%);
	border-color: transparent;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}
.service-card.is-featured::before {
	content: "";
	position: absolute;
	right: -70px; top: -70px;
	width: 240px; height: 240px;
	background: radial-gradient(circle, rgba(63, 196, 236, 0.32) 0%, transparent 60%);
	pointer-events: none;
}
.service-card-icon {
	width: 56px; height: 56px;
	border-radius: 15px;
	background: #E2F6FD;
	color: #1FA6D0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.service-card.is-featured .service-card-icon { background: #3FC4EC; color: #06001e; }
.service-card-icon svg { width: 28px; height: 28px; stroke: currentColor; stroke-width: 1.9; fill: none; }
.service-card h3 { font-size: 1.22rem; color: #6F5291; position: relative; }
.service-card.is-featured h3 { color: #ffffff; }
.service-card p { font-size: 0.95rem; color: #5B5170; flex: 1; position: relative; }
.service-card.is-featured p { color: rgba(255, 255, 255, 0.84); }
.service-card .text-link { margin-top: 4px; position: relative; }
.service-card.is-featured .text-link { color: #3FC4EC; }
.services-cta { display: flex; justify-content: center; padding-top: 44px; }

/* Why Dicitil */
#home-why { background: #FAFAFB; }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.why-card {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 22px;
	padding: 34px 30px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); }
.why-card-icon {
	width: 56px; height: 56px;
	border-radius: 15px;
	background: linear-gradient(135deg, #3FC4EC, #9D9BDB);
	color: #06001e;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.why-card-icon svg { width: 27px; height: 27px; stroke: currentColor; stroke-width: 1.9; fill: none; }
.why-card h3 { font-size: 1.12rem; color: #6F5291; padding: 22px 0 9px; }
.why-card p { font-size: 0.94rem; color: #5B5170; }

/* Pricing teaser */
#pricing-teaser { background: #ffffff; }
.models-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.model-card {
	border-radius: 24px;
	padding: 40px 36px;
	border: 1px solid rgba(111, 82, 145, 0.14);
	background: #ffffff;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.model-card:hover { transform: translateY(-5px); box-shadow: 0 24px 60px rgba(111, 82, 145, 0.18); }
.model-card.is-dark { background: linear-gradient(155deg, #6F5291, #593694); border-color: transparent; color: #ffffff; }
.model-tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	gap: 8px;
	background: #E2F6FD;
	color: #1FA6D0;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.68rem;
	letter-spacing: 0.16rem;
	text-transform: uppercase;
	padding: 7px 14px;
	border-radius: 100px;
}
.model-card.is-dark .model-tag { background: #3FC4EC; color: #06001e; }
.model-card h3 { font-size: 1.5rem; color: #6F5291; }
.model-card.is-dark h3 { color: #ffffff; }
.model-card p { color: #5B5170; }
.model-card.is-dark p { color: rgba(255, 255, 255, 0.82); }
.model-reassure {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	text-align: center;
	max-width: 600px;
	margin: 28px auto 0;
	color: #6F5291;
	font-family: 'Heebo', sans-serif;
	font-weight: 700;
	font-size: 0.98rem;
}
.model-reassure svg { width: 20px; height: 20px; stroke: #1FA6D0; stroke-width: 2.2; fill: none; flex-shrink: 0; }
.pricing-teaser-cta { display: flex; justify-content: center; padding-top: 32px; }

/* FAQ accordion */
#home-faq { background: #F5F1F8; }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 18px;
	padding: 4px 26px;
	transition: box-shadow 0.2s ease;
}
.faq-item[open] { box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); }
.faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	list-style: none;
	padding: 22px 0;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 1.05rem;
	color: #6F5291;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus {
	flex: 0 0 28px;
	width: 28px; height: 28px;
	border-radius: 50%;
	background: #E2F6FD;
	color: #1FA6D0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transition: background 0.2s ease, transform 0.2s ease;
}
.faq-item[open] summary .faq-plus { background: #3FC4EC; color: #06001e; transform: rotate(45deg); }
.faq-item summary .faq-plus::before,
.faq-item summary .faq-plus::after { content: ""; position: absolute; background: currentColor; border-radius: 2px; }
.faq-item summary .faq-plus::before { width: 12px; height: 2.4px; }
.faq-item summary .faq-plus::after { width: 2.4px; height: 12px; }
.faq-item .faq-body { padding: 0 0 22px; color: #5B5170; font-family: 'Poppins', sans-serif; font-size: 0.98rem; line-height: 1.7; max-width: 700px; }
.faq-item .faq-body strong { color: #6F5291; font-weight: 600; }

@media all and (min-width: 640px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media all and (min-width: 768px) {
	.why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
	.models-grid { grid-template-columns: repeat(2, 1fr); }
}
@media all and (min-width: 1024px) {
	#problem-wrapper { grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; padding: 110px 8%; }
	.services-grid { grid-template-columns: repeat(3, 1fr); }
	.why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   SERVICES PAGES  (_servicesPage.sass)
   ========================================================================== */
#services-intro { background: #ffffff; }
.services-intro-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.services-intro-inner .section-title { padding-top: 18px; }
.services-intro-inner p { padding-top: 22px; font-size: 1.12rem; color: #5B5170; }

#outcomes { background: #FAFAFB; }
.outcomes-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.outcome-card {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 20px;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.outcome-card:hover { transform: translateY(-5px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); }
.outcome-check { width: 46px; height: 46px; border-radius: 13px; background: #E2F6FD; color: #1FA6D0; display: inline-flex; align-items: center; justify-content: center; }
.outcome-check svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2.4; fill: none; }
.outcome-card h3 { font-size: 1.12rem; color: #6F5291; }
.outcome-card p { font-size: 0.95rem; color: #5B5170; }
.outcome-card.is-feature { background: linear-gradient(155deg, #6F5291, #593694); border-color: transparent; }
.outcome-card.is-feature h3 { color: #ffffff; }
.outcome-card.is-feature p { color: rgba(255, 255, 255, 0.84); }
.outcome-card.is-feature .outcome-check { background: #3FC4EC; color: #06001e; }

#related-services { background: #ffffff; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.related-card {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #FAFAFB;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 18px;
	padding: 22px 24px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); border-color: rgba(63, 196, 236, 0.5); }
.related-card .related-icon { width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px; background: #E2F6FD; color: #1FA6D0; display: inline-flex; align-items: center; justify-content: center; }
.related-card .related-icon svg { width: 23px; height: 23px; stroke: currentColor; stroke-width: 1.9; fill: none; }
.related-card h4 { font-size: 1rem; color: #6F5291; padding-bottom: 3px; }
.related-card p { font-size: 0.85rem; color: #8A82A0; line-height: 1.45; }

@media all and (min-width: 640px) {
	.outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
	.related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media all and (min-width: 1024px) {
	.outcomes-grid { grid-template-columns: repeat(3, 1fr); }
	.related-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   PRICING PAGE  (_pricingPage.sass)
   ========================================================================== */
.model-features { display: flex; flex-direction: column; gap: 12px; padding-top: 6px; }
.model-features li { position: relative; padding-left: 30px; font-family: 'Poppins', sans-serif; font-size: 0.95rem; color: #5B5170; line-height: 1.5; }
.model-card.is-dark .model-features li { color: rgba(255, 255, 255, 0.86); }
.model-features li::before {
	content: "";
	position: absolute;
	left: 0; top: 4px;
	width: 18px; height: 18px;
	border-radius: 50%;
	background-color: #E2F6FD;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231FA6D0' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
	background-size: 12px 12px;
	background-repeat: no-repeat;
	background-position: center;
}
.model-card.is-dark .model-features li::before { background-color: #3FC4EC; }
.model-price { font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 1.6rem; color: #1FA6D0; letter-spacing: -0.02em; padding-top: 6px; }
.model-card.is-dark .model-price { color: #3FC4EC; }
.model-price span { font-size: 0.85rem; font-weight: 700; color: #8A82A0; }
.model-card.is-dark .model-price span { color: rgba(255, 255, 255, 0.6); }
.model-card .btn { align-self: flex-start; margin-top: 8px; }

#tiers { background: #FAFAFB; }
.tier-table-wrap {
	max-width: 980px;
	margin: 0 auto;
	overflow-x: auto;
	border-radius: 22px;
	border: 1px solid rgba(111, 82, 145, 0.14);
	background: #ffffff;
	box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10);
}
.tier-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.tier-table thead th {
	background: #06001e;
	color: #ffffff;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	text-align: left;
	padding: 20px 24px;
}
.tier-table tbody td { padding: 22px 24px; border-top: 1px solid rgba(111, 82, 145, 0.14); font-family: 'Poppins', sans-serif; font-size: 0.95rem; color: #5B5170; vertical-align: top; }
.tier-table tbody tr:hover { background: #E2F6FD; }
.tier-name { font-family: 'Heebo', sans-serif; font-weight: 800; color: #6F5291; font-size: 1.05rem; }
.tier-good { color: #8A82A0; font-size: 0.9rem; }
.tier-price { font-family: 'Heebo', sans-serif; font-weight: 800; color: #1FA6D0; }
.tier-note { max-width: 980px; margin: 18px auto 0; text-align: center; color: #8A82A0; font-size: 0.86rem; }

#addons { background: #ffffff; }
.addons-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.addon-card { background: #FAFAFB; border: 1px solid rgba(111, 82, 145, 0.14); border-radius: 18px; padding: 26px; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.addon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); }
.addon-card h3 { font-size: 1.08rem; color: #6F5291; padding-bottom: 8px; }
.addon-card p { font-size: 0.92rem; color: #5B5170; }
.addon-card .addon-meta {
	display: inline-block;
	margin-top: 12px;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.12rem;
	text-transform: uppercase;
	color: #1FA6D0;
	background: #E2F6FD;
	padding: 6px 12px;
	border-radius: 100px;
}

#promise-band { background: #F5F1F8; }
.promise-band-card {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 26px;
	padding: 48px 36px;
	box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10);
	position: relative;
	overflow: hidden;
}
.promise-band-card .lock-badge {
	width: 64px; height: 64px;
	margin: 0 auto 22px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3FC4EC, #9D9BDB);
	color: #06001e;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.promise-band-card .lock-badge svg { width: 30px; height: 30px; stroke: currentColor; stroke-width: 2; fill: none; }
.promise-band-card p { padding-top: 16px; max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

@media all and (min-width: 640px) {
	.addons-grid { grid-template-columns: repeat(2, 1fr); }
}
@media all and (min-width: 1024px) {
	.addons-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   PORTFOLIO PAGE  (_portfolioPage.sass)
   ========================================================================== */
#cases { background: #ffffff; }
.cases-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.case-card {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 24px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(111, 82, 145, 0.18); }
.case-thumb { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.case-thumb-1 { background: linear-gradient(135deg, #6F5291 0%, #593694 100%); }
.case-thumb-2 { background: linear-gradient(135deg, #3FC4EC 0%, #9D9BDB 60%, #9A77B5 100%); }
.case-thumb-3 { background: linear-gradient(135deg, #9A77B5 0%, #B791C2 60%, #3FC4EC 130%); }
.case-thumb .case-monogram { font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 3.4rem; color: rgba(255, 255, 255, 0.92); letter-spacing: -0.03em; z-index: 1; }
/* .case-thumb::before {
	content: "";
	position: absolute;
	right: -40px; top: -40px;
	width: 200px; height: 200px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.32;
	mix-blend-mode: screen;
} */
.case-thumb .case-placeholder-tag {
	position: absolute;
	left: 16px; bottom: 16px;
	z-index: 1;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.6rem;
	letter-spacing: 0.14rem;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	background: rgba(6, 0, 30, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.25);
	padding: 5px 11px;
	border-radius: 100px;
}

.case-thumb {
	padding: 0;
	margin: 0;
}

.case-thumb img {
	height: auto;
	width: 100%;
}

.case-body { padding: 28px 28px 30px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-cat { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 0.68rem; letter-spacing: 0.16rem; text-transform: uppercase; color: #1FA6D0; }
.case-body h3 { font-size: 1.3rem; color: #6F5291; }
.case-meta { display: flex; flex-direction: column; gap: 10px; padding-top: 4px; }
.case-meta-row { display: flex; gap: 10px; align-items: flex-start; }
.case-meta-row .label { flex: 0 0 84px; font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 0.66rem; letter-spacing: 0.12rem; text-transform: uppercase; color: #8A82A0; padding-top: 2px; }
.case-meta-row .value { font-family: 'Poppins', sans-serif; font-size: 0.92rem; color: #5B5170; line-height: 1.45; }
.case-body .text-link { margin-top: auto; padding-top: 14px; }
.cases-note { max-width: 760px; margin: 36px auto 0; text-align: center; color: #8A82A0; font-size: 0.86rem; font-style: italic; }

@media all and (min-width: 768px) {
	.cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media all and (min-width: 1024px) {
	.cases-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   ABOUT PAGE  (_aboutPage.sass)
   ========================================================================== */
#story { background: #ffffff; overflow: hidden; }
#story-wrapper { position: relative; max-width: var(--maxw); margin: 0 auto; padding: 72px 6%; display: grid; grid-template-columns: 1fr; gap: 40px; }
.story-visual {
	
	position: relative;
	aspect-ratio: 1;
	border-radius: 28px;
	overflow: hidden;
	background: radial-gradient(circle at 62% 38%, #9A77B5 0%, #6F5291 55%, #593694 100%);
	background-image: url('/images/craig.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	box-shadow: 0 24px 60px rgba(111, 82, 145, 0.18);
}
/* .story-visual::before {
	content: "";
	position: absolute;
	right: -50px; top: -30px;
	width: 320px; height: 320px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.4;
	animation: drift 9s ease-in-out infinite;
} */
.story-visual .story-photo-tag { position: absolute; left: 50%; top: 44%; transform: translate(-50%, -50%); font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 4rem; color: rgba(255, 255, 255, 0.9); }
.story-visual .pin {
	position: absolute;
	left: 24px; right: 24px; bottom: 24px;
	background: rgba(255, 255, 255, 0.10);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	padding: 22px;
	color: #ffffff;
}
.story-visual .pin .pin-label { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.18rem; text-transform: uppercase; color: #3FC4EC; padding-bottom: 8px; }
.story-visual .pin .pin-name { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 1.3rem; }
.story-visual .pin .pin-role { font-family: 'Poppins', sans-serif; font-size: 0.85rem; color: rgba(255, 255, 255, 0.78); }
.story-copy .display-title { padding-top: 16px; }
.story-copy p { padding-top: 18px; max-width: 540px; }
.story-copy .placeholder-note { margin-top: 18px; padding: 16px 20px; border-left: 3px solid #3FC4EC; background: #E2F6FD; border-radius: 0 12px 12px 0; color: #6F5291; font-size: 0.9rem; font-style: italic; }

#values { background: #FAFAFB; }
.values-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.value-card {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 20px;
	padding: 30px 28px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); }
.value-card .value-num { font-family: 'Heebo', sans-serif; font-weight: 900; font-size: 1.1rem; color: #3FC4EC; }
.value-card h3 { font-size: 1.12rem; color: #6F5291; }
.value-card p { font-size: 0.94rem; color: #5B5170; }

#different { background: #ffffff; }
.different-card {
	max-width: 920px;
	margin: 0 auto;
	text-align: center;
	background: linear-gradient(155deg, #6F5291, #593694);
	border-radius: 28px;
	padding: 56px 40px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
}
.different-card::before {
	content: "";
	position: absolute;
	right: -80px; top: -80px;
	width: 320px; height: 320px;
	background: radial-gradient(circle, rgba(63, 196, 236, 0.30) 0%, transparent 62%);
}
.different-card > * { position: relative; z-index: 1; }
.different-card .kicker { color: #3FC4EC; justify-content: center; }
.different-card h2 { color: #ffffff; font-size: 1.8rem; padding-top: 16px; }
.different-card p { color: rgba(255, 255, 255, 0.86); max-width: 640px; margin: 18px auto 0; font-size: 1.05rem; }

@media all and (min-width: 768px) {
	.values-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
	.different-card h2 { font-size: 2.3rem; }
}
@media all and (min-width: 1024px) {
	#story-wrapper { grid-template-columns: 0.9fr 1.1fr; gap: 72px; align-items: center; padding: 110px 8%; }
	.values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ==========================================================================
   CONTACT + FORMS  (_contactPage.sass)
   ========================================================================== */
#contact-block { background: #ffffff; }
#contact-block-wrapper { max-width: var(--maxw); margin: 0 auto; padding: 64px 6%; display: grid; grid-template-columns: 1fr; gap: 36px; }
.contact-details {
	background: linear-gradient(155deg, #6F5291, #593694);
	color: #ffffff;
	border-radius: 26px;
	padding: 44px 38px;
	position: relative;
	overflow: hidden;
}
.contact-details::before {
	content: "";
	position: absolute;
	right: -70px; bottom: -70px;
	width: 280px; height: 280px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.28;
}
.contact-details > * { position: relative; z-index: 1; }
.contact-details h2 { color: #ffffff; font-size: 1.5rem; padding: 14px 0 8px; }
.contact-details p { color: rgba(255, 255, 255, 0.82); padding-bottom: 18px; }
.contact-detail-line { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.contact-detail-line:first-of-type { border-top: none; }
.contact-detail-line .ico { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: #3FC4EC; color: #06001e; display: inline-flex; align-items: center; justify-content: center; }
.contact-detail-line .ico svg { width: 21px; height: 21px; stroke: currentColor; stroke-width: 2; fill: none; }
.contact-detail-line .label { font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.14rem; text-transform: uppercase; color: #3FC4EC; padding-bottom: 2px; }
.contact-detail-line .value { font-family: 'Poppins', sans-serif; font-size: 1rem; color: #ffffff; }

.form-card { background: #ffffff; border: 1px solid rgba(111, 82, 145, 0.14); border-radius: 26px; padding: 40px 36px; box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); }
.form-card h2, .form-card h3 { font-size: 1.4rem; color: #6F5291; padding-bottom: 6px; }
.form-card .form-intro { color: #5B5170; padding-bottom: 24px; }
.form-field { display: flex; flex-direction: column; gap: 8px; padding-bottom: 18px; }
.form-field label { font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 0.82rem; color: #6F5291; }
.form-field label .req { color: #1FA6D0; }
.form-field input, .form-field textarea {
	font-family: 'Poppins', sans-serif;
	font-size: 0.95rem;
	padding: 14px 16px;
	border: 1px solid rgba(111, 82, 145, 0.20);
	border-radius: 13px;
	background: #FAFAFB;
	color: #2E2348;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: #3FC4EC; box-shadow: 0 0 0 4px rgba(63, 196, 236, 0.16); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #B6AFC6; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0; }
.form-captcha {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border: 1px solid rgba(111, 82, 145, 0.20);
	border-radius: 13px;
	background: #FAFAFB;
	margin-bottom: 20px;
	width: fit-content;
}
.form-captcha .box { width: 24px; height: 24px; border: 2px solid #B6AFC6; border-radius: 5px; }
.form-captcha span { font-family: 'Poppins', sans-serif; font-size: 0.88rem; color: #5B5170; }
.form-card .btn { width: 100%; justify-content: center; }
.form-reassure { display: flex; align-items: center; gap: 8px; padding-top: 16px; color: #8A82A0; font-size: 0.85rem; }
.form-reassure svg { width: 16px; height: 16px; stroke: #66BD57; stroke-width: 2.4; fill: none; }

#signup { background: #F5F1F8; }
#signup-wrapper { max-width: var(--maxw); margin: 0 auto; padding: 72px 6%; display: grid; grid-template-columns: 1fr; gap: 36px; }
.signup-copy .display-title { padding-top: 16px; }
.signup-copy p { padding-top: 18px; max-width: 480px; }
.signup-copy .signup-actions { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 28px; }

#reassure-strip { background: #06001e; color: #ffffff; text-align: center; }
#reassure-strip-wrapper { max-width: 820px; margin: 0 auto; padding: 40px 6%; display: flex; align-items: center; justify-content: center; gap: 14px; }
#reassure-strip svg { width: 26px; height: 26px; stroke: #3FC4EC; stroke-width: 2; fill: none; flex-shrink: 0; }
#reassure-strip p { color: rgba(255, 255, 255, 0.9); font-family: 'Heebo', sans-serif; font-weight: 700; font-size: 1.05rem; }

@media all and (min-width: 640px) {
	.form-row { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media all and (min-width: 1024px) {
	#contact-block-wrapper { grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: start; padding: 96px 8%; }
	#signup-wrapper { grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 96px 8%; }
}

/* ==========================================================================
   BLOG  (_blogPage.sass)
   ========================================================================== */
#featured { background: #ffffff; }
.featured-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.featured-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	border-radius: 24px;
	padding: 34px 30px;
	color: #ffffff;
	overflow: hidden;
	min-height: 280px;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.featured-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(111, 82, 145, 0.18); }
.featured-card-1 { background: linear-gradient(155deg, #6F5291, #593694); }
.featured-card-2 { background: linear-gradient(155deg, #3FC4EC, #9A77B5); }
.featured-card-3 { background: linear-gradient(155deg, #9D9BDB, #6F5291); }
.featured-card::before {
	content: "";
	position: absolute;
	right: -50px; top: -50px;
	width: 200px; height: 200px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.26;
	mix-blend-mode: screen;
}
.featured-card .pill {
	position: relative;
	width: fit-content;
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.64rem;
	letter-spacing: 0.16rem;
	text-transform: uppercase;
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	padding: 6px 13px;
	border-radius: 100px;
}
.featured-card h3 { position: relative; color: #ffffff; font-size: 1.4rem; line-height: 1.2; flex: 1; }
.featured-card .text-link { position: relative; color: #ffffff; }
.featured-card .text-link .icon-arrow { stroke: #ffffff; }

#articles { background: #FAFAFB; }
.cat-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; padding-bottom: 44px; }
.cat-pill {
	font-family: 'Heebo', sans-serif;
	font-weight: 800;
	font-size: 0.74rem;
	letter-spacing: 0.1rem;
	text-transform: uppercase;
	padding: 10px 20px;
	border-radius: 100px;
	border: 1px solid rgba(111, 82, 145, 0.14);
	background: #ffffff;
	color: #5B5170;
	transition: all 0.2s ease;
}
.cat-pill:hover { border-color: #3FC4EC; color: #1FA6D0; }
.cat-pill.is-active { background: #3FC4EC; color: #06001e; border-color: #3FC4EC; }
.articles-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.article-card {
	background: #ffffff;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 22px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.article-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(111, 82, 145, 0.18); }
.article-thumb { aspect-ratio: 16 / 9; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.article-thumb-1 { background: linear-gradient(135deg, #9A77B5, #593694); }
.article-thumb-2 { background: linear-gradient(135deg, #3FC4EC, #9D9BDB); }
.article-thumb-3 { background: linear-gradient(135deg, #9D9BDB, #6F5291); }
.article-thumb-4 { background: linear-gradient(135deg, #6F5291, #3FC4EC); }
.article-thumb-5 { background: linear-gradient(135deg, #B791C2, #9A77B5); }
.article-thumb::after {
	content: "";
	position: absolute;
	right: -30px; bottom: -30px;
	width: 150px; height: 150px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.3;
	mix-blend-mode: screen;
}
.article-body { padding: 26px 26px 28px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.article-cat { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 0.64rem; letter-spacing: 0.14rem; text-transform: uppercase; color: #1FA6D0; }
.article-body h3 { font-size: 1.15rem; color: #6F5291; line-height: 1.25; }
.article-body p { font-size: 0.92rem; color: #5B5170; flex: 1; }
.article-body .text-link { padding-top: 6px; }

#article { background: #ffffff; }
#article-wrapper { max-width: 820px; margin: 0 auto; padding: 64px 6%; }
.article-head { padding-bottom: 32px; border-bottom: 1px solid rgba(111, 82, 145, 0.14); margin-bottom: 36px; }
.article-head .article-cat { padding-bottom: 14px; display: block; }
.article-head h1 { font-size: 2rem; color: #6F5291; line-height: 1.12; }
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; padding-top: 20px; color: #8A82A0; font-family: 'Poppins', sans-serif; font-size: 0.86rem; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: #B6AFC6; }
.article-answer { background: #E2F6FD; border-left: 4px solid #3FC4EC; border-radius: 0 16px 16px 0; padding: 24px 26px; margin-bottom: 32px; }
.article-answer .label { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 0.7rem; letter-spacing: 0.14rem; text-transform: uppercase; color: #1FA6D0; padding-bottom: 8px; }
.article-answer p { color: #6F5291; font-size: 1.05rem; margin: 0; }
.article-soft-cta { margin: 40px 0; background: linear-gradient(155deg, #6F5291, #593694); border-radius: 22px; padding: 36px 32px; text-align: center; color: #ffffff; }
.article-soft-cta h3 { color: #ffffff; font-size: 1.4rem; padding-bottom: 18px; }
.article-links { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(111, 82, 145, 0.14); }
.article-links h4 { font-family: 'Heebo', sans-serif; font-weight: 800; font-size: 0.76rem; letter-spacing: 0.18rem; text-transform: uppercase; color: #8A82A0; padding-bottom: 16px; }
.article-links ul { display: flex; flex-direction: column; gap: 10px; }

@media all and (min-width: 768px) {
	.featured-grid { grid-template-columns: repeat(3, 1fr); }
	.articles-grid { grid-template-columns: repeat(2, 1fr); }
	.article-head h1 { font-size: 2.7rem; }
	#article-wrapper { padding: 84px 6%; }
}
@media all and (min-width: 1024px) {
	.articles-grid { grid-template-columns: repeat(3, 1fr); }
}


/* ==========================================================================
   BUILD CLUSTER — software / API / AI Systems  (_servicesPage.sass additions)
   ========================================================================== */

/* Capability list — "what we can build" */
#capabilities { background: #ffffff; }
.capability-list { display: grid; grid-template-columns: 1fr; gap: 14px; }
.capability-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #FAFAFB;
	border: 1px solid rgba(111, 82, 145, 0.14);
	border-radius: 16px;
	padding: 20px 22px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.capability-item:hover { transform: translateY(-3px); box-shadow: 0 12px 34px rgba(111, 82, 145, 0.10); border-color: rgba(63, 196, 236, 0.5); }
.capability-item .cap-check {
	flex: 0 0 28px;
	width: 28px; height: 28px;
	border-radius: 8px;
	background: #E2F6FD;
	color: #1FA6D0;
	display: inline-flex; align-items: center; justify-content: center;
}
.capability-item .cap-check svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2.6; fill: none; }
.capability-item p { margin: 0; font-family: 'Poppins', sans-serif; font-size: 0.98rem; color: #2E2348; line-height: 1.45; }
.capability-item p a { color: #1FA6D0; font-weight: 600; }

/* Flagship band — the AI Systems "punt-hard" moment (also usable on build pages) */
#flagship { background: #06001e; color: #ffffff; position: relative; overflow: hidden; }
#flagship::before {
	content: "";
	position: absolute;
	right: -140px; top: -140px;
	width: 420px; height: 420px;
	background: radial-gradient(circle, rgba(63, 196, 236, 0.22) 0%, transparent 62%);
	pointer-events: none;
}
#flagship::after {
	content: "";
	position: absolute;
	left: -160px; bottom: -180px;
	width: 420px; height: 420px;
	background: url('../images/neural-globe.png') center / contain no-repeat;
	opacity: 0.16;
	pointer-events: none;
}
#flagship .section-head h2 { color: #ffffff; }
#flagship .section-head p { color: rgba(255, 255, 255, 0.82); }
.flagship-grid { display: grid; grid-template-columns: 1fr; gap: 18px; position: relative; z-index: 1; }
.flagship-point { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(216, 187, 217, 0.16); border-radius: 20px; padding: 30px 28px; }
.flagship-point .fp-icon {
	width: 50px; height: 50px;
	border-radius: 13px;
	background: linear-gradient(135deg, #3FC4EC, #9D9BDB);
	color: #06001e;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 18px;
}
.flagship-point .fp-icon svg { width: 24px; height: 24px; stroke: currentColor; stroke-width: 2; fill: none; }
.flagship-point h3 { color: #ffffff; font-size: 1.12rem; padding-bottom: 8px; }
.flagship-point p { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; }

@media all and (min-width: 768px) {
	.capability-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
	.flagship-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media all and (min-width: 1024px) {
	.flagship-grid { grid-template-columns: repeat(4, 1fr); }
}
