/* ==========================================================================
   Mr HVAC Marketers — main stylesheet
   Light monday.com-style: white cards on soft grey, rounded corners,
   soft shadows, gradient accents.
   ========================================================================== */

:root {
	--bg-soft: #F7F7F1;
	--ink: #0E130E;
	--ink-dim: #5C6357;
	--ink-faint: #99A093;
	--line: #E4E6DC;
	--brand: #16A34A;
	--brand-2: #22C55E;
	--green: #22C55E;
	--grad: linear-gradient(100deg, #22C55E 0%, #16A34A 70%);
	--dark: #0B100C;
	--radius: 14px;
	--radius-lg: 22px;
	--shadow-lg: 0 20px 50px -12px rgba(50, 51, 56, .18);
	--shadow-sm: 0 4px 14px -4px rgba(50, 51, 56, .10);
	--font-head: 'Sora', sans-serif;
	--font-body: 'Inter', sans-serif;
	--header-h: 72px;
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var(--bg-soft);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
	font-family: var(--font-head);
	line-height: 1.2;
	color: var(--ink);
	margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -.01em; }
h3 { font-size: 1.15rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1em; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

:focus-visible {
	outline: 3px solid rgba(34, 197, 94, .45);
	outline-offset: 2px;
	border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ---------- Buttons ---------- */

.btn-gradient, .btn-outline, .btn-sm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-family: var(--font-head);
	font-weight: 600;
	border-radius: 999px;
	cursor: pointer;
	border: 0;
	transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
	text-decoration: none !important;
}

.btn-gradient {
	background: var(--grad);
	color: #fff;
	padding: 14px 30px;
	font-size: 1rem;
	box-shadow: 0 10px 24px -8px rgba(22, 163, 74, .40);
}

.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(22, 163, 74, .5); color: #fff; }

.btn-outline {
	background: #fff;
	color: var(--ink);
	padding: 13px 28px;
	font-size: 1rem;
	border: 1.5px solid var(--line);
}

.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }

.btn-sm {
	background: var(--grad);
	color: #fff;
	padding: 9px 20px;
	font-size: .875rem;
}

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

.link-arrow {
	display: inline-block;
	font-weight: 600;
	font-size: .95rem;
	color: var(--brand);
}

.link-arrow:hover { color: var(--brand-2); }

/* ---------- Top banner ---------- */

.top-banner {
	background: var(--grad);
	color: #fff;
	text-align: center;
	font-size: .9rem;
	font-weight: 500;
	padding: 9px 16px;
}

/* ---------- Header ---------- */

.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, .92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--line);
	height: var(--header-h);
}

.header-inner {
	max-width: 1180px;
	margin: 0 auto;
	height: var(--header-h);
	padding: 0 24px;
	display: flex;
	align-items: center;
	gap: 28px;
	position: relative;
}

.logo {
	display: flex;
	align-items: center;
	gap: 9px;
	text-decoration: none !important;
	flex-shrink: 0;
}

.logo-chip {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--dark);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .78rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.logo-mark {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.18rem;
	color: var(--ink);
	white-space: nowrap;
}

.logo-text {
	font-family: var(--font-head);
	font-weight: 500;
	font-size: 1.18rem;
	color: var(--ink);
	white-space: nowrap;
}

.main-nav { flex: 1; }

.nav-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.nav-list > li > a {
	display: block;
	padding: 10px 13px;
	font-weight: 500;
	font-size: .94rem;
	color: var(--ink-dim);
	border-radius: 8px;
	text-decoration: none !important;
	white-space: nowrap;
}

.nav-list > li > a:hover { color: var(--brand); background: rgba(34, 197, 94, .09); }

/* Mega menu — anchored to header-inner, never translateX-centered */
.has-mega { position: static; }

.mega-menu {
	position: absolute;
	top: var(--header-h);
	left: 24px;
	right: 24px;
	max-width: 1180px;
	margin: 0 auto;
	max-height: calc(100vh - var(--header-h) - 40px);
	overflow-y: auto;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 28px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .22s ease, transform .22s ease, visibility .22s;
	z-index: 1001;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.mega-open .mega-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mega-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.mega-col { display: flex; flex-direction: column; gap: 2px; }

.mega-col strong {
	font-family: var(--font-head);
	font-size: .8rem;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--ink-faint);
	margin-bottom: 8px;
}

.mega-col a {
	padding: 6px 0;
	font-size: .92rem;
	color: var(--ink-dim);
	text-decoration: none !important;
}

.mega-col a:hover { color: var(--brand); }

.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.header-phone {
	font-weight: 600;
	font-size: .94rem;
	color: var(--ink);
	text-decoration: none !important;
}

.header-phone:hover { color: var(--brand); }

/* Hamburger */
.menu-toggle {
	display: none;
	background: none;
	border: 0;
	padding: 10px;
	cursor: pointer;
	flex-direction: column;
	gap: 5px;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2.5px;
	background: var(--ink);
	border-radius: 2px;
	transition: transform .25s ease, opacity .25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
	background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
	padding: 96px 0 72px;
	border-bottom: 1px solid var(--line);
}

.hero-inner { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.hero-text { max-width: 860px; margin: 0 auto; text-align: center; }

.gradient-text {
	font-style: normal;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-lead {
	font-size: 1.2rem;
	color: var(--ink-dim);
	max-width: 660px;
	margin: 0 auto 1.6em;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 2.4em; justify-content: center; }

.hero-stats {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.stat strong {
	display: block;
	font-family: var(--font-head);
	font-size: 1.9rem;
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.stat span { font-size: .9rem; color: var(--ink-faint); }

/* ---------- Trust bar ---------- */

.trust-bar {
	background: #fff;
	border-bottom: 1px solid var(--line);
	padding: 18px 0;
	text-align: center;
}

.trust-bar p { margin: 0; color: var(--ink-dim); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.trust-bar strong { color: var(--ink); }

/* ---------- Sections ---------- */

section { scroll-margin-top: calc(var(--header-h) + 16px); }

.section-title { text-align: center; margin-bottom: .3em; }

.section-subtitle {
	text-align: center;
	color: var(--ink-dim);
	max-width: 640px;
	margin: 0 auto 2.4em;
}

/* ---------- Services ---------- */

.services-section { padding: 84px 0; }

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.service-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
	display: flex;
	flex-direction: column;
}

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

.service-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius);
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .85rem;
	margin-bottom: 18px;
}

.service-card h3 { margin-bottom: .4em; }
.service-card p { color: var(--ink-dim); font-size: .93rem; flex: 1; }

.service-price { margin-bottom: 14px; }

.service-price .now, .pricing-price .now, .bundle-price .now {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--ink);
}

.service-price del, .pricing-price del {
	color: var(--ink-faint);
	font-size: .9rem;
	margin-left: 6px;
}

.bundle-card {
	background: #fff;
	border: 1.5px solid transparent;
	background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
	border-radius: var(--radius-lg);
	padding: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
	box-shadow: var(--shadow-sm);
}

.bundle-text h3 { margin-bottom: .3em; }
.bundle-text p { margin: 0; color: var(--ink-dim); }
.bundle-price { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.bundle-price .now { font-size: 1.6rem; }

.expertise-section { padding: 84px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- How it works ---------- */

.how-it-works { padding: 84px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 2em;
}

.step {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px 22px;
}

.step-num {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--grad);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.step h3 { margin-bottom: .4em; }
.step p { margin: 0; color: var(--ink-dim); font-size: .93rem; }

/* ---------- Exclusivity ---------- */

.exclusivity-section { padding: 84px 0; }

.exclusivity-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr;
	gap: 48px;
	align-items: center;
}

.exclusivity-text ul { padding-left: 20px; color: var(--ink-dim); }
.exclusivity-text .btn-gradient { margin-top: 10px; }

.exclusivity-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 36px;
	text-align: center;
}

.exclusivity-badge {
	display: inline-block;
	background: linear-gradient(100deg, rgba(0, 115, 234, .12), rgba(162, 93, 220, .12));
	color: var(--brand);
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .85rem;
	border-radius: 999px;
	padding: 8px 18px;
	margin-bottom: 18px;
}

.exclusivity-card p { color: var(--ink-dim); margin: 0; }

/* ---------- Trades accordions ---------- */

.trades-section { padding: 84px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.accordion-group {
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg-soft);
	margin-bottom: 12px;
	overflow: hidden;
}

.accordion-trigger {
	width: 100%;
	background: none;
	border: 0;
	padding: 20px 24px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.accordion-trigger::after {
	content: '+';
	font-size: 1.4rem;
	color: var(--brand);
	transition: transform .2s ease;
}

.accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }

.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}

.accordion-group.open .accordion-panel { max-height: 2000px; }

.trade-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	padding: 4px 24px 24px;
}

.trade-link {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px 18px;
	text-decoration: none !important;
	transition: border-color .18s ease, transform .18s ease;
}

.trade-link:hover { border-color: var(--brand); transform: translateY(-2px); }

.trade-link strong { display: block; color: var(--ink); font-size: .95rem; margin-bottom: 4px; }
.trade-link span { color: var(--ink-faint); font-size: .85rem; line-height: 1.5; display: block; }

/* ---------- Transparency ---------- */

.transparency-section { padding: 84px 0; }

.transparency-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 2em;
}

.transparency-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px 22px;
	box-shadow: var(--shadow-sm);
}

.transparency-card h3 { margin-bottom: .4em; }
.transparency-card p { margin: 0; color: var(--ink-dim); font-size: .93rem; }

/* ---------- Pricing ---------- */

.pricing-section { padding: 84px 0; background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 16px;
	margin-bottom: 28px;
}

.pricing-card {
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 26px 22px;
	display: flex;
	flex-direction: column;
	position: relative;
}

.pricing-featured {
	background: #fff;
	border: 1.5px solid transparent;
	background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
	box-shadow: var(--shadow-lg);
}

.pricing-badge {
	position: absolute;
	top: -13px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--grad);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .75rem;
	padding: 5px 14px;
	border-radius: 999px;
	white-space: nowrap;
}

.pricing-price { margin: 8px 0 16px; }

.pricing-card ul {
	list-style: none;
	margin: 0 0 20px;
	padding: 0;
	flex: 1;
}

.pricing-card li {
	padding: 7px 0 7px 24px;
	position: relative;
	font-size: .9rem;
	color: var(--ink-dim);
	border-bottom: 1px solid var(--line);
}

.pricing-card li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: var(--green);
	font-weight: 700;
}

.pricing-card li:last-child { border-bottom: 0; }
.pricing-card .btn-outline, .pricing-card .btn-gradient { width: 100%; padding: 11px 16px; font-size: .92rem; }

.pricing-notes {
	max-width: 800px;
	margin: 0 auto;
	background: var(--bg-soft);
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
}

.pricing-notes h2 { font-size: 1.3rem; }
.pricing-notes p { color: var(--ink-dim); font-size: .95rem; }
.pricing-notes p:last-child { margin-bottom: 0; }
.pricing-notes strong { color: var(--ink); }

/* ---------- Reviews ---------- */

.reviews-section { padding: 84px 0; }

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 2em;
}

.review-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px 22px;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
}

.review-stars { color: #F59E0B; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { color: var(--ink-dim); font-size: .93rem; flex: 1; }

.review-author strong { display: block; font-size: .92rem; }
.review-author span { color: var(--ink-faint); font-size: .83rem; }

.reviews-note { color: var(--ink-faint); font-size: .85rem; font-style: italic; }

/* ---------- Contact (dark) ---------- */

.contact-section {
	background: var(--dark);
	color: #D9DED3;
	padding: 84px 0;
}

.contact-inner {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}

.contact-info h2 { color: #fff; }
.contact-lead { color: #B3BAA8; font-size: 1.05rem; margin-bottom: 2em; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; }

.contact-method {
	display: flex;
	align-items: center;
	gap: 14px;
	color: #D9DED3;
	text-decoration: none !important;
	font-weight: 500;
}

a.contact-method:hover { color: #fff; }

.contact-icon {
	width: 46px;
	height: 46px;
	border-radius: var(--radius);
	background: rgba(255, 255, 255, .08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4ADE80;
	flex-shrink: 0;
}

.contact-form-wrap {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 32px;
	box-shadow: var(--shadow-lg);
	color: var(--ink);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row label {
	display: block;
	font-weight: 600;
	font-size: .88rem;
	margin-bottom: 6px;
}

.form-row .required { color: #E2445C; }

.form-row input, .form-row textarea {
	width: 100%;
	background: var(--bg-soft);
	border: 1.5px solid var(--line);
	border-radius: 10px;
	padding: 12px 14px;
	font-family: var(--font-body);
	font-size: .95rem;
	color: var(--ink);
	transition: border-color .18s ease, box-shadow .18s ease;
}

.form-row input:focus, .form-row textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(34, 197, 94, .18);
}

.field-help { margin: 6px 0 0; font-size: .8rem; color: var(--ink-faint); }

.contact-form .btn-gradient { width: 100%; padding: 15px; }

.contact-notice-success, .contact-notice-error {
	border-radius: var(--radius);
	padding: 18px 20px;
	margin-bottom: 18px;
}

.contact-notice-success {
	background: rgba(34, 197, 94, .1);
	border: 1px solid rgba(34, 197, 94, .4);
}

.contact-notice-success h3 { margin-bottom: .2em; color: #067A46; }
.contact-notice-success p { margin: 0; color: var(--ink-dim); }

.contact-notice-error {
	background: rgba(226, 68, 92, .08);
	border: 1px solid rgba(226, 68, 92, .35);
}

.contact-notice-error p { margin: 0; color: #B33347; }

/* ---------- Footer ---------- */

.footer-cta {
	background: linear-gradient(120deg, #0B100C 0%, #142116 100%);
	padding: 72px 0;
	text-align: center;
	color: #fff;
}

.footer-cta-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.footer-cta h2 { color: #fff; }
.footer-cta p { color: #B3BAA8; margin-bottom: 1.8em; }
.footer-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer-cta .btn-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.footer-cta .btn-outline:hover { border-color: #fff; color: #fff; }

.site-footer { background: var(--dark); color: #A9B09E; }

.footer-main { padding: 64px 0 40px; }

.footer-grid {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 36px;
}

.footer-col h4 {
	color: #fff;
	font-size: .85rem;
	text-transform: uppercase;
	letter-spacing: .07em;
	margin-bottom: 16px;
}

.footer-col a {
	display: block;
	color: #A9B09E;
	font-size: .92rem;
	padding: 5px 0;
	text-decoration: none !important;
}

.footer-col a:hover { color: #fff; }
.footer-col p { font-size: .92rem; margin-bottom: 8px; }

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding: 22px 24px;
	text-align: center;
	font-size: .85rem;
}

.footer-bottom p { margin: 2px 0; color: var(--ink-faint); }
.footer-bottom .copy { color: #67705F; }

/* ---------- Generic page ---------- */

.page-hero {
	background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
	border-bottom: 1px solid var(--line);
	padding: 72px 0 56px;
}

.page-hero h1 { max-width: 860px; }
.page-hero .hero-lead { margin-bottom: 0; }
.page-hero .hero-actions { margin-top: 1.6em; margin-bottom: 0; }

.page-content { padding-bottom: 40px; }

.prose { max-width: 800px; padding-top: 32px; padding-bottom: 32px; }

.post-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	margin: 20px 0;
}

/* ---------- Breadcrumb ---------- */

.breadcrumb {
	padding-top: 20px;
	padding-bottom: 0;
	font-size: .85rem;
	color: var(--ink-faint);
}

.breadcrumb a { color: var(--ink-dim); }
.breadcrumb span { margin: 0 6px; }

/* ---------- Trade pages ---------- */

.trade-hero {
	background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
	border-bottom: 1px solid var(--line);
	padding: 64px 0 48px;
}

.trade-hero h1 { max-width: 860px; }
.trade-hero .hero-lead { max-width: 760px; }
.trade-hero .hero-stats { margin-top: 2em; }
.trade-hero .stat strong { font-size: 1.4rem; }

.trade-content { max-width: 880px; padding-top: 24px; padding-bottom: 24px; }

.trade-section {
	margin: 0 0 2.6em;
}

.trade-section > h2 { margin-bottom: .7em; }

.trade-section p { color: var(--ink-dim); }

.trade-answer {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--brand);
	border-radius: var(--radius);
	padding: 24px 26px;
}

.direct-answer {
	font-size: 1.05rem;
	color: var(--ink) !important;
	margin-bottom: 0;
}

.trade-section .direct-answer { margin-bottom: 1em; }

/* Tables */
.table-wrap { overflow-x: auto; margin: 1.2em 0; }

.kw-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	font-size: .92rem;
}

.kw-table th {
	background: var(--bg-soft);
	font-family: var(--font-head);
	font-weight: 600;
	text-align: left;
	padding: 12px 16px;
	border-bottom: 1px solid var(--line);
}

.kw-table td {
	padding: 11px 16px;
	border-bottom: 1px solid var(--line);
	color: var(--ink-dim);
}

.kw-table tr:last-child td { border-bottom: 0; }
.kw-table td:first-child { color: var(--ink); font-weight: 500; }

/* Lists */
.check-list, .approach-list {
	list-style: none;
	margin: 1em 0;
	padding: 0;
}

.check-list li, .approach-list li {
	padding: 10px 0 10px 30px;
	position: relative;
	color: var(--ink-dim);
	border-bottom: 1px solid var(--line);
}

.check-list li::before {
	content: '\2713';
	position: absolute;
	left: 2px;
	color: var(--green);
	font-weight: 700;
}

.approach-list li::before {
	content: '\25B8';
	position: absolute;
	left: 2px;
	color: var(--brand);
	font-weight: 700;
}

.check-list li:last-child, .approach-list li:last-child { border-bottom: 0; }

.fail-list { margin: 1em 0; padding-left: 24px; }
.fail-list li { padding: 8px 0; color: var(--ink-dim); }

/* Related links */
.related-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.related-col {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
}

.related-col h3 { margin-bottom: 12px; }
.related-col .link-arrow { display: block; padding: 5px 0; }

/* Trade CTA */
.trade-cta {
	background: #fff;
	border: 1.5px solid transparent;
	background: linear-gradient(#fff, #fff) padding-box, var(--grad) border-box;
	border-radius: var(--radius-lg);
	padding: 40px;
	text-align: center;
	margin-top: 48px;
	margin-bottom: 48px;
}

.trade-cta p { color: var(--ink-dim); max-width: 640px; margin-left: auto; margin-right: auto; }
.trade-cta .hero-actions { justify-content: center; margin-bottom: 0; }

section.trade-cta.container { padding: 40px; }

/* ---------- FAQ (details/summary) ---------- */

.faq-list { margin: 1.2em 0; }

.faq-item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	margin-bottom: 10px;
	overflow: hidden;
}

.faq-item summary {
	padding: 18px 22px;
	font-family: var(--font-head);
	font-weight: 600;
	font-size: .98rem;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	color: var(--ink);
}

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

.faq-item summary::after {
	content: '+';
	font-size: 1.3rem;
	color: var(--brand);
	flex-shrink: 0;
	transition: transform .2s ease;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-answer {
	padding: 0 22px 18px;
	color: var(--ink-dim);
	font-size: .94rem;
}

.faq-answer p { margin: 0; }


/* ---------- Reference-style components ---------- */

/* Small-caps eyebrow above section titles */
.eyebrow {
	display: block;
	text-align: center;
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--ink-faint);
	margin-bottom: 14px;
}

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

/* Pill badge (hero / dark CTA) */
.pill-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(34, 197, 94, .12);
	border: 1px solid rgba(34, 197, 94, .35);
	color: #15803D;
	font-size: .82rem;
	font-weight: 600;
	border-radius: 999px;
	padding: 6px 14px;
	margin-bottom: 22px;
}

.pill-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--brand-2);
}

.pill-badge.on-dark { background: rgba(34, 197, 94, .15); color: #4ADE80; }

/* Microcopy under hero CTAs */
.hero-micro { font-size: .85rem; color: var(--ink-faint); margin: -1.4em 0 2em; }

/* Dash-bullet list */
.dash-list { list-style: none; margin: 0 0 1em; padding: 0; }

.dash-list li {
	padding: 5px 0 5px 20px;
	position: relative;
	color: var(--ink-dim);
	font-size: .93rem;
}

.dash-list li::before {
	content: '\2013';
	position: absolute;
	left: 2px;
	color: var(--brand);
	font-weight: 700;
}

/* Review avatar chip */
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }

.review-avatar {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--dark);
	color: #fff;
	font-family: var(--font-head);
	font-weight: 700;
	font-size: .75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.review-author .review-who { display: flex; flex-direction: column; }
.review-author .review-who strong { font-size: .92rem; }
.review-author .review-who span { color: var(--ink-faint); font-size: .83rem; }

/* Card 'learn more' link */
.card-link {
	display: inline-block;
	margin-top: 14px;
	font-weight: 600;
	font-size: .92rem;
	color: var(--brand);
}

.card-link::after { content: ' \2192'; }

/* External authority links list */
.ext-links { list-style: none; margin: 1em 0; padding: 0; }

.ext-links li { padding: 6px 0; border-bottom: 1px solid var(--line); }

.ext-links li:last-child { border-bottom: 0; }

.ext-links a { font-weight: 600; }

.ext-links a::after {
	content: '\2197';
	font-size: .8em;
	margin-left: 5px;
	color: var(--ink-faint);
}

.ext-links .ext-note { color: var(--ink-dim); font-size: .93rem; }

/* Channel cards (external platforms) */
.channel-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin: 1.4em 0;
}

.channel-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px;
	box-shadow: var(--shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}

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

.channel-card h3 { font-size: 1.02rem; margin-bottom: .3em; }
.channel-card h3 a { color: var(--ink); }
.channel-card h3 a::after { content: ' \2197'; font-size: .8em; color: var(--ink-faint); margin-left: 4px; }
.channel-card p { color: var(--ink-dim); font-size: .9rem; margin: 0; }

/* Dark CTA band (enterprise-style) */
.dark-band {
	background: var(--dark);
	border-radius: var(--radius-lg);
	padding: 44px 40px;
	color: #D9DED3;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	margin: 48px 0;
}

.dark-band h2 { color: #fff; margin-bottom: .3em; }
.dark-band p { color: #B3BAA8; margin: 0; max-width: 640px; }
.dark-band .green { color: #4ADE80; }

/* Two-column feature split */
.split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	margin: 1.4em 0;
}

.split-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	box-shadow: var(--shadow-sm);
}

.split-card h3 { margin-bottom: .5em; }

/* Stat strip on service pages */
.stat-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin: 1.6em 0;
}

.stat-cell {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 20px;
	text-align: center;
}

.stat-cell strong {
	display: block;
	font-family: var(--font-head);
	font-size: 1.5rem;
	color: var(--brand);
}

.stat-cell span { font-size: .85rem; color: var(--ink-faint); }

/* Centered page heroes */
.page-hero .container { text-align: center; }
.page-hero h1 { margin-left: auto; margin-right: auto; }
.page-hero .hero-lead { margin-left: auto; margin-right: auto; }
.page-hero .hero-actions { justify-content: center; }

.trade-content .reviews-grid { grid-template-columns: repeat(2, 1fr); }

/* Section body width for readability on service pages */
.trade-content .channel-grid, .trade-content .stat-strip, .trade-content .split-grid { max-width: 100%; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
	.services-grid, .transparency-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
	.channel-grid { grid-template-columns: repeat(2, 1fr); }
	.stat-strip { grid-template-columns: repeat(2, 1fr); }
	.pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.trade-links { grid-template-columns: repeat(2, 1fr); }
	.mega-grid { grid-template-columns: repeat(2, 1fr); }

	.menu-toggle { display: flex; }

	.header-actions { margin-left: auto; }

	.main-nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(255, 255, 255, .98);
		backdrop-filter: blur(14px);
		transform: translateX(100%);
		transition: transform .28s ease;
		overflow-y: auto;
		padding: 24px;
	}

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

	.nav-list { flex-direction: column; align-items: stretch; gap: 4px; }

	.nav-list > li > a {
		padding: 14px 16px;
		font-size: 1.05rem;
		border-bottom: 1px solid var(--line);
		border-radius: 0;
	}

	.mega-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		max-height: none;
		box-shadow: none;
		border: 0;
		border-radius: 0;
		padding: 0 0 0 12px;
		display: none;
	}

	.has-mega.mega-open .mega-menu { display: block; }

	.has-mega > a::after {
		content: '+';
		float: right;
		color: var(--brand);
		font-size: 1.2rem;
	}

	.has-mega.mega-open > a::after { content: '\2212'; }

	.header-phone { display: none; }

	.exclusivity-grid { grid-template-columns: 1fr; gap: 28px; }
	.contact-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
	.header-actions { display: none; }
	.split-grid, .channel-grid, .stat-strip { grid-template-columns: 1fr; }
	.dark-band { padding: 30px 24px; }
	.menu-toggle { margin-left: auto; }
	.footer-grid { grid-template-columns: repeat(2, 1fr); }
	.related-grid { grid-template-columns: 1fr; }
	.hero { padding: 64px 0 48px; }
	.hero-stats { gap: 24px; }
	.bundle-card { flex-direction: column; align-items: flex-start; }
	.trade-cta { padding: 28px 22px; }
}

@media (max-width: 480px) {
	.services-grid, .transparency-grid, .reviews-grid,
	.pricing-grid, .steps, .trade-links, .mega-grid { grid-template-columns: 1fr; }

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

	.hero-actions .btn-gradient, .hero-actions .btn-outline,
	.footer-cta-actions .btn-gradient, .footer-cta-actions .btn-outline {
		width: 100%;
	}

	.contact-form-wrap { padding: 22px; }
}
