/* ============================================================
COOPERDYNE TECH — MAIN STYLESHEET
Brand: Black #000 | White #FFF | Dark Gray #333
Type: Arial Black (headlines) / Arial (body)
============================================================ */

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
	font-family: Arial, Helvetica, sans-serif;
	color: #333333;
	background: #ffffff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ---- VARIABLES ---- */
:root {
	--black:       #000000;
	--white:       #ffffff;
	--dark-gray:   #333333;
	--mid-gray:    #666666;
	--light-gray:  #ebebeb;
	--off-white:   #f5f5f5;
	--nav-height:  72px;
}

/* ---- UTILITY ---- */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.section-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--mid-gray);
	margin-bottom: 14px;
}
.section-title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(26px, 3vw, 38px);
	font-weight: 900;
	color: var(--black);
	text-transform: uppercase;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin-bottom: 16px;
}
.section-sub {
	font-size: 17px;
	color: var(--mid-gray);
	line-height: 1.75;
	max-width: 600px;
	margin-bottom: 48px;
}
.text-white { color: var(--white) !important; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- BUTTONS ---- */
.btn {
	display: inline-block;
	padding: 14px 36px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border: 2px solid transparent;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	line-height: 1;
}
.btn-white {
	background: var(--white);
	color: var(--black);
	border-color: var(--white);
}
.btn-white:hover {
	background: transparent;
	color: var(--white);
}
.btn-black {
	background: var(--black);
	color: var(--white);
	border-color: var(--black);
}
.btn-black:hover {
	background: transparent;
	color: var(--black);
}
.btn-outline-black {
	background: transparent;
	color: var(--black);
	border-color: var(--black);
}
.btn-outline-black:hover {
	background: var(--black);
	color: var(--white);
}
.btn-outline-white {
	background: transparent;
	color: var(--white);
	border-color: var(--white);
}
.btn-outline-white:hover {
	background: var(--white);
	color: var(--black);
	border-color: var(--white);
}

/* ============================================================
NAVIGATION
============================================================ */
.site-header {
	position: fixed;
	top: 0; left: 0; right: 0;
	z-index: 9999;
	background: var(--black);
	border-bottom: 1px solid #1a1a1a;
}
.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--nav-height);
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { height: 38px; width: auto; }

/* Primary nav */
.nav-primary {
	display: flex;
	align-items: center;
	gap: 0;
}
.nav-primary > li {
	position: relative;
}
.nav-primary > li > a {
	display: flex;
	align-items: center;
	gap: 4px;
	height: var(--nav-height);
	padding: 0 16px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #cccccc;
	transition: color 0.2s;
	white-space: nowrap;
}
.nav-primary > li > a:hover,
.nav-primary > li.current-menu-item > a,
.nav-primary > li.current-menu-parent > a {
	color: var(--white);
}
.nav-primary > li > a .nav-arrow {
	font-size: 8px;
	opacity: 0.5;
	transition: transform 0.2s;
}
.nav-primary > li:hover > a .nav-arrow {
	transform: rotate(180deg);
}

/* Dropdowns */
.sub-menu {
	display: none;
	position: absolute;
	top: var(--nav-height);
	left: 0;
	background: #0a0a0a;
	border-top: 2px solid #222222;
	border-bottom: 2px solid #222222;
	min-width: 240px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.6);
	z-index: 100;
}
.nav-primary > li:hover .sub-menu { display: block; }
.sub-menu li a {
	display: block;
	padding: 11px 20px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #777777;
	border-bottom: 1px solid #111111;
	transition: color 0.15s, padding-left 0.15s;
}
.sub-menu li:last-child a { border-bottom: none; }
.sub-menu li a:hover {
	color: var(--white);
	padding-left: 26px;
}

/* Nav CTA */
.nav-cta-wrap { margin-left: 20px; }
.nav-cta {
	padding: 11px 24px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--white);
	color: var(--black);
	border: 2px solid var(--white);
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
	display: inline-block;
}
.nav-cta:hover {
	background: transparent;
	color: var(--white);
}

/* Mobile toggle */
.nav-mobile-btn {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	padding: 8px;
}
.nav-mobile-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--white);
	transition: all 0.3s;
}
.nav-mobile-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-mobile-btn.open span:nth-child(2) { opacity: 0; }
.nav-mobile-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
	display: none;
	position: fixed;
	top: var(--nav-height);
	left: 0; right: 0;
	background: #000000;
	border-top: 1px solid #1a1a1a;
	padding: 24px 32px 32px;
	z-index: 9998;
	max-height: calc(100vh - var(--nav-height));
	overflow-y: auto;
}
.nav-mobile.open { display: block; }
.nav-mobile-list li a {
	display: block;
	padding: 12px 0;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #888888;
	border-bottom: 1px solid #111111;
	transition: color 0.2s;
}
.nav-mobile-list li a:hover { color: var(--white); }
.nav-mobile-list .sub-item a {
	padding-left: 16px;
	font-size: 11px;
	color: #555555;
}
.nav-mobile-cta {
	margin-top: 24px;
	display: block;
	text-align: center;
	padding: 14px;
	background: var(--white);
	color: var(--black);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

/* Page offset for fixed nav */
.page-content-wrap { margin-top: var(--nav-height); }

/* ============================================================
HERO CAROUSEL
============================================================ */
.hero-carousel {
	position: relative;
	height: calc(100vh - var(--nav-height));
	min-height: 560px;
	max-height: 900px;
	overflow: hidden;
	background: var(--black);
}
.hero-slide {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	opacity: 0;
	transition: opacity 1s ease;
	pointer-events: none;
}
.hero-slide.active {
	opacity: 1;
	pointer-events: auto;
}
.hero-slide-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: brightness(0.3);
}
/* Fallback geometric patterns when no image */
.hero-slide-bg.pattern-1 {
	background-color: #000;
	background-image:
		repeating-linear-gradient(0deg, transparent, transparent 79px, #ffffff06 79px, #ffffff06 80px),
		repeating-linear-gradient(90deg, transparent, transparent 79px, #ffffff06 79px, #ffffff06 80px);
}
.hero-slide-bg.pattern-2 {
	background-color: #000;
	background-image:
		repeating-linear-gradient(45deg, transparent, transparent 40px, #ffffff04 40px, #ffffff04 41px),
		repeating-linear-gradient(-45deg, transparent, transparent 40px, #ffffff04 40px, #ffffff04 41px);
}
.hero-slide-bg.pattern-3 {
	background-color: #050505;
	background-image: radial-gradient(circle at 15% 50%, #ffffff07 0%, transparent 55%),
		radial-gradient(circle at 85% 50%, #ffffff04 0%, transparent 55%);
}
.hero-slide-bg.pattern-4 {
	background-color: #000;
	background-image:
		repeating-linear-gradient(90deg, transparent, transparent 119px, #ffffff05 119px, #ffffff05 120px);
}
.hero-slide-content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}
.hero-tagline {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: #666666;
	margin-bottom: 20px;
}
.hero-headline {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(36px, 5.5vw, 72px);
	font-weight: 900;
	color: var(--white);
	text-transform: uppercase;
	line-height: 1.0;
	letter-spacing: -0.02em;
	max-width: 820px;
	margin-bottom: 24px;
}
.hero-sub {
	font-size: 17px;
	color: #888888;
	max-width: 520px;
	line-height: 1.75;
	margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Carousel controls */
.hero-nav-dots {
	position: absolute;
	bottom: 36px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}
.hero-dot {
	width: 8px; height: 8px;
	border-radius: 50%;
	background: #333333;
	border: none;
	transition: background 0.3s, transform 0.3s;
}
.hero-dot.active {
	background: var(--white);
	transform: scale(1.4);
}
.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 48px; height: 48px;
	background: transparent;
	border: 1px solid #2a2a2a;
	color: var(--white);
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color 0.2s, background 0.2s;
}
.hero-arrow:hover { border-color: #666; background: #ffffff10; }
.hero-arrow-prev { left: 24px; }
.hero-arrow-next { right: 24px; }

/* ============================================================
SECTION: SERVICES OVERVIEW (Homepage)
============================================================ */
.services-overview {
	padding: 96px 0;
	background: var(--white);
}
.services-overview-header {
	text-align: center;
	margin-bottom: 64px;
}
.services-overview-header .section-sub { margin: 0 auto 0; }

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	background: var(--light-gray);
	border: 1px solid var(--light-gray);
	margin-bottom: 48px;
}
.service-card {
	background: var(--white);
	padding: 44px 28px;
	transition: background 0.25s;
}
.service-card:hover { background: var(--black); }
.sc-number {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #cccccc;
	margin-bottom: 20px;
	text-transform: uppercase;
}
.service-card:hover .sc-number { color: #bbb; }
.sc-title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 15px;
	font-weight: 900;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.3;
	margin-bottom: 18px;
}
.service-card:hover .sc-title { color: var(--white); }
.sc-rule {
	width: 28px; height: 2px;
	background: var(--light-gray);
	margin-bottom: 18px;
	transition: background 0.25s;
}
.service-card:hover .sc-rule { background: #2a2a2a; }
.sc-list { margin-bottom: 28px; }
.sc-list li {
	font-size: 13px;
	color: #666666;
	padding: 4px 0 4px 14px;
	position: relative;
	line-height: 1.5;
}
.sc-list li::before {
	content: '—';
	position: absolute;
	left: 0;
	color: #cccccc;
	font-size: 10px;
	top: 6px;
}
.service-card:hover .sc-list li { color: #888888; }
.service-card:hover .sc-list li::before { color: #444444; }
.sc-link {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--black);
	border-bottom: 1px solid var(--black);
	padding-bottom: 2px;
	display: inline-block;
	transition: color 0.2s, border-color 0.2s;
}
.service-card:hover .sc-link { color: var(--white); border-color: var(--white); }
.services-overview-footer { text-align: center; }

/* ============================================================
SECTION: WHY COOPERDYNE (Homepage)
============================================================ */
.why-section {
	padding: 96px 0;
	background: var(--black);
}
.why-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}
.why-badge {
	display: inline-block;
	border: 1px solid #bbb;
	padding: 10px 18px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: #bbbbbb;
	margin-bottom: 28px;
}
.why-section .section-title { color: var(--white); font-size: clamp(28px, 3.5vw, 42px); }
.why-section .section-sub { color: #bbb; max-width: 100%; }
.why-differentiators { margin-top: 4px; }
.why-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	padding: 26px 0;
	border-bottom: 1px solid #111111;
}
.why-item:first-child { border-top: 1px solid #111111; }
.why-num {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	color: #bbb;
	letter-spacing: 0.1em;
	min-width: 28px;
	padding-top: 2px;
}
.why-item-title {
	font-size: 13px;
	font-weight: 700;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}
.why-item-text {
	font-size: 14px;
	/* color: #555555; */
	color: #bbbbbb;
	line-height: 1.65;
}

/* ============================================================
SECTION: INDUSTRIES (Homepage)
============================================================ */
.industries-section {
	padding: 96px 0;
	background: var(--off-white);
}
.industries-header {
	text-align: center;
	margin-bottom: 64px;
}
.industries-header .section-sub { margin: 0 auto; }
.industries-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
	background: #dddddd;
}
.industry-card {
	background: var(--white);
	padding: 52px 40px;
	position: relative;
	transition: background 0.2s;
}
.industry-card::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 100%; height: 3px;
	background: var(--black);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}
.industry-card:hover::after { transform: scaleX(1); }
.ic-number {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 48px;
	font-weight: 900;
	color: var(--light-gray);
	line-height: 1;
	margin-bottom: 16px;
	display: block;
}
.ic-title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 18px;
	font-weight: 900;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 14px;
}
.ic-text {
	font-size: 14px;
	color: var(--mid-gray);
	line-height: 1.7;
	margin-bottom: 28px;
}
.ic-link {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--black);
	border-bottom: 1px solid var(--black);
	padding-bottom: 2px;
	display: inline-block;
}

/* ============================================================
SECTION: CTA BANNER
============================================================ */
.cta-banner {
	padding: 80px 0;
	background: var(--black);
	border-top: 1px solid #111111;
}
.cta-banner-inner { text-align: center; }
.cta-banner .section-title {
	color: var(--white);
	font-size: clamp(24px, 3vw, 36px);
	margin-bottom: 16px;
}
.cta-banner p {
	font-size: 17px;
	color: #bbb;
	margin-bottom: 40px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
.cta-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Interior page CTA section (matches homepage style) */
.cta-section {
	padding: 80px 0;
	background: var(--black);
	border-top: 1px solid #111111;
}
.cta-inner { text-align: center; }
.cta-title {
	font-family: Arial Black, Arial, sans-serif;
	font-size: clamp(24px, 3vw, 36px);
	font-weight: 900;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 16px;
	letter-spacing: -0.01em;
}
.cta-sub {
	font-size: 17px;
	color: #999999;
	margin-bottom: 40px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.7;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
INTERIOR PAGE HERO
============================================================ */
.page-hero {
	background: var(--black);
	padding: 80px 0 72px;
	position: relative;
	overflow: hidden;
}
.page-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		repeating-linear-gradient(0deg, transparent, transparent 59px, #ffffff04 59px, #ffffff04 60px),
		repeating-linear-gradient(90deg, transparent, transparent 59px, #ffffff04 59px, #ffffff04 60px);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero .section-label { color: #444444; margin-bottom: 16px; }
.page-hero-title {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: clamp(32px, 4.5vw, 56px);
	font-weight: 900;
	color: var(--white);
	text-transform: uppercase;
	line-height: 1.0;
	letter-spacing: -0.02em;
	max-width: 760px;
	margin-bottom: 20px;
}
.page-hero-sub {
	font-size: 17px;
	color: #666666;
	max-width: 560px;
	line-height: 1.75;
	margin-bottom: 36px;
}

/* ============================================================
CONTENT SECTIONS (Interior pages)
============================================================ */
.content-section {
	padding: 80px 0;
}
.content-section-alt {
	padding: 80px 0;
	background: var(--off-white);
}
.content-section-dark {
	padding: 80px 0;
	background: var(--black);
}

/* Two-column layout */
.two-col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: start;
}
.two-col-reversed { direction: rtl; }
.two-col-reversed > * { direction: ltr; }

/* Feature cards grid */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	background: var(--light-gray);
	border: 1px solid var(--light-gray);
}
.feature-card {
	background: var(--white);
	padding: 40px 28px;
}
.feature-card-dark {
	background: #0a0a0a;
	border: 1px solid #111111;
	padding: 36px 28px;
}
.feature-num {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	color: #dddddd;
	letter-spacing: 0.15em;
	margin-bottom: 16px;
	display: block;
}
.feature-card-dark .feature-num { color: #222222; }
.feature-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}
.feature-card-dark .feature-title { color: var(--white); }
.feature-text {
	font-size: 14px;
	color: var(--mid-gray);
	line-height: 1.65;
}
.feature-card-dark .feature-text { color: #444444; }

/* Stacked two-section layout (replaces two-col for single-column pages) */
.page-stacked { display: block; }
.page-stacked > div { margin-bottom: 56px; }
.page-stacked > div:last-child { margin-bottom: 0; }

/* Content blocks - plain stacked items with border separators */
.content-blocks { margin-top: 8px; }
.content-block-item {
	display: block;
	padding: 28px 0;
	border-bottom: 1px solid var(--light-gray);
}
.content-block-item:first-child { border-top: 1px solid var(--light-gray); }
.content-block-item h3 {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 14px;
	font-weight: 900;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 10px;
}
.content-block-item h4 {
	font-size: 12px;
	font-weight: 700;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin: 20px 0 8px;
}
.content-block-item p { font-size: 15px; color: var(--mid-gray); line-height: 1.7; margin-bottom: 10px; }
.content-block-item ul { margin: 8px 0 12px 20px; }
.content-block-item ul li { font-size: 14px; color: var(--mid-gray); line-height: 1.65; margin-bottom: 4px; }

/* Vertical list with numbers */
.numbered-list { }
.numbered-list-item {
	display: flex;
	gap: 20px;
	padding: 24px 0;
	border-bottom: 1px solid var(--light-gray);
	align-items: flex-start;
}
.numbered-list-item:first-child { border-top: 1px solid var(--light-gray); }
.nl-num {
	font-family: "Arial Black", Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	color: #cccccc;
	min-width: 28px;
	padding-top: 2px;
}
.nl-title {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 6px;
}
.nl-text {
	font-size: 14px;
	color: var(--mid-gray);
	line-height: 1.65;
}

/* ============================================================
FOOTER
============================================================ */
.site-footer {
	background: var(--black);
	border-top: 1px solid #0d0d0d;
	padding: 72px 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.2fr;
	gap: 48px;
	margin-bottom: 56px;
}
.footer-brand-logo { height: 34px; width: auto; margin-bottom: 18px; }
.footer-brand p {
	font-size: 13px;
	color: #444444;
	line-height: 1.7;
	max-width: 260px;
	margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
	width: 36px; height: 36px;
	border: 1px solid #1a1a1a;
	display: flex; align-items: center; justify-content: center;
	color: #444444;
	font-size: 13px;
	font-weight: 700;
	transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: #555555; color: var(--white); }
.footer-col-label {
	display: block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--white);
	margin-bottom: 18px;
}
.footer-col-label + .footer-col-label { margin-top: 28px; }
.footer-nav-list li { margin-bottom: 9px; }
.footer-nav-list a {
	font-size: 13px;
	color: #444444;
	transition: color 0.2s;
	line-height: 1.4;
}
.footer-nav-list a:hover { color: var(--white); }
.footer-contact-line {
	font-size: 13px;
	color: #444444;
	margin-bottom: 9px;
	line-height: 1.5;
}
.footer-contact-line a { color: #444444; transition: color 0.2s; }
.footer-contact-line a:hover { color: var(--white); }
.footer-bottom {
	border-top: 1px solid #0d0d0d;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.footer-copyright {
	font-size: 12px;
	color: #2a2a2a;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
	font-size: 12px;
	color: #2a2a2a;
	transition: color 0.2s;
}
.footer-legal a:hover { color: #666666; }

/* ============================================================
WORDPRESS OVERRIDES
============================================================ */
.wp-block-image { margin: 0; }
.alignwide { max-width: 1200px; margin: 0 auto; }
.alignfull { max-width: 100%; }
.entry-content h1, .entry-content h2, .entry-content h3 {
	font-family: "Arial Black", Arial, sans-serif;
	font-weight: 900;
	text-transform: uppercase;
	color: var(--black);
	line-height: 1.1;
	margin-bottom: 16px;
	margin-top: 36px;
}
.entry-content p { margin-bottom: 18px; line-height: 1.7; }
.entry-content ul { margin-bottom: 18px; padding-left: 20px; }
.entry-content ul li { margin-bottom: 8px; line-height: 1.6; }

/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.why-inner { grid-template-columns: 1fr; gap: 48px; }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.feature-grid { grid-template-columns: repeat(2, 1fr); }
	.two-col { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
	.container { padding: 0 20px; }
	.nav-primary, .nav-cta-wrap { display: none; }
	.nav-mobile-btn { display: flex; }
	.services-grid { grid-template-columns: 1fr; }
	.industries-grid { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; gap: 32px; }
	.feature-grid { grid-template-columns: 1fr; }
	.hero-arrow { display: none; }
	.section-title { font-size: 26px; }
	.hero-headline { font-size: 30px; }
	.page-hero { padding: 60px 0 52px; }
}

/* ============================================================
SECTION: FRACTIONAL EXEC NETWORK (Section 8B)
============================================================ */
.exec-network-section { background: var(--white); }
.exec-photo-placeholder {
	width: 80px; height: 80px;
	background: var(--light-gray);
	border-radius: 50%;
	margin-bottom: 24px;
	display: flex; align-items: center; justify-content: center;
}
.exec-tag {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--black);
	background: var(--off-white);
	padding: 4px 10px;
	border: 1px solid var(--light-gray);
	display: inline-block;
}
.exec-card { transition: opacity 0.2s; }
.exec-card.hidden { display: none !important; }
@media (max-width: 768px) {
	.exec-cards { grid-template-columns: 1fr !important; }
}

/* ============================================================
SECTION: PAGE IMAGE BREAKS
============================================================ */
.img-break {
	width: 100%;
	overflow: hidden;
	position: relative;
	background: var(--black);
}
.img-break img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0.7;
	filter: grayscale(100%);
}
.img-break-md  { height: 320px; }
.img-break-lg  { height: 480px; }
.img-break-xl  { height: 560px; }
.img-break-sm  { height: 200px; }

/* Optional overlay text on image breaks */
.img-break-caption {
	position: absolute;
	bottom: 32px;
	left: 40px;
	color: rgba(255,255,255,0.5);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

/* Team photo */
.team-photo {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	object-fit: cover;
	object-position: top;
	filter: grayscale(100%);
	border: 3px solid var(--light-gray);
	margin-bottom: 16px;
}
.team-photo-placeholder {
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: var(--light-gray);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}
.team-photo-placeholder span {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #999;
}

/* Footer group labels and sub-items */
.footer-group-label a {
	font-family: 'Arial Black', Arial, sans-serif;
	font-weight: 900;
	font-size: 13px;
	color: #ffffff;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.footer-sub-item a {
	color: #555555;
	font-size: 13px;
	padding-left: 4px;
}
.footer-sub-item a:hover { color: #ffffff; }
.service-card:hover p.sc-desc {
	color: #bbb;
}

/*Partner Page*/

:root {
	--black: #0a0a0a;
	--dark: #111111;
	--charcoal: #1a1a1a;
	--mid: #2a2a2a;
	--border: #2e2e2e;
	--white: #ffffff;
	--off-white: #f5f5f5;
	--light-gray: #e8e8e8;
	--muted: #888888;
/* 	--accent: #c8a85a; */
	--accent: #000000;
	--accent-dim: rgba(0,0,0,0.15);
	--font-head: 'Barlow Condensed', sans-serif;
	--font-body: 'Barlow', sans-serif;
}

.delivery-partners {
	background: var(--off-white);
	padding: 80px 40px;
}
.delivery-partners .container.grid-2-column{
	padding: 60px 40px;
	border-bottom: 1px solid var(--light-gray);
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 56px;
	align-items: start;
}

/* ─── DELIVERY PARTNERS ─── */
.delivery-partners{
	.partner-block:last-child { border-bottom: none; }

	.partner-counter {
		font-family: var(--font-head);
		font-size: 11px;
		letter-spacing: 0.2em;
		text-transform: uppercase;
		color: var(--muted);
		margin-bottom: 6px;
	}
	.partner-section-label {
		font-family: var(--font-head);
		font-size: 11px;
		font-weight: 600;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: var(--accent);
		margin-bottom: 12px;
	}
	.partner-name {
		font-family: var(--font-head);
		font-size: clamp(30px, 4vw, 42px);
		font-weight: 800;
		text-transform: uppercase;
		color: var(--dark);
		letter-spacing: 0.01em;
		margin-bottom: 20px;
		line-height: 1.0;
	}
	.partner-desc {
		font-size: 15px;
		color: #444;
		line-height: 1.8;
		margin-bottom: 12px;
	}

	.why-partner {
		margin: 28px 0 32px;
	}
	.why-partner h4 {
		font-family: var(--font-head);
		font-size: 12px;
		letter-spacing: 0.15em;
		text-transform: uppercase;
		color: var(--muted);
		margin-bottom: 14px;
		font-weight: 600;
	}
	.why-list {
		list-style: none;
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.why-list li {
		display: flex;
		gap: 14px;
		font-size: 14px;
		color: #333;
		line-height: 1.6;
		align-items: flex-start;
	}
	.why-list li .num {
		font-family: var(--font-head);
		font-size: 13px;
		font-weight: 700;
		color: var(--accent);
		min-width: 24px;
		padding-top: 1px;
	}

	.partner-ctas {
		display: flex;
		gap: 12px;
		flex-wrap: wrap;
		margin-top: 4px;
	}
	.btn-primary {
		display: inline-block;
		background: var(--dark);
		color: var(--white);
		font-family: var(--font-head);
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		padding: 11px 22px;
		text-decoration: none;
		border: 1px solid var(--dark);
		transition: background 0.2s, color 0.2s;
	}
	.btn-primary:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }
	.btn-secondary {
		display: inline-block;
		background: transparent;
		color: var(--dark);
		font-family: var(--font-head);
		font-size: 12px;
		font-weight: 600;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		padding: 11px 22px;
		text-decoration: none;
		border: 1px solid var(--border);
		transition: border-color 0.2s, color 0.2s;
	}
	.btn-secondary:hover { border-color: var(--dark); }
	/* ─── CREDENTIAL COLUMN ─── */
	.credential-col {
		display: flex;
		flex-direction: column;
		gap: 10px;
	}
	.badge {
		background: var(--white);
		border: 1px solid var(--light-gray);
		padding: 14px 16px;
	}
	.badge-type {
		font-family: var(--font-head);
		font-size: 10px;
		letter-spacing: 0.2em;
		text-transform: uppercase;
		color: var(--muted);
		margin-bottom: 5px;
		font-weight: 600;
	}
	.badge-title {
		font-size: 13px;
		font-weight: 600;
		color: var(--dark);
		line-height: 1.4;
	}
	.badge-sub {
		font-size: 12px;
		color: var(--muted);
		margin-top: 2px;
	}
	.badge-flagship {
		background: var(--accent-dim);
		border-color: rgba(0,0,0,0.3);
	}
	.badge-flagship .badge-type { color: var(--accent); }
	.badge-status {
		background: #f0f5ff;
		border-color: #c8d8f0;
	}
	.badge-status .badge-type { color: #4a6fa5; }

	/* ─── AFFILIATES ─── */
	.affiliates {
		background: var(--charcoal);
		padding: 80px 40px;
		text-align: center;
	}
	.affiliates .section-label {
		color: var(--accent);
		border-color: rgba(200,168,90,0.35);
	}
	.affiliates h2 {
		font-family: var(--font-head);
		font-size: clamp(30px, 4vw, 46px);
		font-weight: 800;
		text-transform: uppercase;
		color: var(--white);
		letter-spacing: 0.02em;
		margin-bottom: 12px;
	}
	.affiliates .intro-copy {
		max-width: 560px;
		margin: 0 auto 48px;
		font-size: 14px;
		color: rgba(255,255,255,0.55);
		line-height: 1.8;
	}
	.affiliate-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		max-width: 720px;
		margin: 0 auto;
		gap: 20px;
	}
	.affiliate-card {
		background: var(--mid);
		border: 1px solid var(--border);
		padding: 28px 28px 24px;
		text-align: left;
	}
	.affiliate-badge {
		display: inline-block;
		font-family: var(--font-head);
		font-size: 10px;
		letter-spacing: 0.18em;
		text-transform: uppercase;
		color: var(--accent);
		border: 1px solid rgba(200,168,90,0.35);
		padding: 3px 10px;
		margin-bottom: 14px;
	}
	.affiliate-name {
		font-family: var(--font-head);
		font-size: 22px;
		font-weight: 700;
		text-transform: uppercase;
		color: var(--white);
		letter-spacing: 0.04em;
		margin-bottom: 8px;
	}
	.affiliate-desc {
		font-size: 13px;
		color: rgba(255,255,255,0.55);
		line-height: 1.7;
		margin-bottom: 18px;
	}
	.affiliate-link {
		font-family: var(--font-head);
		font-size: 11px;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		color: var(--accent);
		text-decoration: none;
		font-weight: 600;
	}
	.affiliate-link:hover { text-decoration: underline; }


	/* ─── GROWING ECOSYSTEM ─── */
	.growing {
		background: var(--white);
		padding: 80px 40px;
		text-align: center;
		border-top: 1px solid var(--light-gray);
		border-bottom: 1px solid var(--light-gray);
	}
	.growing .section-label {
		color: var(--muted);
		border-color: var(--light-gray);
		background: var(--off-white);
	}
	.growing h2 {
		font-family: var(--font-head);
		font-size: clamp(32px, 4vw, 52px);
		font-weight: 800;
		text-transform: uppercase;
		color: var(--dark);
		letter-spacing: 0.01em;
		margin-bottom: 16px;
	}
	.growing p {
		max-width: 560px;
		margin: 0 auto;
		font-size: 15px;
		color: #555;
		line-height: 1.8;
	}

	/* ─── CTA ─── */
	.cta-section {
		background: var(--black);
		background-image:
			repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 40px),
			repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 40px);
		padding: 90px 40px 70px;
		text-align: center;
		position: relative;
	}
	.cta-section::before {
		content: '';
		position: absolute;
		inset: 0;
		background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(200,168,90,0.05) 0%, transparent 70%);
		pointer-events: none;
	}
	.cta-section h2 {
		font-family: var(--font-head);
		font-size: clamp(34px, 5vw, 60px);
		font-weight: 800;
		text-transform: uppercase;
		color: var(--white);
		letter-spacing: 0.01em;
		margin-bottom: 14px;
	}
	.cta-section p {
		max-width: 520px;
		margin: 0 auto 36px;
		font-size: 15px;
		color: rgba(255,255,255,0.6);
		line-height: 1.75;
	}
	.cta-btns {
		display: flex;
		justify-content: center;
		gap: 14px;
		flex-wrap: wrap;
		margin-bottom: 36px;
	}
	.cta-section .btn-primary {
		background: var(--accent);
		border-color: var(--accent);
		color: var(--black);
		padding: 13px 30px;
		font-size: 13px;
	}
	.cta-section .btn-primary:hover { background: var(--white); border-color: var(--white); }
	.cta-section .btn-secondary {
		color: var(--white);
		border-color: rgba(255,255,255,0.25);
		padding: 13px 30px;
		font-size: 13px;
	}
	.cta-section .btn-secondary:hover { border-color: var(--white); }
	.cta-footer {
		font-size: 13px;
		color: rgba(255,255,255,0.35);
		letter-spacing: 0.03em;
	}
	.cta-footer a { color: rgba(255,255,255,0.45); text-decoration: none; }
	.cta-footer a:hover { color: var(--accent); }

}

.service-card:hover a{
	color: #fff !important;
}

@media (max-width:767px) {
	section.delivery-partners{
		.container.grid-2-column{
			grid-template-columns: 1fr;
			gap: 40px;
			padding:40px 0px
		}
	}
}