*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	/* ── CC Brand Colors ──────────────────────────────────────────────────── */
	--red: #E8192C;
	--dark: #0a0505;
	--white: #ffffff;

	/* Colors — override in Customizer */
	--color-primary: #0a0505;
	--color-secondary: #1a0505;
	--color-accent: #E8192C;
	--color-highlight: #E8192C;
	--color-text: #ffffff;
	--color-text-light: rgba(255, 255, 255, 0.65);
	--color-bg: #0a0505;
	--color-bg-alt: #120808;
	--color-border: rgba(255, 255, 255, 0.07);
	--color-white: #ffffff;

	/* Typography */
	--font-primary: 'owners', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-heading: 'owners', sans-serif;
	--font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

	--font-size-base: 1rem;
	/* 16px */
	--font-size-sm: 0.875rem;
	/* 14px */
	--font-size-lg: 1.125rem;
	/* 18px */
	--font-size-xl: 1.25rem;
	/* 20px */
	--font-size-2xl: 1.5rem;
	/* 24px */
	--font-size-3xl: 2rem;
	/* 32px */
	--font-size-4xl: 2.5rem;
	/* 40px */

	--line-height-base: 1.6;
	--line-height-heading: 1.2;

	/* Spacing */
	--space-xs: 0.25rem;
	--space-sm: 0.5rem;
	--space-md: 1rem;
	--space-lg: 1.5rem;
	--space-xl: 2rem;
	--space-2xl: 3rem;
	--space-3xl: 4rem;

	/* Layout */
	--container-max: 1200px;
	--container-wide: 1400px;
	--container-narrow: 800px;
	--gutter: clamp(1rem, 4vw, 2rem);

	/* Borders */
	--radius-sm: 4px;
	--radius-md: 8px;
	--radius-lg: 16px;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
	--shadow-md: 0 4px 12px rgba(0, 0, 0, .12);
	--shadow-lg: 0 8px 32px rgba(0, 0, 0, .16);

	/* Transitions */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 400ms ease;

	/* Z-index layers */
	--z-dropdown: 100;
	--z-sticky: 200;
	--z-overlay: 300;
	--z-modal: 400;
	--z-toast: 500;
}

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

body {
	font-family: var(--font-primary);
	font-size: var(--font-size-base);
	line-height: var(--line-height-base);
	background-color: var(--dark);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.home .cc-homepage {
	color: var(--color-text);
	--cccom-services-bg: #fffbf2;
	--cccom-services-warm: rgba(255, 201, 90, 0.7);
}

/* Skip link for accessibility */
.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
	z-index: var(--z-toast);
}

.skip-link:focus {
	position: fixed;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	padding: var(--space-sm) var(--space-md);
	background: var(--color-primary);
	color: var(--color-white);
	font-weight: 600;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: var(--line-height-heading);
	color: var(--color-primary);
}

h1 {
	font-size: var(--font-size-4xl);
}

h2 {
	font-size: var(--font-size-3xl);
}

h3 {
	font-size: var(--font-size-2xl);
}

h4 {
	font-size: var(--font-size-xl);
}

h5 {
	font-size: var(--font-size-lg);
}

h6 {
	font-size: var(--font-size-base);
}

p {
	margin-bottom: var(--space-md);
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--color-accent);
	text-decoration: underline;
	transition: color var(--transition-fast);
}

a:hover,
a:focus {
	color: var(--color-highlight);
	text-decoration: none;
}

a:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
	border-radius: var(--radius-sm);
}

strong,
b {
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

code,
kbd,
samp,
pre {
	font-family: var(--font-mono);
	font-size: var(--font-size-sm);
}

code {
	background: var(--color-bg-alt);
	padding: 0.1em 0.4em;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
}

pre {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: var(--space-lg);
	overflow-x: auto;
	margin-bottom: var(--space-md);
}

pre code {
	background: none;
	border: none;
	padding: 0;
}

blockquote {
	border-left: 4px solid var(--color-accent);
	padding: var(--space-md) var(--space-lg);
	margin: var(--space-xl) 0;
	font-style: italic;
	color: var(--color-text-light);
	background: var(--color-bg-alt);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

blockquote cite {
	display: block;
	margin-top: var(--space-sm);
	font-size: var(--font-size-sm);
	font-style: normal;
	font-weight: 600;
}

hr {
	border: none;
	border-top: 1px solid var(--color-border);
	margin: var(--space-2xl) 0;
}

ul,
ol {
	padding-left: var(--space-xl);
	margin-bottom: var(--space-md);
}

li {
	margin-bottom: var(--space-xs);
}

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

img {
	/* Native lazy loading */
	loading: lazy;
}

figure {
	margin: 0;
}

figcaption {
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
	text-align: center;
	padding: var(--space-xs) 0;
}

input,
textarea,
select,
button {
	font-family: inherit;
	font-size: inherit;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
input[type="number"],
textarea,
select {
	display: block;
	width: 100%;
	padding: var(--space-sm) var(--space-md);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-bg);
	color: var(--color-text);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px rgba(15, 52, 96, 0.15);
}

label {
	display: block;
	margin-bottom: var(--space-xs);
	font-weight: 600;
	font-size: var(--font-size-sm);
}

.btn,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-sm);
	padding: 0.65em 1.5em;
	font-weight: 600;
	font-size: var(--font-size-base);
	line-height: 1.4;
	border: 2px solid transparent;
	border-radius: var(--radius-md);
	cursor: pointer;
	text-decoration: none;
	transition: background-color var(--transition-fast), color var(--transition-fast),
		border-color var(--transition-fast), box-shadow var(--transition-fast);
	background: var(--color-accent);
	color: var(--color-white);
}

.btn:hover,
button:hover,
input[type="submit"]:hover {
	background: var(--color-primary);
	color: var(--color-white);
	text-decoration: none;
}

.btn:focus-visible,
button:focus-visible,
input[type="submit"]:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 3px;
}

.btn--secondary {
	background: transparent;
	color: var(--color-accent);
	border-color: var(--color-accent);
}

.btn--secondary:hover {
	background: var(--color-accent);
	color: var(--color-white);
}

.btn--ghost {
	background: transparent;
	color: var(--color-text);
	border-color: var(--color-border);
}

.btn--sm {
	padding: 0.4em 1em;
	font-size: var(--font-size-sm);
}

.btn--lg {
	padding: 0.8em 2em;
	font-size: var(--font-size-lg);
}

.container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: var(--gutter);
}

.container--wide {
	max-width: var(--container-wide);
}

.container--narrow {
	max-width: var(--container-narrow);
}

.page-wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.page-main {
	flex: 1;
	padding-block: var(--space-3xl);
}

/* Gutenberg alignment */
.alignleft {
	float: left;
	margin-right: var(--space-lg);
	margin-bottom: var(--space-md);
}

.alignright {
	float: right;
	margin-left: var(--space-lg);
	margin-bottom: var(--space-md);
}

.aligncenter {
	display: block;
	margin-inline: auto;
}

.alignwide {
	max-width: var(--container-wide);
	margin-inline: auto;
}

.alignfull {
	width: 100vw;
	margin-left: calc(50% - 50vw);
}













/* Push page content below the fixed navbar */












/* Dropdown */










/* Hamburger toggle */












.card {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.card__thumbnail {
	aspect-ratio: 16/9;
	overflow: hidden;
}

.card__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--transition-slow);
}

.card:hover .card__thumbnail img {
	transform: scale(1.04);
}

.card__body {
	padding: var(--space-lg);
}

.card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-bottom: var(--space-sm);
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
}

.card__title {
	font-size: var(--font-size-xl);
	margin-bottom: var(--space-sm);
}

.card__excerpt {
	color: var(--color-text-light);
	margin-bottom: var(--space-md);
}

.posts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: var(--space-xl);
}

.pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-xs);
	margin-top: var(--space-3xl);
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 var(--space-sm);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: var(--font-size-sm);
	font-weight: 500;
	text-decoration: none;
	color: var(--color-text);
	transition: all var(--transition-fast);
}

.pagination a:hover {
	background: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
}

.pagination .current {
	background: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
}

.content-sidebar-wrap {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: var(--space-2xl);
	align-items: start;
}

.widget {
	margin-bottom: var(--space-2xl);
}

.widget-title {
	font-size: var(--font-size-lg);
	border-bottom: 2px solid var(--color-accent);
	padding-bottom: var(--space-sm);
	margin-bottom: var(--space-md);
}

.entry-header {
	margin-bottom: var(--space-2xl);
}

.entry-title {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	margin-bottom: var(--space-md);
}

.entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-md);
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
}

.entry-content {
	max-width: 72ch;
}

.entry-content>*+* {
	margin-top: var(--space-md);
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: var(--space-2xl);
}

.entry-footer {
	margin-top: var(--space-2xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-border);
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
}

.tag {
	font-size: var(--font-size-sm);
	padding: 0.2em 0.75em;
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	text-decoration: none;
	color: var(--color-text);
	transition: all var(--transition-fast);
}

.tag:hover {
	background: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
}

/* Post navigation */
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	margin-top: var(--space-3xl);
}

.post-navigation a {
	display: flex;
	flex-direction: column;
	gap: var(--space-xs);
	padding: var(--space-lg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	text-decoration: none;
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.post-navigation a:hover {
	border-color: var(--color-accent);
	box-shadow: var(--shadow-sm);
}

.post-navigation .nav-label {
	font-size: var(--font-size-sm);
	color: var(--color-text-light);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
}

.post-navigation .nav-prev {
	text-align: left;
}

.post-navigation .nav-next {
	text-align: right;
	grid-column: 2;
}

.error-404 {
	text-align: center;
	padding: var(--space-3xl) 0;
}

.error-404 .page-title {
	font-size: clamp(3rem, 10vw, 8rem);
	line-height: 1;
}

/* Core block overrides */
.wp-block-button__link {
	font-family: var(--font-primary);
	border-radius: var(--radius-md) !important;
}

.wp-block-quote {
	border-left: 4px solid var(--color-accent);
	padding-left: var(--space-lg);
}

.wp-block-separator {
	border-color: var(--color-border);
}

.wp-block-code {
	font-family: var(--font-mono);
	border-radius: var(--radius-md);
}

.wp-block-table thead {
	background: var(--color-bg-alt);
}

.wp-block-table td,
.wp-block-table th {
	padding: var(--space-sm) var(--space-md);
	border-color: var(--color-border);
}

.visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	clip: rect(0 0 0 0);
	overflow: hidden;
	white-space: nowrap;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.mt-auto {
	margin-top: auto;
}

.mb-0 {
	margin-bottom: 0;
}

@media (max-width: 1024px) {
	.content-sidebar-wrap {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: var(--font-size-3xl);
	}

	h2 {
		font-size: var(--font-size-2xl);
	}

	h3 {
		font-size: var(--font-size-xl);
	}

	.section-header-toggle {
		display: flex;
	}

	.main-navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: min(320px, 85vw);
		height: 100vh;
		background: var(--color-bg);
		flex-direction: column;
		align-items: flex-start;
		padding: var(--space-3xl) var(--space-xl);
		box-shadow: var(--shadow-lg);
		transition: right var(--transition-base);
		overflow-y: auto;
		z-index: var(--z-overlay);
	}

	.main-navigation.is-open {
		right: 0;
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 0;
	}

	.main-navigation li {
		width: 100%;
	}

	.main-navigation a {
		width: 100%;
		padding: var(--space-md);
	}

	.main-navigation .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		background: var(--color-bg-alt);
		border-radius: var(--radius-md);
		padding-left: var(--space-md);
	}

	.post-navigation {
		grid-template-columns: 1fr;
	}

	.post-navigation .nav-next {
		grid-column: 1;
	}
}

@media (prefers-reduced-motion: reduce) {

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		transition-duration: .01ms !important;
	}
}

/*
Theme Name:   CC Child Theme
Theme URI:    https://cccom.local
Author:       CC Development Team
Author URI:   https://cccom.local
Description:  Child theme for CC Custom Theme. Add overrides here — never edit the parent directly.
Template:     cccom
Version:      1.0.0
Requires at least: 6.3
Tested up to: 6.7
Requires PHP: 8.0
License:      GPL v2 or later
License URI:  https://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  cccom-child
*/

/*
 * ─────────────────────────────────────────────────────────────────────────────
 * HOW TO USE THIS FILE
 * ─────────────────────────────────────────────────────────────────────────────
 *
 *  1. This file is enqueued AFTER the parent style.css (see functions.php).
 *  2. Override parent CSS custom properties here — no !important needed.
 *  3. Section order mirrors the parent so diffs are easy to read.
 *  4. Keep component overrides in assets/css/child-*.css and import below.
 *
 * ─────────────────────────────────────────────────────────────────────────────
 */

:root {
	/* ── Colour palette ────────────────────────────────────────────────────── */
	/* Uncomment and change any value to override the parent's defaults.       */

	/* --color-primary:   #0d1b2a; */
	/* --color-secondary: #1b2838; */
	/* --color-accent:    #1565c0; */
	/* --color-highlight: #ff4081; */

	/* ── Typography ─────────────────────────────────────────────────────────── */
	/* --font-primary:  'Inter', sans-serif; */
	/* --font-heading:  'Poppins', sans-serif; */
	/* --font-size-base: 1rem; */

	/* ── Layout ─────────────────────────────────────────────────────────────── */
	/* --container-max: 1280px; */
	/* --gutter: clamp(1rem, 3vw, 1.5rem); */
}

/* Example: make the site header taller on desktop */
/*
@media (min-width: 769px) {
	.section-header__inner {
		padding-block: 1.25rem;
	}
}
*/

/* Smooth scrolling for in-page anchors (homepage uses Lenis instead; see cccom-lenis.css). */
html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}











/* Top-level link */



/* Arrow indicator for parent items */




/* Active / current page */
















/* CTA Button */










/* Open state — animate to X */














/* Tablet + small laptop: horizontal links + large logo do not fit — use drawer from here up */
@media (max-width: 1100px) {
	.section-header__nav {
		padding: 0 20px;
	}

	.section-header__toggle {
		display: flex;
	}

	/* ── Sidebar panel ─────────────────────────────────────── */
	.section-header__menu {
		display: flex !important;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		width: min(78vw, 300px);
		background: #0d0505;
		flex-direction: column;
		justify-content: flex-start;
		align-items: stretch;
		padding: 0;
		overflow-y: auto;
		overflow-x: hidden;
		transform: translateX(100%);
		visibility: hidden;
		z-index: 250;
		box-shadow: -12px 0 48px rgba(0, 0, 0, 0.7);
		transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
			visibility 0s linear 0.4s;
	}

	.section-header__menu.is-open {
		transform: translateX(0);
		visibility: visible;
		transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
			visibility 0s linear 0s;
	}

	/* ── Sidebar header bar (logo area) ── */
	.section-header__menu::before {
		content: '';
		display: block;
		height: 68px;
		flex-shrink: 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(211, 35, 35, 0.06);
	}

	/* ── Close button ── */
	.section-header__close {
		display: flex;
		position: absolute;
		top: 16px;
		right: 16px;
		width: 36px;
		height: 36px;
		align-items: center;
		justify-content: center;
		background: rgba(255, 255, 255, 0.06);
		border: 1px solid rgba(255, 255, 255, 0.12);
		border-radius: 50%;
		cursor: pointer;
		padding: 0;
		transition: background 0.2s, border-color 0.2s;
		z-index: 2;
	}

	.section-header__close span {
		display: block;
		position: absolute;
		width: 14px;
		height: 1.5px;
		background: rgba(255, 255, 255, 0.8);
		border-radius: 2px;
	}

	.section-header__close span:first-child {
		transform: rotate(45deg);
	}

	.section-header__close span:last-child {
		transform: rotate(-45deg);
	}

	.section-header__close:hover {
		background: rgba(211, 35, 35, 0.22);
		border-color: #D32323;
	}

	/* ── Nav links list ── */
	.section-header__links {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		padding: 12px 0;
	}

	.section-header__links>li {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
		opacity: 0;
		transform: translateX(24px);
		transition: opacity 0.32s ease, transform 0.32s ease;
	}

	.section-header__links>li:first-child {
		border-top: 1px solid rgba(255, 255, 255, 0.05);
	}

	/* Stagger items in when open */
	.section-header__menu.is-open .section-header__links>li:nth-child(1) {
		opacity: 1;
		transform: none;
		transition-delay: 0.10s;
	}

	.section-header__menu.is-open .section-header__links>li:nth-child(2) {
		opacity: 1;
		transform: none;
		transition-delay: 0.16s;
	}

	.section-header__menu.is-open .section-header__links>li:nth-child(3) {
		opacity: 1;
		transform: none;
		transition-delay: 0.22s;
	}

	.section-header__menu.is-open .section-header__links>li:nth-child(4) {
		opacity: 1;
		transform: none;
		transition-delay: 0.28s;
	}

	.section-header__menu.is-open .section-header__links>li:nth-child(5) {
		opacity: 1;
		transform: none;
		transition-delay: 0.34s;
	}

	.section-header__menu.is-open .section-header__links>li:nth-child(6) {
		opacity: 1;
		transform: none;
		transition-delay: 0.40s;
	}

	.section-header__links>li>a,
	.section-header__links>li>span {
		padding: 15px 28px;
		font-size: 18px;
		font-weight: 500;
		letter-spacing: 0.04em;
		width: 100%;
		text-align: left;
		border-radius: 0;
		color: rgba(255, 255, 255, 0.88);
		transition: color 0.2s, background 0.2s, padding-left 0.2s;
	}

	.section-header__links>li>a:hover,
	.section-header__links>li>span:hover {
		color: #D32323;
		background: rgba(211, 35, 35, 0.07);
		padding-left: 36px;
	}

	.section-header__links>li.current-section-header__item>a {
		color: #D32323;
		border-left: 3px solid #D32323;
		padding-left: 25px;
	}

	/* ── Mobile sub-menu ── */
	.section-header__links .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.02);
		border: none;
		border-radius: 0;
		border-top: 1px solid rgba(255, 255, 255, 0.05);
		padding: 4px 0 4px 20px;
	}

	.section-header__links .sub-menu li a {
		padding: 10px 16px;
		font-size: 14px;
		color: rgba(255, 255, 255, 0.6);
	}

	.section-header__links .sub-menu li a:hover {
		color: #D32323;
	}

	.section-header__links>li.section-header__item--has-children>a::after {
		content: '';
	}
}

@media (max-width: 480px) {
	.section-header__cta {
		display: none;
		/* Show CTA inside mobile menu instead */
	}
}

.stats-section {
	padding: 100px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: var(--dark);
}

/* Radial red glow */
.stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 50% at 50% 50%,
			rgba(232, 25, 44, 0.08) 0%,
			transparent 70%);
	pointer-events: none;
}

/* ── Eyebrow label ──────────────────────────────────────────────────────────── */

.section-eyebrow {
	font-family: 'owners', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 20px;
}

/* ── Section title ──────────────────────────────────────────────────────────── */

.section-title {
	font-family: 'owners', system-ui, sans-serif;
	font-size: clamp(36px, 5vw, 68px);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: #ffffff;
	text-align: center;
	line-height: 1;
	margin-bottom: 80px;
}

/* ── Stats grid ─────────────────────────────────────────────────────────────── */

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	width: 100%;
	max-width: 1100px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 20px;
	overflow: hidden;
}

.stat-item {
	padding: 52px 36px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.02);
	transition: background 0.3s ease;
}

.stat-item:last-child {
	border-right: none;
}

.stat-item:hover {
	background: rgba(232, 25, 44, 0.05);
}

/* Number */
.stat-num {
	font-family: 'owners', system-ui, sans-serif;
	font-size: clamp(48px, 5vw, 72px);
	font-weight: 700;
	color: var(--red);
	line-height: 1;
	letter-spacing: -0.02em;
	display: block;
}

/* Animated counter — JS adds .is-counting during scroll-in */
.stat-num[data-count] {
	transition: color 0.3s;
}

/* Label */
.stat-label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

/* ── Client logo strip ──────────────────────────────────────────────────────── */

.clients-strip {
	margin-top: 80px;
	width: 100%;
	max-width: 1100px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	opacity: 0.35;
	flex-wrap: wrap;
	transition: opacity 0.3s;
}

.clients-strip:hover {
	opacity: 0.55;
}

.client-name {
	font-family: 'owners', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #ffffff;
	user-select: none;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */

@media (max-width: 900px) {
	.stats-section {
		padding: 80px 40px;
	}

	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		border-radius: 16px;
	}

	.stat-item:nth-child(2) {
		border-right: none;
	}

	.stat-item:nth-child(1),
	.stat-item:nth-child(2) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	}

	.clients-strip {
		gap: 32px;
	}
}

@media (max-width: 600px) {
	.stats-section {
		padding: 60px 24px;
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr;
	}

	.stat-item {
		padding: 36px 20px;
	}

	.section-title {
		margin-bottom: 48px;
	}

	.clients-strip {
		gap: 24px;
		margin-top: 48px;
	}

	.client-name {
		font-size: 18px;
	}
}



.breadcrumb,
.breadcrumbs,
#breadcrumbs,
.woocommerce-breadcrumb,
.rank-math-breadcrumb,
[class*="breadcrumb"] {
	display: none !important;
}

/* main.js toggles .scrolled on #section-header; parent navbar.css targets .section-header.scrolled */


/*
 * Mobile hamburger drawer: parent .section-header__nav uses backdrop-filter, which creates a
 * stacking/containing context so position:fixed + translateX(100%) can misalign
 * and leave a dark strip at the viewport edge. This must run on all pages (the
 * same rules were previously only in front-page custom-sections.css).
 */
@media (max-width: 1100px) {
	#section-header {
		transform: none !important;
		will-change: auto !important;
	}

	#section-header .section-header__nav {
		backdrop-filter: none !important;
		-webkit-backdrop-filter: none !important;
	}

	#section-header .section-header__menu {
		z-index: 9990;
	}

	#section-header .section-header__backdrop {
		z-index: 9989;
	}

	/* Nudge fully past the right edge — avoids 1–2px subpixel leaks */
	#section-header .section-header__menu:not(.is-open) {
		transform: translate3d(calc(100% + 12px), 0, 0) !important;
		pointer-events: none;
	}

	#section-header .section-header__menu.is-open {
		pointer-events: auto;
	}
}

/* Above mobile breakpoint: ensure drawer never keeps fixed/off-canvas geometry */
@media (min-width: 1101px) {
	#section-header .section-header__menu {
		position: static !important;
		inset: auto !important;
		width: auto !important;
		min-width: 0 !important;
		max-width: none !important;
		height: auto !important;
		min-height: 0 !important;
		transform: none !important;
		visibility: visible !important;
		overflow: visible !important;
		background: transparent !important;
		box-shadow: none !important;
		flex: 1 1 auto !important;
		display: flex !important;
		flex-direction: row !important;
		justify-content: flex-end !important;
		align-items: center !important;
		padding: 0 !important;
		z-index: auto !important;
		pointer-events: auto !important;
	}
}

body.home,
body.home.custom-background {
	background-color: #0a0505 !important;
}

.announcement-bar {
	background: var(--color-accent);
	color: #fff;
	font-size: var(--font-size-sm);
	padding: 0.5rem 0;
	text-align: center;
}

.announcement-bar .container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-md);
}

.announcement-bar__text {
	margin: 0;
}

.announcement-bar__text a {
	color: inherit;
	font-weight: 700;
	text-decoration: underline;
}

.announcement-bar__dismiss {
	background: none;
	border: none;
	color: inherit;
	opacity: .7;
	cursor: pointer;
	padding: 0.2rem;
	display: flex;
	align-items: center;
	border-radius: var(--radius-sm);
	transition: opacity var(--transition-fast);
	flex-shrink: 0;
}

.announcement-bar__dismiss:hover {
	opacity: 1;
}

.breadcrumbs {
	background: var(--color-bg-alt);
	border-bottom: 1px solid var(--color-border);
	padding-block: 0.6rem;
	font-size: var(--font-size-sm);
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.breadcrumb__link {
	color: var(--color-accent);
	text-decoration: none;
}

.breadcrumb__link:hover {
	text-decoration: underline;
}

.breadcrumb__sep {
	color: var(--color-text-light);
}

.breadcrumb__current {
	color: var(--color-text-light);
}

.back-to-blog {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--color-text-light);
	text-decoration: none;
	margin-bottom: var(--space-lg);
	transition: color var(--transition-fast);
}

.back-to-blog:hover {
	color: var(--color-accent);
}

.share-buttons {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	margin-top: var(--space-xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-border);
	flex-wrap: wrap;
}

.share-buttons__label {
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--color-text-light);
}

.share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: var(--radius-sm);
	color: #fff;
	text-decoration: none;
	transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.share-btn:hover {
	opacity: .85;
	transform: translateY(-1px);
	color: #fff;
}

.share-btn--twitter {
	background: #000;
}

.share-btn--linkedin {
	background: #0a66c2;
}

.share-btn--facebook {
	background: #1877f2;
}

/* Category pill on card thumbnail */
.card__thumbnail {
	position: relative;
}

.card__cat-pill {
	position: absolute;
	top: var(--space-sm);
	left: var(--space-sm);
	background: var(--color-accent);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: 0.2em 0.6em;
	border-radius: var(--radius-full);
	pointer-events: none;
}

/* Reading time badge */
.card__reading-time {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-full);
	font-size: 0.7rem;
	padding: 0.1em 0.5em;
	color: var(--color-text-light);
}

/* Card footer row: author + CTA */
.card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: var(--space-md);
	padding-top: var(--space-md);
	border-top: 1px solid var(--color-border);
}

.card__author {
	display: flex;
	align-items: center;
	gap: var(--space-sm);
}

.card__author-avatar {
	border-radius: 50%;
	flex-shrink: 0;
}

.card__author-name {
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--color-text-light);
}

/* core/image — Bordered */
.wp-block-image.is-style-bordered img {
	border: 2px solid var(--color-border);
	border-radius: var(--radius-md);
	padding: 4px;
}

/* core/quote — Highlighted */
.wp-block-quote.is-style-highlighted {
	background: var(--color-bg-alt);
	border-left-color: var(--color-highlight);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	padding: var(--space-lg) var(--space-xl);
}

/* core/button — Ghost */
.wp-block-button.is-style-ghost .wp-block-button__link {
	background: transparent !important;
	border: 2px solid currentColor !important;
	color: var(--color-accent) !important;
}

.wp-block-button.is-style-ghost .wp-block-button__link:hover {
	background: var(--color-accent) !important;
	color: #fff !important;
}

.search-flyout {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: 10vh;
	z-index: var(--z-modal);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition-base), visibility var(--transition-base);
}

.search-flyout.is-open {
	opacity: 1;
	visibility: visible;
}

.search-flyout__inner {
	background: var(--color-bg);
	border-radius: var(--radius-lg);
	padding: var(--space-xl);
	width: min(600px, 90vw);
	box-shadow: var(--shadow-lg);
}

.search-flyout__inner .search-form__inner {
	display: flex;
	gap: var(--space-sm);
}

.search-flyout__inner .search-field {
	flex: 1;
	font-size: var(--font-size-lg);
}

.login #backtoblog a,
.login #nav a {
	color: var(--color-accent);
}

@media (max-width: 768px) {
	.share-buttons {
		gap: var(--space-xs);
	}

	.card__footer {
		flex-direction: column;
		align-items: flex-start;
		gap: var(--space-sm);
	}
}








/* Also target WordPress default nav classes in case parent uses them */


.section-services__actions .section-services__btn {
	text-decoration: none;
}

.section-services__actions .section-services__btn,
.section-services__actions .section-services__btn:link,
.section-services__actions .section-services__btn:visited {
	text-decoration: none;
}

.section-services__actions .section-services__btn--outline,
.section-services__actions .section-services__btn--outline:link,
.section-services__actions .section-services__btn--outline:visited {
	color: #050505;
	border-color: #050505;
}

.section-services__actions .section-services__btn--outline:hover,
.section-services__actions .section-services__btn--outline:focus,
.section-services__actions .section-services__btn--outline:active,
.section-services__actions .section-services__btn--outline:visited:hover {
	color: #ffffff;
	background: #111111;
	border-color: #111111;
}

.section-services__actions .section-services__btn--solid,
.section-services__actions .section-services__btn--solid:link,
.section-services__actions .section-services__btn--solid:visited {
	color: #ffffff;
}

.section-services__btn {
	min-width: min(274px, 100%);
	min-height: 58px;
	padding: 18px 28px;
	border-radius: 10px;
	text-decoration: none;
	text-transform: none;
	font-family: 'owners', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.03em;
	line-height: 1.25;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	text-align: center;
	overflow: visible;
	transition:
		background 0.22s ease,
		color 0.22s ease,
		border-color 0.22s ease,
		box-shadow 0.22s ease,
		transform 0.2s ease;
}

.section-services__btn:focus {
	outline: none;
}

.section-services__btn:focus-visible {
	outline: 2px solid #df2020;
	outline-offset: 3px;
}

.section-services__btn--outline {
	border: 1.5px solid #2f2f2f;
	color: #222;
	background: transparent;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.section-services__btn--outline:hover {
	background: #111;
	color: #ffffff;
	border-color: #111;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
	transform: translateY(-2px);
}

.section-services__btn--outline:focus,
.section-services__btn--outline:active,
.section-services__btn--outline:visited:hover {
	color: #ffffff;
}

.section-services__btn--outline:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.section-services__btn--outline:focus-visible {
	outline-color: #222;
}

.section-services__btn--solid {
	border: 1.5px solid #df2020;
	color: #ffffff;
	background: #df2020;
	box-shadow: 0 4px 16px rgba(223, 32, 32, 0.38);
}

.section-services__btn--solid:visited {
	color: #ffffff;
}

.section-services__btn--solid:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.section-services__btn--solid:hover {
	color: #ffffff;
	background: #c91b1b;
	border-color: #c91b1b;
	box-shadow: 0 10px 28px rgba(223, 32, 32, 0.48);
	transform: translateY(-2px);
}

.section-services__btn--solid:active {
	color: #ffffff;
	transform: translateY(0);
	box-shadow: 0 3px 12px rgba(201, 27, 27, 0.42);
}

@media (max-width: 1199px) {
	.section-services__btn {
		min-width: min(240px, 100%);
		min-height: 54px;
		padding: 14px 20px;
		font-size: 15px;
	}
}

@media (max-width: 767px) {
	.section-services__actions .section-services__btn {
		width: 100%;
		min-width: 0;
	}

	.section-services__btn {
		min-height: 52px;
		padding: 14px 16px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.section-services__btn {
		font-size: 14px;
		min-height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.section-services__btn {
		transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
	}

	.section-services__btn:hover,
	.section-services__btn:active {
		transform: none;
	}
}

/**
 * Lenis smooth scroll — keep native scroll-behavior off to avoid double easing.
 * https://github.com/darkroomengineering/lenis
 */

html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

/* Normal document flow — no sticky */
.section-services {
	position: relative;
	background: var(--cccom-services-bg, #fffbf2);
	box-sizing: border-box;
	overflow: visible;
	padding: clamp(28px, 4vh, 64px) max(20px, env(safe-area-inset-right)) clamp(48px, 8vh, 96px) max(20px, env(safe-area-inset-left));
}

.section-services__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	padding: max(8px, env(safe-area-inset-top)) 0 max(8px, env(safe-area-inset-bottom));
	background: var(--cccom-services-bg, #fffbf2);
	box-sizing: border-box;
}

.section-services__wrap {
	margin: 0 auto;
	width: min(1120px, calc(100vw - 40px));
	max-width: 100%;
	text-align: center;
	transform: translateY(-6px);
	box-sizing: border-box;
	overflow: visible;
}

.section-services__headline-row {
	display: inline;
}

.section-services__headline-row::after {
	content: ' ';
}

.section-services__br-mobile {
	display: none;
}

.section-services__fill-block--mobile {
	display: none;
}

.section-services__fill-block.section-services__fill-block--mobile {
	display: none;
}

.section-services__fill-block.section-services__fill-block--desktop {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding-inline: 4px;
	overflow: visible;
}

.section-services__headline {
	margin: 0 0 32px;
	font-size: clamp(32px, 4.4vw, 62px);
	line-height: 1.05;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: clamp(2px, 0.35vw, 4px);
	color: #050505;
	white-space: nowrap;
	font-family: 'owners', system-ui, sans-serif;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	column-gap: 20px;
	position: relative;
	overflow: visible;
}

/* WAVE: yellow stroke SVG under white text (inline placement) */
.section-services__wave {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	padding: 0.12em 0.1em;
	margin: 0;
	flex: 0 0 auto;
	align-self: center;
	min-width: 0;
	overflow: visible;
}

.section-services__wave-svg {
	position: absolute;
	top: 50%;
	left: 61%;
	width: 122%;
	min-width: 0;
	max-width: 340px;
	height: auto;
	z-index: 0;
	pointer-events: none;
	overflow: visible;
	opacity: 0;
	transform: translate(calc(-50% - 36px), -50%) scale(1.06);
	transition:
		opacity 0.55s ease-out,
		transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-services.is-wave-in .section-services__wave-svg {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1.2);
}

.section-services__wave-text {
	position: relative;
	z-index: 1;
	color: #FFF;
	letter-spacing: -0.015em;
	line-height: 1;
}

.section-services__fill-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding-inline: 4px;
	overflow: visible;
}

/* Desktop: single-line headline + 3 fill lines */
@media (min-width: 768px) {
	.section-services__headline {
		flex-wrap: nowrap;
		white-space: nowrap;
	}

	.section-services__headline-row {
		display: inline;
	}

	.section-services__headline-row::after {
		content: ' ';
	}

	.section-services__fill-block.section-services__fill-block--mobile {
		display: none;
	}

	.section-services__fill-block--desktop .section-services__fill-line {
		white-space: nowrap;
		overflow-wrap: normal;
		word-break: normal;
		width: auto;
		min-height: 0;
	}
}

/* Scroll fill: one text layer via gradient + background-clip (no duplicate ::after) */
.section-services__fill-line {
	--fill: 0;
	position: relative;
	display: block;
	margin: 0;
	max-width: 100%;
	font-size: clamp(28px, 3.6vw, 48px);
	line-height: 1.12;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: clamp(1px, 0.25vw, 2px);
	font-family: 'owners', system-ui, sans-serif;
	text-align: center;
	white-space: nowrap;
	color: transparent;
	-webkit-text-fill-color: transparent;
	background-image: linear-gradient(90deg,
			#0f0f10 0%,
			#0f0f10 calc(var(--fill) * 1%),
			#cfcfcf calc(var(--fill) * 1%),
			#cfcfcf 100%);
	background-size: 100% 100%;
	-webkit-background-clip: text;
	background-clip: text;
}

.section-services__actions {
	display: flex;
	justify-content: center;
	gap: 30px;
	flex-wrap: wrap;
	margin-top: 42px;
	width: 100%;
	overflow: visible;
}

.section-services__btn {
	min-width: min(274px, 100%);
	min-height: 58px;
	padding: 18px 28px;
	border-radius: 10px;
	text-decoration: none;
	text-transform: none;
	font-family: 'owners', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25;
	transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	box-sizing: border-box;
	text-align: center;
	overflow: visible;
}

.section-services__btn--outline {
	border: 1.5px solid #2f2f2f;
	color: #222;
	background: transparent;
}

.section-services__btn--outline:hover {
	background: #111;
	color: #ffffff;
	border-color: #111;
}

.section-services__btn--outline:focus,
.section-services__btn--outline:active,
.section-services__btn--outline:visited:hover {
	color: #ffffff;
}

.section-services__btn--solid {
	border: 1.5px solid #df2020;
	color: #fff;
	background: #df2020;
}

.section-services__btn--solid:hover {
	background: #c91b1b;
	border-color: #c91b1b;
}

/* Narrow laptop / tablet: wrap headline + fill lines */
@media (max-width: 1199px) {
	.section-services__wrap {
		width: min(100%, calc(100vw - 48px));
		margin-left: auto;
		margin-right: auto;
	}

	.section-services__headline {
		white-space: normal;
		flex-wrap: wrap;
		row-gap: 0.14em;
		column-gap: clamp(8px, 1.8vw, 20px);
		justify-content: center;
		align-items: center;
		line-height: 1.08;
	}

	.section-services__fill-line {
		white-space: normal;
		overflow-wrap: normal;
		word-break: normal;
		max-width: 100%;
		padding-inline: 2px;
		box-sizing: border-box;
	}
}

@media (max-width: 1024px) {
	.section-services__wrap {
		width: min(880px, calc(100vw - 40px));
	}

	.section-services__headline {
		font-size: 40px;
		margin-bottom: 28px;
	}

	.section-services__fill-line {
		font-size: 24px;
	}

	.section-services__actions {
		gap: 20px;
		margin-top: 36px;
	}
}

/* Tablet: headline may wrap */
@media (max-width: 991px) {
	.section-services__inner {
		padding: max(20px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
		align-items: center;
	}

	.section-services__wrap {
		width: min(96vw, 720px);
		margin-left: auto;
		margin-right: auto;
		transform: none;
	}

	.section-services__headline {
		font-size: clamp(32px, 5.5vw, 52px);
		line-height: 0.98;
		margin-bottom: 22px;
		white-space: normal;
		flex-wrap: wrap;
		row-gap: 0.12em;
		align-items: center;
		justify-content: center;
	}

	.section-services__wave {
		padding: 0 0.08em;
	}

	.section-services__wave-svg {
		width: 118%;
		max-width: 300px;
		transform: translate(calc(-50% - 28px), -50%) scale(1.04);
	}

	.section-services.is-wave-in .section-services__wave-svg {
		transform: translate(-50%, -50%) scale(1.04);
	}

	.section-services__fill-block {
		gap: 8px;
	}

	.section-services__fill-line {
		font-size: 22px;
		line-height: 1.08;
	}

	.section-services__actions {
		gap: 14px;
		margin-top: 28px;
	}

	.section-services__btn {
		min-width: min(240px, 100%);
		min-height: 54px;
		padding: 14px 20px;
		font-size: 15px;
	}

	.partner-bubbles__icon img,
	.partner-bubbles__icon svg {
		max-width: 70px !important;
		max-height: 70px !important;
		margin-bottom: 20px;
	}

}

@media (max-width: 767px) {
	.section-services__wrap {
		width: calc(100vw - 32px);
	}

	.section-services__headline {
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		font-size: clamp(28px, 8.2vw, 36px);
		line-height: 1.12;
		margin-bottom: 20px;
		letter-spacing: 0.5px;
		white-space: normal;
		flex-wrap: nowrap;
		row-gap: 0;
		column-gap: 0;
		overflow: visible;
	}

	.section-services__headline-row {
		display: block;
		text-align: center;
		overflow: visible;
	}

	.section-services__headline-row:first-child {
		white-space: nowrap;
		padding-block: 0.08em;
	}

	.section-services__headline-row::after {
		content: none;
	}

	.section-services__wave {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		vertical-align: middle;
		padding: 0.18em 0.14em 0.14em;
		margin: 0 0.06em;
		overflow: visible;
		isolation: isolate;
	}

	.section-services__wave-text {
		position: relative;
		z-index: 1;
		font-weight: 800;
		letter-spacing: -0.02em;
		line-height: 1;
	}

	.section-services__wave-svg {
		left: 57%;
		top: 50%;
		width: 105%;
		max-width: none;
		min-width: 0;
		transform: translate(calc(-50% - 14px), -50%) scale(1);
	}

	.section-services.is-wave-in .section-services__wave-svg {
		transform: translate(-50%, -50%) scale(1.4);
		margin: 0 3px;
	}

	.section-services__fill-block.section-services__fill-block--desktop {
		display: none;
	}

	.section-services__fill-block.section-services__fill-block--mobile {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		width: 100%;
		max-width: 100%;
		padding-inline: 8px;
		box-sizing: border-box;
	}

	.section-services__fill-line {
		display: block;
		font-size: clamp(18px, 4.9vw, 22px);
		line-height: 1.34;
		min-height: 1.34em;
		letter-spacing: 0.35px;
		font-weight: 500;
		white-space: nowrap;
		width: fit-content;
		max-width: 100%;
		margin-inline: auto;
		overflow-wrap: normal;
		word-break: normal;
		padding-inline: 0;
	}

	.section-services__br-mobile {
		display: none;
	}

	.section-services__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		max-width: 230px;
		margin: 32px auto 0;
	}

	.section-services__btn {
		width: 100%;
		min-width: 0;
		min-height: 52px;
		padding: 14px 16px;
		font-size: 15px;
		border-radius: 10px;
	}

	.section-traditional-vs-ai .section-traditional-vs-ai__toggle {
		flex-direction: column;
	}

	.section-traditional-vs-ai .section-traditional-vs-ai__vs {
		font-size: 21.18px !important;
	}
}

@media (max-width: 480px) {
	.section-services__inner {
		padding: max(12px, env(safe-area-inset-top)) 14px max(16px, env(safe-area-inset-bottom));
	}

	.section-services__wrap {
		width: calc(100vw - 28px);
	}

	.section-services__headline {
		font-size: clamp(28px, 8.2vw, 34px);
		line-height: 1.12;
		margin-bottom: 18px;
	}

	.section-services__fill-block {
		gap: 4px;
	}

	.section-services__fill-line {
		font-size: clamp(18px, 4.9vw, 22px);
		line-height: 1.34;
	}

	.section-services__btn {
		font-size: 14px;
		min-height: 50px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.section-services__fill-line {
		--fill: 100;
		background-image: none;
		-webkit-text-fill-color: #0f0f10;
		color: #0f0f10;
		-webkit-background-clip: unset;
		background-clip: unset;
	}

	.section-services .section-services__wave-svg {
		transition: none;
	}
}

.section-stats {
	position: relative;
	/* Extra scroll beyond the sticky stage: lower = shorter scrub (was 2 ≈ many wheel passes). */
	--svs-scroll-vh: 0.65;
	height: calc(100vh * (1 + var(--svs-scroll-vh)));
	/* Synced in JS on this element so headlines inherit the live column width. */
	--svs-box-width: 26vw;
	/* Must match max-width so copy does not sit under the video column. */
	--svs-head-col: min(40ch, 29vw);
	--svs-head-gap: 1rem;
	--svs-head-pad-x: 0px;
	contain: layout style;
	background-color: #0e0e0e;
	background-image: var(--cccom-svs-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.section-stats__stage {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	isolation: isolate;
	background-color: #0e0e0e;
	background-image: var(--cccom-svs-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/*
 * Portrait “card” (width:height = 3:4). Size is set in JS (width + height) to avoid
 * aspect-ratio / max-height fighting each other in the browser.
 */
.section-stats__video-box {
	position: relative;
	z-index: 5;
	flex-shrink: 0;
	overflow: hidden;
	will-change: width, height;
}

.section-stats__video-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	background-color: transparent;
	background-image: var(--cccom-svs-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.section-stats__video-media {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	pointer-events: none;
}

.section-stats__video-placeholder {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-color: transparent;
	background-image: var(--cccom-svs-poster);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.45s ease;
}

.section-stats__video-overlay {
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	background: rgba(0, 0, 0, 0.1);
}

.section-stats__headline {
	position: absolute;
	z-index: 20;
	pointer-events: none;
	font-family: "owners", sans-serif;
	/* Large desktop — full impact (e.g. 1920) */
	font-size: clamp(26px, 3.45vw, 62px);
	font-weight: 800;
	line-height: 56px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	will-change: transform;
	box-sizing: border-box;
	padding-left: var(--svs-head-pad-x);
	padding-right: var(--svs-head-pad-x);
}

/* One typographic line per row — matches layout reference; avoids mid-phrase wraps */
.section-stats__headline-line {
	display: block;
	white-space: nowrap;
	line-height: 0.98;
}

.section-stats__headline-line+.section-stats__headline-line {
	margin-top: 0.08em;
}

.section-stats__br-mobile {
	display: none;
}

.section-stats__word-gap {
	display: inline;
	white-space: pre;
}

/*
 * Equal “breathing space” from viewport edge: same inset for left (top block)
 * and right (bottom block), keyed off the centered column width.
 */
.section-stats__headline--top-left {
	top: 15vh;
	left: max(0.75rem, calc(50vw - var(--svs-box-width) / 2 - var(--svs-head-col) - var(--svs-head-gap)));
	max-width: var(--svs-head-col);
	text-align: left;
}

.section-stats__headline--bottom-right {
	bottom: 17vh;
	right: max(0.75rem, calc(50vw - var(--svs-box-width) / 2 - var(--svs-head-col) - var(--svs-head-gap)));
	max-width: var(--svs-head-col);
	text-align: right;
}

.section-stats__highlight {
	color: #E8192C;
}

/* Laptop — clearly smaller than large desktop; column sized to clear the card */
@media (max-width: 1440px) {
	.section-stats {
		--svs-head-col: min(34ch, 26.5vw);
		--svs-head-gap: 0.9rem;
	}

	.section-stats__headline {
		font-size: clamp(19px, 2.75vw, 48px);
		letter-spacing: 1.65px;
		line-height: 1;
	}
}

@media (max-width: 1280px) {
	.section-stats {
		--svs-head-col: min(30ch, 24.5vw);
		--svs-head-gap: 0.85rem;
	}

	.section-stats__headline {
		font-size: clamp(17px, 2.55vw, 42px);
		letter-spacing: 1.45px;
	}
}

@media (max-width: 1100px) {
	.section-stats {
		--svs-head-col: min(26ch, 28vw);
		--svs-head-gap: 0.75rem;
	}

	.section-stats__headline {
		font-size: clamp(16px, 2.45vw, 36px);
		letter-spacing: 1.2px;
	}

	.section-stats__headline--top-left {
		top: 12vh;
	}

	.section-stats__headline--bottom-right {
		bottom: 12vh;
	}
}

/*
 * iPad / large tablet (keeps side-by-side video + copy): type was too small vs the card.
 * Targets the same stage as .section-stats__video-bg; text is in __headline.
 */
@media (min-width: 901px) and (max-width: 1200px) {
	.section-stats__headline {
		font-size: clamp(22px, 3.25vw, 50px);
		letter-spacing: 1.4px;
		line-height: 1.02;
	}
}

/*
 * Portrait tablets (e.g. iPad Pro 12.9" — 1024×1366): the tall viewport turns the
 * 1.65×100vh scrub section into a very long stretch of empty dark scroll. Collapse
 * the extra scrub height so the sticky stage is a single viewport tall, matching
 * the compact treatment used at <=900px.
 */
@media (min-width: 901px) and (max-width: 1200px) and (orientation: portrait) {
	.section-stats {
		--svs-scroll-vh: 0;
	}
}

/* Tablet & phone: fluid scrolling layout tailored for smaller interfaces */
@media (max-width: 900px) {
	.section-stats {
		--svs-scroll-vh: 0;
		--svs-head-col: 90vw;
	}

	.section-stats__headline {
		font-size: clamp(18px, 6vw, 36px);
		letter-spacing: 0.5px;
		line-height: 1.05;
	}

	.section-stats__headline--top-left {
		top: 6vh;
		left: 4vw;
		max-width: var(--svs-head-col);
		text-align: left;
	}

	.section-stats__headline--bottom-right {
		bottom: 6vh;
		right: 4vw;
		left: auto;
		max-width: var(--svs-head-col);
		text-align: right;
	}

	.section-stats__br-mobile {
		display: block;
	}

	.section-stats__word-gap {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {

	.section-stats__headline,
	.section-stats__video-box {
		will-change: auto !important;
	}

	.section-stats__headline {
		transform: none !important;
	}
}

.section-stats {
	--cccom-svs-bg: url(../images/homepage/videobg.png);
	--cccom-svs-poster: url(../images/homepage/videoplaceholder.jpg);
}

.section-traditional-vs-ai {
	--trad-ai-card-radius: 60px;
	--trad-ai-gap: 0px;
	--trad-ai-card-max-w: 366px;
	font-family: 'owners', sans-serif;
	background: #eef2f7;
	width: 100%;
	padding: 130px clamp(16px, 4vw, 24px);
	box-sizing: border-box;
}

.section-traditional-vs-ai *,
.section-traditional-vs-ai *::before,
.section-traditional-vs-ai *::after {
	box-sizing: border-box;
}

.section-traditional-vs-ai__inner {
	width: 100%;
	max-width: 1462px;
	margin: 0 auto;
}

/* ── Toggle header ────────────────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 12px 16px;
	margin-bottom: clamp(28px, 4vw, 48px);
}

.section-traditional-vs-ai .section-traditional-vs-ai__label {
	font-family: 'owners', sans-serif;
	font-size: clamp(32px, 5vw, 54px);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 2px;
	line-height: 1.05;
	transition: color 0.25s ease;
}

/* AI mode (default): right label red */
.section-traditional-vs-ai:not(.is-traditional) .section-traditional-vs-ai__label--left {
	color: #111;
}

.section-traditional-vs-ai:not(.is-traditional) .section-traditional-vs-ai__label--right {
	color: #D32323;
}

/* Traditional mode: left label red */
.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__label--left {
	color: #D32323;
}

.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__label--right {
	color: #111;
}

/* ── Toggle pill ──────────────────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__switch {
	position: relative;
	width: 123px;
	height: 63px;
	background: #D32323;
	border-radius: 999px;
	cursor: pointer;
	flex-shrink: 0;
	/* box-shadow: 0 4px 16px rgba(232, 52, 44, 0.4); */
	transition: background 0.3s;
}

.section-traditional-vs-ai .section-traditional-vs-ai__vs {
	position: absolute;
	top: 50%;
	font-weight: 500;
	transform: translateY(-50%);
	font-family: 'owners', sans-serif;
	font-size: 36.29px;
	font-weight: 500;
	color: #ffffff9c;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	user-select: none;
	pointer-events: none;
	transition: opacity 0.25s, left 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-traditional-vs-ai .section-traditional-vs-ai__knob {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 42px;
	height: 42px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	transition: left 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-traditional-vs-ai .section-traditional-vs-ai__knob svg {
	display: none;
}

/* AI mode: knob right, vs left */
.section-traditional-vs-ai .section-traditional-vs-ai__switch .section-traditional-vs-ai__knob {
	left: calc(100% - 47px);
}

.section-traditional-vs-ai .section-traditional-vs-ai__switch .section-traditional-vs-ai__vs {
	left: 14px;
	right: auto;
}

/* Traditional mode: knob left, vs right */
.section-traditional-vs-ai .section-traditional-vs-ai__switch.off .section-traditional-vs-ai__knob,
.section-traditional-vs-ai .section-traditional-vs-ai__switch.is-off .section-traditional-vs-ai__knob {
	left: 5px;
}

.section-traditional-vs-ai .section-traditional-vs-ai__switch.off .section-traditional-vs-ai__vs,
.section-traditional-vs-ai .section-traditional-vs-ai__switch.is-off .section-traditional-vs-ai__vs {
	right: 14px;
	left: auto;
}

/* ── Grid ─────────────────────────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__cards {
	position: relative;
	top: 30px;
}

.section-traditional-vs-ai .section-traditional-vs-ai__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--trad-ai-gap);
	position: relative;
	z-index: 2;
	align-items: start;
}

/* ── Card outer wrapper ───────────────────────── */
/*  Transparent — only holds the two layers in position  */
.section-traditional-vs-ai .section-traditional-vs-ai__card {
	background: transparent;
	border: none;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: none;
}

/* ── White floating card body ─────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__card-body {
	background: #fff;
	border: 1px solid #F9E3E3;
	border-radius: var(--trad-ai-card-radius);
	padding: 32px 28px 32px;
	min-height: 310px;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.section-traditional-vs-ai .section-traditional-vs-ai__card:hover .section-traditional-vs-ai__card-body {
	transform: translateY(-5px);
	box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
}

/* ── Step number ──────────────────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__step {
	position: absolute;
	top: 28px;
	right: 27px;
	font-family: 'owners', sans-serif;
	font-size: clamp(62px, 8vw, 78px);
	font-weight: 300;
	color: #D32323;
	line-height: 1;
	letter-spacing: 0.08em;
	user-select: none;
	pointer-events: none;
}

/* ── Icon ─────────────────────────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__icon {
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	margin-bottom: 0;
	margin-top: 70px;
}

/* ── Dashed separator between icon and text ───── */
.section-traditional-vs-ai .section-traditional-vs-ai__divider {
	display: block;
	height: 0;
	border: none;
	/* border-top: 1.5px dashed rgba(100, 185, 215, 0.45); */
	margin: 18px -22px 18px;
}

/* ── Description text ─────────────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__text {
	font-family: 'owners';
	font-size: 18px;
	font-weight: 400;
	color: #000000;
	line-height: 1.55;
	margin: 0;
	letter-spacing: 1px;
}

/* ── Pink footer — sits BEHIND and below the white card ── */
.section-traditional-vs-ai .section-traditional-vs-ai__footer {
	font-family: 'owners', sans-serif;
	background: #111111;
	border-radius: 0 0 var(--trad-ai-card-radius) var(--trad-ai-card-radius);
	padding: 100px 28px 30px;
	margin-top: -75px;
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: 20px;
	font-weight: 500;
	color: #ffffff;
	letter-spacing: 1px;
}

/* ── Toggle: show/hide content ────────────────── */
.section-traditional-vs-ai .section-traditional-vs-ai__copy--traditional {
	display: none;
}

.section-traditional-vs-ai .section-traditional-vs-ai__copy--ai {
	display: block;
}

.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__copy--traditional {
	display: block;
}

.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__copy--ai {
	display: none;
}

.section-traditional-vs-ai .section-traditional-vs-ai__icon--traditional {
	display: none;
}

.section-traditional-vs-ai .section-traditional-vs-ai__icon--ai {
	display: block;
}

.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__icon--traditional {
	display: block;
}

.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__icon--ai {
	display: none;
}

.section-traditional-vs-ai .section-traditional-vs-ai__metric {
	display: block;
}

.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__metric {
	display: none;
}

/* ── Traditional mode overrides ──────────────── */
.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__card-body {
	background: #fafafa;
	border-color: #dde0e6;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.section-traditional-vs-ai.is-traditional .section-traditional-vs-ai__divider {
	border-top-color: rgba(0, 0, 0, 0.1);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 1199px) {
	.section-traditional-vs-ai .section-traditional-vs-ai__grid {
		justify-content: center;
		justify-items: center;
	}

	.section-traditional-vs-ai .section-traditional-vs-ai__card {
		width: min(var(--trad-ai-card-max-w), calc(100vw - 32px));
		max-width: var(--trad-ai-card-max-w);
	}
}

@media (max-width: 860px) {
	.section-traditional-vs-ai {
		--trad-ai-gap: 20px;
	}

	.section-traditional-vs-ai .section-traditional-vs-ai__grid {
		grid-template-columns: repeat(2, min(var(--trad-ai-card-max-w), calc((100% - var(--trad-ai-gap)) / 2)));
		max-width: calc(var(--trad-ai-card-max-w) * 2 + var(--trad-ai-gap));
		margin-inline: auto;
	}
}

@media (max-width: 767px) {
	.section-traditional-vs-ai {
		--trad-ai-card-radius: 40px;
		--trad-ai-gap: 20px;
	}

	.section-traditional-vs-ai .section-traditional-vs-ai__grid {
		grid-template-columns: 1fr;
		gap: var(--trad-ai-gap);
		max-width: var(--trad-ai-card-max-w);
	}
}

/**
 * AI transformation scale — white band, scroll-driven heading fill + arrow.
 */

.section-ai-scale {
	--ai-scale-bg: #fff;
	--ai-scale-heading-track: #cfcfcf;
	--ai-scale-heading-fill: #0f0f10;
	--section-ai-scale__text: #5a5a5a;
	position: relative;
	padding-block: clamp(40px, 7vw, 88px);
	padding-inline: 0;
	background: var(--ai-scale-bg);
	box-sizing: border-box;
	width: 100%;
	overflow-x: clip;
	border-bottom: 1px solid #eee !important;
}

/* Normal flow (no sticky); animation driven by viewport scroll progress in JS */
.section-ai-scale__block {
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	background: var(--ai-scale-bg);
	width: 100%;
}

/* Same band as theme .container--wide: max width + gutter (see parent style.css --container-wide / --gutter) */
.section-ai-scale__inner {
	width: 100%;
	max-width: var(--container-wide, 1400px);
	margin-inline: auto;
	padding-left: max(var(--gutter, clamp(1rem, 4vw, 2rem)), env(safe-area-inset-left, 0px));
	padding-right: max(var(--gutter, clamp(1rem, 4vw, 2rem)), env(safe-area-inset-right, 0px));
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: clamp(20px, 200px, 200px);
	box-sizing: border-box;
}

.section-ai-scale__visual {
	flex: 0 0 auto;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.section-ai-scale__arrow {
	position: relative;
	width: clamp(100px, min(22vw, 200px), 200px);
	max-width: 100%;
	aspect-ratio: 1 / 1;
}

.section-ai-scale__arrow svg {
	display: block;
	width: 100%;
	height: auto;
}

.section-ai-scale__arrow-outline {
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.section-ai-scale__arrow-fill-layer {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.section-ai-scale__copy {
	flex: 1 1 0;
	min-width: 0;
	text-align: left;
}

/*
 * Full-width block so wrapped lines match the ::after overlay (inline-block was
 * shrink-to-fit and caused misaligned fill / mid-word style breaks).
 */
.section-ai-scale__headline {
	position: relative;
	display: block;
	width: 100%;
	margin: 0 0 clamp(16px, 3vw, 24px);
	max-width: 820px;
	font-family: 'owners', system-ui, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: clamp(24px, 3.6vw, 48px);
	line-height: clamp(28px, 3.6vw, 56px);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ai-scale-heading-track);
	white-space: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.section-ai-scale__headline::after {
	content: attr(data-fill);
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	color: var(--ai-scale-heading-fill);
	pointer-events: none;
	font-weight: 500;
	font-size: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	white-space: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-mask-image: linear-gradient(120deg,
			rgba(0, 0, 0, 1) 0%,
			rgba(0, 0, 0, 1) calc(var(--fill, 0) * 1%),
			rgba(0, 0, 0, 0) calc(var(--fill, 0) * 1% + 0.6%),
			rgba(0, 0, 0, 0) 100%);
	mask-image: linear-gradient(120deg,
			rgba(0, 0, 0, 1) 0%,
			rgba(0, 0, 0, 1) calc(var(--fill, 0) * 1%),
			rgba(0, 0, 0, 0) calc(var(--fill, 0) * 1% + 0.6%),
			rgba(0, 0, 0, 0) 100%);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.section-ai-scale__text {
	margin: 0;
	font-family: 'owners', system-ui, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: clamp(14px, 1.65vw, 18px);
	line-height: clamp(1.55, 1.55, 1.55);
	letter-spacing: 0.06em;
	color: #555555;
	max-width: 979px;
}

@media (max-width: 1200px) {
	.section-ai-scale__inner {
		gap: clamp(18px, 3.5vw, 48px);
	}
}

/* Tablet / small laptop: stack so columns never crush */
@media (max-width: 992px) {
	.section-ai-scale__block {
		align-items: flex-start;
	}

	.section-ai-scale__inner {
		flex-direction: column;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: clamp(24px, 5vw, 40px);
	}

	.section-ai-scale__visual {
		align-self: flex-start;
	}

	.section-ai-scale__copy {
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
	}

	.section-ai-scale__text {
		max-width: none;
	}
}

@media (max-width: 768px) {
	.section-ai-scale {
		padding-block: max(40px, env(safe-area-inset-top)) clamp(48px, 12vw, 72px);
	}

	.section-ai-scale__inner {
		padding-left: max(1rem, env(safe-area-inset-left));
		padding-right: max(1rem, env(safe-area-inset-right));
	}

	.section-ai-scale__arrow {
		width: clamp(88px, 38vw, 168px);
	}

}

@media (max-width: 480px) {
	.section-ai-scale {
		padding-block: 32px 48px;
	}

	.section-ai-scale__inner {
		gap: 20px;
	}

	.section-ai-scale__headline {
		letter-spacing: 0.04em;
	}

	.section-ai-scale__text {
		letter-spacing: 0.04em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.section-ai-scale__headline::after {
		-webkit-mask-image: none;
		mask-image: none;
	}

	.section-ai-scale__headline {
		color: var(--ai-scale-heading-fill);
	}
}

.section-home-services {
	font-family: 'owners', system-ui, sans-serif;
	background: #fff;
	color: #0a0a0a;
	box-sizing: border-box;
	padding-bottom: 0px;
	/* clip horizontal bleed from wide headlines without creating a scroll container
     that breaks position:sticky on .section-home-services__sticky (overflow:hidden does). */
	overflow-x: clip;
	overflow-y: visible;
}

.section-home-services *,
.section-home-services *::before,
.section-home-services *::after {
	box-sizing: border-box;
}

.section-home-services .section-home-services__track {
	position: relative;
	min-height: 18vh;
	background: #fff;
	overflow: visible;
	/* Extra scroll length so the left column stays sticky for a noticeable distance,
     then releases when this block scrolls past (sticky “for a while”, then scrolls). */
	padding-bottom: clamp(72px, 16vh, 240px);
}

.section-home-services .section-home-services__track+.section-home-services__track {
	margin-top: 44px;
	padding-top: 44px;
	border-top: 1px solid #d9d9d9;
}

.section-home-services .section-home-services__track:last-child {
	min-height: 90vh;
}

.section-home-services .section-home-services__split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	column-gap: clamp(16px, 3vw, 40px);
	min-height: 82vh;
	padding: 72px 0 0;
	overflow: visible;
	max-width: 1460px;
	margin: auto;
}

.section-home-services .section-home-services__split--no-media {
	grid-template-columns: minmax(0, 1fr);
	min-height: auto;
}

.section-home-services .section-home-services__title--no-media {
	width: 100%;
}

.section-home-services .section-home-services__title--no-media .section-home-services__title-ink {
	clip-path: none;
}

.section-home-services .section-home-services__track:last-child .section-home-services__split {
	min-height: 74vh;
}

.section-home-services .section-home-services__sticky {
	/* Shared by .section-home-services__tags and .section-home-services__title so tags line up with the headline at every breakpoint */
	--home-services-head-offset: clamp(22px, 9vw, 150px);
	position: -webkit-sticky;
	position: sticky;
	top: max(108px, calc(env(safe-area-inset-top, 0px) + 88px));
	align-self: start;
	z-index: 4;
	max-width: 1000px;
	width: 100%;
	min-width: 0;
	overflow: visible;
	padding-bottom: 24px;
	grid-column: 1;
	grid-row: 1;
}

.section-home-services .section-home-services__tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	/* margin-left: var(--home-services-head-offset); */
	margin-left: 0;
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.section-home-services .section-home-services__tags.show,
.section-home-services .section-home-services__tags.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.section-home-services .section-home-services__tag {
	margin: 0;
	border: 1.5px solid #d32323;
	border-radius: 999px;
	padding: 8px 18px;
	font-size: clamp(12px, 1.5vw, 16px);
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: capitalize;
	color: #d32323;
	background: #fff;
	font-family: 'owners', system-ui, sans-serif;
	cursor: pointer;
	-webkit-tap-highlight-color: transparent;
}

.section-home-services .section-home-services__tag:focus,
.section-home-services .section-home-services__tag:focus-visible {
	outline: none;
}

.section-home-services .section-home-services__tag.is-active {
	color: #d32323;
	background: #fff;
	text-underline-offset: 5px;
	text-decoration-thickness: 1.5px;
}

/*
 * Headline over media: left strip = solid ink; right strip = image-in-text (.section-home-services__title-clip + poster sync).
 * Lower --home-services-ink-split = wider knockout strip (more letters show the card image inside glyphs).
 */
.section-home-services .section-home-services__title {
	font-family: 'owners', system-ui, sans-serif;
	display: block;
	margin: 0;
	padding: 0;
	max-width: 1000px;
	width: calc(200% + clamp(16px, 3vw, 40px) + clamp(0px, 1.5vw, 24px));
	/* margin-left: var(--home-services-head-offset); */
	margin-left: 0;
	color: #111111;
	font-size: 75px;
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: 5px;
	text-transform: uppercase;
	position: relative;
	z-index: 4;
	isolation: isolate;
	pointer-events: none;
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
	/* Narrow ink strip: split is % of full h2 width; text is left-aligned and shorter than h2 — tail letters must sit in the right strip or they stay solid black. */
	--home-services-ink-split: 32%;
}

.section-home-services .section-home-services__title.show,
.section-home-services .section-home-services__title.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.section-home-services .section-home-services__title-ink {
	display: block;
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	color: #0a0a0a;
	clip-path: polygon(0 0, var(--home-services-ink-split) 0, var(--home-services-ink-split) 100%, 0 100%);
}

.section-home-services .section-home-services__title-clip {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	z-index: 2;
	background-image: var(--home-services-clip-bg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	-webkit-text-fill-color: transparent;
	clip-path: polygon(var(--home-services-ink-split) 0, 100% 0, 100% 100%, var(--home-services-ink-split) 100%);
	/* Clearer image in glyphs + smoother curves (light stroke/shadow, not heavy blur) */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: geometricPrecision;
	filter: contrast(1.08) saturate(1.12) brightness(1.03);
	-webkit-text-stroke: 0.35px rgba(255, 255, 255, 0.28);
	text-shadow:
		0 0 0.65px rgba(0, 0, 0, 0.2),
		0 0.5px 1.25px rgba(0, 0, 0, 0.12);
	transition: filter 0.35s ease, -webkit-text-stroke 0.35s ease, text-shadow 0.35s ease;
}

.section-home-services .section-home-services__title-clip.section-home-services__title-clip--sync {
	background-size: var(--clip-bg-w, cover) var(--clip-bg-h, cover);
	background-position: var(--clip-bg-x, center) var(--clip-bg-y, center);
}

.section-home-services .section-home-services__media-wrap {
	position: relative;
	grid-column: 2;
	grid-row: 1;
	min-height: 810px;
	width: min(100%, 800px);
	height: 810px;
	border-radius: 26px;
	z-index: 1;
}

@media (min-width: 769px) {
	.section-home-services .section-home-services__media-wrap {
		margin-left: clamp(-44px, -5vw, -14px);
	}
}

.section-home-services .section-home-services__image-wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 810px;
	overflow: hidden;
	z-index: 1;
	border-radius: 26px;
}

.section-home-services .section-home-services__media-wrap {
	overflow: hidden;
}

@media (max-width: 1440px) and (min-width: 992px) {

	/* Laptops / small desktops: content-height rows + tighter gaps (avoid huge empty bands) */
	.section-home-services .section-home-services__track {
		min-height: 0;
		padding-bottom: clamp(28px, 5vh, 72px);
	}

	.section-home-services .section-home-services__track:last-child {
		min-height: 0;
	}

	.section-home-services .section-home-services__track+.section-home-services__track {
		margin-top: 48px;
		padding-top: 36px;
	}

	.section-home-services .section-home-services__split {
		min-height: 0;
		padding: 48px 32px 0;
		column-gap: 24px;
	}

	.section-home-services .section-home-services__track:last-child .section-home-services__split {
		/* min-height: 0; */
	}
}

@media (max-width: 1280px) {
	.section-home-services .section-home-services__sticky {
		--home-services-head-offset: clamp(16px, 5vw, 72px);
	}

	.section-home-services .section-home-services__title {
		width: calc(175% + 24px);
		font-size: clamp(32px, 4.2vw, 76px);
	}

	.section-home-services .section-home-services__media-wrap {
		min-height: 700px;
		height: 700px;
		width: min(100%, 680px);
	}

	.section-home-services .section-home-services__image-wrap,
	.section-home-services .section-home-services__track:last-child .section-home-services__image-wrap {
		min-height: 700px;
		height: 100%;
	}
}
@media (max-width: 1280px) and (min-width: 1025px) {
	.section-traditional-vs-ai .section-traditional-vs-ai__text, .section-traditional-vs-ai .section-traditional-vs-ai__footer{
		    font-size: 15px;
	}
}
@media (max-width: 1024px) and (min-width: 992px) {

	/* Narrow laptops: keep rows content-sized, tight gaps (1024px query follows 1280 laptop rules) */
	.section-home-services .section-home-services__track {
		min-height: 0;
	}

	.section-home-services .section-home-services__track:last-child {
		min-height: 0;
	}

	.section-home-services .section-home-services__track+.section-home-services__track {
		margin-top: 40px;
		padding-top: 28px;
	}

	.section-home-services .section-home-services__split {
		min-height: 0;
		padding: 40px 24px 0;
		column-gap: 18px;
	}

	.section-home-services .section-home-services__track:last-child .section-home-services__split {
		min-height: 0;
	}
}

@media (max-width: 1024px) {
	.section-home-services .section-home-services__sticky {
		--home-services-head-offset: clamp(12px, 3vw, 36px);
		top: max(96px, calc(env(safe-area-inset-top, 0px) + 76px));
	}

	.section-home-services .section-home-services__title {
		width: calc(138% + 16px);
		font-size: clamp(28px, 4.6vw, 50px);
		letter-spacing: 3px;
	}

	.section-home-services .section-home-services__tags {
		gap: 8px;
		margin-bottom: 14px;
	}

	.section-home-services .section-home-services__media-wrap {
		min-height: 560px;
		height: 560px;
		width: min(100%, 560px);
	}

	.section-home-services .section-home-services__image-wrap,
	.section-home-services .section-home-services__track:last-child .section-home-services__image-wrap {
		min-height: 560px;
		height: 100%;
	}

	.section-traditional-vs-ai .section-traditional-vs-ai__grid {
		grid-template-columns: repeat(2, min(var(--trad-ai-card-max-w), calc((100% - 20px) / 2)));
		justify-content: center;
		max-width: calc(var(--trad-ai-card-max-w) * 2 + 20px);
		margin-inline: auto;
	}
}

.section-home-services .section-home-services__image-inner {
	position: absolute;
	inset: -4% 0;
	width: 100%;
	height: 108%;
	will-change: transform;
	backface-visibility: hidden;
	border-radius: 26px;
}

.section-home-services .section-home-services__image-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 26px;
}

.section-home-services .section-home-services__video,
.section-home-services .section-home-services__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	border-radius: 26px;
	pointer-events: auto;
	background: #000;
}

.section-home-services .section-home-services__play.is-playing .section-home-services__play-icon {
	display: none;
}

.section-home-services .section-home-services__play.is-playing .section-home-services__pause-icon {
	display: block;
}

.section-home-services .section-home-services__pause-icon {
	display: none;
	width: 22px;
	height: 26px;
	position: relative;
}

.section-home-services .section-home-services__pause-icon::before,
.section-home-services .section-home-services__pause-icon::after {
	content: '';
	position: absolute;
	top: 0;
	width: 7px;
	height: 100%;
	background: #fff;
	border-radius: 1px;
}

.section-home-services .section-home-services__pause-icon::before {
	left: 0;
}

.section-home-services .section-home-services__pause-icon::after {
	right: 0;
}

.section-home-services .section-home-services__play {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 3;
	transform: translate(-50%, -50%);
	width: 72px;
	height: 72px;
	border: none;
	border-radius: 50%;
	background: rgba(40, 40, 45, 0.45);
	backdrop-filter: blur(6px);
	cursor: pointer;
	pointer-events: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.25s ease, transform 0.25s ease;
}

.section-home-services .section-home-services__play:hover {
	background: rgba(40, 40, 45, 0.65);
	transform: translate(-50%, -50%) scale(1.04);
}

.section-home-services .section-home-services__play-icon {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 11px 0 11px 18px;
	border-color: transparent transparent transparent #fff;
	margin-left: 5px;
}

@media (max-width: 991px) {
	.section-home-services .section-home-services__track {
		padding-bottom: 0;
	}

	.section-home-services .section-home-services__sticky {
		max-width: 100%;
		--home-services-head-offset: 0;
	}

	.section-home-services .section-home-services__title {
		width: 100%;
		margin-left: var(--home-services-head-offset);
	}

	.section-home-services .section-home-services__tags {
		margin-left: var(--home-services-head-offset);
	}

	.section-home-services .section-home-services__title-clip {
		display: none;
	}

	.section-home-services .section-home-services__title-ink {
		clip-path: none;
		color: #0a0a0a;
	}

	.section-home-services .section-home-services__track {
		min-height: auto;
	}

	.section-home-services .section-home-services__split {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
		padding: 40px 20px 0;
		row-gap: 20px;
		min-height: auto;
	}

	.section-home-services .section-home-services__sticky {
		grid-column: 1;
		grid-row: 2;
		position: relative;
		top: auto;
		padding-top: 0;
	}

	.section-home-services .section-home-services__media-wrap {
		grid-column: 1;
		grid-row: 1;
		min-height: clamp(260px, 44vh, 380px);
		width: 100%;
		height: clamp(260px, 44vh, 380px);
		border-radius: 20px;
	}

	.section-home-services .section-home-services__image-wrap,
	.section-home-services .section-home-services__image-inner,
	.section-home-services .section-home-services__image-bg {
		border-radius: 20px;
		min-height: clamp(260px, 44vh, 380px);
		height: 100%;
	}

	.section-home-services .section-home-services__video,
	.section-home-services .section-home-services__image {
		border-radius: 20px;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}

	.section-home-services .section-home-services__tag {
		padding: 7px 14px;
		/* font-size: 13px; */
	}

	.section-home-services .section-home-services__play {
		width: 60px;
		height: 60px;
	}
}

/* Portrait tablets (iPad Mini / iPad / iPad Air): give the media a taller,
   width-proportional height so it doesn't look short next to the full-width column. */
@media (min-width: 768px) and (max-width: 991px) {
	.section-home-services .section-home-services__media-wrap {
		margin-left: 0;
		min-height: clamp(440px, 68vw, 660px);
		height: clamp(440px, 68vw, 660px);
	}

	.section-home-services .section-home-services__image-wrap,
	.section-home-services .section-home-services__image-inner,
	.section-home-services .section-home-services__image-bg {
		min-height: clamp(440px, 68vw, 660px);
		height: 100%;
	}
}

/**
 * Partner bubbles section — front page (cacheable; avoids render-blocking inline CSS).
 */

.section-partner-bubbles {
	--section-bg-top: #020202;
	--section-bg-mid: #050505;
	--section-bg-bottom: #040404;
	--text-white: #ffffff;
	--text-muted: rgba(255, 255, 255, 0.5);
	--accent-red: #e32323;
	--bubble-fill: #2c2c2e;
	--bubble-fill-inner: #252527;
	--bubble-border: #383838;
	--bubble-border-soft: rgba(255, 255, 255, 0.12);
	position: relative;
	width: 100%;
	min-height: auto;
	overflow: hidden;
	padding-bottom: 48px;
	padding-top: 80px;
	background:
		radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.04), transparent 34%),
		linear-gradient(180deg, var(--section-bg-top) 0%, var(--section-bg-mid) 45%, var(--section-bg-bottom) 100%);
	isolation: isolate;
	/* Skip layout/paint work until near viewport (Chrome; helps main-thread & LCP-adjacent work). */
	content-visibility: auto;
	contain-intrinsic-size: auto 880px;
}

.section-partner-bubbles__content {
	position: relative;
	z-index: 10;
	max-width: 979px;
	margin: 0 auto;
	text-align: center;
	padding: 40px 20px 0;
}

.section-partner-bubbles__title {
	font-family: 'owners', system-ui, sans-serif;
	font-size: clamp(42px, 6vw, 54px);
	line-height: 60px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--text-white);
}

.section-partner-bubbles__title-highlight {
	display: block;
	margin-top: 4px;
	color: var(--accent-red);
}

.section-partner-bubbles__description {
	max-width: 979px;
	margin: auto;
	font-weight: 400;
	padding-bottom: 0;
	line-height: 25px;
	color: #CFCFCF;
	font-family: 'owners', system-ui, sans-serif;
	font-size: 18px;
	letter-spacing: 8%;
	text-align: center;
	padding-top: 20px;
}

.section-partner-bubbles__stage {
	position: relative;
	width: 100%;
	height: 720px;
	margin-top: -64px;
	overflow: hidden;
	z-index: 2;
	pointer-events: none;
	contain: layout style;
}

.section-partner-bubbles__item {
	position: absolute;
	left: 0;
	top: 0;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 22px 18px 18px;
	transform-origin: center center;
	pointer-events: none;
	/* background-color: #303030; */
	background:
		radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0), transparent 52%),
		linear-gradient(165deg, var(--bubble-fill) 0%, var(--bubble-fill-inner) 100%);
	border: 7px solid var(--bubble-border);
	/* box-shadow:
		0 0 0 1px rgba(0, 0, 0, 0.45),
		0 0 0 5px var(--bubble-border-soft),
		inset 0 1px 0 rgba(255, 255, 255, 0.08),
		0 14px 28px rgba(0, 0, 0, 0.45);
	backface-visibility: hidden; */
}

.section-partner-bubbles__item::before {
	content: "";
	position: absolute;
	inset: 5px;
	border-radius: 50%;
	/* border: 1px solid rgba(255, 255, 255, 0.06); */
	pointer-events: none;
}

.section-partner-bubbles__item::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -14px;
	transform: translateX(-50%);
	width: 88px;
	height: 16px;
	border-radius: 50%;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55), transparent 70%);
	filter: blur(6px);
	pointer-events: none;
}

.section-partner-bubbles__icon {
	width: 94px;
	height: 94px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section-partner-bubbles__icon svg {
	width: 100%;
	height: 100%;
	stroke: #313131;
	fill: none;
}

.section-partner-bubbles__icon img {
	width: 80%;
	height: 100%;
	object-fit: contain;
	display: block;
	pointer-events: none;
}

.partner-bubbles__icon img {
	max-width: 100px;
	max-height: 100px;
	margin-bottom: 20px;
}

.section-partner-bubbles__label {
	font-family: 'owners', system-ui, sans-serif;
	font-size: clamp(15px, 2vw, 20px);
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #ffffff;
}

@media (max-width: 991px) {
	.section-partner-bubbles {
		padding-top: 64px;
		padding-bottom: 32px;
	}

	.section-partner-bubbles__content {
		padding: 24px 18px 0;
	}

	.section-partner-bubbles__title {
		font-size: clamp(34px, 8vw, 52px);
		line-height: 0.98;
	}

	.section-partner-bubbles__description {
		max-width: 640px;
		font-size: 15px;
		line-height: 1.55;
	}

	.section-partner-bubbles__stage {
		height: 610px;
		margin-top: -20px;
	}

	.section-partner-bubbles__icon {
		width: 80px;
		height: 80px;
	}

	.section-partner-bubbles__label {
		font-size: 15px;
		line-height: 1.35;
	}

	.partner-bubbles__label {
		font-size: 12px;
	}
}

@media (max-width: 767px) {
	.section-partner-bubbles {
		padding-top: 48px;
		padding-bottom: 24px;
	}

	.section-partner-bubbles__content {
		padding: 20px 16px 0;
	}

	.section-partner-bubbles__title {
		font-size: 27px;
		line-height: 27px;
		letter-spacing: 0.5px;
	}

	.section-partner-bubbles__description {
		margin-top: 10px;
		font-size: 14px;
		line-height: 1.5;
	}

	.section-partner-bubbles__stage {
		height: 460px;
		margin-top: -100px;
	}

	.section-partner-bubbles__item::after {
		width: 56px;
		height: 10px;
		bottom: -8px;
		filter: blur(4px);
	}

	.section-partner-bubbles__icon {
		width: 64px;
		height: 64px;
		margin-bottom: 10px;
	}

	.section-partner-bubbles__label {
		font-size: 13px;
		line-height: 1.3;
	}

	.section-home-services .section-home-services__track+.section-home-services__track {
		margin-top: 20px;
		padding-top: 20px;
	}
}

@media (max-width: 480px) {
	.section-partner-bubbles__icon {
		width: 54px;
		height: 54px;
		margin-bottom: 8px;
	}

	/* .section-partner-bubbles__stage {
		height: 390px;
	} */

	.section-partner-bubbles__label {
		font-size: 12px;
	}
}

/* ── Base & Reset ─────────────────────────────────────────────────────────── */

/* ::-webkit-scrollbar {
	width: 0;
} */

/* Mobile nav drawer fixes live in assets/css/child-components.css (all pages). */

/* Remove default padding so hero fills full viewport height.
   WordPress adds .home on the front page — .front-page is NOT a core class. */
.home .page-main,
body.home .page-main {
	padding-block: 0 !important;
	padding-top: 0 !important;
}

/* Front page: clip horizontal bleed (home services 200% headlines, 100vw rounding) without touching section overflow (sticky). */
body.home {
	overflow-x: hidden;
	max-width: 100%;
}

/* ── Hero + video scroll: one MP4, stacked (scroll section overlaps hero) ─── */

.section-hero-group {
	--cccom-hero-height: 136vh;
	--cccom-services-bg: #fffbf2;
	--cccom-services-warm: rgba(255, 201, 90, 0.7);
	position: relative;
	z-index: 0;
	/* Height comes from hero + .section-video-scroll only. Do not add min-height here —
	   that duplicated the overlapped hero band and left ~1 viewport of empty gap. */
}

.section-hero-group .section-hero {
	position: relative;
	z-index: 6;
	height: var(--cccom-hero-height);
	min-height: var(--cccom-hero-height);
	display: flex;
	align-items: flex-start;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	/*
	 * Default .section-hero uses overflow:hidden — that clips .section-hero__bg’s negative top
	 * and shows a hairline under the fixed header (esp. laptop widths). body.home
	 * already sets overflow-x: hidden for wide headlines.
	 */
	overflow: visible;
}

/* Headline sits under the fixed header — not vertically centered in the tall hero band. */
.section-hero-group .section-hero__content {
	margin-top: 0;
}

/* Pull scroll stage up under hero so the single sticky video sits behind hero copy. */
.section-hero-group .section-video-scroll {
	margin-top: calc(-1 * var(--cccom-hero-height));
	position: relative;
	z-index: 1;
	/*
	 * Scroll distance for p = 0→1 is (height − 100vh). 250vh → ~150vh scroll (~1.5 screens);
	 * was 300vh (~200vh scroll) — felt like 3–4 gestures with the tall hero + track.
	 */
	height: 250vh;
}

/* Desktop / laptop — less cream gap after the settled video card (tablet/mobile unchanged) */
@media (min-width: 1200px) {
	.section-hero-group .section-video-scroll {
		height: 228vh;
	}

	.section-services {
		margin-top: -10vh;
		position: relative;
		z-index: 4;
	}
}
@media (min-width: 1600px) {
    .section-services {
        margin-top: -18vh;
        position: relative;
        z-index: 4;
    }
}
/* Tablet / small screens between mobile and desktop */
@media (min-width: 768px) and (max-width: 1199px) {
	.section-hero-group {
		--cccom-hero-height: 100vh;
		--cccom-hero-height: 100svh;
		width: 100%;
		max-width: 100%;
	}

	.section-hero-group .section-hero {
		height: var(--cccom-hero-height);
		min-height: var(--cccom-hero-height);
		align-items: flex-start;
		justify-content: center;
		width: 100%;
		padding-top: clamp(100px, 11vh, 132px);
		box-sizing: border-box;
	}

	.section-hero-group .section-hero__content {
		margin-top: 0;
		padding-top: 0;
		margin-left: auto;
		margin-right: auto;
		align-self: flex-start;
		width: 100%;
	}

	.section-hero-group .section-video-scroll {
		width: 100%;
		max-width: 100%;
		height: 115vh;
	}

	.section-video-scroll__stage {
		width: 100%;
		max-width: 100%;
		height: 100vh;
		height: 100svh;
	}

	.section-video-scroll__card-wrap {
		position: absolute;
		inset: 0;
		z-index: 5;
		display: flex;
		align-items: center;
		justify-content: center;
		pointer-events: none;
	}

	.section-video-scroll__card {
		width: min(calc(100vw - 48px), 700px);
		max-width: calc(100vw - 48px);
		aspect-ratio: 700 / 440;
		height: auto;
		max-height: calc(100vh - clamp(80px, 14vh, 140px));
		border-radius: 22px;
	}

	.section-hero-group .section-video-scroll__card video {
		object-position: center center;
	}

	.section-services {
		width: 100%;
		max-width: 100%;
		margin-top: -26vh;
		position: relative;
		z-index: 4;
		background: var(--cccom-services-bg, #fffbf2);
	}

	.section-services__wrap {
		width: min(100%, calc(100vw - 40px));
		margin-left: auto;
		margin-right: auto;
	}

	.section-services__headline {
		align-items: center;
		justify-content: center;
	}

	.section-services__fill-block--desktop .section-services__fill-line {
		font-size: clamp(20px, 2.4vw, 26px);
		line-height: 1.2;
	}

	.section-services__actions {
		justify-content: center;
		width: 100%;
	}
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */

.section-hero {
	position: relative;
	width: 100%;
	height: 68vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	/* Let the single scroll-stage video show through; .section-hero__bg supplies gradients. */
	background: transparent;
}

/* Bottom vignette (non–video-chain heroes): subtle blend; video chain uses ::after off. */
.section-hero::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: clamp(120px, 24vh, 280px);
	pointer-events: none;
	z-index: 3;
	background: linear-gradient(to bottom,
			rgba(5, 2, 2, 0) 0%,
			rgba(5, 2, 2, 0.05) 10%,
			rgba(5, 2, 2, 0.18) 26%,
			rgba(5, 2, 2, 0.38) 44%,
			rgba(5, 2, 2, 0.52) 56%,
			rgba(5, 2, 2, 0.45) 66%,
			rgba(5, 2, 2, 0.28) 78%,
			rgba(5, 2, 2, 0.12) 88%,
			rgba(5, 2, 2, 0.04) 95%,
			rgba(5, 2, 2, 0) 100%);
}

/* Video chain: single full-hero overlay in .section-hero__bg — no second strip here. */
.section-hero-group .section-hero::after {
	display: none;
}

/* Readability over the hero video (replaces static header image). */
.section-hero .section-hero__bg {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(105deg,
			rgba(5, 2, 2, 0.96) 0%,
			rgba(5, 2, 2, 0.88) 28%,
			rgba(5, 2, 2, 0.55) 48%,
			rgba(5, 2, 2, 0.18) 68%,
			rgba(5, 2, 2, 0.06) 100%),
		linear-gradient(to bottom,
			rgba(5, 2, 2, 0.42) 0%,
			transparent 14%,
			transparent 62%,
			rgba(5, 2, 2, 0.2) 82%,
			rgba(5, 2, 2, 0.28) 100%);
}

.section-hero .section-hero__bg::after {
	display: none;
}

/*
 * Hero video scrim: solid dark over nav + headline, then a long eased fade into a
 * dimmed video band (no hard horizontal cut).
 */
/*
 * Pull the scrim above the hero box so it meets the fixed header — avoids a clipped
 * hairline when overflow would cut a shallow negative top (see .section-hero overflow).
 */
.section-hero-group .section-hero .section-hero__bg {
	inset: auto;
	top: -12px;
	left: 0;
	right: 0;
	bottom: 0;
	height: auto;
	min-height: calc(100% + 12px);
	opacity: 1;
	transition: opacity 0.22s ease-out;
	background-image: linear-gradient(to bottom,
			rgb(5, 2, 2) 0%,
			rgb(5, 2, 2) 34%,
			rgba(5, 2, 2, 0.97) 38%,
			rgba(5, 2, 2, 0.9) 42%,
			rgba(5, 2, 2, 0.88) 46%,
			rgba(5, 2, 2, 0.83) 50%,
			rgba(5, 2, 2, 0.73) 54%,
			rgba(5, 2, 2, 0.65) 58%,
			rgba(5, 2, 2, 0.61) 64%,
			rgba(5, 2, 2, 0.57) 72%,
			rgba(5, 2, 2, 0.53) 82%,
			rgba(5, 2, 2, 0.5) 100%);
}

@media (min-width: 1200px) {
	.section-hero-group .section-hero .section-hero__bg {
		background-image: linear-gradient(to bottom,
				rgb(5, 2, 2) 0%,
				rgb(5, 2, 2) 42%,
				rgba(5, 2, 2, 0.97) 46%,
				rgba(5, 2, 2, 0.9) 49%,
				rgba(5, 2, 2, 0.88) 52%,
				rgba(5, 2, 2, 0.83) 56%,
				rgba(5, 2, 2, 0.73) 60%,
				rgba(5, 2, 2, 0.65) 64%,
				rgba(5, 2, 2, 0.61) 70%,
				rgba(5, 2, 2, 0.57) 78%,
				rgba(5, 2, 2, 0.53) 88%,
				rgba(5, 2, 2, 0.5) 100%);
	}
}

.streak {
	position: absolute;
	border-radius: 50%;
	filter: blur(55px);
	animation: flicker 6s ease-in-out infinite;
}

.s1 {
	width: 600px;
	height: 220px;
	top: 5%;
	right: 5%;
	background: radial-gradient(ellipse, rgba(255, 90, 0, 0.45), transparent 70%);
	transform: rotate(-22deg);
	animation-duration: 7s;
}

.s2 {
	width: 400px;
	height: 160px;
	top: 25%;
	right: 18%;
	background: radial-gradient(ellipse, rgba(220, 35, 0, 0.40), transparent 70%);
	transform: rotate(-38deg);
	animation-delay: 1.5s;
	animation-duration: 5s;
}

.s3 {
	width: 320px;
	height: 130px;
	top: 55%;
	right: 3%;
	background: radial-gradient(ellipse, rgba(200, 55, 10, 0.35), transparent 70%);
	transform: rotate(-18deg);
	animation-delay: 3s;
	animation-duration: 8s;
}

.s4 {
	width: 450px;
	height: 190px;
	top: 2%;
	left: 28%;
	background: radial-gradient(ellipse, rgba(170, 20, 0, 0.28), transparent 70%);
	transform: rotate(12deg);
	animation-delay: 0.8s;
	animation-duration: 6s;
}

@keyframes flicker {

	0%,
	100% {
		opacity: 0.2;
	}

	30% {
		opacity: 0.75;
	}

	60% {
		opacity: 0.4;
	}

	80% {
		opacity: 0.65;
	}
}

.hero-art {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 90%;
	width: 48%;
	opacity: 0.4;
	background: linear-gradient(130deg, #c01010 0%, #ff5500 35%, #7a0000 75%);
	clip-path: polygon(28% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-art::after {
	content: '';
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg,
			transparent,
			transparent 14px,
			rgba(0, 0, 0, 0.18) 14px,
			rgba(0, 0, 0, 0.18) 15px);
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(to right, rgba(10, 4, 4, 0.88) 30%, rgba(10, 4, 4, 0.35) 65%, rgba(10, 4, 4, 0.60) 100%),
		linear-gradient(to bottom, rgba(10, 4, 4, 0.25) 0%, transparent 15%, transparent 82%, rgba(10, 4, 4, 0.55) 100%);
}

.section-hero__content {
	position: relative;
	z-index: 5;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	width: min(92vw, 980px);
	max-width: 100%;
	padding-inline: 20px;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
	/* Nudge up slightly to account for fixed 68 px nav so text reads as
	   visually centered in the visible viewport area */
	margin-top: -68px;
	animation: fadeUp 1s ease both;
}

@keyframes fadeUp {
	from {
		opacity: 0;
		transform: translateY(28px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.section-hero__headline {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	width: 100%;
	line-height: 1;
	text-align: center;
	position: relative;
}

.section-hero__headline .section-hero__tag,
.section-hero__headline .section-hero__title {
	display: block;
	width: auto;
	max-width: 100%;
	margin-inline: auto;
	box-sizing: border-box;
}

.section-hero__tag {
	font-family: 'owners', sans-serif;
	font-size: clamp(28px, 7vw, 94px);
	font-weight: 500;
	letter-spacing: clamp(2px, 0.8vw, 5px);
	text-transform: uppercase;
	color: var(--white);
	line-height: 85px;
	text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
	animation: fadeUp 0.9s ease 0.1s both;
	padding-bottom: 0;
	margin: 0;
}

.section-hero__title {
	font-family: 'owners', sans-serif;
	font-size: clamp(52px, 13vw, 144px);
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #D32323;
	line-height: 0.96;
	text-shadow: 0 0 100px rgba(211, 35, 35, 0.5), 0 4px 40px rgba(0, 0, 0, 0.8);
	animation: fadeUp 0.9s ease 0.25s both;
	margin: 0;
	position: relative;
	z-index: 4;
}

/* AI pill not in current Figma hero frames */
.section-hero__content .section-hero__highlight-wrap {
	display: none;
}

/* iPad Air portrait ~820px wide → this band. Landscape ~1180px → 1025–1366 + 992–1440 below.
   768–833px only: iPad Mini portrait — not iPad Pro (834px+). */
@media (min-width: 768px) and (max-width: 833px) {
	.section-hero {
		min-height: 0;
		align-items: flex-start;
		justify-content: center;
	}

	.section-hero-group .section-video-scroll__card video {
		object-position: center center;
	}

	.section-hero__content {
		width: min(88vw, 520px);
		max-width: 100%;
		padding-inline: clamp(16px, 3vw, 24px);
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
		padding-top: 0;
		align-items: center;
		overflow: visible;
		box-sizing: border-box;
	}

	.section-hero__tag {
		font-size: clamp(44px, 5.2vw, 54px);
		line-height: 1.02;
		letter-spacing: 3px;
		max-width: none;
		margin-inline: auto;
		text-align: center;
		padding-inline: 0;
		white-space: nowrap;
	}

	.section-hero__title {
		font-size: clamp(48px, 6.5vw, 80px);
		line-height: 0.92;
		letter-spacing: 2px;
		max-width: 100%;
		margin-top: clamp(12px, 2vw, 24px);
		margin-inline: auto;
		text-align: center;
		padding-inline: 0;
		white-space: nowrap;
		overflow-wrap: normal;
		word-break: normal;
		font-weight: 900;
	}
}

@media (min-width: 834px) and (max-width: 1024px) {
	.section-hero {
		min-height: 0;
		align-items: flex-start;
		justify-content: center;
	}

	.section-hero-group .section-video-scroll__card video {
		object-position: center center;
	}

	.section-hero__content {
		width: min(88vw, 640px);
		max-width: 100%;
		padding-inline: clamp(16px, 3vw, 24px);
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
		padding-top: 0;
		align-items: center;
		overflow: visible;
		box-sizing: border-box;
	}

	.section-hero__tag {
		font-size: clamp(50px, 5.4vw, 62px);
		line-height: 1.02;
		letter-spacing: 3px;
		max-width: none;
		margin-inline: auto;
		text-align: center;
		padding-inline: 0;
		white-space: nowrap;
	}

	.section-hero__title {
		font-size: clamp(52px, 6.8vw, 96px);
		line-height: 0.92;
		letter-spacing: 2px;
		max-width: 100%;
		margin-top: clamp(12px, 2vw, 24px);
		margin-inline: auto;
		text-align: center;
		padding-inline: 0;
		white-space: nowrap;
		overflow-wrap: normal;
		word-break: normal;
		font-weight: 900;
	}
}

/* Tablet landscape only — laptops use 1200–1440 rules below */
@media (min-width: 1025px) and (max-width: 1199px) {
	.section-hero {
		min-height: auto;
		align-items: flex-start;
	}

	.section-hero-group .section-video-scroll__card video {
		object-position: 62% center;
	}

	.section-hero__content {
		width: min(90vw, 780px);
		padding-inline: 0;
		margin-top: 0;
		padding-top: clamp(124px, 12vh, 156px);
		align-items: center;
		overflow: visible;
	}

	.section-hero__tag {
		font-size: clamp(48px, 4.8vw, 68px);
		line-height: 0.98;
		letter-spacing: 3px;
		max-width: 100%;
		margin-inline: auto;
		text-align: center;
		padding-inline: 0;
		white-space: nowrap;
	}

	.section-hero__title {
		font-size: clamp(64px, 6.6vw, 112px);
		line-height: 0.88;
		letter-spacing: 2px;
		max-width: 100%;
		margin-top: clamp(24px, 3vw, 48px);
		margin-inline: auto;
		text-align: center;
		padding-inline: 0;
		white-space: nowrap;
		overflow-wrap: normal;
		word-break: normal;
		font-weight: 900;
	}
}

/* Laptops / small desktops — 1200px+ only; tablets use 768–1199 rules above */
@media (min-width: 1200px) and (max-width: 1440px) {

	/* Match negative margin on .section-video-scroll to hero band height (doubled vs former 65vh). */
	.section-hero-group {
		--cccom-hero-height: 130vh;
	}

	.section-hero-group .section-hero {
		align-items: flex-start;
		justify-content: center;
		width: 100%;
	}

	.section-hero {
		align-items: flex-start;
		justify-content: center;
		height: 65vh;
		min-height: 0;
	}

	/*
	 * Breathing room around the sticky video so “TRANSFORMATION” / lower copy are not
	 * visually crushed against the card edges (section-video-scroll__card-wrap is full-bleed by default).
	 */
	.section-hero-group .section-video-scroll__card-wrap {
		padding-block: clamp(40px, 8vh, 104px);
		box-sizing: border-box;
	}

	.section-hero-group .section-video-scroll__card {
		max-height: calc(100vh - clamp(112px, 18vh, 220px));
	}

	.section-hero-group .section-video-scroll__card video {
		object-position: center center;
	}

	.section-hero-group .section-hero__content {
		margin-top: 0;
		padding-top: clamp(148px, 12vh, 220px);
		align-self: flex-start;
	}

	.section-hero__content {
		width: auto;
		padding-inline: 18px;
		margin-top: 0;
		margin-left: auto;
		margin-right: auto;
		padding-top: 0;
	}

	/* Figma laptop: tag 78px / 85px lh, title 85px / weight 900 */
	.section-hero__tag {
		max-width: 100%;
		width: auto;
		white-space: nowrap;
		font-size: 78px;
		font-weight: 500;
		letter-spacing: clamp(1px, 0.55vw, 4px);
		line-height: 85px;
	}

	.section-hero__title {
		text-align: center;
		white-space: nowrap;
		font-size: 85px;
		font-weight: 900;
		line-height: 0.96;
		letter-spacing: 4px;
		max-width: 100%;
		width: auto;
		margin: 0;
	}

	.section-services__headline {
		font-size: clamp(44px, 3.4vw, 52px);
		margin-bottom: 28px;
		line-height: 1.05;
	}

	.section-services__fill-line {
		font-size: clamp(20px, 1.55vw, 24px);
		line-height: 1.25;
	}

	.section-services__actions {
		margin-top: 36px;
	}
}

@media (min-width: 1441px) {
	.section-hero {
		justify-content: center;
	}

	.section-hero-group .section-hero {
		justify-content: center;
		width: 100%;
	}

	.section-hero-group .section-hero__content {
		padding-top: 247px;
		margin-left: auto;
		margin-right: auto;
		width: 100%;
		align-self: flex-start;
	}

	.section-hero__content {
		width: min(92vw, 1180px);
		margin-left: auto;
		margin-right: auto;
	}

	.section-hero__tag {
		max-width: 100%;
		width: auto;
		white-space: nowrap;
		font-size: 94px;
		line-height: 85px;
		letter-spacing: clamp(2px, 0.75vw, 5px);
	}

	body.home .cc-homepage .section-hero__title {
		font-family: 'owners', sans-serif;
		font-weight: 900;
		letter-spacing: 6px;
		text-transform: uppercase;
		color: #d32323;
		line-height: 0.96;
		margin-top: 5px;
		text-align: center;
		white-space: nowrap;
		max-width: 100%;
		width: auto;
	}


}

.section-hero__br-mobile {
	display: none;
}

@media (max-width: 767px) {
	.section-hero__br-mobile {
		display: block;
	}
}

@media (min-width: 768px) {
	.section-hero-group .section-hero__headline .section-hero__tag {
		white-space: nowrap;
		text-align: center;
	}

	.section-hero-group .section-hero__headline .section-hero__title {
		white-space: nowrap;
		margin-top: 0;
		text-align: center;
		max-width: none;
	}
}

@media (max-width: 767px) {
	.section-hero-group {
		--cccom-hero-height: 100svh;
		width: 100%;
		max-width: 100%;
		overflow-x: clip;
	}

	.section-hero-group .section-hero {
		height: var(--cccom-hero-height);
		min-height: 100svh;
		width: 100%;
		max-width: 100%;
		justify-content: center;
		align-items: flex-start;
		padding-top: 0;
		box-sizing: border-box;
		overflow-x: clip;
	}

	.section-hero-group .section-video-scroll {
		width: 100%;
		max-width: 100%;
	}

	.section-video-scroll__stage {
		width: 100%;
		max-width: 100%;
	}

	.section-hero {
		width: 100%;
		max-width: 100%;
		height: 100svh;
		min-height: 100svh;
		align-items: flex-start;
		justify-content: center;
		overflow-x: clip;
	}

	.section-hero-group .section-hero .section-hero__bg {
		background-image: linear-gradient(to bottom,
				rgb(5, 2, 2) 0%,
				rgb(5, 2, 2) 32%,
				rgba(5, 2, 2, 0.96) 36%,
				rgba(5, 2, 2, 0.88) 40%,
				rgba(5, 2, 2, 0.84) 44%,
				rgba(5, 2, 2, 0.79) 48%,
				rgba(5, 2, 2, 0.69) 52%,
				rgba(5, 2, 2, 0.63) 56%,
				rgba(5, 2, 2, 0.59) 62%,
				rgba(5, 2, 2, 0.55) 72%,
				rgba(5, 2, 2, 0.51) 100%);
	}

	.section-hero::after {
		height: clamp(84px, 16vh, 140px);
	}

	.section-hero-group .section-video-scroll__card video {
		object-position: center center;
	}

	.section-hero__content {
		width: 100%;
		max-width: min(92vw, 360px);
		padding-inline: 0;
		padding-top: 190px;
		margin-top: 0;
		margin-inline: auto;
		align-items: center;
		align-self: flex-start;
		overflow-x: clip;
		box-sizing: border-box;
	}

	.section-hero__headline {
		width: 100%;
		max-width: 100%;
		align-items: center;
		overflow-x: clip;
	}

	.section-hero__tag {
		font-size: 52px;
		font-weight: 500;
		line-height: 48px;
		text-align: center;
		text-transform: uppercase;
		padding-inline: 0;
		margin-inline: auto;
		letter-spacing: 3px;
		width: min(92vw, 290px);
		max-width: 290px;
		display: block;
	}

	.section-video-scroll__card-wrap {
		position: absolute;
		inset: 0;
		z-index: 5;
		display: flex;
		align-items: center !important;
		justify-content: center;
		pointer-events: none;
	}

	.section-hero__title {
		font-size: 58.95px;
		line-height: 51.87px;
		letter-spacing: 2px;
		width: min(92vw, 349px);
		max-width: 8.4ch;
		text-align: center;
		padding-inline: 0;
		margin: 30px auto 0;
		font-weight: 900;
		white-space: normal;
		display: block;
		overflow-wrap: anywhere;
		word-break: break-word;
	}

	.section-hero__headline .section-hero__tag {
		width: min(92vw, 290px);
		max-width: 290px;
		margin-inline: auto;
	}

	.section-hero__headline .section-hero__title {
		width: min(92vw, 349px);
		max-width: 8.4ch;
		margin-inline: auto;
	}
}

/* ── Video Scroll Section ─────────────────────────────────────────────────── */

/*
 * Video scroll: progress runs while this block scrolls through the viewport.
 * Scroll distance ≈ height − 100vh. Keep height modest so the white gap before
 * services/text-fill is short (was 165vh — too much empty space).
 */
.section-video-scroll {
	height: 125vh;
	position: relative;
	margin: 0;
	padding: 0;
	background: var(--cccom-services-bg, #fffbf2);
}

@media (max-width: 767px) {
	.section-video-scroll {
		height: 162vh;
	}

	/* Shorter scrub track — less empty white below the settled video card */
	.section-hero-group .section-video-scroll {
		height: 162vh;
	}

	/* Pull services up so it peeks below the video stage while sticky is active */
	.section-services {
		margin-top: -26vh;
		position: relative;
		z-index: 4;
	}

	.section-video-scroll__stage {
		height: 100svh;
		height: 100dvh;
	}

	.section-video-scroll__card {
		width: min(calc(100vw - 32px), 360px);
		max-width: calc(100vw - 32px);
		aspect-ratio: 700 / 440;
		height: auto;
		max-height: min(38svh, 240px);
		border-radius: 20px;
	}

	.section-video-scroll__hint {
		bottom: 24px;
	}

	.section-video-scroll__label {
		bottom: 22px;
		font-size: clamp(15px, 4.6vw, 22px);
	}

	.section-video-scroll__stage::before {
		height: clamp(120px, 24vh, 220px);
	}

	.section-video-scroll__stage::after {
		width: min(52vw, 280px);
		height: min(24vh, 150px);
		opacity: calc(var(--stage-corner-opacity, 0) * 0.22);
	}
}

.section-video-scroll__stage {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	/* Driven by custom-sections.js from scroll progress p (1 = top, 0 = scrolled in). */
	--stage-blend-opacity: 1;
	/* 0 until JS: corner wash appears only after scroll reveals white around the video */
	--stage-corner-opacity: 0;
}

/*
 * Hero → video blend. z-index above .section-video-scroll__card-wrap (5) so it applies over fullscreen video.
 * Tall band + many stops (ease-out style: slow fade in the lower two-thirds) avoids a
 * visible “step” where opacity hits zero.
 * Opacity is tied to scroll: hidden while animating the card, restored when scrolling back.
 */
.section-video-scroll__stage::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: clamp(220px, 48vh, 520px);
	pointer-events: none;
	z-index: 8;
	opacity: var(--stage-blend-opacity, 1);
	background: linear-gradient(to bottom,
			rgb(5, 2, 2) 0%,
			rgba(5, 2, 2, 0.97) 4%,
			rgba(5, 2, 2, 0.9) 9%,
			rgba(5, 2, 2, 0.78) 16%,
			rgba(5, 2, 2, 0.62) 25%,
			rgba(5, 2, 2, 0.46) 36%,
			rgba(5, 2, 2, 0.32) 48%,
			rgba(5, 2, 2, 0.2) 60%,
			rgba(5, 2, 2, 0.12) 71%,
			rgba(5, 2, 2, 0.065) 80%,
			rgba(5, 2, 2, 0.03) 88%,
			rgba(5, 2, 2, 0.012) 94%,
			rgba(5, 2, 2, 0.004) 98%,
			rgba(5, 2, 2, 0) 100%);
}

/*
 * Home hero + video: do not paint .section-video-scroll__stage::before — sticky is viewport-pinned,
 * so this gradient would stay at the top of the screen while scrolling. Readability
 * scrim lives only on .section-hero .section-hero__bg (scrolls away with the hero).
 */
.section-hero-group .section-video-scroll__stage::before {
	display: none;
}

/*
 * Hero + video chain: full-viewport warm wash (base ::after is a small top-right patch).
 * Spreads the same palette across the whole sticky stage so the scroll overlay reads fullscreen.
 */
.section-hero-group .section-video-scroll__stage::after {
	inset: 0;
	width: auto;
	height: auto;
	max-width: none;
	max-height: none;
	opacity: calc(var(--stage-corner-opacity, 0) * 0.38);
	background: radial-gradient(ellipse 140% 100% at 100% 0%,
			rgba(255, 201, 90, 0.5) 0%,
			rgba(255, 201, 90, 0.28) 32%,
			rgba(255, 201, 90, 0.14) 52%,
			rgba(255, 201, 90, 0.06) 72%,
			rgba(255, 201, 90, 0.02) 86%,
			transparent 100%);
}

.section-video-scroll__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: var(--stage-bg-opacity, 0);
	background-color: var(--cccom-services-bg, #fffbf2);
	background-image: radial-gradient(ellipse 135% 100% at 100% 0%,
			rgba(255, 201, 90, 0.38) 0%,
			rgba(255, 201, 90, 0.16) 32%,
			rgba(255, 201, 90, 0.06) 56%,
			transparent 78%);
}

/*
 * Warm grading: viewport top-right — matches services .section-services wash (#FFC95AB2 spread).
 * z-index 9 — above video (5) and hero strip (8). JS drives --stage-corner-opacity; ×0.7 cap.
 */
.section-video-scroll__stage::after {
	content: '';
	position: absolute;
	top: env(safe-area-inset-top, 0);
	right: env(safe-area-inset-right, 0);
	width: min(96vw, 900px);
	height: min(72vh, 620px);
	pointer-events: none;
	z-index: 9;
	opacity: calc(var(--stage-corner-opacity, 0) * 0.45);
	background: radial-gradient(ellipse 120% 110% at 100% 0%,
			rgba(255, 201, 90, 0.46) 0%,
			rgba(255, 201, 90, 0.24) 28%,
			rgba(255, 201, 90, 0.1) 52%,
			rgba(255, 201, 90, 0.04) 68%,
			transparent 82%);
}

.section-video-scroll__card-wrap {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.section-video-scroll__card {
	width: min(700px, calc(100vw - 48px));
	max-width: calc(100vw - 48px);
	aspect-ratio: 700 / 440;
	height: auto;
	max-height: calc(100vh - 56px);
	border-radius: 24px;
	overflow: hidden;
	transform-origin: center center;
	will-change: transform, border-radius;
	backface-visibility: hidden;
	transform: translateZ(0);
	position: relative;
	box-shadow: none;
	background: #000 url(../images/homepage/videoplaceholder.jpg) center / cover no-repeat;
}

.section-video-scroll__card.section-video-scroll__card--error {
	background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.section-video-scroll__card video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 62% center;
	z-index: 1;
	pointer-events: none;
}

.section-video-scroll__card video::-webkit-media-controls {
	display: none !important;
}

.section-video-scroll__card video::-webkit-media-controls-enclosure {
	display: none !important;
}

.section-video-scroll__card video::-webkit-media-controls-panel {
	display: none !important;
}

.section-video-scroll__hint {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	opacity: 1;
	transition: opacity 0.3s;
}

.section-video-scroll__hint span {
	font-family: "owners", sans-serif;
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.4);
}

.section-video-scroll__arrow {
	width: 20px;
	height: 20px;
	border-right: 2px solid rgba(255, 255, 255, 0.3);
	border-bottom: 2px solid rgba(255, 255, 255, 0.3);
	transform: rotate(45deg);
	animation: arrowBounce 1.8s ease-in-out infinite;
}

@keyframes arrowBounce {

	0%,
	100% {
		transform: rotate(45deg) translateY(0);
	}

	50% {
		transform: rotate(45deg) translateY(5px);
	}
}

.section-video-scroll__label {
	position: absolute;
	bottom: 56px;
	left: 50%;
	transform: translateX(-50%) translateY(10px);
	z-index: 10;
	opacity: 0;
	white-space: nowrap;
	font-family: 'owners', system-ui, sans-serif;
	font-size: clamp(18px, 2.8vw, 34px);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: white;
	pointer-events: none;
	text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

/* ── Shared Section Typography ────────────────────────────────────────────── */

.section-eyebrow {
	font-family: 'owners', system-ui, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 20px;
}

.section-title {
	font-family: 'owners', system-ui, sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--white);
	text-align: center;
	line-height: 1;
}

.section-title span {
	color: var(--red);
}

/* ── Services Section ─────────────────────────────────────────────────────── */

.services-section {
	padding: 120px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.services-section .section-title {
	font-size: clamp(40px, 6vw, 80px);
	margin-bottom: 16px;
}

.section-sub {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
	max-width: 500px;
	line-height: 1.7;
	margin-bottom: 72px;
}

.cards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	width: 100%;
	max-width: 1100px;
}

.service-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 16px;
	padding: 40px 32px;
	transition: border-color 0.3s, transform 0.3s, background 0.3s;
	cursor: default;
}

.service-card:hover {
	border-color: rgba(232, 25, 44, 0.4);
	background: rgba(232, 25, 44, 0.04);
	transform: translateY(-4px);
}

.card-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(232, 25, 44, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	margin-bottom: 24px;
}

.card-title {
	font-family: 'owners', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--white);
	margin-bottom: 12px;
}

.card-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.75;
}

.card-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: 24px;
	font-size: 13px;
	font-weight: 600;
	color: var(--red);
	text-decoration: none;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.card-link::after {
	content: "→";
	transition: transform 0.2s;
}

.service-card:hover .card-link::after {
	transform: translateX(4px);
}

/* ── Stats Section ────────────────────────────────────────────────────────── */

.stats-section {
	padding: 100px 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.stats-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 70% 50% at 50% 50%, rgba(232, 25, 44, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.stats-section .section-title {
	font-size: clamp(36px, 5vw, 68px);
	margin-bottom: 80px;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2px;
	width: 100%;
	max-width: 1100px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 20px;
	overflow: hidden;
}

.stat-item {
	padding: 52px 36px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(255, 255, 255, 0.02);
	transition: background 0.3s;
}

.stat-item:last-child {
	border-right: none;
}

.stat-item:hover {
	background: rgba(232, 25, 44, 0.05);
}

.stat-num {
	font-family: 'owners', system-ui, sans-serif;
	font-size: clamp(48px, 5vw, 72px);
	font-weight: 700;
	color: var(--red);
	line-height: 1;
	letter-spacing: -0.02em;
}

.stat-label {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 10px;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.clients-strip {
	margin-top: 80px;
	width: 100%;
	max-width: 1100px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 64px;
	opacity: 0.35;
	flex-wrap: wrap;
}

.client-name {
	font-family: 'owners', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--white);
}

:root {
	--color-primary: #1a1a2e;
	--color-accent: #0f3460;
	--color-highlight: #e94560;
}





html {
	font-size: 16px;
}

/* Theme footer is outside .cc-homepage — undo global dark input styles for newsletter signup */
.main-footer .footer-newsletter-slot .email-flex-box input,
.main-footer .footer-newsletter-slot .email-flex-box input[type="email"] {
	background-color: #ffffff !important;
	background: #ffffff !important;
	border: 1px solid #eeeeee !important;
	border-radius: 2px !important;
	color: #111111 !important;
	font-family: 'Inter', sans-serif !important;
	font-size: 14px !important;
	box-shadow: none !important;
}

.main-footer .footer-newsletter-slot .email-flex-box input::placeholder,
.main-footer .footer-newsletter-slot .email-flex-box input[type="email"]::placeholder {
	color: #555555 !important;
	font-family: 'Inter', sans-serif !important;
	opacity: 1 !important;
}
