/* =========================================================
   TRIFID CLONE DARK — MAIN STYLESHEET
   Color system exactly as requested:
   Neon Lime Green      #DAFF0A
   Charcoal Black (bg)  #111111
   Deep Charcoal Grey   #1A1A1A
   Soft Charcoal Grey   #2A2A2A
   White                #FFFFFF
   Off White            #F7F7F2
   ========================================================= */

:root {
	--color-accent: #DAFF0A;      /* Neon Lime Green */
	--color-bg: #111111;          /* Charcoal Black - main dark background */
	--color-bg-alt: #1A1A1A;      /* Deep Charcoal Grey */
	--color-bg-soft: #2A2A2A;     /* Soft Charcoal Grey */
	--color-white: #FFFFFF;
	--color-offwhite: #F7F7F2;
	--color-text: #FFFFFF;
	--color-text-muted: #B8B8B2;

	--container-width: 1240px;
	--radius: 14px;
	--font-main: 'Helvetica Neue', Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-main);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

.container {
	width: 100%;
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 24px;
}

.eyebrow {
	display: inline-block;
	color: var(--color-accent);
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(28px, 4.5vw, 46px);
	font-weight: 700;
	line-height: 1.15;
	color: var(--color-white);
	margin: 0 0 20px;
}

.section-lead {
	color: var(--color-text-muted);
	font-size: 17px;
	max-width: 700px;
	margin: 0 0 32px;
}

.section { padding: 80px 0; background: var(--color-bg); }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent {
	background: var(--color-accent);
	color: var(--color-bg);
}
.btn-accent:hover { background: var(--color-white); }
.btn-outline {
	background: transparent;
	color: var(--color-white);
	border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-arrow { display: inline-block; margin-left: 6px; font-size: 13px; }

.btn-outline-dark {
	background: transparent;
	color: #111111;
	border: 1px solid rgba(17,17,17,0.18);
}
.btn-outline-dark:hover { border-color: #111111; }

.btn-dark-pill {
	background: #111111;
	color: #FFFFFF;
}
.btn-dark-pill:hover { background: #000000; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
	white-space: nowrap;
}

/* =========================================================
   HEADER — floating white pill navbar
   ========================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 999;
	background: transparent;
	padding: 36px 0 0;
}
.header-inner-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.header-pill {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: var(--color-white);
	border: 1.5px solid #111111;
	border-radius: 999px;
	padding: 8px 8px 8px 22px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.logo-text {
	display: flex;
	flex-direction: column;
	line-height: 1;
	flex-shrink: 0;
	white-space: nowrap;
}
.logo-main {
	font-size: 18px;
	font-weight: 800;
	letter-spacing: 0.1em;
	color: #111111;
}
.logo-sub {
	font-size: 7px;
	font-weight: 700;
	letter-spacing: 0.32em;
	color: #8a8a85;
	margin-top: 2px;
}
.custom-logo { max-height: 32px; width: auto; }

.main-navigation { flex: 1; display: flex; justify-content: center; min-width: 0; }
.nav-close { display: none; }

.nav-menu {
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 24px;
	margin: 0;
	padding: 0;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 15px;
	font-weight: 500;
	color: #111111 !important;
	padding: 8px 0;
	white-space: nowrap;
}
.nav-menu > li > a:hover { color: #4a5d1e; }
.chevron { font-size: 10px; }
.ext-arrow { font-size: 12px; opacity: 0.6; }

.nav-menu .sub-menu {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--color-white);
	border-radius: 12px;
	padding: 10px;
	min-width: 250px;
	box-shadow: 0 20px 40px rgba(0,0,0,0.25);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.2s ease;
	margin: 8px 0 0;
}
.nav-menu li:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.nav-menu .sub-menu a {
	display: block;
	padding: 10px 12px;
	border-radius: 6px;
	font-size: 14px;
	color: #333;
}
.nav-menu .sub-menu a:hover { background: #F7F7F2; color: #4a5d1e; }

/* Small arrow button next to items with a submenu (e.g. "Services").
   Hidden on desktop (hover reveals the dropdown there); on mobile it's
   the only thing that toggles the dropdown, so the link text itself
   is always free to navigate straight to that page. */
.submenu-toggle { display: none; }

.nav-mobile-actions { display: none; }

.header-actions { display: flex; flex-wrap: nowrap; align-items: center; gap: 8px; flex-shrink: 0; }
.header-actions .btn {
	padding: 10px 18px;
	font-size: 13.5px;
	font-weight: 600;
}
.header-actions .btn-outline-dark {
	border: 1.5px solid #111111;
}
.header-actions .btn-accent {
	background: var(--color-accent);
	color: #111111;
}
.header-actions .btn-accent:hover { background: #c7e600; }

.mobile-icon-btn {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #111111;
	flex-shrink: 0;
}
.mobile-icon-btn svg { width: 20px; height: 20px; }

.menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 42px;
	height: 42px;
	background: #111111;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	flex-shrink: 0;
}
.menu-toggle span {
	display: block;
	width: 16px;
	height: 2px;
	margin: 0 auto;
	background: var(--color-white);
	transition: all 0.25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease;
	z-index: 998;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* =========================================================
   HERO BANNER — full-bleed image, header floats on top of it
   ========================================================= */
.hero-banner {
	position: relative;
	background: var(--color-bg);
	margin: 0;
	padding: 0;
}
.hero-media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--color-bg);
}
.hero-media picture {
	display: block;
	width: 100%;
}
.hero-img {
	width: 100%;
	height: auto;
	display: block;
}

.hero-cards {
	position: absolute;
	right: 48px;
	bottom: 40px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 14px;
	width: 100%;
	max-width: 340px;
}
.hero-card {
	display: block;
	border-radius: 18px;
	padding: 22px 24px;
	transition: transform 0.2s ease, filter 0.2s ease;
}
.hero-card:hover { transform: translateY(-3px); filter: brightness(1.05); }
.hero-card-accent {
	background: var(--color-accent);
	color: #111111;
}
.hero-card-accent p {
	margin: 0 0 18px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
}
.hero-card-dark {
	background: rgba(17,17,17,0.85);
	border: 1px solid rgba(255,255,255,0.15);
	backdrop-filter: blur(6px);
	color: var(--color-white);
}
.hero-card-dark p {
	margin: 0 0 18px;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
}
.btn-light-pill {
	background: var(--color-white);
	color: #111111;
}
.btn-light-pill:hover { background: var(--color-accent); }

/* =========================================================
   WHO WE ARE — theme colors (charcoal black / white / neon lime)
   ========================================================= */
.who-we-are {
	background: var(--color-bg);
	color: var(--color-text);
	padding: 90px 0 70px;
}
.eyebrow-light {
	display: inline-block;
	color: var(--color-accent);
	background: transparent;
	border: 1px solid rgba(218,255,10,0.4);
	border-radius: 999px;
	padding: 6px 16px;
	font-size: 12px;
	margin-bottom: 16px;
}
.who-we-are-top {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 56px;
	align-items: start;
}
.who-we-are-left { min-width: 0; }
.wwa-title {
	color: var(--color-white);
	font-size: clamp(34px, 5.2vw, 64px);
	line-height: 1.05;
	text-transform: uppercase;
	margin: 18px 0 0;
}
.text-accent-blue { color: var(--color-accent); }
.who-we-are-right { min-width: 0; }
.wwa-lead {
	color: var(--color-text-muted);
	max-width: 620px;
	margin: 4px 0 40px;
}

/* --- Client marquee: contained in the right column, 3 rows --- */
.clients-marquee {
	margin: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-label {
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 18px;
}
.marquee-row { overflow: hidden; margin-bottom: 14px; }
.marquee-track {
	display: flex;
	align-items: center;
	gap: 48px;
	width: max-content;
	animation: marquee-scroll-left 32s linear infinite;
}
/* Top & bottom rows slide left. Middle row slides right (reversed). */
.marquee-row-2 .marquee-track { animation-name: marquee-scroll-right; animation-duration: 36s; }
.marquee-row-1 .marquee-track { animation-duration: 30s; }
.marquee-row-3 .marquee-track { animation-duration: 34s; }
@keyframes marquee-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-33.333%); }
}
@keyframes marquee-scroll-right {
	from { transform: translateX(-33.333%); }
	to { transform: translateX(0); }
}
.client-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	height: 34px;
	opacity: 0.75;
	transition: opacity 0.2s ease, filter 0.2s ease;
}
.client-logo img {
	height: 100%;
	width: auto;
	max-width: 130px;
	object-fit: contain;
	filter: grayscale(1) brightness(0) invert(1);
}
.client-logo:hover { opacity: 1; }

/* =========================================================
   STATS (Who We Are)
   ========================================================= */
.wwa-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 48px;
}
.stat-card.wwa-stat-card {
	background: var(--color-bg-soft);
	border-radius: var(--radius);
	padding: 26px 22px;
	border: 1px solid rgba(255,255,255,0.08);
	color: var(--color-white);
}
.wwa-stat-card .stat-num { color: var(--color-accent); font-weight: 700; font-size: 13px; }
.wwa-stat-card .stat-desc { color: var(--color-text-muted); font-size: 13px; margin: 10px 0 18px; min-height: 36px; }
.wwa-stat-card .stat-value { font-size: 34px; font-weight: 800; margin: 0; color: var(--color-white); }
.wwa-stat-card .stat-label { color: var(--color-text-muted); font-size: 13px; margin: 4px 0 0; }

/* Generic .stats-grid / .stat-card kept for any other section reusing them */
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 40px;
}
.stat-card {
	background: var(--color-bg-soft);
	border-radius: var(--radius);
	padding: 28px 22px;
	border: 1px solid rgba(255,255,255,0.06);
}
.stat-num { color: var(--color-accent); font-weight: 700; font-size: 13px; }
.stat-desc { color: var(--color-text-muted); font-size: 13px; margin: 10px 0 18px; min-height: 36px; }
.stat-value { font-size: 34px; font-weight: 800; margin: 0; color: var(--color-white); }
.stat-label { color: var(--color-text-muted); font-size: 13px; margin: 4px 0 0; }

/* =========================================================
   OUR WORK — carousel
   ========================================================= */
.our-work { overflow: hidden; }
.work-head { text-align: center; margin-bottom: 44px; }
.work-title-main {
	font-size: clamp(30px, 5vw, 54px);
	text-transform: uppercase;
	line-height: 1.08;
	margin: 16px 0 0;
}
.work-sub { color: var(--color-text-muted); font-size: 16px; margin: 16px 0 0; }

.work-carousel-wrap { position: relative; padding: 0 24px; }
.work-carousel {
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
	max-width: var(--container-width);
	margin: 0 auto;
}
.work-carousel::-webkit-scrollbar { display: none; }
.work-track {
	display: flex;
	gap: 24px;
	width: max-content;
	padding: 4px 2px 12px;
}
.work-nav {
	position: absolute;
	top: 40%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--color-bg-soft);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
	transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
.work-nav:hover { background: var(--color-accent); color: #111111; }
.work-nav[disabled] { opacity: 0.35; cursor: default; pointer-events: none; }
.work-nav-prev { left: 0; }
.work-nav-next { right: 0; }

.work-card {
	display: block;
	flex: 0 0 auto;
	width: min(360px, 82vw);
	background: var(--color-bg-alt);
	border-radius: 16px;
	padding: 10px;
	scroll-snap-align: start;
}
.work-thumb {
	display: block;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4/3;
	background: var(--color-bg-soft);
	margin-bottom: 14px;
	clip-path: polygon(0 0, 100% 0, 100% 86%, 86% 100%, 0 100%);
}
.work-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.work-card:hover .work-thumb img { transform: scale(1.06); }
.work-thumb::after {
	content: "";
	position: absolute;
	right: 10px;
	bottom: 18px;
	width: 34px;
	height: 2px;
	background: var(--color-accent);
	transform: rotate(-45deg);
	transform-origin: right center;
}
.work-tag {
	display: inline-block;
	color: var(--color-accent);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	border: 1px solid rgba(218,255,10,0.4);
	border-radius: 999px;
	padding: 5px 14px;
	margin-bottom: 12px;
}
.work-title { font-size: 17px; font-weight: 700; margin: 0 0 6px; color: var(--color-white); padding: 0 4px; }
.work-desc { color: var(--color-text-muted); font-size: 13px; margin: 0; padding: 0 4px; }

/* Founder callout */
.founder-callout {
	display: flex;
	align-items: center;
	gap: 22px;
	flex-wrap: wrap;
	background: var(--color-bg-soft);
	border-radius: var(--radius);
	padding: 26px 30px;
	margin-top: 56px;
}
.founder-avatar { width: 56px; height: 56px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.founder-avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-text { flex: 1; margin: 0; color: var(--color-white); font-weight: 600; min-width: 220px; }
.founder-text span { display: block; color: var(--color-text-muted); font-weight: 400; font-size: 14px; margin-top: 4px; }

/* Showreel */
.showreel { position: relative; width: 100%; margin-top: 40px; overflow: hidden; background: var(--color-bg-soft); }
.showreel-video { width: 100%; height: 60vh; min-height: 340px; max-height: 620px; object-fit: cover; display: block; }

/* =========================================================
   OUR TECH STACK
   ========================================================= */
.tech-stack-section { background: var(--color-bg); padding: 60px 0 90px; }
.tech-stack-inner { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.tech-stack-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; padding: 0 20px; }
.tech-stack-content .pill-badge { margin-left: auto; margin-right: auto; }
.tech-stack-title { text-align: center; }
.tech-stack-lead { margin-left: auto; margin-right: auto; text-align: center; }

.tech-stack-icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.tech-icon {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
	transition: transform 0.25s ease, filter 0.25s ease;
}
.tech-icon svg { width: 100%; height: 100%; display: block; }
.tech-icon:hover { transform: translate(-50%, -50%) scale(1.15); filter: drop-shadow(0 6px 16px rgba(0,0,0,0.55)); }

@media (max-width: 900px) {
	.tech-stack-inner { min-height: 0; flex-direction: column; }
	.tech-stack-icons {
		position: static;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px;
		max-width: 480px;
		margin: 0 auto 32px;
	}
	.tech-icon { position: static; transform: none; }
	.tech-icon:hover { transform: scale(1.12); }
	.tech-stack-content { order: -1; margin-bottom: 8px; }
}


/* =========================================================
   BRANDS / CLIENTS COLLABORATIONS
   ========================================================= */
.brands-head { text-align: center; max-width: 720px; margin: 0 auto; }
.brands-title { margin: 0; }
.brands-marquee {
	margin-top: 48px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	height: 38px;
	opacity: 0.7;
	transition: opacity 0.2s ease, filter 0.2s ease;
}
.brand-logo img {
	height: 100%;
	width: auto;
	max-width: 150px;
	object-fit: contain;
	filter: grayscale(1) brightness(0) invert(1);
}
.brand-logo:hover { opacity: 1; }

/* =========================================================
   SERVICES PAGE — ONE ROOF (no handoffs / brands we've grown)
   ========================================================= */
.svc-oneroof {
	background: var(--color-bg);
	color: var(--color-text);
	padding: 90px 0 70px;
}
.svc-oneroof-top {
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
	gap: 56px;
	align-items: start;
}
.svc-oneroof-left { min-width: 0; }
.svc-oneroof-title {
	color: var(--color-white);
	font-size: clamp(30px, 4.6vw, 52px);
	line-height: 1.1;
	text-transform: uppercase;
	margin: 18px 0 0;
}
.svc-oneroof-right { min-width: 0; }
.svc-oneroof-lead {
	color: var(--color-text-muted);
	max-width: 620px;
	margin: 4px 0 0;
}
.svc-oneroof-grown { margin-top: 64px; }
.grown-label {
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 13px;
	font-weight: 700;
	margin: 0 0 24px;
}
.grown-marquee {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.grown-marquee .marquee-track {
	display: flex;
	align-items: center;
	gap: 56px;
	width: max-content;
	animation: marquee-scroll-left 34s linear infinite;
}
.grown-logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
	height: 36px;
	opacity: 0.7;
	transition: opacity 0.2s ease, filter 0.2s ease;
}
.grown-logo img {
	height: 100%;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	filter: grayscale(1) brightness(0) invert(1);
}
.grown-logo:hover { opacity: 1; }

/* =========================================================
   SERVICES PAGE — GOT A BRIEF? CTA BANNER
   ========================================================= */
.svc-brief-section { padding: 0 0 90px; }
.svc-brief-banner {
	background: var(--color-accent);
	border-radius: 24px;
	padding: 56px 40px;
	text-align: center;
}
.svc-brief-badge {
	display: inline-block;
	color: #111111;
	background: transparent;
	border: 1px solid rgba(17,17,17,0.4);
	border-radius: 999px;
	padding: 6px 18px;
	font-size: 12px;
	margin-bottom: 20px;
}
.svc-brief-title {
	color: #111111;
	font-size: clamp(24px, 3.6vw, 38px);
	line-height: 1.25;
	max-width: 780px;
	margin: 0 auto 16px;
}
.svc-brief-title .text-accent-blue { color: #111111; }
.svc-brief-lead {
	color: rgba(17,17,17,0.75);
	max-width: 560px;
	margin: 0 auto 30px;
	font-size: 16px;
}
.svc-brief-banner .btn-accent {
	background: #111111;
	color: var(--color-accent);
}
.svc-brief-banner .btn-accent:hover { background: #000000; }

/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — HERO
   ========================================================= */
.sm-hero {
	position: relative;
	background: #111111;
	margin: 0;
	padding: 0;
}
.sm-hero-media-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.sm-hero-media {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #111111;
}
.sm-hero-img {
	width: 100%;
	height: auto;
	display: block;
}

.sm-hero-cards {
	position: absolute;
	right: 48px;
	bottom: 40px;
	z-index: 2;
	width: 100%;
	max-width: 340px;
}
.sm-hero-card {
	background: var(--color-accent);
	border-radius: 20px;
	padding: 26px 28px;
	transition: transform 0.2s ease, filter 0.2s ease;
}
.sm-hero-card:hover { transform: translateY(-3px); filter: brightness(1.05); }
.sm-hero-card p {
	color: #111111;
	font-weight: 600;
	font-size: 17px;
	line-height: 1.4;
	margin: 0 0 20px;
}
.sm-hero-card .btn-dark-pill { background: #111111; color: var(--color-accent); }
.sm-hero-card .btn-dark-pill:hover { background: #000000; color: #ffffff; }

@media (max-width: 900px) {
	.sm-hero-cards {
		position: static;
		width: 100%;
		max-width: none;
		box-sizing: border-box;
		padding: 20px 20px 0;
	}
	.sm-hero-card { max-width: 420px; margin: 0 auto; }
}
/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — RESULTS / VIDEO MARQUEE
   ========================================================= */
.sm-results { background: var(--color-bg); padding: 90px 0 90px; overflow: hidden; }
.sm-results-head { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.sm-results-title { margin: 16px 0 0; }
.sm-results-marquee {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.sm-results-track {
	display: flex;
	align-items: stretch;
	gap: 22px;
	width: max-content;
	animation: sm-marquee-scroll 38s linear infinite;
}
@keyframes sm-marquee-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.sm-video-card {
	width: 230px;
	aspect-ratio: 9 / 16;
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
	background: var(--color-bg-soft);
}
.sm-video-card img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 782px) {
	.sm-results { padding: 56px 0; }
	.sm-video-card { width: 180px; }
}

/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — FOUNDER BAR (yellow)
   ========================================================= */
.sm-founder-bar {
	display: flex;
	align-items: center;
	gap: 24px;
	flex-wrap: wrap;
	background: var(--color-accent);
	border-radius: 22px;
	padding: 26px 32px;
	margin: 70px 0;
}
.sm-founder-avatar { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.sm-founder-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.sm-founder-play {
	position: absolute;
	bottom: -4px;
	right: -4px;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #111111;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid var(--color-accent);
}
.sm-founder-play svg { width: 13px; height: 13px; }
.sm-founder-text {
	flex: 1;
	min-width: 240px;
	margin: 0;
	color: #111111;
	font-weight: 600;
	font-size: 17px;
}
.sm-founder-text strong { color: #111111; }
.sm-founder-text span { display: block; color: #3a3a32; font-weight: 400; font-size: 14px; margin-top: 4px; }
.sm-founder-btn { background: #111111; color: var(--color-accent); flex-shrink: 0; }
.sm-founder-btn:hover { background: #000000; color: #ffffff; }

@media (max-width: 600px) {
	.sm-founder-bar { padding: 22px 20px; border-radius: 18px; }
	.sm-founder-btn { width: 100%; }
}

/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — SHARED OUTLINE PILL BADGE
   ========================================================= */
.pill-badge {
	display: inline-flex;
	align-items: center;
	padding: 7px 18px;
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 999px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: 18px;
}

/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — "WHAT YOU GET" 9-CARD GRID
   (desktop: full grid, always expanded — mobile: accordion)
   ========================================================= */
.smd-included { padding-top: 90px; }
.smd-included-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.smd-included-title { margin: 0; }

.smd-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.smd-card {
	position: relative;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	background: var(--color-bg-alt);
	padding: 26px 24px 34px;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.smd-card:hover { border-color: rgba(218,255,10,0.4); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.28); }
.smd-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	background: none;
	border: 0;
	padding: 0;
	margin: 0 0 14px;
	cursor: default;
	text-align: left;
	font: inherit;
	color: inherit;
}
.smd-num { color: var(--color-accent); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.smd-title { flex: 1; color: var(--color-white); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.smd-toggle { display: none; }
.smd-card-body { max-height: none; opacity: 1; overflow: visible; }
.smd-card-body p { color: var(--color-text-muted); font-size: 14.5px; line-height: 1.65; margin: 0; padding-right: 30px; }
.smd-arrow {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.25);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.smd-arrow:hover { background: var(--color-accent); border-color: var(--color-accent); color: #111111; }

.smd-card-cta { background: var(--color-accent); display: flex; flex-direction: column; align-items: flex-start; padding: 26px 24px; }
.smd-cta-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(17,17,17,0.12); color: #111111; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.smd-card-cta h3 { color: #111111; font-size: 18.5px; font-weight: 700; margin: 0 0 10px; }
.smd-card-cta p { color: rgba(17,17,17,0.72); font-size: 14.5px; line-height: 1.6; margin: 0 0 20px; }
.smd-cta-btn { margin-top: auto; background: #111111; color: var(--color-accent); }
.smd-cta-btn:hover { background: #000000; color: #ffffff; }

@media (max-width: 900px) {
	.smd-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
	.smd-included { padding-top: 56px; }
	.smd-cards { grid-template-columns: 1fr; gap: 14px; }
	.smd-card { padding: 18px 20px; }
	.smd-card-head { cursor: pointer; }
	.smd-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		border-radius: 50%;
		border: 1px solid rgba(255,255,255,0.25);
		color: var(--color-white);
		font-size: 16px;
		flex-shrink: 0;
		transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	}
	.smd-card.active .smd-toggle { transform: rotate(45deg); background: var(--color-accent); border-color: var(--color-accent); color: #111111; }
	.smd-card-body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.35s ease, opacity 0.3s ease; }
	.smd-card.active .smd-card-body { max-height: 260px; opacity: 1; margin-top: 14px; }
	.smd-card-body p { padding-right: 0; }
	.smd-arrow { position: static; margin-top: 10px; }
}

/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — PLATFORMS
   ========================================================= */
.smd-platforms { background: var(--color-bg); }
.smd-platforms-head { max-width: 820px; margin: 0 auto 44px; text-align: center; }
.smd-platforms-title { margin: 0; }
.smd-platforms-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.smd-platform-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 14px;
	padding: 18px;
	transition: border-color 0.25s ease;
}
.smd-platform-card:hover { border-color: rgba(218,255,10,0.35); }
.smd-platform-icon {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.smd-platform-icon svg { width: 20px; height: 20px; }
.smd-platform-ig { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); }
.smd-platform-tiktok { background: #000000; }
.smd-platform-snap { background: #FFFC00; }
.smd-platform-fb { background: #1877f2; }
.smd-platform-yt { background: #ff0000; }
.smd-platform-x { background: #111111; }
.smd-platform-li { background: #0a66c2; }
.smd-platform-th { background: #000000; }
.smd-platform-name { color: var(--color-white); font-weight: 700; font-size: 15px; margin: 0 0 2px; }
.smd-platform-sub { color: var(--color-text-muted); font-size: 12.5px; margin: 0; }

@media (max-width: 900px) {
	.smd-platforms-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.smd-platforms-grid { grid-template-columns: 1fr; gap: 0; }
	.smd-platform-card {
		background: none;
		border: 0;
		border-radius: 0;
		border-bottom: 1px solid rgba(255,255,255,0.08);
		padding: 18px 4px;
	}
	.smd-platform-card:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
}

/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — HOW WE WORK PROCESS
   ========================================================= */
.smd-process { padding-top: 90px; }
.smd-process-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.smd-process-title { margin: 0; }

.smd-process-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	column-gap: 18px;
}
.smd-process-step { min-width: 0; }
.smd-process-num-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 22px;
}
.smd-process-num {
	color: var(--color-accent);
	font-weight: 800;
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1;
	flex-shrink: 0;
}
.smd-process-arrow {
	flex: 1 1 auto;
	height: 1px;
	min-width: 12px;
	background: linear-gradient(to right, rgba(255,255,255,0.3), rgba(255,255,255,0.05));
	position: relative;
}
.smd-process-arrow::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent rgba(255,255,255,0.3);
}
.smd-process-step:last-child .smd-process-num-row { margin-bottom: 22px; }
.smd-process-step:last-child .smd-process-arrow { visibility: hidden; }
.smd-process-step-title { color: var(--color-white); font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.smd-process-step-desc { color: var(--color-text-muted); font-size: 13.5px; line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
	.smd-process { padding-top: 56px; }
	.smd-process-grid {
		grid-template-columns: 1fr;
		column-gap: 0;
		row-gap: 0;
		border-top: 1px solid rgba(255,255,255,0.08);
	}
	.smd-process-step { padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
	.smd-process-num-row { margin-bottom: 14px; }
	.smd-process-arrow, .smd-process-step:last-child .smd-process-arrow { display: none; }
}

/* =========================================================
   SOCIAL MEDIA SERVICE PAGE — FINAL CTA copy tweaks
   ========================================================= */
.smd-final-cta .final-cta-buttons { margin-top: 10px; }

/* =========================================================
   WEB/APP DEVELOPMENT SERVICE PAGE — shared black/green accent
   (uses the site's own charcoal black + neon lime green palette)
   ========================================================= */
.wad-text-blue { color: var(--color-accent); }

/* =========================================================
   WEB/APP DEV — THE CINE DIFFERENCE (dark comparison cards)
   ========================================================= */
.wad-diff { background: var(--color-bg); }
.wad-diff-head { max-width: 780px; margin: 0 auto 52px; text-align: center; }
.wad-diff-badge {
	color: var(--color-accent);
	border-color: rgba(218,255,10,0.35);
	background: rgba(218,255,10,0.08);
}
.wad-diff-title { margin: 0; }

.wad-diff-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.wad-diff-card {
	border-radius: 20px;
	padding: 34px 34px 38px;
}
.wad-diff-card h3 {
	font-size: 21px;
	font-weight: 700;
	margin: 0 0 24px;
}
.wad-diff-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 15px; }
.wad-diff-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; font-weight: 600; line-height: 1.4; }
.wad-diff-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	flex-shrink: 0;
	font-size: 11px;
	margin-top: 1px;
}

.wad-diff-typical {
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.08);
}
.wad-diff-typical h3 { color: var(--color-white); }
.wad-diff-typical .wad-diff-list li { color: rgba(255,255,255,0.55); }
.wad-icon-x { background: rgba(255,158,66,0.12); color: #FF9E42; }

.wad-diff-trifid {
	background: linear-gradient(135deg, #EFFF7A 0%, var(--color-accent) 55%, #9FB800 100%);
	box-shadow: 0 20px 44px rgba(218,255,10,0.18);
}
.wad-diff-trifid h3 { color: #111111; }
.wad-diff-trifid .wad-diff-list li { color: #111111; }
.wad-icon-check { background: rgba(17,17,17,0.14); color: #111111; }

@media (max-width: 782px) {
	.wad-diff-grid { grid-template-columns: 1fr; gap: 16px; }
	.wad-diff-card { padding: 28px 24px 30px; }
	.wad-diff-head { margin-bottom: 36px; }
}

/* =========================================================
   WEB/APP DEV — HOW WE BUILD (dark 4-step process, black/green)
   ========================================================= */
.wad-hwb {
	background: var(--color-bg-alt);
	color: var(--color-white);
}
.wad-hwb-head { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.wad-hwb-badge {
	color: var(--color-accent);
	border-color: rgba(218,255,10,0.35);
	background: rgba(218,255,10,0.08);
}
.wad-hwb-title { color: var(--color-white); margin: 0; }

.wad-hwb-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	column-gap: 28px;
}
.wad-hwb-step { min-width: 0; }
.wad-hwb-num {
	display: block;
	color: var(--color-accent);
	font-weight: 800;
	font-size: clamp(28px, 2.6vw, 34px);
	line-height: 1;
	margin-bottom: 18px;
}
.wad-hwb-step-title { color: var(--color-white); font-size: 16px; font-weight: 700; margin: 0 0 8px; }
.wad-hwb-step-desc { color: var(--color-text-muted); font-size: 13.5px; line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
	.wad-hwb-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
}
@media (max-width: 600px) {
	.wad-hwb { padding: 56px 0; }
	.wad-hwb-grid { grid-template-columns: 1fr; row-gap: 28px; }
	.wad-hwb-head { margin-bottom: 36px; }
}

/* =========================================================
   WHERE WE OPERATE
   ========================================================= */
.operate-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 48px; align-items: center; }
.operate-title { margin: 16px 0 10px; }
.operate-stats { color: var(--color-text-muted); font-size: 15px; margin: 0 0 26px; }
.operate-countries { display: flex; flex-wrap: wrap; gap: 10px; }
.country-pill {
	background: var(--color-accent);
	color: #111111;
	font-weight: 700;
	font-size: 13px;
	padding: 9px 20px;
	border-radius: 999px;
}
.operate-map {
	position: relative;
	aspect-ratio: 4 / 3;
	border-radius: 20px;
	overflow: hidden;
	background: #000000;
	border: none;
}
.operate-map-dots {
	position: absolute;
	inset: 0;
	background-image: radial-gradient(rgba(218,255,10,0.55) 1.6px, transparent 1.7px);
	background-size: 13px 13px;
	-webkit-mask-image: url('../images/world-dots-mask.svg');
	        mask-image: url('../images/world-dots-mask.svg');
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: 120% 120%;
	        mask-size: 120% 120%;
	-webkit-mask-position: center;
	        mask-position: center;
}
.map-pin { position: absolute; transform: translate(-50%, -50%); z-index: 2; }
.map-pin-circle {
	position: relative;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	border: 3px solid var(--color-accent);
	box-shadow: 0 0 0 6px rgba(218,255,10,0.12);
}
.map-pin-hq {
	position: absolute;
	bottom: -6px;
	right: -12px;
	background: var(--color-accent);
	color: #111111;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 999px;
	letter-spacing: 0.03em;
}

@media (max-width: 900px) {
	.operate-grid { grid-template-columns: 1fr; }
	.operate-map { margin-top: 8px; }
}

/* =========================================================
   SERVICES ACCORDION (mobile-first — premium accordion look)
   ========================================================= */
.services-accordion { margin-top: 32px; display: flex; flex-direction: column; gap: 14px; }
.service-item {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	background: var(--color-bg-alt);
	overflow: hidden;
	transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.service-item.active {
	border-color: rgba(218,255,10,0.45);
	background: var(--color-bg-soft);
	box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.service-head {
	width: 100%;
	background: transparent;
	border: none;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 20px 20px;
	cursor: pointer;
	color: var(--color-white);
	text-align: left;
}
.service-num { color: var(--color-accent); font-weight: 700; font-size: 13px; width: 26px; flex-shrink: 0; }
.service-name { flex: 1; font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.service-icon {
	font-size: 18px;
	color: var(--color-accent);
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(218,255,10,0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, background 0.25s ease;
}
.service-item.active .service-icon { transform: rotate(45deg); background: var(--color-accent); color: #111111; }
.service-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding 0.35s ease;
	padding: 0 20px;
}
.service-item.active .service-body { max-height: 620px; padding: 0 20px 24px; }
.service-media {
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
	aspect-ratio: 16/9;
	background: var(--color-bg-soft);
}
.service-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.service-body p { color: var(--color-text-muted); max-width: 640px; margin: 0 0 18px; font-size: 14.5px; }
.service-footer { margin-top: 4px; }
.service-line { display: none; }
.service-learn-more { gap: 8px; }
.service-learn-arrow { display: none; font-size: 14px; line-height: 1; }

.services-cta {
	margin-top: 12px;
	background: var(--color-bg-soft);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 32px 28px;
	text-align: center;
}
.services-cta h3 { font-size: 22px; margin: 0 0 10px; }
.services-cta p { color: var(--color-text-muted); margin: 0 0 22px; font-size: 14.5px; }

/* Desktop — services become a static card grid, no accordion toggle */
@media (min-width: 768px) {
	.services-accordion { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
	.service-item { cursor: default; overflow: visible; display: flex; flex-direction: column; }
	.service-item:hover { border-color: rgba(218,255,10,0.35); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.28); }
	.service-item.active { background: var(--color-bg-alt); box-shadow: none; }
	.service-head { pointer-events: none; flex-direction: column; align-items: flex-start; gap: 16px; padding: 28px 24px 0; cursor: default; }
	.service-icon { display: none; }
	.service-media { display: none; }
	.service-body {
		max-height: none !important;
		overflow: visible;
		padding: 14px 24px 24px !important;
		display: flex;
		flex-direction: column;
		flex: 1;
	}
	.service-body p { max-width: 100%; margin-bottom: 0; }
	.service-footer {
		margin-top: auto;
		padding-top: 20px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 14px;
	}
	.service-line {
		display: block;
		flex: none;
		width: 56px;
		height: 0;
		border-top: 1px dashed rgba(255,255,255,0.2);
	}
	.service-learn-more {
		flex-shrink: 0;
		width: 40px;
		height: 40px;
		padding: 0;
		border-radius: 50%;
		background: transparent;
		border: 1px solid rgba(255,255,255,0.25);
		justify-content: center;
	}
	.service-learn-more:hover { background: var(--color-accent); border-color: var(--color-accent); }
	.service-learn-more:hover .service-learn-arrow { color: #111111; }
	.service-learn-text { display: none; }
	.service-learn-arrow { display: inline-block; color: var(--color-white); font-size: 16px; }

	.services-cta {
		margin-top: 0;
		text-align: left;
		align-items: flex-start;
		display: flex;
		flex-direction: column;
		justify-content: center;
		padding: 28px 26px;
	}
	.services-cta h3 { font-size: 19px; }
	.services-cta p { font-size: 13.5px; }
}

/* =========================================================
   SERVICES PAGE (template-services.php)
   Dedicated "Services" page — hero split layout + always-expanded
   card grid (no accordion toggle, unlike the homepage's mobile
   services accordion above).
   ========================================================= */

/* --- Hero: badge + big heading on the left, lead text + CTA on the right --- */
.services-hero {
	background: var(--color-bg);
	padding: 150px 0 60px;
}
.services-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 48px;
	align-items: end;
}
.services-hero-title {
	color: var(--color-white);
	font-size: clamp(30px, 4.6vw, 50px);
	line-height: 1.14;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0;
}
.services-hero-right { padding-bottom: 6px; }
.services-hero-lead {
	color: var(--color-text-muted);
	font-size: 16.5px;
	line-height: 1.7;
	margin: 0 0 26px;
	max-width: 480px;
}

@media (max-width: 900px) {
	.services-hero { padding: 130px 0 44px; }
	.services-hero-grid { grid-template-columns: 1fr; gap: 22px; align-items: start; }
	.services-hero-right { padding-bottom: 0; }
	.services-hero-lead { max-width: 100%; }
}
@media (max-width: 480px) {
	.services-hero { padding: 116px 0 38px; }
	.services-hero-title { font-size: 27px; }
}

/* --- Card grid: numbered cards, always fully expanded on every screen size --- */
.svc-section { padding-top: 20px; }
.svc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}
.svc-card {
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	background: var(--color-bg-alt);
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.svc-card:hover {
	border-color: rgba(218,255,10,0.4);
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(0,0,0,0.28);
}
.svc-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 18px;
}
.svc-num { color: var(--color-accent); font-weight: 700; font-size: 14px; }
.svc-arrow {
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.25);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.svc-arrow:hover { background: var(--color-accent); border-color: var(--color-accent); color: #111111; }
.svc-title { color: var(--color-white); font-size: 18.5px; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; }
.svc-desc { color: var(--color-text-muted); font-size: 14.5px; line-height: 1.65; margin: 0; }

/* --- "Not sure where to start?" CTA card — takes one grid slot --- */
.svc-cta-card {
	background: var(--color-accent);
	border-radius: 16px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.svc-cta-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(17,17,17,0.12);
	color: #111111;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
}
.svc-cta-title { color: #111111; font-size: 18.5px; font-weight: 700; margin: 0 0 10px; }
.svc-cta-desc { color: rgba(17,17,17,0.72); font-size: 14.5px; line-height: 1.6; margin: 0 0 20px; }
.svc-cta-btn { margin-top: auto; }

@media (max-width: 900px) {
	.svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.svc-section { padding-top: 8px; }
	.svc-grid { grid-template-columns: 1fr; gap: 16px; }
	.svc-card, .svc-cta-card { padding: 22px 20px; }
}

/* =========================================================
   BOOTCAMP
   ========================================================= */
.bootcamp-paths { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 20px 0 40px; }
.path-card { background: var(--color-bg-soft); border-radius: var(--radius); padding: 28px; }
.path-num { color: var(--color-accent); font-weight: 700; }
.path-card h3 { margin: 12px 0 8px; font-size: 22px; }
.path-card p { color: var(--color-text-muted); margin: 0; }

.bootcamp-meta {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}
.bootcamp-meta div {
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 12px;
	padding: 18px;
	text-align: center;
}
.bootcamp-meta strong { display: block; color: var(--color-accent); font-size: 18px; margin-bottom: 4px; }
.bootcamp-meta span { color: var(--color-text-muted); font-size: 13px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 32px 0 40px;
}
.testimonial-card {
	background: var(--color-bg-soft);
	border-radius: var(--radius);
	padding: 24px;
	border: 1px solid rgba(255,255,255,0.06);
}
.testimonial-quote { color: var(--color-offwhite); font-size: 14.5px; margin: 0 0 16px; }
.testimonial-name { color: var(--color-accent); font-weight: 700; font-size: 13px; }

/* =========================================================
   MAP / COUNTRIES
   ========================================================= */
.countries-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
.countries-list .country-pill {
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	padding: 10px 18px;
	font-size: 14px;
	color: var(--color-offwhite);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.diff-card {
	background: var(--color-bg-soft);
	border-radius: var(--radius);
	padding: 0;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255,255,255,0.06);
}
.diff-card-img { aspect-ratio: 4 / 3; overflow: hidden; background: var(--color-bg-alt); }
.diff-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.diff-card:hover .diff-card-img img { transform: scale(1.04); }
.diff-card-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.diff-card h3 { font-size: 21px; margin: 0 0 10px; }
.diff-card p { color: var(--color-text-muted); margin: 0 0 22px; font-size: 14.5px; line-height: 1.55; }
.diff-stats { display: flex; gap: 30px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.diff-stats strong { display: block; color: var(--color-accent); font-size: 22px; }
.diff-stats span { color: var(--color-text-muted); font-size: 12px; }

@media (max-width: 480px) {
	.diff-card-img { aspect-ratio: 16 / 10; }
	.diff-card-body { padding: 22px 20px 24px; }
	.diff-stats { gap: 22px; }
}

.join-callout {
	margin-top: 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 20px;
	background: var(--color-bg-soft);
	border-radius: var(--radius);
	padding: 30px 34px;
}
.join-callout p { margin: 0; font-weight: 600; color: var(--color-white); }
.join-callout span { display: block; font-weight: 400; color: var(--color-text-muted); font-size: 14px; margin-top: 6px; }

/* =========================================================
   CLIENT STORIES — left intro + divider + 3-row review marquee
   ========================================================= */
.client-stories-section { overflow: hidden; }
.client-stories-grid {
	display: grid;
	grid-template-columns: minmax(220px, 300px) 1px minmax(0, 1fr);
	gap: 40px;
	align-items: center;
}
.cs-intro { min-width: 0; }
.cs-title { font-size: clamp(30px, 3.6vw, 44px); margin: 16px 0 0; line-height: 1.08; }
.cs-divider {
	align-self: stretch;
	width: 3px;
	background: var(--color-accent);
	border-radius: 2px;
	min-height: 220px;
}
.cs-reviews {
	display: flex;
	flex-direction: column;
	gap: 18px;
	min-width: 0;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.cs-row { overflow: hidden; }
.cs-track {
	display: flex;
	gap: 18px;
	width: max-content;
	animation: cs-scroll-left 46s linear infinite;
}
.cs-row-right .cs-track { animation-name: cs-scroll-right; animation-duration: 50s; }
.cs-row-left .cs-track { animation-duration: 42s; }
.client-stories-section:hover .cs-track { animation-play-state: paused; }
@keyframes cs-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-33.333%); }
}
@keyframes cs-scroll-right {
	from { transform: translateX(-33.333%); }
	to { transform: translateX(0); }
}
.review-card {
	flex: 0 0 auto;
	width: min(340px, 82vw);
	background: var(--color-bg-soft);
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: var(--radius);
	padding: 24px 24px 22px;
}
.review-card-top { display: flex; align-items: flex-start; justify-content: space-between; }
.review-quote-mark { font-size: 34px; color: var(--color-accent); line-height: 1; }
.review-source-badge {
	width: 26px; height: 26px;
	border-radius: 8px;
	display: flex; align-items: center; justify-content: center;
	flex-shrink: 0;
	background: rgba(255,255,255,0.06);
}
.review-text { font-size: 14.5px; line-height: 1.55; color: var(--color-white); margin: 14px 0 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--color-accent); color: var(--color-bg);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; font-size: 13px; flex-shrink: 0;
}
.review-author div { min-width: 0; }
.review-author strong { display: block; font-size: 13.5px; }
.review-author span { display: block; color: var(--color-text-muted); font-size: 11.5px; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-score { margin-left: auto; color: var(--color-accent); font-weight: 700; font-size: 13px; flex-shrink: 0; }

@media (max-width: 900px) {
	.client-stories-grid { grid-template-columns: 1fr; gap: 24px; }
	.cs-divider { width: 100%; height: 3px; min-height: 0; }
	.cs-intro br { display: none; }
}

/* =========================================================
   SOCIAL — auto-scrolling reels
   desktop: text left, 3 narrow vertical columns right (up / down / up)
   mobile:  text on top, 2 horizontal rows below (left / right)
   ========================================================= */
.social-section { overflow: hidden; }

.social-layout {
	display: grid;
	grid-template-columns: minmax(280px, 420px) 1fr;
	grid-template-areas: "intro media" "cta media";
	align-content: center;
	gap: 16px 48px;
	align-items: center;
}
.social-intro { min-width: 0; grid-area: intro; }
.social-cta { grid-area: cta; }
.social-cta .btn { margin-top: 8px; }
.social-media { grid-area: media; min-width: 0; overflow: hidden; }

.social-thumb {
	position: relative;
	aspect-ratio: 9/16;
	border-radius: 10px;
	overflow: hidden;
	background: var(--color-bg-soft);
	flex-shrink: 0;
}
.social-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.social-play {
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 30px; height: 30px;
	border-radius: 50%;
	background: rgba(0,0,0,0.45);
	backdrop-filter: blur(2px);
	display: flex; align-items: center; justify-content: center;
}
.social-timer {
	position: absolute;
	left: 6px; bottom: 6px;
	background: rgba(0,0,0,0.65);
	color: var(--color-accent);
	font-family: 'Courier New', monospace;
	font-size: 9.5px;
	font-weight: 700;
	letter-spacing: 0.02em;
	padding: 2px 5px;
	border-radius: 4px;
}

/* --- Desktop columns: fills the space beside the copy, closer to reference layout --- */
.social-columns {
	display: none;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	height: 440px;
	width: 100%;
	max-width: 620px;
	margin-left: auto;
	-webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
	        mask-image: linear-gradient(to bottom, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.social-col { overflow: hidden; height: 100%; }
.social-col-track {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	animation: social-scroll-up 34s linear infinite;
}
.social-col-down .social-col-track { animation-name: social-scroll-down; animation-duration: 38s; }
.social-col-up .social-col-track { animation-duration: 34s; }
.social-columns:hover .social-col-track { animation-play-state: paused; }
@keyframes social-scroll-up {
	from { transform: translateY(0); }
	to { transform: translateY(-33.333%); }
}
@keyframes social-scroll-down {
	from { transform: translateY(-33.333%); }
	to { transform: translateY(0); }
}

/* --- Mobile rows --- */
.social-rows {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 28px;
	min-width: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.social-row { overflow: hidden; }
.social-row-track {
	display: flex;
	gap: 14px;
	width: max-content;
	animation: social-scroll-left 30s linear infinite;
}
.social-row-right .social-row-track { animation-name: social-scroll-right; animation-duration: 32s; }
.social-row .social-thumb { width: 120px; }
@keyframes social-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-33.333%); }
}
@keyframes social-scroll-right {
	from { transform: translateX(-33.333%); }
	to { transform: translateX(0); }
}

@media (min-width: 901px) {
	.social-columns { display: grid; }
	.social-rows { display: none; }
}
@media (max-width: 900px) {
	.social-layout {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas: "intro" "media" "cta";
		justify-content: stretch;
		gap: 0;
	}
	.social-cta { margin-top: 28px; min-width: 0; }
	.social-cta .btn { display: flex; width: 100%; box-sizing: border-box; }
}

/* =========================================================
   FINAL CTA — rounded gradient card using the theme's own accent green
   ========================================================= */
.final-cta-section { padding: 40px 0 80px; }

.final-cta-card {
	position: relative;
	overflow: hidden;
	background: var(--color-accent);
	border-radius: 32px;
	padding: 64px 24px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 22px;
}

.final-cta-badge {
	display: inline-flex;
	align-items: center;
	padding: 9px 22px;
	border: 1px solid rgba(17,17,17,0.4);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-bg);
	letter-spacing: 0.01em;
}

.final-cta-title {
	margin: 0;
	max-width: 820px;
	font-size: clamp(30px, 5vw, 54px);
	line-height: 1.15;
	font-weight: 500;
	text-transform: uppercase;
	color: rgba(17,17,17,0.85);
}
.final-cta-title strong { font-weight: 800; color: var(--color-bg); }

.final-cta-lead {
	margin: 0;
	max-width: 480px;
	font-size: 16px;
	color: rgba(17,17,17,0.75);
}

.final-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	flex-wrap: wrap;
	margin-top: 6px;
}
.final-cta-buttons .btn-accent {
	background: var(--color-bg);
	color: var(--color-white);
	padding: 14px 26px;
}
.final-cta-buttons .btn-accent:hover { background: var(--color-bg-alt); }

.final-cta-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-bg);
	font-weight: 700;
	font-size: 15px;
}
.final-cta-link .btn-arrow { font-size: 13px; }
.final-cta-link:hover { text-decoration: underline; }

@media (max-width: 600px) {
	.final-cta-card { padding: 48px 20px; border-radius: 24px; }
	.final-cta-buttons { flex-direction: column; gap: 16px; }
	.final-cta-buttons .btn-accent { width: 100%; box-sizing: border-box; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
	background: var(--color-bg);
	padding-top: 56px;
	border-top: 2px solid var(--color-accent);
	box-shadow: 0 -1px 24px rgba(218,255,10,0.08);
}
.footer-top {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 48px;
}

.footer-logo {
	display: inline-block;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: 0.06em;
	color: var(--color-white);
}
.footer-logo .accent { color: var(--color-accent); }
.footer-logo-img { height: 76px; width: auto; display: block; }
@media (max-width: 782px) { .footer-logo-img { height: 60px; } }

.footer-brand p { color: var(--color-text-muted); font-size: 14px; line-height: 1.65; margin: 16px 0 22px; max-width: 380px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.16);
	color: var(--color-offwhite);
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.footer-socials a:hover { color: var(--color-bg); background: var(--color-accent); border-color: var(--color-accent); }

.footer-widget-title, .footer-col h4 {
	color: var(--color-accent);
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0.01em;
	margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; break-inside: avoid; }
.footer-col ul li a { color: var(--color-text-muted); font-size: 14px; }
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-services-list { column-count: 2; column-gap: 20px; }

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 22px 24px 28px;
	border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: var(--color-text-muted); font-size: 13px; margin: 0; flex: 1 1 auto; text-align: left; }
.footer-dev { color: var(--color-text-muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: var(--color-text-muted); font-size: 13px; text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--color-accent); }

.footer-top-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.16);
	color: var(--color-offwhite);
	flex-shrink: 0;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.footer-top-link:hover { color: var(--color-bg); background: var(--color-accent); border-color: var(--color-accent); }

@media (max-width: 900px) {
	.footer-bottom { justify-content: center; text-align: center; }
	.footer-bottom p { order: 3; flex-basis: 100%; }
	.footer-legal { order: 2; }
}

/* =========================================================
   GENERIC PAGE / ARCHIVE
   ========================================================= */
.generic-page, .generic-archive { padding: 150px 0 90px; }
.page-body { color: var(--color-offwhite); max-width: 780px; }
.page-body a { color: var(--color-accent); text-decoration: underline; }

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1024px) {
	.nav-menu { gap: 16px; }
	.nav-menu > li > a { font-size: 14px; }
	.header-actions .btn { padding: 9px 14px; font-size: 13px; }
	.header-pill { gap: 10px; padding: 6px 6px 6px 18px; }

	.stats-grid { grid-template-columns: repeat(2, 1fr); }
	.work-grid { grid-template-columns: repeat(2, 1fr); }
	.work-card { width: min(320px, 70vw); }
	.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
	.diff-grid { grid-template-columns: repeat(1, 1fr); }
	.footer-top { grid-template-columns: 1fr 1fr; }
	.footer-brand { grid-column: 1 / -1; }

	.who-we-are-top { grid-template-columns: 0.9fr 1.1fr; gap: 36px; }
	.wwa-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 782px) {
	.section { padding: 56px 0; }

	.header-inner-wrap { padding: 0 16px; }
	.header-pill { padding: 8px 8px 8px 20px; }
	.logo-main { font-size: 17px; }

	.site-header { padding: 16px 0 0; }

	.main-navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 82%;
		max-width: 340px;
		height: 100vh;
		background: var(--color-bg-alt);
		flex-direction: column;
		align-items: flex-start;
		padding: 90px 28px 40px;
		transition: right 0.3s ease;
		z-index: 1000;
		box-shadow: -10px 0 40px rgba(0,0,0,0.5);
		overflow-y: auto;
	}
	.main-navigation.open { right: 0; }
	.nav-close {
		display: flex !important;
		align-items: center;
		justify-content: center;
		position: absolute;
		top: 24px;
		right: 24px;
		width: 38px; height: 38px;
		border-radius: 50%;
		background: rgba(255,255,255,0.08);
		border: none;
		color: var(--color-white);
		font-size: 22px;
		cursor: pointer;
	}
	.nav-menu { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
	.nav-menu > li { width: 100%; display: flex; align-items: center; flex-wrap: wrap; border-bottom: 1px solid rgba(255,255,255,0.08); }
	.nav-menu > li > a { display: flex; flex: 1 1 auto; padding: 14px 0; width: auto; border-bottom: none; color: var(--color-white) !important; }
	.nav-menu > li > a:hover { color: var(--color-accent); }
	.nav-menu > li > a .chevron { display: none; } /* replaced by .submenu-toggle below */
	.submenu-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 34px;
		height: 34px;
		flex-shrink: 0;
		background: transparent;
		border: none;
		color: var(--color-white);
		font-size: 12px;
		cursor: pointer;
		transition: transform 0.2s ease;
	}
	.nav-menu li.sub-open .submenu-toggle { transform: rotate(180deg); color: var(--color-accent); }
	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: transparent;
		display: none;
		padding-left: 10px;
		flex-basis: 100%;
		width: 100%;
	}
	.nav-menu li.sub-open .sub-menu { display: block; }
	.nav-menu .sub-menu a { color: var(--color-text-muted); }
	.nav-menu .sub-menu a:hover { background: rgba(218,255,10,0.08); color: var(--color-accent); }

	.nav-mobile-actions { display: flex !important; flex-direction: column; gap: 12px; width: 100%; margin-top: 24px; }
	.nav-mobile-actions .btn { width: 100%; }

	.header-actions .header-apply,
	.header-actions .header-contact { display: none; }
	.menu-toggle { display: flex !important; }
	.mobile-icon-btn { display: flex !important; }

	.hero-banner {
		display: flex;
		flex-direction: column;
	}
	.showreel-video { height: 42vh; min-height: 220px; }

	.hero-cards {
		position: static;
		order: 2;
		width: 100%;
		max-width: none;
		box-sizing: border-box;
		padding: 20px 16px 8px;
		gap: 12px;
	}
	.hero-card { padding: 16px 18px; border-radius: 14px; }
	.hero-card-accent p,
	.hero-card-dark p { font-size: 14px; margin-bottom: 12px; }

	.stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.work-grid { grid-template-columns: 1fr; }

	.work-carousel-wrap { padding: 0; }
	.work-nav { display: none; }
	.work-carousel { overflow: visible; }
	.work-track {
		flex-direction: column;
		width: auto;
		padding: 4px 20px 0;
	}
	.work-card { width: 100%; scroll-snap-align: none; }

	.who-we-are { padding: 56px 0 48px; }
	.who-we-are-top { grid-template-columns: 1fr; gap: 24px; }
	.wwa-title { font-size: 34px; margin-top: 12px; }
	.wwa-lead { margin-bottom: 28px; }
	.wwa-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px; }
	.wwa-stat-card { padding: 20px 16px; }
	.wwa-stat-card .stat-value { font-size: 28px; }
	.marquee-track { gap: 32px; }
	.client-logo { height: 26px; }
	.client-logo img { max-width: 100px; }

	.svc-oneroof { padding: 56px 0 48px; }
	.svc-oneroof-top { grid-template-columns: 1fr; gap: 24px; }
	.svc-oneroof-title { font-size: 32px; margin-top: 12px; }
	.svc-oneroof-grown { margin-top: 40px; }
	.grown-marquee .marquee-track { gap: 32px; }
	.grown-logo { height: 28px; }
	.grown-logo img { max-width: 105px; }

	.svc-brief-section { padding: 0 0 56px; }
	.svc-brief-banner { padding: 40px 24px; border-radius: 18px; }
	.svc-brief-lead { font-size: 15px; }

	.bootcamp-paths { grid-template-columns: 1fr; }
	.bootcamp-meta { grid-template-columns: repeat(2, 1fr); }
	.testimonial-grid { grid-template-columns: 1fr; }
	.diff-stats { gap: 20px; }

	.founder-callout { flex-direction: column; align-items: flex-start; text-align: left; }
	.join-callout { flex-direction: column; align-items: flex-start; }
	.review-card { width: min(300px, 78vw); padding: 20px 20px 18px; }

	.footer-top { gap: 28px 20px; }
	.footer-services-list { column-count: 1; }
	.footer-bottom { flex-direction: column; align-items: flex-start; }
	.footer-bottom p { text-align: left; order: 0; }
	.footer-top-link { order: 2; }
	.footer-legal { order: 3; }
}

@media (max-width: 480px) {
	.section-title { font-size: 28px; }
	.hero-title { font-size: 30px; }
	.services-cta { padding: 28px 20px; }
	.review-text { font-size: 14px; }

	.brands-marquee { margin-top: 32px; }
	.brand-logo { height: 24px; }
	.brand-logo img { max-width: 90px; }

	.svc-oneroof-title { font-size: 28px; }
	.grown-logo { height: 22px; }
	.grown-logo img { max-width: 84px; }
	.svc-brief-title { font-size: 22px; }
	.svc-brief-banner { padding: 32px 18px; }

	.wwa-title { font-size: 30px; }
	.wwa-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
	.wwa-stat-card { padding: 16px 14px; border-radius: 12px; }
	.wwa-stat-card .stat-value { font-size: 24px; }
	.wwa-stat-card .stat-desc { min-height: 30px; font-size: 12px; }
}

/* =========================================================
   ABOUT US PAGE — "From a Camera to a Creative Agency"
   Single centered section, same charcoal black / neon lime
   theme as the rest of the site. Kept short on purpose so it
   matches the compact "Our Story" reference layout.
   ========================================================= */
.about-hero {
	background: var(--color-bg);
	/* 130px clears the fixed header (which floats on top of the
	   page) on every screen size; generous bottom padding too. */
	padding: 130px 0 90px;
	text-align: center;
}
.about-hero .container {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}
.about-hero-badge {
	display: inline-block;
	margin: 0 auto 22px;
}
.about-hero-title {
	color: var(--color-white);
	font-size: clamp(30px, 5.5vw, 52px);
	line-height: 1.12;
	font-weight: 700;
	text-transform: uppercase;
	margin: 0 auto 30px;
	text-align: center;
}
.about-hero-title .text-accent-blue { display: block; }
.about-hero-body {
	margin: 0 auto;
	max-width: 680px;
	text-align: center;
}
.about-hero-body p {
	color: var(--color-text-muted);
	font-size: 16.5px;
	line-height: 1.75;
	margin: 0 0 18px;
	text-align: center;
}
.about-hero-body p:last-child { margin-bottom: 0; }
.about-hero-body .text-accent-blue { color: var(--color-accent); font-weight: 700; }

@media (max-width: 782px) {
	.about-hero { padding: 108px 0 56px; }
	.about-hero-title { font-size: 28px; margin-bottom: 22px; }
	.about-hero-body p { font-size: 15.5px; }
}
@media (max-width: 480px) {
	.about-hero { padding: 100px 0 44px; }
	.about-hero .container { padding: 0 20px; }
}

/* =========================================================
   ABOUT — WHO WE ARE (mission / vision cards)
   ========================================================= */
.about-who { padding-top: 0; }
.about-who-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 0.5fr);
	align-items: start;
	gap: 40px;
	margin-bottom: 40px;
}
.about-who-head-left { min-width: 0; }
.about-who-title {
	color: var(--color-white);
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.15;
	font-weight: 700;
	text-transform: uppercase;
	margin: 14px 0 0;
}
.about-who-lead {
	color: var(--color-text-muted);
	font-size: 15.5px;
	line-height: 1.6;
	max-width: none;
	margin: 10px 0 0;
	text-align: right;
}

.about-who-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.about-who-card {
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.06);
	border-radius: var(--radius);
	padding: 14px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.about-who-card-img {
	flex: 0 0 42%;
	aspect-ratio: 4 / 3;
	border-radius: calc(var(--radius) - 4px);
	overflow: hidden;
	background: var(--color-bg-soft);
}
.about-who-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-who-card-body { flex: 1; min-width: 0; padding: 8px 14px 8px 0; }
.about-who-card-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--color-accent);
	font-size: 12.5px;
	font-weight: 600;
	margin-bottom: 10px;
}
.about-who-card-title {
	color: var(--color-white);
	font-size: 19px;
	font-weight: 800;
	letter-spacing: 0.01em;
	margin: 0 0 10px;
}
.about-who-card-desc { color: var(--color-text-muted); font-size: 14px; line-height: 1.55; margin: 0; }

@media (max-width: 900px) {
	.about-who-grid { grid-template-columns: 1fr; }
	.about-who-head { grid-template-columns: 1fr; gap: 12px; }
	.about-who-lead { text-align: left; max-width: none; }
}
@media (max-width: 600px) {
	.about-who-card { flex-direction: column; align-items: stretch; padding: 14px; }
	.about-who-card-img { flex-basis: auto; aspect-ratio: 16 / 10; }
	.about-who-card-body { padding: 4px 4px 6px; }
}

/* =========================================================
   ABOUT — MEET THE TEAM (auto-scrolling slider, right to left)
   ========================================================= */
.about-team { text-align: center; overflow: hidden; }
.about-team-head { max-width: 720px; margin: 0 auto 48px; }
.about-team-title {
	color: var(--color-white);
	font-size: clamp(28px, 4.6vw, 46px);
	line-height: 1.15;
	font-weight: 700;
	text-transform: uppercase;
	margin: 16px 0 0;
}

.about-team-track-wrap {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.about-team-track {
	display: flex;
	align-items: stretch;
	gap: 18px;
	width: max-content;
	animation: about-team-scroll-left 55s linear infinite;
}
.about-team-track-wrap:hover .about-team-track { animation-play-state: paused; }
@keyframes about-team-scroll-left {
	from { transform: translateX(0); }
	to { transform: translateX(-33.333%); }
}

.about-team-card {
	position: relative;
	flex: 0 0 220px;
	width: 220px;
	aspect-ratio: 3 / 4;
	border-radius: var(--radius);
	overflow: hidden;
	background: var(--color-bg-soft);
}
.about-team-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-team-card-overlay {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 16px 16px 14px;
	text-align: left;
	background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.82) 75%);
}
.about-team-card-name { color: var(--color-white); font-weight: 800; font-size: 15px; margin: 0 0 2px; }
.about-team-card-role { color: rgba(255,255,255,0.75); font-size: 12px; margin: 0; }

@media (max-width: 600px) {
	.about-team-card { flex: 0 0 160px; width: 160px; }
	.about-team-track { gap: 12px; animation-duration: 42s; }
	.about-team-card-overlay { padding: 12px 12px 10px; }
	.about-team-card-name { font-size: 13.5px; }
	.about-team-card-role { font-size: 11px; }
}

/* Where We Are (map) section on the About page — no border frame around the map. */
.about-operate .operate-map { border: none; }

/* =========================================================
   WEB/APP DEV — OUR WORK (filterable portfolio grid)
   ========================================================= */
.wad-work { background: var(--color-bg); }
.wad-work-head { max-width: 780px; margin: 0 auto 32px; text-align: center; }
.wad-work-badge {
	color: var(--color-accent);
	border-color: rgba(218,255,10,0.35);
	background: rgba(218,255,10,0.08);
}
.wad-work-title { margin: 0; }

.wad-work-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin: 0 auto 44px;
}
.wad-work-tab {
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 600;
	color: rgba(255,255,255,0.7);
	background: transparent;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	padding: 10px 20px;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.wad-work-tab:hover { border-color: rgba(218,255,10,0.5); color: var(--color-white); }
.wad-work-tab.is-active {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #111111;
}

.wad-work-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}
.wad-work-card {
	display: flex;
	gap: 18px;
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	padding: 18px;
	clip-path: polygon(0 0, calc(100% - 34px) 0, 100% 34px, 100% 100%, 0 100%);
}
.wad-work-thumb {
	flex: 0 0 42%;
	max-width: 42%;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}
.wad-work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.wad-work-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.wad-work-tag {
	align-self: flex-start;
	font-size: 11.5px;
	font-weight: 700;
	color: var(--color-accent);
	border: 1px solid rgba(218,255,10,0.4);
	background: rgba(218,255,10,0.08);
	border-radius: 999px;
	padding: 5px 12px;
	margin-bottom: 12px;
}
.wad-work-card-title { color: var(--color-white); font-size: 19px; font-weight: 700; margin: 0 0 8px; }
.wad-work-desc { color: var(--color-text-muted); font-size: 13.5px; line-height: 1.55; margin: 0 0 14px; }
.wad-work-tools { color: var(--color-text-muted); font-size: 12.5px; line-height: 1.6; margin: 0 0 12px; }
.wad-work-tools strong { color: var(--color-white); font-weight: 700; }
.wad-work-link {
	margin-top: auto;
	align-self: flex-start;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--color-accent);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.wad-work-link:hover { text-decoration: underline; }

@media (max-width: 900px) {
	.wad-work-grid { grid-template-columns: 1fr; }
	.wad-work-card { flex-direction: column; }
	.wad-work-thumb { max-width: 100%; flex-basis: auto; }
}
@media (max-width: 600px) {
	.wad-work-tabs { gap: 8px; }
	.wad-work-tab { font-size: 12.5px; padding: 8px 16px; }
}

/* =========================================================
   CREATIVE STRATEGY PAGE — STRATEGY PROCESS TIMELINE
   ========================================================= */
.strategy-process { padding-top: 90px; }
.strategy-process-head { max-width: 780px; margin: 0 auto 54px; text-align: center; }
.strategy-process-title { margin: 0; }

.strategy-timeline {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}
.strategy-timeline::before {
	content: '';
	position: absolute;
	top: 27px;
	left: 27px;
	right: 27px;
	height: 1px;
	background: rgba(255,255,255,0.14);
	z-index: 0;
}
.strategy-step {
	position: relative;
	z-index: 1;
	flex: 1;
	min-width: 0;
	text-align: left;
	padding-right: 18px;
}
.strategy-step-circle {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.25);
	background: var(--color-bg);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-accent);
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 18px;
}
.strategy-step-title { color: var(--color-white); font-size: 15.5px; font-weight: 700; margin: 0 0 8px; }
.strategy-step-desc { color: var(--color-text-muted); font-size: 13px; line-height: 1.6; margin: 0; }

.strategy-cta-section { padding-top: 56px; }

@media (max-width: 900px) {
	.strategy-timeline { flex-wrap: wrap; row-gap: 32px; }
	.strategy-timeline::before { display: none; }
	.strategy-step { flex: 0 0 calc(50% - 16px); padding-right: 0; }
}

@media (max-width: 600px) {
	.strategy-process { padding-top: 56px; }
	.strategy-process-head { margin-bottom: 36px; }
	.strategy-timeline { flex-direction: column; row-gap: 26px; }
	.strategy-step { flex: 1 1 auto; }
}

/* =========================================================
   INFLUENCER MARKETING SERVICE PAGE
   ========================================================= */
.inf-video-section { padding-top: 90px; }
.inf-video-head { max-width: 780px; margin: 0 auto 40px; text-align: center; }

.inf-showcase-section { padding-top: 90px; }
.inf-showcase-head { max-width: 780px; margin: 0 auto 44px; text-align: center; }

/* Sliding "what we do" pills — decorative, non-interactive */
.inf-tabs-marquee {
	overflow: hidden;
	margin: 0 auto 48px;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.inf-tabs-track {
	display: flex;
	align-items: center;
	gap: 14px;
	width: max-content;
	animation: marquee-scroll-left 42s linear infinite;
}
.inf-tab-pill {
	display: inline-flex;
	align-items: center;
	padding: 11px 22px;
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	background: var(--color-bg-alt);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--color-white);
	white-space: nowrap;
}

/* Random-size showcase grid — display only, not clickable */
.inf-work-grid {
	display: grid;
	grid-auto-flow: dense;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 130px;
	gap: 16px;
}
.inf-work-item {
	border-radius: 14px;
	overflow: hidden;
	background: var(--color-bg-soft);
	border: 1px solid rgba(255,255,255,0.06);
}
.inf-work-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inf-work-item.size-a { grid-column: span 2; grid-row: span 2; }
.inf-work-item.size-b { grid-column: span 2; grid-row: span 1; }
.inf-work-item.size-c { grid-column: span 1; grid-row: span 1; }
.inf-work-item.size-d { grid-column: span 1; grid-row: span 2; }

/* Sliding "platform coverage" strip */
.inf-platform-marquee { margin-top: 56px; }
.inf-platform-marquee .grown-label { margin-bottom: 20px; }
.inf-platform-track {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 44px;
	width: max-content;
	margin: 0 auto;
	animation: marquee-scroll-right 30s linear infinite;
}
.inf-platform-marquee {
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
	        mask-image: linear-gradient(to right, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.inf-platform-pill { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.inf-platform-dot {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: #ffffff;
	flex-shrink: 0;
}
.inf-platform-label { font-size: 14px; font-weight: 700; color: var(--color-white); }

@media (max-width: 900px) {
	.inf-work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
	.inf-work-item.size-a { grid-column: span 2; grid-row: span 2; }
	.inf-work-item.size-b { grid-column: span 2; grid-row: span 1; }
	.inf-work-item.size-d { grid-column: span 1; grid-row: span 2; }
}

@media (max-width: 600px) {
	.inf-video-section { padding-top: 56px; }
	.inf-showcase-section { padding-top: 56px; }
	.inf-showcase-head { margin-bottom: 32px; }
	.inf-tabs-marquee { margin-bottom: 32px; }
	.inf-tab-pill { font-size: 12px; padding: 9px 18px; }
	.inf-work-grid { grid-auto-rows: 96px; gap: 10px; }
	.inf-platform-marquee { margin-top: 40px; }
}

/* =========================================================
   BRANDING & DESIGN SERVICE PAGE — DISCIPLINE CARDS
   (desktop: grid with arrow, always expanded —
    mobile: accordion, arrow becomes a full "Get Started" button)
   ========================================================= */
.brd-included { padding-top: 90px; }
.brd-included-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.brd-included-title { margin: 0; }

.brd-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	align-items: stretch;
}
.brd-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 258px;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	background: var(--color-bg-alt);
	padding: 26px 24px;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.brd-card:hover { border-color: rgba(218,255,10,0.4); transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.28); }
.brd-card-head {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	background: none;
	border: 0;
	padding: 0;
	margin: 0 0 14px;
	cursor: default;
	text-align: left;
	font: inherit;
	color: inherit;
}
.brd-num { color: var(--color-accent); font-weight: 700; font-size: 14px; flex-shrink: 0; }
.brd-title { flex: 1; color: var(--color-white); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.brd-toggle { display: none; }
.brd-card-body { display: flex; flex-direction: column; flex: 1; max-height: none; opacity: 1; overflow: visible; }
.brd-card-body p { color: var(--color-text-muted); font-size: 14.5px; line-height: 1.65; margin: 0; padding-right: 6px; }
.brd-arrow {
	align-self: flex-end;
	margin-top: auto;
	width: 36px;
	height: 36px;
	flex-shrink: 0;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.25);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	box-sizing: border-box;
}
.brd-arrow:hover { background: var(--color-accent); border-color: var(--color-accent); color: #111111; }
.brd-arrow-btn-text { display: none; }

.brd-card-cta { background: var(--color-accent); display: flex; flex-direction: column; align-items: flex-start; padding: 26px 24px; min-height: 258px; }
.brd-cta-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(17,17,17,0.12); color: #111111; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.brd-card-cta h3 { color: #111111; font-size: 18.5px; font-weight: 700; margin: 0 0 10px; }
.brd-card-cta p { color: rgba(17,17,17,0.72); font-size: 14.5px; line-height: 1.6; margin: 0 0 20px; }
.brd-cta-btn { margin-top: auto; background: #111111; color: var(--color-accent); }
.brd-cta-btn:hover { background: #000000; color: #ffffff; }

@media (max-width: 900px) {
	.brd-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
	.brd-included { padding-top: 56px; }
	.brd-cards { grid-template-columns: 1fr; gap: 14px; }
	.brd-card, .brd-card-cta { min-height: 0; padding: 18px 20px; }
	.brd-card-head { cursor: pointer; }
	.brd-toggle {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		border-radius: 50%;
		border: 1px solid rgba(255,255,255,0.25);
		color: var(--color-white);
		font-size: 16px;
		flex-shrink: 0;
		transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	}
	.brd-card.active .brd-toggle { transform: rotate(45deg); background: var(--color-accent); border-color: var(--color-accent); color: #111111; }
	.brd-card-body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.35s ease, opacity 0.3s ease; }
	.brd-card.active .brd-card-body { max-height: 280px; opacity: 1; margin-top: 14px; }
	.brd-card-body p { padding-right: 0; }

	/* On mobile the little circular arrow becomes a full-width labeled button */
	.brd-arrow {
		align-self: stretch;
		margin-top: 16px;
		padding-top: 0;
		width: 100%;
		height: auto;
		border-radius: 999px;
		border: 1px solid var(--color-accent);
		color: var(--color-accent);
		padding: 11px 18px;
		font-size: 13.5px;
		font-weight: 700;
		gap: 8px;
		box-sizing: border-box;
	}
	.brd-arrow:hover { background: var(--color-accent); color: #111111; }
	.brd-arrow-btn-text { display: inline; }
}

/* =========================================================
   BRANDING & DESIGN SERVICE PAGE — TOOLS (STATIC SCATTERED LOGOS)
   Reuses the .tech-stack-icons / .tech-icon layout system —
   logos are placed in fixed spots, no sliding/marquee motion.
   ========================================================= */
.brd-tools { background: var(--color-bg); padding: 70px 0 90px; }
.brd-tools-inner { position: relative; min-height: 600px; display: flex; align-items: center; justify-content: center; }
.brd-tools-head { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; padding: 0 20px; }
.brd-tools-title { margin: 0 0 16px; text-align: center; }
.brd-tools-lead { color: var(--color-text-muted); font-size: 15.5px; line-height: 1.7; margin: 0 auto; max-width: 640px; text-align: center; }

.brd-tool-icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.brd-tool-icon {
	position: absolute;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
	transition: transform 0.25s ease, filter 0.25s ease;
}
.brd-tool-icon svg { width: 100%; height: 100%; display: block; }
.brd-tool-icon:hover { transform: translate(-50%, -50%) scale(1.12); filter: drop-shadow(0 6px 16px rgba(0,0,0,0.55)); }

@media (max-width: 900px) {
	.brd-tools-inner { min-height: 0; flex-direction: column; }
	.brd-tool-icons {
		position: static;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 16px 22px;
		max-width: 520px;
		margin: 0 auto;
		padding-top: 36px;
	}
	.brd-tool-icon { position: static; transform: none; }
	.brd-tool-icon:hover { transform: scale(1.1); }
}

@media (max-width: 600px) {
	.brd-included-head { margin-bottom: 32px; }
	.brd-tools { padding: 56px 0 64px; }
	.brd-tools-head { margin-bottom: 8px; }
}

/* =========================================================
   CONTENT & PRODUCTION SERVICE PAGE — VIDEO HERO
   ========================================================= */
.cp-hero {
	position: relative;
	background: #111111;
	margin: 0;
	overflow: hidden;
}
.cp-hero-media {
	position: relative;
	width: 100%;
	height: 88vh;
	min-height: 560px;
	max-height: 840px;
	overflow: hidden;
	background: #111111;
}
.cp-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cp-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 32%, rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.82) 100%);
}
.cp-hero-content {
	position: absolute;
	left: 0;
	top: 44%;
	z-index: 2;
	width: 100%;
	max-width: 640px;
	padding: 0 48px;
	box-sizing: border-box;
}
.cp-hero-badge { margin-bottom: 18px; border-color: rgba(255,255,255,0.35); }

.cp-hero-cards {
	position: absolute;
	right: 48px;
	bottom: 40px;
	z-index: 2;
	width: 100%;
	max-width: 340px;
}

@media (max-width: 900px) {
	.cp-hero-media { height: 70vh; min-height: 460px; }
	.cp-hero-content { padding: 0 24px; max-width: 100%; top: 24px; }
	.cp-hero-cards { position: static; width: 100%; max-width: none; box-sizing: border-box; padding: 20px 24px 0; }
	.cp-hero-cards .hero-card { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 600px) {
	.cp-hero-media { height: 62vh; min-height: 420px; }
}

/* =========================================================
   CONTENT & PRODUCTION SERVICE PAGE — WORK (BENTO / MASONRY GRID)
   Mixed tile sizes, justified across all sides — desktop + mobile.
   ========================================================= */
.cp-work { background: var(--color-bg); }
.cp-work-head { max-width: 780px; margin: 0 auto 40px; text-align: center; }
.cp-work-badge {
	color: var(--color-accent);
	border-color: rgba(218,255,10,0.35);
	background: rgba(218,255,10,0.08);
}
.cp-work-title { margin: 0; }

.cp-work-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 140px;
	grid-auto-flow: dense;
	gap: 16px;
}
.cp-work-item--big    { grid-column: span 2; grid-row: span 2; }
.cp-work-item--wide   { grid-column: span 2; grid-row: span 1; }
.cp-work-item--tall   { grid-column: span 1; grid-row: span 2; }
.cp-work-item--normal { grid-column: span 1; grid-row: span 1; }

.cp-work-item {
	position: relative;
	display: block;
	border-radius: 16px;
	overflow: hidden;
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.08);
}
.cp-work-thumb { position: absolute; inset: 0; }
.cp-work-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.cp-work-item:hover .cp-work-thumb img { transform: scale(1.06); }

.cp-work-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 18px;
	background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.82) 100%);
}
.cp-work-tag {
	align-self: flex-start;
	font-size: 11px;
	font-weight: 700;
	color: #111111;
	background: var(--color-accent);
	border-radius: 999px;
	padding: 5px 12px;
	margin-bottom: 10px;
}
.cp-work-item-title { color: var(--color-white); font-size: 16.5px; font-weight: 700; line-height: 1.3; margin: 0; }
.cp-work-item--big .cp-work-item-title { font-size: 21px; }

@media (max-width: 900px) {
	.cp-work-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
	.cp-work-item--big { grid-column: span 2; grid-row: span 2; }
	.cp-work-item--wide { grid-column: span 2; grid-row: span 1; }
	.cp-work-item--tall { grid-column: span 1; grid-row: span 2; }
}
@media (max-width: 600px) {
	.cp-work { padding: 56px 0; }
	.cp-work-head { margin-bottom: 28px; }
	.cp-work-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 14px; }
	.cp-work-item--big, .cp-work-item--wide, .cp-work-item--tall, .cp-work-item--normal {
		grid-column: span 1;
		grid-row: span 1;
	}
	.cp-work-item--big { grid-row: span 2; }
}

/* =========================================================
   BLOG — listing page (template-blog.php), category tabs,
   card grid, and shared .blog-card used again on single.php
   for the "You Might Also Like" section.
   ========================================================= */
.blog-hero { background: var(--color-bg); padding: 150px 0 40px; text-align: center; }
.blog-hero-badge { display: inline-block; }
.blog-hero-title {
	color: var(--color-white);
	font-size: clamp(30px, 4.6vw, 50px);
	line-height: 1.16;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0 0 34px;
}

.blog-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
}
.blog-tab {
	font-family: inherit;
	background: transparent;
	color: var(--color-text-muted);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	padding: 10px 20px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
}
.blog-tab:hover { border-color: rgba(218,255,10,0.5); color: var(--color-white); }
.blog-tab.is-active { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-bg); }

.blog-grid-section { padding-top: 40px; }

.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}

.blog-card {
	display: flex;
	flex-direction: column;
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
	overflow: hidden;
	transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card.is-hidden { display: none; }
.blog-card:hover { border-color: rgba(218,255,10,0.4); transform: translateY(-4px); box-shadow: 0 14px 32px rgba(0,0,0,0.28); }

.blog-card-thumb-link { display: block; }
.blog-card-thumb {
	position: relative;
	aspect-ratio: 16/10;
	background: var(--color-bg-soft);
	overflow: hidden;
}
.blog-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-thumb img { transform: scale(1.06); }
.blog-card-tag {
	position: absolute;
	top: 14px;
	left: 14px;
	background: var(--color-accent);
	color: var(--color-bg);
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 6px 13px;
	border-radius: 999px;
}

.blog-card-body { padding: 22px 22px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-title { margin: 0; font-size: 18px; line-height: 1.35; font-weight: 700; }
.blog-card-title a { color: var(--color-white); }
.blog-card-title a:hover { color: var(--color-accent); }
.blog-card-desc { margin: 0; color: var(--color-text-muted); font-size: 14px; line-height: 1.6; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 8px; color: var(--color-text-muted); font-size: 12.5px; }
.blog-card-dot { color: rgba(255,255,255,0.3); }
.blog-card-link { display: inline-flex; align-items: center; gap: 4px; color: var(--color-accent); font-weight: 700; font-size: 14px; margin-top: 4px; }
.blog-card-link:hover { text-decoration: underline; }

.blog-empty-state {
	text-align: center;
	padding: 64px 24px;
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 18px;
}
.blog-empty-title {
	margin: 0 0 10px;
	color: var(--color-white);
	font-size: 22px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}
.blog-empty-text { margin: 0; color: var(--color-text-muted); font-size: 15px; }

@media (max-width: 1024px) {
	.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
	.blog-hero { padding: 130px 0 32px; }
	.blog-tabs { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
	.blog-tabs::-webkit-scrollbar { display: none; }
	.blog-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SINGLE POST — hero, two-column body (article + sidebar),
   auto TOC, "Summarize with AI", and "You Might Also Like".
   ========================================================= */
.post-hero { padding-bottom: 0; }
.post-hero-tag { margin-bottom: 18px; }
.post-hero-title {
	color: var(--color-white);
	font-size: clamp(30px, 4.8vw, 48px);
	line-height: 1.3;
	font-weight: 800;
	max-width: 900px;
	margin: 0 0 24px;
}
.post-hero-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	color: var(--color-text-muted);
	font-size: 14px;
	margin: 0 0 34px;
}
.post-hero-avatar { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.post-hero-author { color: var(--color-white); font-weight: 700; }
.post-hero-dot { color: rgba(255,255,255,0.3); }
.post-hero-thumb {
	border-radius: 20px;
	overflow: hidden;
	aspect-ratio: 16/8;
	background: var(--color-bg-soft);
}
.post-hero-thumb img { width: 100%; height: 100%; object-fit: cover; }

.post-layout-section { padding-top: 56px; }
.post-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 56px;
	align-items: start;
}

.post-main.page-body { max-width: none; }
.post-main h2 { color: var(--color-white); font-size: 26px; font-weight: 800; margin: 40px 0 16px; scroll-margin-top: 120px; }
.post-main h3 { color: var(--color-white); font-size: 20px; font-weight: 700; margin: 30px 0 14px; scroll-margin-top: 120px; }
.post-main p { margin: 0 0 18px; }
.post-main ul, .post-main ol { margin: 0 0 18px; padding-left: 22px; }
.post-main img { border-radius: 14px; margin: 22px 0; }
.post-main blockquote {
	margin: 24px 0;
	padding: 4px 22px;
	border-left: 3px solid var(--color-accent);
	color: var(--color-offwhite);
	font-style: italic;
}

.post-aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 110px; }
.post-aside-card {
	background: var(--color-bg-alt);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 16px;
	padding: 22px;
}
.post-aside-heading { margin: 0 0 16px; color: var(--color-white); font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 8px; }

.post-author-card { display: flex; align-items: flex-start; gap: 14px; }
.post-author-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-author-name { margin: 0 0 6px; color: var(--color-white); font-size: 15px; font-weight: 700; }
.post-author-bio { margin: 0; color: var(--color-text-muted); font-size: 13px; line-height: 1.6; }

.post-ai-icon { color: var(--color-accent); }
.post-ai-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.post-ai-pill {
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-white);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.post-ai-pill:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-bg); }

.post-toc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.post-toc-item a { color: var(--color-text-muted); font-size: 13.5px; line-height: 1.5; display: block; }
.post-toc-item a:hover, .post-toc-item.is-active a { color: var(--color-accent); }
.post-toc-level-3 { padding-left: 14px; }

.similar-posts-section { padding-top: 30px; }
.similar-posts-title { text-align: center; }
.similar-posts-grid { margin-top: 30px; }

@media (max-width: 1024px) {
	.post-layout { grid-template-columns: 1fr; }
	.post-aside { position: static; flex-direction: row; flex-wrap: wrap; }
	.post-aside-card { flex: 1 1 260px; }
	.similar-posts-grid.blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
	.post-hero-thumb { aspect-ratio: 4/3; border-radius: 16px; }
	.post-layout-section { padding-top: 36px; }
	.post-aside { flex-direction: column; }
	.similar-posts-grid.blog-grid { grid-template-columns: 1fr; }
}
