/* ==========================================================================
   Oakstone Accounting — Main Stylesheet
   ========================================================================== */

:root {
	--color-green: #3a8f4a;
	--color-green-dark: #2d7340;
	--color-green-light: #e8f5ea;
	--color-navy: #0f2d4a;
	--color-navy-dark: #0a1f33;
	--color-navy-mid: #1a3d5c;
	--color-white: #ffffff;
	--color-gray-50: #f7f9fb;
	--color-gray-100: #eef2f6;
	--color-gray-200: #dde4ec;
	--color-gray-400: #94a3b8;
	--color-gray-600: #64748b;
	--color-gray-800: #334155;
	--color-text: #1e293b;
	--font-serif: 'Playfair Display', Georgia, serif;
	--font-sans: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--container: 1200px;
	--header-height: 80px;
	--radius: 12px;
	--radius-sm: 8px;
	--shadow: 0 4px 24px rgba(15, 45, 74, 0.08);
	--shadow-lg: 0 12px 40px rgba(15, 45, 74, 0.12);
	--transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	line-height: 1.65;
	color: var(--color-text);
	background: var(--color-white);
	-webkit-font-smoothing: antialiased;
}

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

a { color: var(--color-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-green-dark); }

h1, h2, h3, h4 {
	font-family: var(--font-serif);
	color: var(--color-navy);
	line-height: 1.25;
	margin: 0 0 0.75rem;
}

p { margin: 0 0 1rem; }

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

.text-green { color: var(--color-green); }

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.75rem;
	font-family: var(--font-sans);
	font-size: 0.9375rem;
	font-weight: 600;
	border-radius: var(--radius-sm);
	border: 2px solid transparent;
	cursor: pointer;
	transition: all var(--transition);
	text-decoration: none;
	white-space: nowrap;
}

.btn--green { background: var(--color-green); color: var(--color-white); border-color: var(--color-green); }
.btn--green:hover { background: var(--color-green-dark); border-color: var(--color-green-dark); color: var(--color-white); }

.btn--navy { background: var(--color-navy); color: var(--color-white); border-color: var(--color-navy); }
.btn--navy:hover { background: var(--color-navy-dark); border-color: var(--color-navy-dark); color: var(--color-white); }

.btn--outline { background: transparent; color: var(--color-green); border-color: var(--color-green); }
.btn--outline:hover { background: var(--color-green-light); color: var(--color-green-dark); }

.btn--white { background: var(--color-white); color: var(--color-green); border-color: var(--color-white); }
.btn--white:hover { background: var(--color-gray-100); color: var(--color-green-dark); }

.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--block { width: 100%; }

.link-arrow {
	font-weight: 600;
	color: var(--color-green);
	font-size: 0.9375rem;
}
.link-arrow:hover { color: var(--color-green-dark); }

/* Image placeholders */
.img-placeholder {
	background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-200) 100%);
	border: 2px dashed var(--color-gray-400);
	border-radius: var(--radius);
	overflow: hidden;
}

.img-placeholder__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem 1.5rem;
	height: 100%;
	min-height: inherit;
	color: var(--color-gray-600);
}

.img-placeholder__icon {
	width: 48px;
	height: 48px;
	margin-bottom: 0.75rem;
	opacity: 0.5;
}

.img-placeholder__label {
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--color-navy);
	margin-bottom: 0.25rem;
}

.img-placeholder__hint {
	font-size: 0.8125rem;
	color: var(--color-gray-400);
}

.img-placeholder--hero { min-height: 420px; border-radius: var(--radius); }
.img-placeholder--wide { min-height: 320px; }
.img-placeholder--card { min-height: 200px; }
.img-placeholder--square { aspect-ratio: 1; min-height: 280px; }
.img-placeholder--badge { min-height: 60px; min-width: 100px; border-radius: var(--radius-sm); }
.img-placeholder--badge .img-placeholder__inner { padding: 0.75rem; }
.img-placeholder--badge .img-placeholder__icon { width: 24px; height: 24px; margin-bottom: 0; }
.img-placeholder--badge .img-placeholder__label { font-size: 0.6875rem; }
.img-placeholder--badge .img-placeholder__hint { display: none; }
.img-placeholder--logo-sm { min-height: 40px; min-width: 80px; border: none; background: transparent; }
.img-placeholder--logo-sm .img-placeholder__inner { padding: 0.25rem; }
.img-placeholder--logo-sm .img-placeholder__icon { width: 28px; height: 28px; }

.hero__image,
.split-section__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-gray-200);
	height: var(--header-height);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--header-height);
	gap: 1rem;
}

.site-logo__img { height: 52px; width: auto; }
.custom-logo-link img { height: 52px; width: auto; }

.nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
}

.nav-toggle__bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--color-navy);
	border-radius: 2px;
	transition: var(--transition);
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu a {
	color: var(--color-navy);
	font-weight: 500;
	font-size: 0.9375rem;
	padding: 0.5rem 0.875rem;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
	text-decoration: none;
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a {
	color: var(--color-green);
}

.nav-menu .current-menu-item > a {
	box-shadow: inset 0 -2px 0 var(--color-green);
	border-radius: 0;
}

.nav-menu .sub-menu {
	display: none;
}

.header-cta { margin-left: 0.5rem; }

/* Hero */
.hero {
	padding: 4rem 0 3rem;
	background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
}

.hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.hero__title {
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 700;
	margin-bottom: 1.25rem;
}

.hero__lead {
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--color-navy);
	margin-bottom: 0.75rem;
	max-width: 520px;
}

.hero__subtitle {
	font-size: 1.0625rem;
	color: var(--color-gray-600);
	max-width: 520px;
	margin-bottom: 2rem;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero__proof {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	color: var(--color-gray-600);
}

.hero__stars { color: #f59e0b; letter-spacing: 2px; }
.hero__divider { color: var(--color-gray-200); }

.hero__visual { position: relative; }
.hero__visual .img-placeholder--hero,
.hero__visual .hero__image { min-height: 420px; }

/* Trust bar */
.trust-bar {
	padding: 1.5rem 0;
	background: var(--color-white);
	border-top: 1px solid var(--color-gray-200);
	border-bottom: 1px solid var(--color-gray-200);
}

.trust-bar__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-navy);
}

.trust-item__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	color: var(--color-green);
}

.trust-item__icon svg { width: 100%; height: 100%; }
.trust-item__icon--logo { width: 48px; height: 36px; }
.trust-item__icon--logo img { max-height: 36px; object-fit: contain; }

/* Sections */
.section { padding: 5rem 0; }
.section--alt { background: var(--color-gray-50); }
.section--dark { background: var(--color-navy); }
.section--services { background: var(--color-gray-50); }
.section--pricing { background: var(--color-gray-50); }
.section--page-header {
	padding: 4rem 0 3rem;
	background: linear-gradient(180deg, var(--color-gray-50) 0%, var(--color-white) 100%);
	text-align: center;
}

.section-label {
	text-transform: uppercase;
	letter-spacing: 0.12em;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--color-navy);
	margin-bottom: 0.75rem;
	text-align: center;
}

.section-title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	text-align: center;
	margin-bottom: 3rem;
}

.section-title--left { text-align: left; }
.section-title--light { color: var(--color-white); }

.page-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
}

.page-subtitle {
	font-size: 1.125rem;
	color: var(--color-gray-600);
	max-width: 640px;
	margin: 0 auto;
}

/* Cards grid */
.cards-grid {
	display: grid;
	gap: 2rem;
}

.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Service cards */
.service-card {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	padding: 2rem;
	box-shadow: var(--shadow);
	transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
}

.service-card--featured {
	border-color: var(--color-green);
	box-shadow: var(--shadow-lg);
	position: relative;
}

.service-card__badge {
	position: absolute;
	top: 1rem;
	right: 1rem;
	background: var(--color-green);
	color: var(--color-white);
	font-size: 0.6875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 0.25rem 0.625rem;
	border-radius: 999px;
}

.service-card__icon {
	width: 48px;
	height: 48px;
	color: var(--color-green);
	margin-bottom: 1.25rem;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card__title {
	font-size: 1.375rem;
	margin-bottom: 0.75rem;
}

.service-card__desc {
	color: var(--color-gray-600);
	font-size: 0.9375rem;
	margin-bottom: 1.25rem;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem;
}

.check-list li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	color: var(--color-gray-800);
}

.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-green);
	font-weight: 700;
}

/* Global Business Setup */
.section--global {
	background: var(--color-navy);
	color: var(--color-white);
}

.section--global .section-label {
	text-align: left;
	color: var(--color-green);
	margin-bottom: 0.75rem;
}

.section--global .section-title {
	text-align: left;
	margin-bottom: 1.25rem;
}

.global-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) 260px;
	gap: 2rem;
	align-items: center;
}

.global-grid__desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.0625rem;
	margin-bottom: 2rem;
	max-width: 520px;
}

.global-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem 1.25rem;
}

.global-feature {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-white);
}

.global-feature__icon {
	width: 36px;
	height: 36px;
	color: var(--color-green);
	flex-shrink: 0;
}

.global-feature__icon svg {
	width: 100%;
	height: 100%;
}

.global-grid__visual {
	display: flex;
	align-items: center;
	justify-content: center;
}

.global-grid__map,
.global-grid__visual .img-placeholder {
	width: 100%;
	max-height: 320px;
	object-fit: contain;
	border-radius: var(--radius);
}

.global-cta-card {
	background: var(--color-green);
	border-radius: var(--radius);
	padding: 2rem 1.5rem;
	text-align: center;
	align-self: center;
}

.global-cta-card h3 {
	color: var(--color-white);
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	line-height: 1.35;
}

/* Features (dark section) */
.features-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	text-align: center;
}

.features-grid--3 {
	grid-template-columns: repeat(3, 1fr);
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.feature-item p,
.feature-item h3 {
	color: var(--color-white);
	margin: 0;
}

.feature-item h3 {
	font-size: 1.125rem;
	margin-bottom: 0.5rem;
}

.feature-item p { font-size: 0.9375rem; opacity: 0.85; }

.feature-item__icon {
	width: 56px;
	height: 56px;
	margin: 0 auto 1rem;
	color: var(--color-green);
}

.feature-item__icon svg { width: 100%; height: 100%; }

/* Steps */
.steps-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
}

.steps-grid::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 20%;
	right: 20%;
	height: 2px;
	background: repeating-linear-gradient(90deg, var(--color-gray-200) 0, var(--color-gray-200) 8px, transparent 8px, transparent 16px);
	z-index: 0;
}

.step-card {
	text-align: center;
	position: relative;
	z-index: 1;
	padding: 1.5rem;
}

.step-card__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	color: var(--color-navy);
}

.step-card__icon svg { width: 100%; height: 100%; }

.step-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--color-green);
	color: var(--color-white);
	border-radius: 50%;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 0.75rem;
}

.step-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.step-card p {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
}

/* Pricing */
.pricing-card {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	padding: 2.5rem 2rem;
	text-align: center;
	position: relative;
	box-shadow: var(--shadow);
}

.pricing-card--featured {
	border-color: var(--color-green);
	box-shadow: var(--shadow-lg);
	transform: scale(1.03);
}

.pricing-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-green);
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 0.375rem 1rem;
	border-radius: 20px;
	white-space: nowrap;
}

.pricing-card__name {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.pricing-card__price { margin-bottom: 1.5rem; }

.pricing-card__amount {
	font-family: var(--font-serif);
	font-size: 2.75rem;
	font-weight: 700;
	color: var(--color-navy);
}

.pricing-card__period {
	font-size: 1rem;
	color: var(--color-gray-600);
}

.pricing-card__desc {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
	margin-bottom: 1.5rem;
}

.pricing-card .check-list { text-align: left; margin-bottom: 2rem; }

.pricing-note {
	text-align: center;
	margin-top: 3rem;
	color: var(--color-gray-600);
	font-size: 0.9375rem;
}

/* Value propositions */
.section--values {
	background: var(--color-white);
	padding-top: 4rem;
}

.section--values .section-title {
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3rem;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1.5rem;
}

.value-card {
	text-align: center;
	padding: 0.5rem;
}

.value-card__icon {
	width: 48px;
	height: 48px;
	margin: 0 auto 1rem;
	color: var(--color-green);
}

.value-card__icon svg { width: 100%; height: 100%; }

.value-card__title {
	font-family: var(--font-sans);
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.value-card p {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
	margin: 0;
	line-height: 1.55;
}

/* Why Oakstone + Key Services — stacked full width */
.section--why-services {
	padding: 0;
}

.why-services {
	display: flex;
	flex-direction: column;
}

.why-panel {
	background: var(--color-navy);
	padding: 4.5rem 0;
}

.why-panel__inner {
	max-width: 720px;
}

.why-panel .section-label--green {
	color: var(--color-green);
	letter-spacing: 0.04em;
}

.why-panel .section-title {
	max-width: 640px;
}

.why-panel__desc {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.0625rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	max-width: 560px;
}

.services-panel {
	background: var(--color-white);
	padding: 4.5rem 0;
	border-bottom: 1px solid var(--color-gray-200);
}

.services-panel .section-title {
	margin-bottom: 0.25rem;
}

.key-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.5rem 1.75rem;
	margin: 2rem 0 1.75rem;
}

.key-service {
	display: flex;
	align-items: center;
	gap: 0.875rem;
	padding: 1rem 0.75rem;
	color: var(--color-navy);
	font-weight: 600;
	font-size: 1rem;
	text-decoration: none;
	border-radius: var(--radius-sm);
	transition: background var(--transition), color var(--transition);
}

.key-service:hover {
	background: var(--color-gray-50);
	color: var(--color-green);
}

.key-service__icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	color: var(--color-green);
}

.key-service__icon svg { width: 100%; height: 100%; }

.services-panel__note {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
	margin: 0;
	max-width: 560px;
}

/* Who We Work With */
.section--industries {
	background: var(--color-green);
	padding: 0;
}

.industries-block {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 0;
	align-items: stretch;
	max-width: 1200px;
	padding: 0;
}

.industries-block__visual {
	min-height: 360px;
}

.industries-block__image,
.industries-block__visual .img-placeholder {
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
	border-radius: 0;
	box-shadow: none;
}

.industries-block__content {
	padding: 3.5rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.industry-icons {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	margin: 1.5rem 0 1.5rem;
}

.industry-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.625rem;
	text-align: center;
	color: var(--color-white);
	font-size: 0.8125rem;
	font-weight: 600;
}

.industry-icon__symbol {
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1.5px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	color: var(--color-white);
}

.industry-icon__symbol svg { width: 22px; height: 22px; }

.industries-block__note {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
	margin-bottom: 1.5rem;
	font-style: italic;
}

/* Our Promise */
.section--promise {
	background: var(--color-gray-50);
	padding: 2.5rem 0;
}

.promise-strip {
	display: grid;
	grid-template-columns: 1fr 1.4fr 1.4fr 1.6fr;
	gap: 1.5rem;
	align-items: center;
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	padding: 1.75rem 2rem;
}

.promise-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-right: 1rem;
	border-right: 1px solid var(--color-gray-200);
}

.promise-item:last-child {
	border-right: none;
	padding-right: 0;
}

.promise-item--brand {
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
}

.promise-item__icon {
	width: 28px;
	height: 28px;
	color: var(--color-green);
	flex-shrink: 0;
}

.promise-item__icon svg { width: 100%; height: 100%; }

.promise-item strong {
	font-size: 0.9375rem;
	color: var(--color-navy);
	line-height: 1.35;
}

.promise-item span {
	font-size: 0.875rem;
	color: var(--color-gray-600);
}

/* Industry page cards */
.industry-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.industry-card {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	padding: 2rem 1.75rem;
	transition: box-shadow var(--transition), border-color var(--transition);
}

.industry-card:hover {
	box-shadow: var(--shadow);
	border-color: var(--color-green-light);
}

.industry-card__icon {
	width: 40px;
	height: 40px;
	color: var(--color-green);
	margin-bottom: 1rem;
}

.industry-card__icon svg { width: 100%; height: 100%; }

.industry-card h3 {
	font-family: var(--font-sans);
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.industry-card p {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
	margin: 0;
}

.service-block {
	padding: 3.5rem 0;
	border-bottom: 1px solid var(--color-gray-100);
}

.service-block:last-of-type { border-bottom: none; }

.service-block__header {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1rem;
}

.service-block__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	color: var(--color-green);
}

.service-block__icon svg { width: 100%; height: 100%; }

/* CTA Banner */
.cta-banner {
	background: var(--color-green);
	padding: 3rem 0;
}

.cta-banner__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.cta-banner__content {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	flex: 1;
}

.cta-banner__icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	color: var(--color-white);
	opacity: 0.9;
}

.cta-banner__content p {
	color: var(--color-white);
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0;
}

/* Footer */
.site-footer {
	background: var(--color-navy-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 4rem 0 0;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1.2fr 1.2fr;
	gap: 2rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-partners {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin-top: 1.25rem;
}

.footer-partner-badge {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-white);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-sm);
	padding: 0.4rem 0.65rem;
}

.footer-logo img { height: 48px; width: auto; margin-bottom: 1rem; filter: brightness(1.1); }

.footer-tagline {
	font-size: 0.9375rem;
	line-height: 1.6;
	max-width: 260px;
}

.footer-heading {
	color: var(--color-white);
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 1.25rem;
}

.footer-links,
.footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li,
.footer-contact li { margin-bottom: 0.625rem; }

.footer-links a,
.footer-contact a {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9375rem;
	text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover { color: var(--color-white); }

.footer-social {
	display: flex;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	color: var(--color-white);
	font-size: 0.75rem;
	font-weight: 700;
	text-decoration: none;
	transition: all var(--transition);
}

.social-link:hover {
	background: var(--color-green);
	border-color: var(--color-green);
	color: var(--color-white);
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.5rem 0;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-copy {
	font-size: 0.8125rem;
	margin: 0;
	color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 0.8125rem;
}

.footer-legal a {
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
}

.footer-legal a:hover { color: var(--color-white); }

/* Split sections */
.split-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.split-section--reverse .split-section__content { order: 2; }
.split-section--reverse .split-section__visual { order: 1; }

/* Team cards */
.team-card { text-align: center; }

.team-card__photo {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 1.25rem;
	box-shadow: var(--shadow);
}

.team-card__photo img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.team-card__name {
	font-size: 1.25rem;
	margin-bottom: 0.25rem;
}

.team-card__role {
	color: var(--color-green);
	font-weight: 600;
	font-size: 0.9375rem;
}

/* Contact */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: start;
}

.contact-item {
	display: flex;
	gap: 1rem;
	margin-bottom: 2rem;
}

.contact-item__icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	color: var(--color-green);
}

.contact-item__icon svg { width: 100%; height: 100%; }

.contact-item h3 {
	font-family: var(--font-sans);
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.25rem;
}

.contact-item a { color: var(--color-navy); font-weight: 500; }
.contact-item a:hover { color: var(--color-green); }

.contact-map { margin-top: 2rem; }

.contact-form-wrap {
	background: var(--color-gray-50);
	border-radius: var(--radius);
	padding: 2.5rem;
	border: 1px solid var(--color-gray-200);
}

.form-row { margin-bottom: 1.25rem; }

.form-row label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	margin-bottom: 0.375rem;
	color: var(--color-navy);
}

.form-row input,
.form-row select,
.form-row textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-sm);
	font-family: var(--font-sans);
	font-size: 1rem;
	background: var(--color-white);
	transition: border-color var(--transition);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
	outline: none;
	border-color: var(--color-green);
	box-shadow: 0 0 0 3px var(--color-green-light);
}

.form-note {
	font-size: 0.8125rem;
	color: var(--color-gray-400);
	margin-top: 1rem;
	margin-bottom: 0;
}

/* Resources */
.resource-card__media {
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 1rem;
	box-shadow: var(--shadow);
}

.resource-card__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.resource-card__title {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-sm);
	margin-bottom: 0.75rem;
	padding: 0 1.25rem;
}

.faq-item summary {
	padding: 1.25rem 0;
	font-weight: 600;
	color: var(--color-navy);
	cursor: pointer;
	list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
	content: '+';
	float: right;
	font-size: 1.25rem;
	color: var(--color-green);
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
	padding-bottom: 1.25rem;
	color: var(--color-gray-600);
	font-size: 0.9375rem;
}

/* Blog */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.post-card {
	background: var(--color-white);
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--color-gray-200);
	box-shadow: var(--shadow);
}

.post-card__media { display: block; }
.post-card__image { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.post-card__body { padding: 1.5rem; }

.post-card__date {
	font-size: 0.8125rem;
	color: var(--color-gray-400);
}

.post-card__title {
	font-size: 1.125rem;
	margin: 0.5rem 0;
}

.post-card__title a { color: var(--color-navy); text-decoration: none; }
.post-card__title a:hover { color: var(--color-green); }

.post-card__excerpt {
	font-size: 0.9375rem;
	color: var(--color-gray-600);
}

.content-area { max-width: 800px; margin: 0 auto; }
.content-area h2 { margin-top: 2rem; }
.post-featured-image { margin-bottom: 2rem; border-radius: var(--radius); overflow: hidden; }

.pagination { margin-top: 3rem; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.pagination a, .pagination span {
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius-sm);
	text-decoration: none;
	color: var(--color-navy);
}
.pagination .current { background: var(--color-green); color: var(--color-white); border-color: var(--color-green); }

/* Responsive */
@media (max-width: 1024px) {
	.hero__grid,
	.split-section,
	.contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

	.split-section--reverse .split-section__content,
	.split-section--reverse .split-section__visual { order: unset; }

	.cards-grid--3,
	.cards-grid--4,
	.features-grid,
	.steps-grid,
	.posts-grid,
	.footer-grid,
	.industry-cards { grid-template-columns: repeat(2, 1fr); }

	.trust-bar__grid { grid-template-columns: repeat(3, 1fr); }

	.value-grid { grid-template-columns: repeat(3, 1fr); }

	.key-services-grid { grid-template-columns: repeat(2, 1fr); }

	.why-panel,
	.services-panel { padding: 3.5rem 0; }

	.industries-block { grid-template-columns: 1fr; }

	.industry-icons { grid-template-columns: repeat(3, 1fr); }

	.promise-strip { grid-template-columns: 1fr 1fr; }

	.promise-item { border-right: none; border-bottom: 1px solid var(--color-gray-200); padding: 0 0 1rem; }

	.promise-item:nth-child(3),
	.promise-item:nth-child(4) { border-bottom: none; padding-bottom: 0; }

	.pricing-card--featured { transform: none; }

	.steps-grid::before { display: none; }

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

	.global-cta-card {
		grid-column: 1 / -1;
		max-width: 420px;
		margin: 0 auto;
		width: 100%;
	}
}

/* Desktop nav — lives inside header row */
@media (min-width: 769px) {
	.site-header__inner {
		gap: 1.5rem;
	}

	.primary-nav {
		margin-top: 0;
		height: auto;
		max-width: none;
		margin-left: auto;
		margin-right: 0;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 1rem;
		position: relative;
		z-index: 1;
		background: transparent;
		transform: none;
		flex: 1;
	}

	.header-cta {
		white-space: nowrap;
	}
}

@media (max-width: 768px) {
	:root { --header-height: 70px; }

	.site-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.site-header__inner {
		position: relative;
		z-index: 1002;
	}

	.nav-toggle {
		display: flex;
		position: relative;
		z-index: 1003;
	}

	.primary-nav {
		margin-top: 0;
		position: fixed;
		top: var(--header-height);
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 1001;
		height: calc(100vh - var(--header-height));
		height: calc(100dvh - var(--header-height));
		max-width: none;
		margin-left: 0;
		margin-right: 0;
		padding: 1.5rem;
		background: var(--color-white);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 1rem;
		transform: translateX(100%);
		transition: transform var(--transition);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.primary-nav.is-open {
		transform: translateX(0);
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
	}

	.nav-menu a {
		display: block;
		padding: 0.875rem 1rem;
	}

	.header-cta {
		margin-left: 0;
		text-align: center;
	}

	.hero { padding: 2.5rem 0 2rem; }
	.section { padding: 3.5rem 0; }

	.hero__actions { flex-direction: column; }
	.hero__actions .btn { width: 100%; }

	.cards-grid--3,
	.cards-grid--4,
	.features-grid,
	.steps-grid,
	.posts-grid,
	.trust-bar__grid,
	.footer-grid,
	.value-grid,
	.industry-cards,
	.industry-icons,
	.key-services-grid,
	.promise-strip { grid-template-columns: 1fr; }

	.industries-block__content { padding: 2.5rem 1.5rem; }

	.why-panel,
	.services-panel { padding: 3rem 0; }

	.promise-item { border-bottom: 1px solid var(--color-gray-200); padding-bottom: 1rem; }

	.promise-item:last-child { border-bottom: none; padding-bottom: 0; }

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

	.global-cta-card {
		max-width: none;
	}

	.cta-banner__inner { flex-direction: column; text-align: center; }
	.cta-banner__content { flex-direction: column; align-items: center; }

	.footer-bottom { flex-direction: column; text-align: center; }

	.nav-toggle.is-active .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.nav-toggle.is-active .nav-toggle__bar:nth-child(2) { opacity: 0; }
	.nav-toggle.is-active .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 480px) {
	.hero__title { font-size: 2rem; }
	.container { padding: 0 1.25rem; }
}