/**
 * Water Softener — page styles
 * Scoped to .ws-page so nothing leaks into the rest of the theme.
 * Matches Evolution Plumbing brand: dark navy + gold.
 */

/* ---------- Tokens ---------- */
.ws-page {
	--ep-dark: #0d161d;
	--ep-dark-2: #0a1229;
	--ep-gold: #e2b27b;
	--ep-gold-hover: oklch(0.72 0.09 60);
	--ep-body: #565969;
	--ep-white: #ffffff;
	--ep-gray-bg: #f8f8f8;
	--ep-line: #e8e8e8;
	--ep-maxw: 1280px;
	color: var(--ep-body);
	line-height: 1.6;
}

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

.ws-page h1, .ws-page h2, .ws-page h3, .ws-page h4 {
	font-family: "Plus Jakarta Sans", sans-serif;
	color: var(--ep-dark);
	line-height: 1.15;
	margin: 0 0 16px;
}
.ws-page p { font-family: "DM Sans", sans-serif; margin: 0 0 12px; color: var(--ep-body); }
.ws-page a { text-decoration: none; }

.ws-container {
	max-width: var(--ep-maxw);
	margin: 0 auto;
	padding: 0 16px;
}
@media (min-width: 640px) { .ws-container { padding: 0 24px; } }
@media (min-width: 1024px) { .ws-container { padding: 0 32px; } }

/* Section label "eyebrow" pattern */
.ws-label {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--ep-gold);
	font-family: "DM Sans", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	margin-bottom: 1rem;
}
.ws-label::before {
	content: '';
	display: inline-block;
	width: 30px;
	height: 2px;
	background: var(--ep-gold);
}
.ws-label--center { justify-content: center; }
.ws-label--center::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 2px;
	background: var(--ep-gold);
}

/* Buttons */
.ws-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	font-size: 1rem;
	padding: 0.875rem 1.75rem;
	border-radius: 4px;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s, transform 0.16s;
	border: none;
	cursor: pointer;
	line-height: 1;
}
.ws-btn:hover { transform: translateY(-1px); }
.ws-btn--gold { background: var(--ep-gold); color: var(--ep-dark); }
.ws-btn--gold:hover { background: var(--ep-gold-hover); color: var(--ep-dark); }
.ws-btn--outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,0.45);
}
.ws-btn--outline:hover {
	border-color: var(--ep-gold);
	background: rgba(226,178,123,0.1);
}
.ws-btn--dark { background: var(--ep-dark); color: #fff; }
.ws-btn--dark:hover { background: rgb(30,45,55); color: #fff; }

/* ---------- HERO ---------- */
.ws-hero {
	position: relative;
	width: 100%;
	min-height: 520px;
	height: calc(100vh - 108px);
	max-height: 720px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.ws-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(1,13,20,0.93) 0%, rgba(1,13,20,0.75) 55%, rgba(1,13,20,0.4) 100%);
}
.ws-hero__inner {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: center;
	padding-top: 5rem;
}
@media (min-width: 1024px) { .ws-hero__inner { padding-top: 0; } }
.ws-hero__content { max-width: 640px; }
.ws-hero__title {
	font-weight: 800;
	color: #fff;
	font-size: clamp(2.2rem, 4.5vw, 3.5rem);
	line-height: 1.1;
	margin-bottom: 1.25rem;
}
.ws-hero__title span { color: var(--ep-gold); }
.ws-hero__text {
	font-family: "DM Sans", sans-serif;
	color: rgba(255,255,255,0.82);
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	max-width: 520px;
}
.ws-hero__ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.ws-hero__badges { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem 1.25rem; }
.ws-hero__badge {
	display: flex;
	align-items: center;
	gap: 0.375rem;
	font-family: "DM Sans", sans-serif;
	color: rgba(255,255,255,0.75);
	font-size: 0.875rem;
}

/* ---------- INTRO (Problem) ---------- */
.ws-intro { background: #fff; padding: 90px 0; }
.ws-intro__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) { .ws-intro__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.ws-intro__title {
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	line-height: 1.2;
	margin-bottom: 1.25rem;
}
.ws-intro__body p {
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1rem;
}
.ws-intro__stats { display: flex; flex-direction: column; gap: 1.25rem; }
.ws-stat {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	padding: 1.5rem;
	border-left: 4px solid var(--ep-gold);
	border-radius: 4px;
}
.ws-stat--dark { background: var(--ep-dark); }
.ws-stat--light { background: var(--ep-gray-bg); }
.ws-stat__value {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 800;
	font-size: 2.25rem;
	line-height: 1;
	color: var(--ep-gold);
	margin-bottom: 0.25rem;
}
.ws-stat__value span { font-size: 1rem; margin-left: 0.25rem; font-weight: 600; }
.ws-stat--dark .ws-stat__desc { color: rgba(255,255,255,0.75); }
.ws-stat--light .ws-stat__desc { color: var(--ep-body); }
.ws-stat__desc {
	font-family: "DM Sans", sans-serif;
	font-size: 0.9375rem;
	line-height: 1.5;
}

/* ---------- BENEFITS ---------- */
.ws-benefits { background: var(--ep-dark); padding: 90px 0; }
.ws-benefits .ws-section-head { text-align: center; margin-bottom: 3rem; }
.ws-benefits .ws-section-head h2 { color: #fff; font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.ws-benefits__grid {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 1.5rem;
}
@media (min-width: 640px) { .ws-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ws-benefits__grid { grid-template-columns: repeat(4, 1fr); } }
.ws-benefit-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 4px;
	padding: 1.75rem 1.5rem;
}
.ws-benefit-card__icon { margin-bottom: 1rem; }
.ws-benefit-card h3 {
	font-weight: 700;
	color: #fff;
	font-size: 1rem;
	margin-bottom: 0.625rem;
}
.ws-benefit-card p {
	color: rgba(255,255,255,0.62);
	font-size: 0.9375rem;
	line-height: 1.65;
}

/* ---------- RECENT INSTALLATIONS ---------- */
.ws-recent { background: #f8f8f6; padding: 5rem 0; }
.ws-recent .ws-section-head { text-align: center; margin-bottom: 3rem; }
.ws-recent .ws-section-head h2 { font-weight: 800; font-size: clamp(1.75rem, 4vw, 2.5rem); line-height: 1.15; }
.ws-recent .ws-section-head p { color: #555; max-width: 820px; margin: 0 auto; line-height: 1.7; }
.ws-recent__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.25rem;
}
.ws-recent__item {
	position: relative;
	border-radius: 0.75rem;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.ws-recent__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.ws-recent__item:hover img { transform: scale(1.04); }
.ws-recent__caption {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 55%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 1.25rem;
}
.ws-recent__caption strong {
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.3;
}
.ws-recent__caption span {
	color: #c89732;
	font-size: 0.8125rem;
	font-weight: 600;
	margin-top: 0.25rem;
}

/* ---------- REVIEWS ---------- */
.ws-reviews { background: var(--ep-gray-bg); padding: 48px 0 100px; }
.ws-reviews .ws-section-head { text-align: center; margin-bottom: 3rem; }
.ws-reviews .ws-section-head h2 { font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.ws-reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) { .ws-reviews__grid { grid-template-columns: repeat(3, 1fr); } }
.ws-review-card {
	padding: 1.5rem;
	border-radius: 4px;
	background: #fff;
	border: 1px solid #e8e8e8;
}
.ws-review-card__stars { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 0.75rem; }
.ws-review-card p {
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}
.ws-review-card footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.ws-review-card footer strong {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	color: var(--ep-dark);
	font-size: 0.9375rem;
}
.ws-review-card footer span {
	font-family: "DM Sans", sans-serif;
	color: #96999d;
	font-size: 0.75rem;
}

/* ---------- SERVICES ---------- */
.ws-services { background: var(--ep-gray-bg); padding: 90px 0; }
.ws-services__header { margin-bottom: 3rem; }
.ws-services__header h2 {
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	max-width: 560px;
}
.ws-services__list { display: flex; flex-direction: column; }
.ws-service-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: flex-start;
	padding: 2.5rem 0;
	border-top: 1px solid #e8e8e8;
}
@media (min-width: 768px) {
	.ws-service-row { grid-template-columns: 80px 1fr auto; gap: 2.5rem; }
}
.ws-service-row__num {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 800;
	font-size: 2.5rem;
	color: var(--ep-gold);
	line-height: 1;
	opacity: 0.5;
}
.ws-service-row h3 {
	font-weight: 700;
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}
.ws-service-row p {
	font-size: 1rem;
	line-height: 1.75;
	max-width: 600px;
}
.ws-service-row__link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--ep-gold);
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	font-size: 0.9375rem;
	white-space: nowrap;
	transition: color 0.2s;
}

/* ---------- PROCESS ---------- */
.ws-process { background: #fff; padding: 90px 0; }
.ws-process .ws-section-head { text-align: center; margin-bottom: 3.5rem; }
.ws-process .ws-section-head h2 { font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.ws-process__steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	position: relative;
}
@media (min-width: 640px) { .ws-process__steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ws-process__steps { grid-template-columns: repeat(4, 1fr); } }
.ws-process__step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.ws-process__num {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	background: var(--ep-dark);
	border: 2px solid var(--ep-gold);
	margin-bottom: 1.25rem;
	flex-shrink: 0;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 800;
	font-size: 1rem;
	color: var(--ep-gold);
}
.ws-process__step h3 { font-weight: 700; font-size: 1.0625rem; margin-bottom: 0.625rem; }
.ws-process__step p { font-size: 0.9375rem; line-height: 1.65; }

/* ---------- RESULTS (Testimonials) ---------- */
.ws-results { background: #0a1628; padding: 4rem 0 5rem; }
.ws-results .ws-section-head { text-align: center; margin-bottom: 3rem; }
.ws-results .ws-section-head h2 { color: #fff; font-weight: 700; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.ws-results .ws-section-head p { color: #9ca3af; max-width: 820px; margin: 0.75rem auto 0; }
.ws-results .ws-label { color: #d4af37; justify-content: center; font-weight: 600; font-size: 0.875rem; letter-spacing: 0.1em; text-transform: uppercase; }
.ws-results__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 768px) { .ws-results__grid { grid-template-columns: repeat(3, 1fr); } }
.ws-result-card {
	background: #0f2040;
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 0.75rem;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
}
.ws-result-card__stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.ws-result-card p {
	color: #d1d5db;
	font-size: 0.9375rem;
	line-height: 1.625;
	flex: 1;
	margin-bottom: 1.25rem;
}
.ws-result-card__photo {
	position: relative;
	height: 7rem;
	border-radius: 0.5rem;
	overflow: hidden;
	margin-bottom: 1.25rem;
}
.ws-result-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.ws-result-card footer { display: flex; align-items: center; gap: 0.75rem; }
.ws-result-card__avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: #d4af37;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-weight: 700;
	font-size: 0.875rem;
	color: #0a1628;
}
.ws-result-card footer strong { color: #fff; font-size: 0.875rem; font-weight: 600; }
.ws-result-card footer span { color: #9ca3af; font-size: 0.75rem; }

/* ---------- COMPARISON ---------- */
.ws-comparison { background: #fff; padding: 90px 0; }
.ws-comparison__header { margin-bottom: 3rem; }
.ws-comparison__header h2 {
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	max-width: 560px;
	margin-bottom: 0.75rem;
}
.ws-comparison__header p { font-size: 1rem; line-height: 1.7; max-width: 620px; }
.ws-comparison__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}
.ws-comparison__considering {
    margin-top: 3rem;
    text-align: center;
}
@media (min-width: 768px) { .ws-comparison__grid { grid-template-columns: 1fr 1fr; } }
.ws-comparison__col {
	border: 2px solid var(--ep-line);
	border-radius: 4px;
	padding: 2rem;
}
.ws-comparison__col--featured { border-color: var(--ep-gold); }
.ws-comparison__col h3 {
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 0;
}
.ws-comparison__col-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 1rem;
}
.ws-comparison__badge {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 0.75rem;
	padding: 0.25rem 0.625rem;
	border-radius: 2px;
	white-space: nowrap;
	flex-shrink: 0;
}
.ws-comparison__badge--gold { background: var(--ep-gold); color: var(--ep-dark); }
.ws-comparison__badge--gray { background: var(--ep-body); color: #fff; }
.ws-comparison__col > p {
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 1.25rem;
}
.ws-list { list-style: none; padding: 0; margin: 0 0 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.ws-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-family: "DM Sans", sans-serif;
	color: var(--ep-body);
	font-size: 0.9375rem;
	line-height: 1.5;
}
.ws-list li svg { flex-shrink: 0; margin-top: 3px; }
.ws-list__heading {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	font-size: 0.875rem;
	color: var(--ep-dark);
	margin-bottom: 0.5rem;
}

/* ---------- PRICING ---------- */
.ws-pricing { background: var(--ep-dark); padding: 90px 0; }
.ws-pricing__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}
@media (min-width: 1024px) { .ws-pricing__grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.ws-pricing__title {
	font-weight: 800;
	color: #fff;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1.25rem;
	line-height: 1.15;
}
.ws-pricing__title span { color: var(--ep-gold); }
.ws-pricing__text {
	color: rgba(255,255,255,0.65);
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 2rem;
	max-width: 480px;
}
.ws-pricing__box {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 4px;
	padding: 2.5rem;
}
.ws-pricing__box h3 {
	color: #fff;
	font-weight: 700;
	font-size: 1.125rem;
	margin-bottom: 1.5rem;
}
.ws-pricing__includes {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.ws-pricing__includes li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: rgba(255,255,255,0.75);
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	line-height: 1.6;
}
.ws-pricing__includes li svg { flex-shrink: 0; margin-top: 2px; }
.ws-pricing__disclaimer {
	color: rgba(255,255,255,0.35);
	font-size: 0.8125rem;
	margin-top: 1.75rem !important;
	line-height: 1.6;
}

/* ---------- FAQS ---------- */
.ws-faqs { background: var(--ep-gray-bg); padding: 90px 0; }
.ws-faqs .ws-section-head { text-align: center; margin-bottom: 3rem; }
.ws-faqs .ws-section-head h2 { font-weight: 800; font-size: clamp(1.75rem, 3vw, 2.5rem); }
.ws-faqs__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0 3.5rem;
}
@media (min-width: 1024px) { .ws-faqs__grid { grid-template-columns: 1fr 1fr; } }
.ws-faq {
	border-bottom: 1px solid #e8e8e8;
	overflow: hidden;
}
.ws-faq summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.125rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 600;
	color: var(--ep-dark);
	font-size: 1rem;
	line-height: 1.4;
	list-style: none;
}
.ws-faq summary::-webkit-details-marker { display: none; }
.ws-faq summary::after {
	content: '';
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23e2b27b' stroke-width='2.2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.25s;
}
.ws-faq[open] summary::after { transform: rotate(180deg); }
.ws-faq__answer {
	font-family: "DM Sans", sans-serif;
	color: var(--ep-body);
	font-size: 0.9375rem;
	line-height: 1.75;
	padding-bottom: 1.25rem;
}

/* ---------- SERVICE AREA ---------- */
.ws-area { background: #fff; padding: 70px 0; }
.ws-area__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; text-align: center; }
.ws-area h2 { font-weight: 800; font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 0.75rem; }
.ws-area__desc { font-size: 1rem; line-height: 1.7; max-width: 820px; margin: 0 auto; }
.ws-area__cities {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
}
.ws-area__cities li {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	background: var(--ep-gray-bg);
	border: 1px solid #e8e8e8;
	border-radius: 2px;
	padding: 0.5rem 1rem;
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 0.9375rem;
	color: var(--ep-dark);
}

/* ---------- FINAL CTA (Contact) ---------- */
.ws-final-cta { background: #fff; padding: 90px 0; }
.ws-final-cta__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}
@media (min-width: 1024px) { .ws-final-cta__grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.ws-final-cta__title {
	font-weight: 800;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	margin-bottom: 1rem;
}
.ws-final-cta__body { font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
.ws-contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.ws-contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.ws-contact-item__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 4px;
	background: var(--ep-dark);
	flex-shrink: 0;
}
.ws-contact-item strong {
	font-family: "Plus Jakarta Sans", sans-serif;
	font-weight: 700;
	color: var(--ep-dark);
	font-size: 0.9375rem;
	display: block;
	margin-bottom: 0.2rem;
}
.ws-contact-item p { font-size: 0.9375rem; line-height: 1.6; margin: 0; }

/* Form */
.ws-form { display: flex; flex-direction: column; gap: 1rem; }
.ws-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 640px) { .ws-form__row { grid-template-columns: 1fr 1fr; } }
.ws-form label {
	font-family: "DM Sans", sans-serif;
	font-weight: 600;
	font-size: 0.875rem;
	color: var(--ep-dark);
	display: block;
	margin-bottom: 0.375rem;
}
.ws-form input,
.ws-form select,
.ws-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	font-family: "DM Sans", sans-serif;
	font-size: 1rem;
	color: var(--ep-dark);
	background: #fff;
	outline: none;
}
.ws-form input:focus,
.ws-form select:focus,
.ws-form textarea:focus {
	border-color: var(--ep-gold);
}
.ws-form textarea { resize: vertical; }
.ws-form .ws-btn { width: 100%; justify-content: center; }

/* ---------- BRANDS ---------- */
.ws-brands { background: var(--ep-gray-bg); padding: 60px 0; }
.ws-brands__inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.ws-brands__label {
	font-family: "DM Sans", sans-serif;
	color: var(--ep-body);
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-align: center;
}
.ws-brands__sub {
	font-family: "DM Sans", sans-serif;
	color: #96999d;
	font-size: 0.8125rem;
	margin-top: 0.25rem;
	text-align: center;
}
.ws-brands__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
}
@media (min-width: 1024px) { .ws-brands__logos { gap: 2.5rem; } }
.ws-brands__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	width: 160px;
	height: 80px;
	padding: 12px 20px;
}
.ws-brands__logo img {
	max-height: 40px;
	max-width: 100%;
	width: auto;
	object-fit: contain;
}

/* ---------- SVG icon helpers ---------- */
.ws-icon-check { color: var(--ep-gold); }
.ws-icon-star { fill: var(--ep-gold); }

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
	.ws-hero { min-height: 400px; height: auto; max-height: none; }
	.ws-hero__inner { padding-top: 3rem; padding-bottom: 3rem; }
}


/* ---------- Specificity overrides ---------- */
/* Global .ws-page h1-h4 sets color:var(--ep-dark) at specificity (0,1,1).
   These overrides use (0,2,0)+ to win in dark-background sections. */

.ws-page .ws-hero__title,
.ws-page .ws-hero__title span { color: #fff; }
.ws-page .ws-hero__title span { color: var(--ep-gold); }
.ws-page .ws-hero__text { color: rgba(255,255,255,0.82); }

.ws-page .ws-benefits h2,
.ws-page .ws-benefit-card h3 { color: #fff; }

.ws-page .ws-results h2,
.ws-page .ws-result-card footer strong { color: #fff; }

.ws-page .ws-pricing__title { color: #fff; }
.ws-page .ws-pricing__title span { color: var(--ep-gold); }
.ws-page .ws-pricing__box h3 { color: #fff; }

.ws-page .ws-comparison__col h3 { color: var(--ep-dark); }

.ws-page .ws-stat--dark .ws-stat__value,
.ws-page .ws-stat--light .ws-stat__value { color: var(--ep-gold); }

.ws-page .ws-area h2 { color: var(--ep-dark); }

.ws-page .ws-final-cta__title { color: var(--ep-dark); }



/* ============================================================
   MOBILE RESPONSIVE FIXES
   ============================================================ */

/* Root-level overflow containment */
html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    width: 100% !important;
}
.ws-page {
    overflow-x: hidden;
}
/* container max-width preserved from base styles */

/* Hero mobile */
@media (max-width: 768px) {
    .ws-hero {
        min-height: auto;
        height: auto;
        max-height: none;
    }
    .ws-hero__inner {
        padding-top: 3rem;
        padding-bottom: 3rem;
        height: auto;
    }
    .ws-hero__title { font-size: 1.75rem; }
    .ws-hero__text { font-size: 0.9375rem; }
    .ws-hero__ctas {
        flex-direction: column;
        gap: 0.75rem;
    }
    .ws-hero__ctas .ws-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    .ws-hero__badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Intro mobile */
@media (max-width: 768px) {
    .ws-intro { padding: 50px 0; }
    .ws-intro__title { font-size: 1.5rem; }
    .ws-stat { padding: 1rem; }
    .ws-stat__value { font-size: 1.5rem; }
}

/* Benefits mobile */
@media (max-width: 640px) {
    .ws-benefits { padding: 50px 0; }
    .ws-benefits__grid { grid-template-columns: 1fr !important; gap: 1rem; }
}

/* Recent Installations mobile */
@media (max-width: 640px) {
    .ws-recent { padding: 2.5rem 0; }
    .ws-recent__grid { grid-template-columns: 1fr !important; gap: 0.75rem; }
    .ws-recent .ws-section-head { margin-bottom: 1.5rem; }
}

/* Reviews mobile */
@media (max-width: 768px) {
    .ws-reviews { padding: 2.5rem 0 3rem; }
    .ws-reviews__grid { grid-template-columns: 1fr !important; gap: 1rem; }
}

/* Services mobile */
@media (max-width: 768px) {
    .ws-services { padding: 50px 0; }
    .ws-service-row { padding: 1.5rem 0; }
    .ws-service-row__num { font-size: 1.75rem; }
}

/* Process mobile */
@media (max-width: 640px) {
    .ws-process { padding: 50px 0; }
    .ws-process__steps { grid-template-columns: 1fr !important; gap: 2rem; }
    .ws-process__num { width: 3rem; height: 3rem; font-size: 0.875rem; }
    .ws-process__line { display: none !important; }
}

/* Results/Testimonials mobile */
@media (max-width: 768px) {
    .ws-results { padding: 2.5rem 0; }
    .ws-results__grid { grid-template-columns: 1fr !important; gap: 1rem; }
}

/* Brands mobile */
@media (max-width: 640px) {
    .ws-brands { padding: 2.5rem 0; }
    .ws-brands__logos { gap: 0.75rem; }
    .ws-brands__logo { width: 120px; height: 60px; padding: 8px 12px; }
}

/* Comparison mobile */
@media (max-width: 768px) {
    .ws-comparison { padding: 50px 0; }
    .ws-comparison__grid { grid-template-columns: 1fr !important; }
    .ws-comparison__col { padding: 1.25rem; }
	.ws-comparison__considering {
    margin-top: 2rem;
    padding: 0 1rem;
}

.ws-comparison__considering-heading {
    font-size: 1.5rem;
}

.ws-comparison__considering-description {
    font-size: 0.9375rem;
}
}

/* Pricing mobile */
@media (max-width: 768px) {
    .ws-pricing { padding: 50px 0; }
    .ws-pricing__grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .ws-pricing__title { font-size: 1.375rem; }
    .ws-pricing__box { padding: 1.25rem; }
}

/* FAQs mobile */
@media (max-width: 768px) {
    .ws-faqs { padding: 50px 0; }
    .ws-faqs__grid { grid-template-columns: 1fr !important; }
    .ws-faq summary { font-size: 0.875rem; padding: 0.875rem 0; }
}

/* Service Area mobile */
@media (max-width: 768px) {
    .ws-area { padding: 40px 0; }
    .ws-area__cities { gap: 0.5rem; }
    .ws-area__cities li { font-size: 0.8125rem; padding: 0.375rem 0.625rem; }
}

/* Contact / CTA mobile */
@media (max-width: 768px) {
    .ws-final-cta { padding: 50px 0; }
    .ws-final-cta__grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .ws-final-cta__title { font-size: 1.375rem; }
    .ws-form input, .ws-form select, .ws-form textarea { font-size: 16px; }
}

/* Map mobile */
@media (max-width: 768px) {
    .ws-map { height: 280px !important; }
    .ws-map iframe { height: 280px !important; }
}

/* Buttons mobile */
@media (max-width: 480px) {
    .ws-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
        width: 100%;
        justify-content: center;
    }
}

/* Section headings mobile */
@media (max-width: 768px) {
    .ws-page .ws-section-head h2,
    .ws-page .ws-services__header h2,
    .ws-page .ws-comparison__header h2 { font-size: 1.375rem; }
}

/* JotForm / TrustIndex overflow */
.ws-final-cta iframe,
.ws-final-cta .jotform-form,
.ws-reviews .trustindex-reviews,
.ws-reviews .ti-widget {
    max-width: 100% !important;
    overflow-x: hidden;
}

/* Mobile call bar spacing */
@media (max-width: 1023px) {
    .ws-page { padding-bottom: 80px; }
}

/* Fix evp-hero styles leaking (homepage base CSS) */
.ws-page .evp-hero { display: none; }

/* Ensure container padding on mobile */
@media (max-width: 768px) {
    .ws-container,
    .ws-hero__inner.ws-container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}
