/*
 * Bidding Estimate – front page styles.
 */

:root {
	--be-pine: #16352D;
	--be-pine-2: #1E4539;
	--be-pine-3: #2E6153;
	--be-deep: #0F261F;
	--be-paper: #F3F5F2;
	--be-white: #FFFFFF;
	--be-graphite: #1D2421;
	--be-muted: #56625C;
	--be-line: #DFE4E0;
	--be-paint: #C9431E;
	--be-paint-dark: #A6361A;
	--be-tape: #F4C430;

	--be-font-display: "Archivo", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
	--be-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--be-wrap: 1200px;
	--be-gutter: clamp(1.25rem, 4vw, 2rem);
	--be-space: clamp(4rem, 9vw, 7rem);
	--be-r-s: 8px;
	--be-r-m: 16px;
	--be-r-l: 24px;
	--be-shadow: 0 24px 48px -28px rgba(15, 38, 31, .35);
}

/* ---------- Base ---------- */
.be-site *, .be-site *::before, .be-site *::after { box-sizing: border-box; }
body.be-site {
	margin: 0;
	overflow-x: clip;
	background: var(--be-white);
	color: var(--be-graphite);
	font-family: var(--be-font-body);
	font-size: 1.0625rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
:where(.be-site) a,
:where(.be-site) a:visited { color: var(--be-pine-3); }
:where(.be-site) a:hover,
:where(.be-site) a:focus { color: var(--be-paint); outline: none; }
.be-site :focus-visible { outline: 3px solid var(--be-tape); outline-offset: 3px; border-radius: 4px; }

:where(.be-site) :is(h1, h2, h3) {
	font-family: var(--be-font-display);
	font-stretch: 84%;
	color: var(--be-pine);
	margin: 0;
	line-height: 1.12;
	letter-spacing: -0.01em;
}
:where(.be-main) p { margin: 0 0 1em; }
:where(.be-main) p:last-child { margin-bottom: 0; }
:where(.be-main) :is(ul, ol) { margin: 0; padding: 0; list-style: none; }
:where(.be-main) :is(table, blockquote, figure, dl, dd) { margin: 0; }
:where(.be-main) img { display: block; max-width: 100%; height: auto; }

.be-wrap { width: 100%; max-width: var(--be-wrap); margin-inline: auto; padding-inline: var(--be-gutter); }
.be-h2 { font-size: clamp(1.85rem, 1.2rem + 2.2vw, 2.7rem); font-weight: 800; }
.be-h3 { font-size: 1.18rem; font-weight: 700; font-stretch: 92%; line-height: 1.3; }
.be-ico { flex: none; }

/* Section rhythm: white / paper alternate, dark sections stand alone */
.be-section { padding-block: var(--be-space); }
.be-section--alt { background: var(--be-paper); }
.be-section--alt + .be-section--alt { border-top: 1px solid var(--be-line); }
.be-section__head { max-width: 46rem; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.be-section__head--row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; flex-wrap: wrap; }
.be-section__lead { color: var(--be-muted); font-size: 1.12rem; margin-top: 1rem; max-width: 40rem; }

/* ---------- Image fallback ---------- */
.be-ph {
	position: relative;
	width: 100%;
	background:
		repeating-linear-gradient(0deg, transparent 0 23px, rgba(255,255,255,.07) 23px 24px),
		repeating-linear-gradient(90deg, transparent 0 23px, rgba(255,255,255,.07) 23px 24px),
		linear-gradient(135deg, #2E6153, #16352D);
}
.be-ph__note {
	position: absolute; left: 12px; bottom: 12px; right: 12px;
	padding: .45rem .7rem; border-radius: 6px;
	background: rgba(0,0,0,.55); color: #fff; font-size: .8rem; line-height: 1.3;
}

/* ---------- Buttons ---------- */
.be-btn, .be-btn:visited {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	min-height: 50px; padding: .8rem 1.4rem;
	border: 2px solid transparent; border-radius: var(--be-r-s);
	font-family: var(--be-font-display); font-weight: 700; font-size: 1rem; line-height: 1.1;
	text-align: center; text-decoration: none; cursor: pointer;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.be-btn--lg { min-height: 56px; padding: .95rem 1.7rem; font-size: 1.05rem; }

.be-btn--accent, .be-btn--accent:visited { background: var(--be-paint); color: #fff; }
.be-btn--accent:hover, .be-btn--accent:focus { background: var(--be-paint-dark); color: #fff; }

.be-btn--ghost, .be-btn--ghost:visited { background: transparent; border-color: var(--be-pine); color: var(--be-pine); }
.be-btn--ghost:hover, .be-btn--ghost:focus { background: var(--be-pine); color: #fff; }

.be-btn--light, .be-btn--light:visited { background: transparent; border-color: rgba(255,255,255,.45); color: #fff; }
.be-btn--light:hover, .be-btn--light:focus { background: #fff; border-color: #fff; color: var(--be-pine); }

/* ---------- Site header and footer ---------- */
.be-site .site-header {
	position: sticky; top: 0; z-index: 50;
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem 2rem;
	padding: .9rem max(var(--be-gutter), calc((100% - var(--be-wrap)) / 2 + var(--be-gutter)));
	background: rgba(255,255,255,.96);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--be-line);
}
.admin-bar.be-site .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar.be-site .site-header { top: 0; } }
.be-site .site-branding { display: flex; flex-direction: column; }
.be-site .site-title { margin: 0; font-family: var(--be-font-display); font-stretch: 85%; font-size: 1.35rem; font-weight: 800; line-height: 1.1; }
.be-site .site-title a, .be-site .site-title a:visited { color: var(--be-pine); text-decoration: none; }
.be-site .site-description { margin: 0; font-size: .8rem; color: var(--be-muted); }
.be-site .main-navigation { width: auto; }
.be-site .main-navigation ul { gap: .3rem 1.75rem; }
.be-site .main-navigation a, .be-site .main-navigation a:visited { color: var(--be-graphite); font-weight: 600; font-size: .97rem; padding: .4rem 0; text-decoration: none; }
.be-site .main-navigation a:hover { color: var(--be-paint); }
.be-site .menu-toggle { border: 1px solid var(--be-line); background: #fff; border-radius: var(--be-r-s); padding: .6rem 1rem; font-weight: 700; color: var(--be-pine); }
@media (max-width: 599px) {
	.be-site .main-navigation { width: 100%; }
	.be-site .main-navigation.toggled ul { display: flex; flex-direction: column; padding-top: .5rem; }
	.be-site .main-navigation.toggled a { padding: .75rem 0; border-bottom: 1px solid var(--be-line); }
}
.be-site .site-footer { background: var(--be-deep); color: #A9BCB4; padding: 2rem var(--be-gutter); text-align: center; font-size: .9rem; }
.be-site .site-footer a, .be-site .site-footer a:visited { color: #D3DED9; }

/* ---------- Hero ---------- */
.be-hero {
	padding-block: clamp(3.5rem, 7vw, 6rem) clamp(7rem, 12vw, 9rem);
	background:
		repeating-linear-gradient(0deg, transparent 0 47px, rgba(255,255,255,.04) 47px 48px),
		repeating-linear-gradient(90deg, transparent 0 47px, rgba(255,255,255,.04) 47px 48px),
		radial-gradient(90% 80% at 85% 25%, #24584A 0%, var(--be-pine) 55%, var(--be-deep) 100%);
	color: #CFDDD6;
}
.be-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}
.be-kicker {
	display: inline-flex; align-items: center; gap: .55rem;
	margin-bottom: 1.5rem;
	padding: .45rem 1rem .45rem .7rem;
	border-radius: 999px;
	background: rgba(244,196,48,.1);
	border: 1px solid rgba(244,196,48,.3);
	color: var(--be-tape);
	font-weight: 600; font-size: .9rem;
}
.be-kicker .be-ico { width: 18px; height: 18px; }
.be-hero__title {
	color: #fff;
	font-size: clamp(2.3rem, 1.3rem + 3.8vw, 4rem);
	font-weight: 800; font-stretch: 78%;
	line-height: 1.03; letter-spacing: -0.02em;
	max-width: 16ch;
}
.be-hero__lead { margin-top: 1.5rem; font-size: clamp(1.08rem, 1rem + .4vw, 1.24rem); max-width: 35rem; }
.be-hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.be-hero__proof { display: flex; flex-wrap: wrap; gap: .6rem 1.75rem; margin-top: 2rem; font-size: .95rem; font-weight: 600; color: #fff; }
.be-hero__proof li { display: flex; align-items: center; gap: .45rem; }
.be-hero__proof .be-ico { width: 18px; height: 18px; color: var(--be-tape); }

.be-hero__media { position: relative; padding: 0 0 2.5rem 2.5rem; }
.be-hero__img, .be-hero__media > .be-ph {
	width: 100%;
	aspect-ratio: 9 / 10;
	object-fit: cover;
	border-radius: var(--be-r-l);
	box-shadow: 0 40px 80px -30px rgba(0,0,0,.55);
}
.be-hero__badge {
	position: absolute; top: 1.5rem; right: -.75rem;
	display: flex; align-items: center; gap: .6rem;
	padding: .75rem 1.1rem;
	background: var(--be-tape); color: var(--be-graphite);
	border-radius: var(--be-r-m);
	font-size: .9rem; line-height: 1.25;
	box-shadow: var(--be-shadow);
}
.be-hero__badge strong { display: block; font-family: var(--be-font-display); font-size: 1.1rem; }

/* Estimate sheet */
.be-sheet {
	position: absolute; left: 0; bottom: 0;
	width: min(330px, 80%);
	background: #fff; color: var(--be-graphite);
	border-radius: var(--be-r-m);
	padding: 0 1.2rem 1.1rem;
	box-shadow: 0 30px 60px -25px rgba(0,0,0,.5);
	overflow: hidden;
}
.be-sheet__tape {
	height: 20px; margin: 0 -1.2rem .9rem;
	background:
		repeating-linear-gradient(90deg, #1D2421 0 1.5px, transparent 1.5px 40px) 0 0 / 100% 11px no-repeat,
		repeating-linear-gradient(90deg, #1D2421 0 1px, transparent 1px 10px) 0 0 / 100% 6px no-repeat,
		var(--be-tape);
}
.be-sheet__head { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; flex-wrap: wrap; font-family: var(--be-font-display); font-weight: 700; color: var(--be-pine); padding-bottom: .55rem; border-bottom: 1px solid var(--be-line); }
.be-sheet__zip { font-weight: 500; font-size: .78rem; color: var(--be-muted); }
.be-sheet__table { width: 100%; border-collapse: collapse; font-size: .87rem; font-variant-numeric: tabular-nums; }
.be-sheet__table td { padding: .5rem 0; border-bottom: 1px dashed var(--be-line); }
.be-sheet__table td:not(:first-child) { text-align: right; }
.be-sheet__table td:nth-child(2) { color: var(--be-muted); }
.be-sheet__table tfoot td { border: 0; padding-top: .7rem; font-family: var(--be-font-display); font-weight: 800; font-size: 1.1rem; color: var(--be-pine); }
.be-sheet__table tfoot td:last-child { color: var(--be-paint); }

@media (max-width: 920px) {
	.be-hero__grid { grid-template-columns: minmax(0, 1fr); }
	.be-hero__media { max-width: 540px; }
}
@media (max-width: 480px) {
	.be-hero__actions .be-btn { width: 100%; }
	.be-hero__media { padding: 0 0 4rem; }
	.be-hero__badge { right: .75rem; }
	.be-sheet { left: .75rem; width: calc(100% - 1.5rem); }
}

/* ---------- Fact panel (overlaps hero) ---------- */
.be-facts { position: relative; z-index: 2; margin-top: clamp(-5rem, -7vw, -3.5rem); }
.be-facts__grid {
	display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
	background: #fff;
	border-radius: var(--be-r-m);
	box-shadow: 0 20px 50px -25px rgba(15,38,31,.35);
	padding: 0;
	overflow: hidden;
}
.be-facts__grid > div { display: flex; flex-direction: column; gap: .15rem; padding: 1.6rem 1.75rem; border-left: 1px solid var(--be-line); }
.be-facts__grid > div:first-child { border-left: 0; }
.be-facts strong { font-family: var(--be-font-display); font-stretch: 80%; font-size: clamp(1.55rem, 1.1rem + 1.2vw, 2.05rem); font-weight: 800; line-height: 1.1; color: var(--be-pine); }
.be-facts span { font-size: .93rem; color: var(--be-muted); }
.be-wrap.be-facts__grid { max-width: calc(var(--be-wrap) - 2 * var(--be-gutter)); width: calc(100% - 2 * var(--be-gutter)); }
@media (max-width: 760px) {
	.be-facts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.be-facts__grid > div { padding: 1.2rem 1.25rem; }
	.be-facts__grid > div:nth-child(3) { border-left: 0; }
	.be-facts__grid > div:nth-child(n+3) { border-top: 1px solid var(--be-line); }
}

/* ---------- Software strip ---------- */
.be-strip__inner { display: flex; align-items: center; justify-content: center; gap: 1rem 2.5rem; flex-wrap: wrap; padding-block: 2.5rem 1rem; text-align: center; }
.be-strip__label { margin: 0; color: var(--be-muted); font-size: .93rem; }
.be-strip__list { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.25rem; }
.be-strip__list li { font-family: var(--be-font-display); font-stretch: 85%; font-weight: 700; font-size: 1.05rem; color: #7C8A83; }

/* ---------- Split sections ---------- */
.be-split__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 6vw, 5.5rem); align-items: center; }
.be-split__copy .be-h2 { margin-bottom: 1.25rem; }
.be-split__copy > p { font-size: 1.08rem; max-width: 36rem; color: #3A4540; }
.be-round, .be-split__media .be-ph { width: 100%; object-fit: cover; border-radius: var(--be-r-l); }
.be-ticks { display: grid; gap: .7rem; margin-top: 1.75rem; }
.be-ticks li { display: flex; gap: .65rem; align-items: center; font-weight: 600; color: var(--be-pine); }
.be-ticks .be-ico { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--be-pine); color: var(--be-tape); }
@media (max-width: 860px) {
	.be-split__grid { grid-template-columns: minmax(0, 1fr); }
	.be-split__grid--rev .be-split__media { order: -1; }
}

/* ---------- Shared card surface ---------- */
.be-card, .be-plan, .be-review, .be-ind, .be-faq__item {
	background: #fff;
	border: 1px solid var(--be-line);
	border-radius: var(--be-r-m);
}
.be-section:not(.be-section--alt) :is(.be-card, .be-plan, .be-review, .be-ind, .be-faq__item) { background: var(--be-paper); border-color: transparent; }
.be-section:not(.be-section--alt) :is(.be-card, .be-ind):hover { border-color: var(--be-pine-3); }

/* ---------- Services ---------- */
.be-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.be-card { position: relative; padding: 2rem 1.75rem; transition: border-color .2s ease; }
.be-card:hover { border-color: var(--be-pine-3); }
.be-card__ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 12px; background: var(--be-pine); color: var(--be-tape); margin-bottom: 1.25rem; }
.be-card .be-h3 { margin-bottom: .6rem; }
.be-card .be-h3 a, .be-card .be-h3 a:visited { color: var(--be-pine); text-decoration: none; }
.be-card .be-h3 a::after { content: ""; position: absolute; inset: 0; border-radius: inherit; }
.be-card p { color: var(--be-muted); }
@media (max-width: 960px) { .be-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .be-cards { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Deliverables ---------- */
.be-deliver__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.be-deliver__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 2rem; margin: 2.25rem 0; }
.be-deliver__list div { padding-top: 1rem; border-top: 2px solid var(--be-pine); }
.be-deliver__list dt { font-family: var(--be-font-display); font-stretch: 90%; font-weight: 700; font-size: 1.06rem; color: var(--be-pine); margin-bottom: .3rem; }
.be-deliver__list dd { color: var(--be-muted); font-size: .97rem; }
.be-shot, .be-deliver__media .be-ph { width: 100%; border-radius: var(--be-r-m); box-shadow: var(--be-shadow); }
@media (max-width: 900px) { .be-deliver__grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 520px) { .be-deliver__list { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Trades (dark) ---------- */
.be-section.be-trades { background: var(--be-pine); }
.be-trades .be-h2 { color: #fff; }
.be-trades .be-section__lead { color: #B3C5BD; }
.be-trades__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: .75rem; }
.be-trades__list li { display: flex; }
.be-trades__list a, .be-trades__list a:visited {
	flex: 1;
	display: flex; flex-direction: column; justify-content: center; gap: .25rem;
	padding: 1.1rem 1.25rem;
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: var(--be-r-s);
	color: #fff; text-decoration: none; font-weight: 600; line-height: 1.35;
	transition: background-color .15s ease, border-color .15s ease;
}
.be-trades__list a:hover, .be-trades__list a:focus { background: rgba(244,196,48,.08); border-color: var(--be-tape); color: #fff; }
.be-trades__div { font-size: .76rem; font-weight: 700; color: var(--be-tape); }
@media (max-width: 960px) { .be-trades__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 420px) { .be-trades__list { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; } }

/* ---------- Industries ---------- */
.be-ind__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; }
.be-ind, .be-ind:visited { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; color: var(--be-graphite); transition: border-color .2s ease; }
.be-ind:hover, .be-ind:focus { border-color: var(--be-pine-3); color: var(--be-graphite); }
.be-ind__img, .be-ind > .be-ph { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.be-ind__body { padding: 1.25rem 1.35rem 1.5rem; }
.be-ind__body .be-h3 { margin-bottom: .4rem; }
.be-ind__body p { color: var(--be-muted); font-size: .96rem; }
@media (max-width: 1024px) { .be-ind__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .be-ind__grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Process ---------- */
.be-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2.25rem; counter-reset: be-step; }
.be-steps li { counter-increment: be-step; position: relative; padding-top: 4.25rem; }
.be-steps li::before {
	content: counter(be-step);
	position: absolute; top: 0; left: 0;
	width: 3rem; height: 3rem; display: grid; place-items: center;
	border-radius: 50%; background: var(--be-pine); color: var(--be-tape);
	font-family: var(--be-font-display); font-weight: 800; font-size: 1.2rem;
}
.be-steps li:not(:last-child)::after { content: ""; position: absolute; top: 1.5rem; left: 3.75rem; right: -1.5rem; border-top: 2px dashed var(--be-line); }
.be-steps .be-h3 { margin-bottom: .5rem; }
.be-steps p { color: var(--be-muted); }
@media (max-width: 900px) { .be-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } .be-steps li::after { display: none; } }
@media (max-width: 540px) { .be-steps { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Why us ---------- */
.be-why__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem 2.25rem; margin-top: 2.25rem; }
.be-why__list > div > .be-ico { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--be-pine); color: var(--be-tape); margin-bottom: .9rem; }
.be-why__list .be-h3 { margin-bottom: .4rem; font-size: 1.08rem; }
.be-why__list p { color: var(--be-muted); font-size: .97rem; }
@media (max-width: 540px) { .be-why__list { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Comparison ---------- */
.be-table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--be-line); border-radius: var(--be-r-m); background: #fff; }
.be-compare__table { width: 100%; min-width: 720px; border-collapse: collapse; font-size: .98rem; }
.be-compare__table th, .be-compare__table td { padding: 1.1rem 1.3rem; text-align: left; vertical-align: top; border-bottom: 1px solid var(--be-line); }
.be-compare__table tbody tr:last-child :is(th, td) { border-bottom: 0; }
.be-compare__table thead th { font-family: var(--be-font-display); font-weight: 700; color: var(--be-pine); background: var(--be-paper); }
.be-compare__table thead th:nth-child(2) { background: var(--be-pine); color: #fff; }
.be-compare__table tbody th { width: 22%; font-weight: 600; color: var(--be-pine); }
.be-compare__table td { color: var(--be-muted); }
.be-compare__table td:nth-child(2) { background: #FBF6E4; color: var(--be-pine); font-weight: 600; }

/* ---------- Pricing (custom quote) ---------- */
.be-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; }
.be-plan { display: flex; flex-direction: column; padding: 2.1rem 1.9rem; }
.be-plan .be-h3 { font-size: 1.25rem; }
.be-plan__meta { display: flex; flex-direction: column; margin: 1.25rem 0 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--be-line); }
.be-plan__big { font-family: var(--be-font-display); font-stretch: 80%; font-weight: 800; font-size: 2.2rem; line-height: 1.05; color: var(--be-pine); }
.be-plan__meta span:last-child { font-size: .9rem; color: var(--be-muted); }
.be-plan > p { color: var(--be-muted); }
.be-plan ul { display: grid; gap: .5rem; margin: 1.1rem 0 1.75rem; }
.be-plan li { position: relative; padding-left: 1.6rem; }
.be-plan li::before { content: ""; position: absolute; left: 0; top: .45em; width: 14px; height: 8px; border-left: 2px solid var(--be-paint); border-bottom: 2px solid var(--be-paint); transform: rotate(-45deg); }
.be-plan .be-btn { margin-top: auto; }

.be-plans .be-plan.be-plan--featured { background: var(--be-pine); border-color: var(--be-pine); color: #D2DED8; }
.be-plan--featured .be-h3, .be-plan--featured .be-plan__big { color: #fff; }
.be-plan--featured .be-plan__meta { border-color: rgba(255,255,255,.16); }
.be-plan--featured .be-plan__meta span:last-child { color: var(--be-tape); }
.be-plan--featured > p { color: #B9CAC2; }
.be-plan--featured li::before { border-color: var(--be-tape); }

.be-factors { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem 2.5rem; margin-top: 1.5rem; padding: 1.4rem 1.75rem; border: 1px dashed #C4CCC7; border-radius: var(--be-r-m); }
.be-factors .be-h3 { font-size: 1.02rem; }
.be-factors ul { display: flex; flex-wrap: wrap; gap: .5rem 1.75rem; }
.be-factors li { color: var(--be-muted); font-size: .96rem; position: relative; padding-left: 1rem; }
.be-factors li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--be-tape); }
@media (max-width: 900px) { .be-plans { grid-template-columns: minmax(0, 1fr); max-width: 34rem; } }

/* ---------- Coverage ---------- */
.be-coverage__grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(2.5rem, 5vw, 4.5rem); }
.be-coverage__grid .be-h2 { margin-bottom: 1.1rem; }
.be-coverage__grid p { color: #3A4540; }
.be-coverage__grid .be-h3 { margin-bottom: .9rem; }
.be-states { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.75rem; }
.be-states a, .be-states a:visited { display: block; padding: .75rem 0; border-bottom: 1px solid var(--be-line); color: var(--be-pine); font-weight: 600; text-decoration: none; }
.be-states a:hover, .be-states a:focus { color: var(--be-paint); }
@media (max-width: 820px) { .be-coverage__grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Reviews ---------- */
.be-reviews__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.be-review { position: relative; padding: 2rem; }
.be-review::before { content: "\201C"; position: absolute; top: .5rem; right: 1.25rem; font-family: Georgia, serif; font-size: 4.5rem; line-height: 1; color: var(--be-tape); }
.be-review p { font-size: 1.04rem; }
.be-review footer { margin-top: 1.1rem; font-weight: 700; color: var(--be-pine); font-size: .93rem; }
@media (max-width: 900px) { .be-reviews__grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Guide ---------- */
.be-guide__wrap .be-h2 { max-width: 40rem; margin-bottom: 2.25rem; }
.be-guide__cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 4rem; }
.be-guide__cols .be-h3 { margin: 1.75rem 0 .6rem; }
.be-guide__cols > div > .be-h3:first-child { margin-top: 0; }
.be-guide__cols p { color: #3A4540; max-width: 36rem; }
@media (max-width: 820px) { .be-guide__cols { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Blog ---------- */
.be-blog__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.be-post__img { display: block; border-radius: var(--be-r-m); overflow: hidden; margin-bottom: 1rem; }
.be-post__img img, .be-post__img .be-ph { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.be-post time { font-size: .85rem; color: var(--be-muted); }
.be-post .be-h3 { margin-top: .3rem; }
.be-post .be-h3 a, .be-post .be-h3 a:visited { color: var(--be-pine); text-decoration: none; }
.be-post .be-h3 a:hover { color: var(--be-paint); }
@media (max-width: 900px) { .be-blog__grid { grid-template-columns: minmax(0, 1fr); max-width: 34rem; } }

/* ---------- FAQ ---------- */
.be-faq__grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.be-faq__grid > header { position: sticky; top: 110px; }
.be-faq__list { display: grid; gap: .65rem; }
.be-faq__item { border-radius: var(--be-r-s); transition: border-color .2s ease; }
.be-faq__item[open] { border-color: var(--be-pine-3); }
.be-faq__item summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.15rem 1.35rem; cursor: pointer; list-style: none; }
.be-faq__item summary::-webkit-details-marker { display: none; }
.be-faq__item summary::after {
	content: "+"; flex: none; width: 2rem; height: 2rem; display: grid; place-items: center;
	border-radius: 50%; background: #fff; border: 1px solid var(--be-line);
	font-size: 1.2rem; color: var(--be-pine); transition: transform .2s ease;
}
.be-faq__item[open] summary::after { transform: rotate(45deg); background: var(--be-tape); border-color: var(--be-tape); }
.be-faq__q { font-size: 1.06rem; font-weight: 700; font-stretch: 92%; line-height: 1.35; }
.be-faq__a { padding: 0 1.35rem 1.35rem; color: var(--be-muted); }
@media (max-width: 860px) { .be-faq__grid { grid-template-columns: minmax(0, 1fr); } .be-faq__grid > header { position: static; } }

/* ---------- Quote (dark) ---------- */
.be-quote { position: relative; padding-block: var(--be-space); background: radial-gradient(80% 90% at 10% 20%, #24584A 0%, var(--be-pine) 60%, var(--be-deep) 100%); color: #CFDDD6; }
.be-quote::before {
	content: ""; position: absolute; top: 0; left: 0; right: 0; height: 12px;
	background: repeating-linear-gradient(90deg, #1D2421 0 1px, transparent 1px 12px) 0 0 / 100% 7px no-repeat, var(--be-tape);
}
.be-quote__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.be-quote .be-h2 { color: #fff; margin-bottom: 1rem; }
.be-quote p { font-size: 1.1rem; }
.be-quote__contact { display: grid; gap: .55rem; margin-top: 1.75rem; font-weight: 600; }
.be-quote__contact a, .be-quote__contact a:visited { color: var(--be-tape); text-decoration: none; font-size: 1.15rem; }
.be-quote__contact a:hover { color: #fff; }
.be-quote__form { background: #fff; color: var(--be-graphite); border-radius: var(--be-r-m); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: 0 40px 80px -30px rgba(0,0,0,.5); }
.be-quote__form input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.be-quote__form select, .be-quote__form textarea {
	width: 100%; min-height: 48px; padding: .7rem .9rem;
	border: 1px solid var(--be-line); border-radius: var(--be-r-s);
	background: var(--be-paper); font-size: 1rem; color: var(--be-graphite);
}
.be-quote__form :is(input, textarea, select):focus { border-color: var(--be-pine); outline: 2px solid var(--be-tape); }
.be-quote__form [type="submit"] { width: 100%; min-height: 52px; border: 0; border-radius: var(--be-r-s); background: var(--be-paint); color: #fff; font-family: var(--be-font-display); font-weight: 700; font-size: 1.05rem; cursor: pointer; }
.be-quote__form [type="submit"]:hover { background: var(--be-paint-dark); }
.be-quote__placeholder { color: var(--be-muted); font-size: .98rem; }
@media (max-width: 860px) { .be-quote__grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Motion and anchors ---------- */
@media (prefers-reduced-motion: reduce) {
	.be-site *, .be-site *::before, .be-site *::after { transition: none !important; animation: none !important; }
}
.be-site [id] { scroll-margin-top: 90px; }