/*
Theme Name: Xtermination Xperts
Theme URI: https://xterminationxperts.local
Author: Xtermination Xperts
Author URI: https://xterminationxperts.local
Description: Custom theme for Xtermination Xperts pest control services.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: xtermination-xperts
Tags: pest-control, business, custom
*/

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
	/* Brand colors — from logo */
	--color-primary:       #2a1858;  /* deep purple */
	--color-primary-dark:  #1a0f3a;  /* darker purple */
	--color-primary-light: #3d2a7a;  /* lighter purple */
	--color-accent:        #f5c418;  /* gold */
	--color-accent-dark:   #d4a817;  /* darker gold hover */
	--color-red:           #c0302a;  /* red accent */

	/* Text & UI */
	--color-text:         #e8e8e8;
	--color-text-muted:   #9a9a9a;
	--color-border:       #2d2d2d;
	--color-bg:           #0d0d0d;
	--color-section-alt:  #151515;

	/* Footer */
	--color-footer-bg:      #1a0f3a;
	--color-footer-top-bg:  #130b2e;
	--color-footer-text:    #c8c4d8;
	--color-footer-heading: #ffffff;
	--color-footer-border:  rgba(255, 255, 255, 0.08);

	/* Layout */
	--header-height:   260px;
	--container-max:   1200px;
	--container-pad:   1.5rem;

	/* Type */
	--font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

	/* Misc */
	--radius:       4px;
	--radius-lg:    8px;
	--shadow-sm:    0 1px 4px rgba(0, 0, 0, 0.08);
	--shadow-md:    0 4px 20px rgba(0, 0, 0, 0.12);
	--transition:   0.2s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', var(--font-sans);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Roboto Condensed', var(--font-sans);
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

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

ul,
ol {
	list-style: none;
}

address {
	font-style: normal;
}

/* ============================================================
   Layout — Container
   ============================================================ */
.container {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 0 var(--container-pad);
}

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--color-bg);
	border-bottom: 1px solid var(--color-border);
	transition: box-shadow var(--transition);
}

/* Shadow added by JS on scroll */
.site-header.scrolled {
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	height: var(--header-height);
	gap: 1.5rem;
}

/* ============================================================
   Header — Logo
   ============================================================ */
.header-logo {
	flex-shrink: 0;
}

.header-logo a {
	display: block;
	line-height: 0;
	transition: opacity var(--transition);
}

.header-logo a:hover {
	opacity: 0.85;
	text-decoration: none;
}

.logo-img {
	height: 250px;
	width: auto;
	object-fit: contain;
}

/* ============================================================
   Header — Slogan
   ============================================================ */
.header-slogan {
	flex: 1;
	text-align: center;
	font-family: 'Bebas Neue', 'Roboto Condensed', var(--font-sans);
	font-size: 2.5rem;
	font-weight: 400;
	color: var(--color-primary);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.top-bar-email {
	font-weight: 600;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.header-slogan {
		display: none;
	}
}

/* ============================================================
   Header — Primary Navigation (desktop)
   ============================================================ */
.header-nav {
	flex: 0 0 auto;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

.nav-menu li {
	position: relative;
}

.nav-menu > li > a {
	display: block;
	padding: 0.5rem 0.875rem;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--color-text);
	border-radius: var(--radius);
	white-space: nowrap;
	transition: color var(--transition), background var(--transition);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
	color: var(--color-primary);
	background: rgba(43, 83, 41, 0.07);
	text-decoration: none;
}

/* Dropdown arrow indicator */
.nav-menu .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	margin-left: 0.35rem;
	width: 0;
	height: 0;
	border: 4px solid transparent;
	border-top-color: currentColor;
	border-bottom-width: 0;
	vertical-align: middle;
	transition: transform var(--transition);
}

/* ============================================================
   Dropdown Menus — Desktop (CSS hover)
   ============================================================ */
.nav-menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	min-width: 210px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: 0.5rem 0;

	/* Hidden by default */
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	z-index: 100;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.nav-menu .sub-menu a {
	display: block;
	padding: 0.5rem 1.25rem;
	font-size: 0.9rem;
	color: var(--color-text);
	transition: color var(--transition), background var(--transition);
}

.nav-menu .sub-menu a:hover {
	color: var(--color-primary);
	background: rgba(43, 83, 41, 0.07);
	text-decoration: none;
}

/* ============================================================
   Header — Call CTA Button
   ============================================================ */
.header-cta {
	flex-shrink: 0;
	margin-left: auto;
}

.btn-call {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.625rem 1.25rem;
	background: var(--color-accent);
	color: #1a1a1a;
	font-size: 0.9375rem;
	font-weight: 700;
	border-radius: var(--radius);
	white-space: nowrap;
	box-shadow: 0 2px 8px rgba(245, 196, 24, 0.4);
	transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-call:hover {
	background: var(--color-accent-dark);
	transform: translateY(-1px);
	box-shadow: 0 4px 14px rgba(245, 196, 24, 0.5);
	color: #1a1a1a;
	text-decoration: none;
}

.btn-call:active {
	background: var(--color-accent-dark);
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(245, 196, 24, 0.3);
}

.btn-call-icon {
	flex-shrink: 0;
}

/* Hover animation: slide "Contactez-Nous" up, reveal number */
.btn-call-label {
	position: relative;
	display: inline-block;
	overflow: hidden;
	height: 1.2em;
	vertical-align: middle;
}

.btn-call-default,
.btn-call-hover {
	display: block;
	white-space: nowrap;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-call-hover {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(110%);
	opacity: 0;
}

.btn-call:hover .btn-call-default,
.btn-call:focus .btn-call-default {
	transform: translateY(-110%);
	opacity: 0;
}

.btn-call:hover .btn-call-hover,
.btn-call:focus .btn-call-hover {
	transform: translateY(0);
	opacity: 1;
}

/* ============================================================
   Hamburger Button — Mobile
   ============================================================ */
.hamburger {
	display: none; /* shown only on mobile via media query */
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text);
	border-radius: var(--radius);
	transition: background var(--transition);
}

.hamburger:hover {
	background: rgba(0, 0, 0, 0.05);
}

.hamburger-bar {
	display: block;
	width: 24px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: center;
}

/* Animate bars into an × when menu is open */
.hamburger.is-active .hamburger-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger-bar:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.is-active .hamburger-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   Mobile Navigation — max-width 767px
   ============================================================ */
@media (max-width: 767px) {

	.header-inner {
		flex-wrap: wrap;
		height: auto;
		padding-top: 0.75rem;
		padding-bottom: 0.75rem;
		gap: 0;
		column-gap: 0.75rem;
	}

	/* Row 1: logo | cta | hamburger */
	.header-logo  { order: 1; flex: 1; }
	.header-cta   { order: 2; }
	.hamburger    { order: 3; display: flex; }

	/* Row 2: full-width nav (hidden until toggled) */
	.header-nav {
		order: 4;
		width: 100%;
		flex: none;
		justify-content: flex-start;
		display: none;
		border-top: 1px solid var(--color-border);
		padding: 0.5rem 0;
	}

	.header-nav.is-open {
		display: flex;
	}

	.logo-img {
		height: 140px;
	}

	/* Compact call button on mobile */
	.btn-call {
		padding: 0.5rem 0.875rem;
		font-size: 0.875rem;
	}

	/* Stack nav items full-width */
	.nav-menu {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 0;
	}

	.nav-menu > li {
		width: 100%;
	}

	.nav-menu > li > a {
		padding: 0.75rem 0.5rem;
		border-radius: 0;
		border-bottom: 1px solid var(--color-border);
	}

	/* Rotate dropdown arrow when submenu is open */
	.nav-menu .menu-item-has-children.sub-open > a::after {
		transform: rotate(180deg);
	}

	/* Mobile sub-menus: animate with max-height */
	.nav-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: hidden;
		transform: none;
		box-shadow: none;
		border: none;
		border-radius: 0;
		max-height: 0;
		overflow: hidden;
		padding: 0;
		transition: max-height 0.3s ease, visibility 0.3s ease;
	}

	.nav-menu .menu-item-has-children.sub-open > .sub-menu {
		visibility: visible;
		max-height: 600px;
	}

	.nav-menu .sub-menu a {
		padding: 0.625rem 1.5rem;
		border-bottom: 1px solid var(--color-border);
		background: rgba(43, 83, 41, 0.03);
	}
}

/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
	background: var(--color-footer-bg);
	color: var(--color-footer-text);
	font-size: 0.9rem;
}

/* ─── Footer Top: Brand & Tagline ─── */
.footer-top {
	background: var(--color-footer-top-bg);
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--color-footer-border);
	text-align: center;
}

.footer-logo-link {
	display: inline-block;
	line-height: 0;
	margin-bottom: 0.75rem;
	transition: opacity var(--transition);
}

.footer-logo-link:hover {
	opacity: 0.8;
	text-decoration: none;
}

.footer-logo-img {
	height: 48px;
	width: auto;
	margin: 0 auto 0.75rem;
	/* If logo is dark-on-white, uncomment to display as white on the dark footer:
	   filter: brightness(0) invert(1); */
}

.footer-tagline {
	color: var(--color-footer-text);
	font-size: 0.9375rem;
	letter-spacing: 0.01em;
}

/* ─── Footer Middle: Four-column grid ─── */
.footer-middle {
	padding: 3rem 0;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.5rem;
}

.footer-col-title {
	color: var(--color-footer-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
}

/* ─── Footer Nav Link Lists ─── */
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.footer-links a {
	color: var(--color-footer-text);
	transition: color var(--transition);
}

.footer-links a:hover {
	color: var(--color-footer-heading);
	text-decoration: none;
}

/* ─── Footer Contact Column ─── */
.footer-address {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-bottom: 1.5rem;
}

.footer-address a {
	color: var(--color-footer-text);
	transition: color var(--transition);
}

.footer-address a:hover {
	color: var(--color-footer-heading);
	text-decoration: none;
}

/* ─── Social Icons ─── */
.social-icons {
	display: flex;
	gap: 0.625rem;
	flex-wrap: wrap;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 50%;
	color: var(--color-footer-text);
	transition: background var(--transition), color var(--transition);
}

.social-icon:hover {
	background: var(--color-accent);
	color: #fff;
	text-decoration: none;
}

/* ─── Footer Bottom Bar ─── */
.footer-bottom {
	background: var(--color-footer-top-bg);
	border-top: 1px solid var(--color-footer-border);
	padding: 1.25rem 0;
}

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

.copyright {
	color: var(--color-footer-text);
	font-size: 0.875rem;
}

.footer-legal-links {
	display: flex;
	gap: 1.5rem;
}

.footer-legal-links a {
	color: var(--color-footer-text);
	font-size: 0.875rem;
	transition: color var(--transition);
}

.footer-legal-links a:hover {
	color: var(--color-footer-heading);
	text-decoration: none;
}

/* ============================================================
   Responsive — Tablet (max 991px)
   ============================================================ */
@media (max-width: 991px) {
	.footer-columns {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

/* ============================================================
   Responsive — Mobile (max 767px)
   ============================================================ */
@media (max-width: 767px) {
	.footer-columns {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.footer-top {
		padding: 2rem 0;
	}

	.footer-middle {
		padding: 2rem 0;
	}

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

	.footer-legal-links {
		justify-content: center;
	}
}

/* ============================================================
   Top Bar — ticker animation
   ============================================================ */
@keyframes ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.top-bar {
	background: var(--color-primary-dark);
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.8rem;
	padding: 0.5rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

.top-bar-inner {
	display: flex;
	width: max-content;
	animation: ticker-scroll 40s linear infinite;
}

.top-bar:hover .top-bar-inner {
	animation-play-state: paused;
}

.top-bar-track {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.875rem;
	padding: 0 2rem;
	min-width: 100vw;
	flex-shrink: 0;
	white-space: nowrap;
}

.top-bar-left {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.top-bar-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color var(--transition);
	white-space: nowrap;
}

a.top-bar-link:hover {
	color: var(--color-accent);
	text-decoration: none;
}

.top-bar-divider {
	opacity: 0.3;
	font-size: 0.75rem;
}

.top-bar-right {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.top-bar-social {
	display: flex;
	gap: 0.625rem;
}

.top-bar-social a {
	color: rgba(255, 255, 255, 0.65);
	display: flex;
	align-items: center;
	transition: color var(--transition);
}

.top-bar-social a:hover {
	color: var(--color-accent);
	text-decoration: none;
}

.top-bar-separator {
	width: 1px;
	height: 14px;
	background: rgba(255, 255, 255, 0.2);
}

/* Language switcher */
.lang-switcher {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 99px;
	padding: 0.15rem 0.5rem;
}

.lang-btn {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.65);
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	cursor: pointer;
	padding: 0.2rem 0.35rem;
	border-radius: 99px;
	transition: background var(--transition), color var(--transition);
}

.lang-btn.active {
	background: var(--color-accent);
	color: #1a1a1a;
}

.lang-btn:not(.active):hover {
	color: #fff;
}

.lang-sep {
	color: rgba(255, 255, 255, 0.2);
	font-size: 0.7rem;
}

.top-bar-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.2rem 0.625rem;
	background: rgba(245, 196, 24, 0.12);
	border: 1px solid rgba(245, 196, 24, 0.3);
	border-radius: 99px;
	color: var(--color-accent);
	font-weight: 600;
	font-size: 0.75rem;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.top-bar {
		display: none;
	}
}

/* ============================================================
   Homepage — Shared Utilities
   ============================================================ */
.hp-section {
	padding: 5rem 0;
}

/* Section header (shared) */

.hp-section-alt {
	padding: 5rem 0;
	background: var(--color-section-alt);
}

.section-header {
	text-align: center;
	margin-bottom: 3rem;
}

.section-header h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.section-header p {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	max-width: 560px;
	margin: 0 auto;
}

.section-divider {
	width: 56px;
	height: 4px;
	background: var(--color-accent);
	border-radius: 2px;
	margin: 0.75rem auto 1rem;
}

/* Shared CTA button (homepage primary) */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: var(--color-accent);
	color: #1a1a1a;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	border-radius: var(--radius);
	box-shadow: 0 3px 12px rgba(245, 196, 24, 0.45);
	transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: var(--color-accent-dark);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(245, 196, 24, 0.55);
	color: #1a1a1a;
	text-decoration: none;
}

.btn-primary:active {
	transform: translateY(0);
}

.btn-primary-dark {
	background: var(--color-primary);
	color: #fff;
	box-shadow: 0 3px 12px rgba(42, 24, 88, 0.35);
}

.btn-primary-dark:hover {
	background: var(--color-primary-light);
	color: #fff;
	box-shadow: 0 6px 20px rgba(42, 24, 88, 0.45);
}

.btn-text-cta {
	display: inline-block;
	color: var(--color-primary);
	font-weight: 600;
	font-size: 0.9375rem;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: opacity var(--transition);
}

.btn-text-cta:hover {
	opacity: 0.75;
	text-decoration: underline;
}

/* Star rating inline */
.star-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.stars {
	color: var(--color-accent);
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.stars-score {
	font-weight: 700;
	font-size: 1rem;
	color: var(--color-text);
}

.stars-count {
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

/* Social icons row (shared across sections) */
.social-row {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	flex-wrap: wrap;
}

.social-row .social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(42, 24, 88, 0.08);
	color: var(--color-primary);
	transition: background var(--transition), color var(--transition);
}

.social-row .social-icon:hover {
	background: var(--color-primary);
	color: #fff;
	text-decoration: none;
}

/* ============================================================
   Section 1 — Hero
   ============================================================ */
.hp-hero {
	padding: 4rem 0 3rem;
	background: var(--color-bg);
}

.hero-grid {
	display: grid;
	grid-template-columns: 60fr 40fr;
	gap: 3rem;
	align-items: start;
}

/* Hero — Left images column */
.hero-images {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hero-main-img {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: var(--radius-lg);
}

.hero-main-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
}

.hero-thumbs img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--radius);
	cursor: pointer;
	transition: opacity var(--transition);
}

.hero-thumbs img:hover {
	opacity: 0.85;
}

.hero-thumbs img.active-thumb {
	outline: 3px solid var(--color-accent);
	outline-offset: 2px;
	opacity: 1;
}

/* Hero — Right content column */
.hero-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero-rating {
	margin-bottom: 0.25rem;
}

.hero-title {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	color: var(--color-primary);
	margin: 0;
}

.hero-sub {
	font-size: 1rem;
	color: var(--color-text-muted);
	line-height: 1.7;
}

.hero-offer {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-primary);
}

.hero-offer span {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

.hero-offer span::before {
	content: '✓';
	color: var(--color-accent-dark);
	font-weight: 800;
}

.hero-ctas {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.hero-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.3rem 0.75rem;
	background: var(--color-section-alt);
	border: 1px solid rgba(42, 24, 88, 0.12);
	border-radius: 99px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-primary);
}

.hero-copy {
	font-size: 0.875rem;
	color: var(--color-text-muted);
	line-height: 1.65;
	border-left: 3px solid var(--color-accent);
	padding-left: 0.875rem;
}

/* ============================================================
   Section 2 — Transformation (3 steps)
   ============================================================ */
.hp-transform {
	padding: 5rem 0;
	background: var(--color-primary);
}

.hp-transform .section-header h2 {
	color: #fff;
}

.hp-transform .section-header p {
	color: rgba(255, 255, 255, 0.75);
}

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

.transform-step {
	text-align: center;
	padding: 2rem 1.5rem;
	background: rgba(255, 255, 255, 0.06);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: background var(--transition), transform var(--transition);
}

.transform-step:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateY(-4px);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--color-accent);
	color: #1a1a1a;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: 1.375rem;
	font-weight: 800;
	border-radius: 50%;
	margin: 0 auto 1.25rem;
}

.step-title {
	font-size: 1.25rem;
	color: #fff;
	margin-bottom: 0.75rem;
}

.step-desc {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.72);
	line-height: 1.65;
}

/* ============================================================
   Section 3 — Benefits (alternating)
   ============================================================ */
.hp-benefits {
	padding: 5rem 0;
	background: var(--color-section-alt);
}

.benefit-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.benefit-row:last-child {
	margin-bottom: 0;
}

.benefit-row.reverse {
	direction: rtl;
}

.benefit-row.reverse > * {
	direction: ltr;
}

.benefit-img {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.benefit-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.benefit-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.benefit-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: rgba(42, 24, 88, 0.08);
	color: var(--color-primary);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 99px;
}

.benefit-content h3 {
	font-size: clamp(1.375rem, 2.5vw, 1.875rem);
	color: var(--color-primary);
}

.benefit-content p {
	color: var(--color-text-muted);
	font-size: 1rem;
	line-height: 1.75;
}

/* ============================================================
   Section 4 — Features (alternating)
   ============================================================ */
.hp-features {
	padding: 5rem 0;
	background: var(--color-bg);
}

.feature-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

.feature-row:last-of-type {
	margin-bottom: 0;
}

.feature-row.reverse {
	direction: rtl;
}

.feature-row.reverse > * {
	direction: ltr;
}

.feature-img {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.feature-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.feature-content {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.feature-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: rgba(245, 196, 24, 0.15);
	color: var(--color-primary);
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 99px;
}

.feature-content h3 {
	font-size: clamp(1.375rem, 2.5vw, 1.875rem);
	color: var(--color-primary);
}

.feature-content p {
	color: var(--color-text-muted);
	font-size: 1rem;
	line-height: 1.75;
}

/* Features section bottom social row */
.features-social {
	margin-top: 4rem;
	padding-top: 3rem;
	border-top: 1px solid var(--color-border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
}

/* ============================================================
   Section 5 — What's Included
   ============================================================ */
.hp-included {
	padding: 5rem 0;
	background: var(--color-section-alt);
}

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

.included-content h2 {
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.included-content > p {
	color: var(--color-text-muted);
	margin-bottom: 2rem;
}

.checklist {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.checklist li {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	font-size: 1rem;
	color: var(--color-text);
	font-weight: 500;
}

.check-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	background: var(--color-accent);
	color: #1a1a1a;
	border-radius: 50%;
	font-size: 0.8125rem;
	font-weight: 800;
	margin-top: 0.1rem;
}

.included-img {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 4 / 5;
}

.included-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ============================================================
   Section 6 — Social Proof
   ============================================================ */
.hp-proof {
	padding: 5rem 0;
	background: var(--color-bg);
}

/* Text testimonial carousel */
.testimonial-carousel {
	position: relative;
	overflow: hidden;
	margin-bottom: 3rem;
}

.testimonial-track {
	display: flex;
	transition: transform 0.4s ease;
}

.testimonial-card {
	flex: 0 0 100%;
	padding: 2rem;
	background: var(--color-section-alt);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(42, 24, 88, 0.08);
}

.testimonial-card blockquote {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--color-text);
	margin-bottom: 1.25rem;
	font-style: italic;
}

.testimonial-card blockquote::before {
	content: '\201C';
	font-size: 2.5rem;
	line-height: 0;
	vertical-align: -0.6rem;
	color: var(--color-accent);
	font-style: normal;
	margin-right: 0.25rem;
}

.testimonial-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.testimonial-avatar {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var(--color-primary);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-weight: 700;
	font-size: 1rem;
	flex-shrink: 0;
}

.testimonial-name {
	font-weight: 700;
	font-size: 0.9375rem;
	color: var(--color-text);
}

.testimonial-location {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

/* Carousel arrows (shared) */
.carousel-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1.25rem;
}

.carousel-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border: 2px solid var(--color-primary);
	border-radius: 50%;
	background: none;
	color: var(--color-primary);
	cursor: pointer;
	transition: background var(--transition), color var(--transition);
}

.carousel-btn:hover {
	background: var(--color-primary);
	color: #fff;
}

.carousel-dots {
	display: flex;
	gap: 0.5rem;
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-border);
	cursor: pointer;
	transition: background var(--transition);
	border: none;
}

.carousel-dot.active {
	background: var(--color-primary);
}

/* Video testimonial carousel */
.video-carousel {
	position: relative;
	overflow: hidden;
	margin-bottom: 2.5rem;
}

.video-track {
	display: flex;
	gap: 1.25rem;
	transition: transform 0.4s ease;
}

.video-card {
	flex: 0 0 calc(25% - 1rem);
	position: relative;
	border-radius: var(--radius-lg);
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 9 / 16;
	background: var(--color-primary);
}

.video-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.video-card:hover img {
	transform: scale(1.04);
}

.video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(42, 24, 88, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--transition);
}

.video-card:hover .video-overlay {
	background: rgba(42, 24, 88, 0.3);
}

.play-btn {
	width: 56px;
	height: 56px;
	background: var(--color-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
}

.video-card:hover .play-btn {
	transform: scale(1.1);
}

.video-name {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem 0.875rem 0.75rem;
	background: linear-gradient(transparent, rgba(0,0,0,0.7));
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
}

/* Proof section bottom */
.proof-social {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid var(--color-border);
}

/* ============================================================
   Section 7 — Comparison Table
   ============================================================ */
.hp-comparison {
	padding: 5rem 0;
	background: var(--color-section-alt);
}

.comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 4rem;
	align-items: center;
}

.comparison-image {
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 3 / 4;
}

.comparison-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.comparison-table-wrap h3 {
	font-size: 1.5rem;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
}

table.comp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9375rem;
}

.comp-table th {
	padding: 0.75rem 1rem;
	text-align: center;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-weight: 700;
	font-size: 0.875rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.comp-table th:first-child {
	text-align: left;
}

.comp-table th.col-us {
	background: var(--color-primary);
	color: var(--color-accent);
	border-radius: var(--radius) var(--radius) 0 0;
}

.comp-table th.col-other {
	color: var(--color-text-muted);
}

.comp-table td {
	padding: 0.8rem 1rem;
	border-bottom: 1px solid var(--color-border);
	text-align: center;
	color: var(--color-text-muted);
}

.comp-table td:first-child {
	text-align: left;
	color: var(--color-text);
	font-weight: 500;
}

.comp-table td.col-us {
	background: rgba(42, 24, 88, 0.04);
	font-weight: 600;
}

.comp-table tbody tr:last-child td {
	border-bottom: none;
}

.comp-table tbody tr:hover td {
	background: rgba(245, 196, 24, 0.05);
}

.comp-table tbody tr:hover td.col-us {
	background: rgba(42, 24, 88, 0.07);
}

.check-yes {
	color: #16a34a;
	font-size: 1.125rem;
	font-weight: 800;
}

.check-no {
	color: var(--color-red);
	font-size: 1.125rem;
}

.check-maybe {
	color: var(--color-text-muted);
	font-size: 1rem;
}

/* ============================================================
   Section 8 — FAQ
   ============================================================ */
.hp-faq {
	padding: 5rem 0;
	background: var(--color-bg);
}

.faq-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: start;
}

.faq-content h2 {
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.faq-content > p {
	color: var(--color-text-muted);
	margin-bottom: 2rem;
}

.accordion {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.accordion-item {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
}

.accordion-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.125rem 1.25rem;
	background: none;
	border: none;
	cursor: pointer;
	text-align: left;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--color-primary);
	transition: background var(--transition);
}

.accordion-trigger:hover {
	background: var(--color-section-alt);
}

.accordion-trigger.open {
	background: var(--color-primary);
	color: #fff;
}

.accordion-icon {
	flex-shrink: 0;
	width: 22px;
	height: 22px;
	position: relative;
}

.accordion-icon::before,
.accordion-icon::after {
	content: '';
	position: absolute;
	background: currentColor;
	border-radius: 2px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.accordion-icon::before {
	width: 14px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.accordion-icon::after {
	width: 2px;
	height: 14px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.accordion-trigger.open .accordion-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
	opacity: 0;
}

.accordion-body {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	padding: 0 1.25rem;
}

.accordion-body.open {
	max-height: 400px;
	padding: 1rem 1.25rem 1.25rem;
}

.accordion-body p {
	color: var(--color-text-muted);
	line-height: 1.75;
}

.faq-images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}

.faq-images img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: var(--radius);
}

.faq-images img:first-child {
	grid-column: span 2;
	aspect-ratio: 2;
}

/* ============================================================
   Section 9 — Final CTA Banner
   ============================================================ */
.hp-cta {
	padding: 5rem 0;
	background: var(--color-bg);
	color: var(--color-text);
}

.cta-header {
	text-align: center;
	margin-bottom: 3rem;
}

.cta-header h2 {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.cta-header p {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	max-width: 560px;
	margin: 0 auto 1.25rem;
}

.cta-social {
	margin-top: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
}

.cta-social .social-icon {
	background: rgba(42, 24, 88, 0.07);
	color: var(--color-primary);
}

.cta-social .social-icon:hover {
	background: var(--color-primary);
	color: #fff;
}

/* Multi-step form */
.multistep-form {
	max-width: 600px;
	margin: 0 auto;
	background: #1a1a1a;
	border-radius: var(--radius-lg);
	padding: 2.5rem 2rem;
	color: var(--color-text);
}

.form-progress {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	margin-bottom: 2rem;
}

.progress-step {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--color-border);
	color: var(--color-text-muted);
	font-family: 'Roboto Condensed', var(--font-sans);
	font-weight: 700;
	font-size: 0.9375rem;
	transition: background var(--transition), color var(--transition);
	flex-shrink: 0;
}

.progress-step.active,
.progress-step.done {
	background: var(--color-primary);
	color: #fff;
}

.progress-step.done {
	background: var(--color-accent);
	color: #1a1a1a;
}

.progress-line {
	flex: 1;
	max-width: 80px;
	height: 2px;
	background: var(--color-border);
	transition: background var(--transition);
}

.progress-line.done {
	background: var(--color-accent);
}

.form-step {
	display: none;
}

.form-step.active {
	display: block;
}

.form-step h4 {
	font-size: 1.1875rem;
	color: var(--color-primary);
	margin-bottom: 1.25rem;
}

.form-checkboxes,
.form-radios {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	margin-bottom: 1.5rem;
}

.form-option {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 1rem;
	border: 2px solid var(--color-border);
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color var(--transition), background var(--transition);
	font-weight: 500;
}

.form-option:hover {
	border-color: var(--color-primary);
	background: var(--color-section-alt);
}

.form-option input {
	accent-color: var(--color-primary);
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.form-option input:checked + span,
.form-option:has(input:checked) {
	color: var(--color-primary);
}

.form-option:has(input:checked) {
	border-color: var(--color-primary);
	background: rgba(42, 24, 88, 0.05);
}

.form-field {
	margin-bottom: 1rem;
}

.form-field label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-text);
	margin-bottom: 0.4rem;
}

.form-field input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid var(--color-border);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 1rem;
	color: var(--color-text);
	transition: border-color var(--transition);
	outline: none;
}

.form-field input:focus {
	border-color: var(--color-primary);
}

.form-nav {
	display: flex;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.btn-form-next,
.btn-form-submit {
	flex: 1;
	padding: 0.875rem;
	background: var(--color-primary);
	color: #fff;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: 1.0625rem;
	font-weight: 700;
	border: none;
	border-radius: var(--radius);
	cursor: pointer;
	transition: background var(--transition);
}

.btn-form-next:hover,
.btn-form-submit:hover {
	background: var(--color-primary-light);
}

.btn-form-submit {
	background: var(--color-accent);
	color: #1a1a1a;
}

.btn-form-submit:hover {
	background: var(--color-accent-dark);
}

.btn-form-prev {
	padding: 0.875rem 1.25rem;
	background: none;
	color: var(--color-text-muted);
	font-family: inherit;
	font-size: 0.9375rem;
	border: 2px solid var(--color-border);
	border-radius: var(--radius);
	cursor: pointer;
	transition: border-color var(--transition), color var(--transition);
}

.btn-form-prev:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
}

/* ============================================================
   Homepage Responsive — Tablet (max 991px)
   ============================================================ */
@media (max-width: 991px) {
	.hp-section,
	.hp-section-alt,
	.hp-hero,
	.hp-transform,
	.hp-benefits,
	.hp-features,
	.hp-included,
	.hp-proof,
	.hp-comparison,
	.hp-faq,
	.hp-cta {
		padding: 3.5rem 0;
	}

	.hero-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.transform-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.transform-step {
		display: grid;
		grid-template-columns: auto 1fr;
		text-align: left;
		gap: 1rem;
		align-items: start;
	}

	.step-number {
		margin: 0;
	}

	.benefit-row,
	.feature-row,
	.included-grid,
	.comparison-grid,
	.faq-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.benefit-row.reverse,
	.feature-row.reverse {
		direction: ltr;
	}

	.video-card {
		flex: 0 0 calc(50% - 0.75rem);
	}
}

/* ============================================================
   Homepage Responsive — Mobile (max 767px)
   ============================================================ */
@media (max-width: 767px) {
	.hp-section,
	.hp-section-alt,
	.hp-hero,
	.hp-transform,
	.hp-benefits,
	.hp-features,
	.hp-included,
	.hp-proof,
	.hp-comparison,
	.hp-faq,
	.hp-cta {
		padding: 3rem 0;
	}

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

	.features-social,
	.proof-social {
		gap: 1rem;
	}

	.video-card {
		flex: 0 0 calc(100% - 0);
	}

	.faq-images {
		display: none;
	}

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

	.multistep-form {
		padding: 1.75rem 1.25rem;
	}

	.comp-table th,
	.comp-table td {
		padding: 0.6rem 0.5rem;
		font-size: 0.8125rem;
	}
}

/* ============================================================
   GS-STYLE: Hero — Family image left blend
   ============================================================ */
.gs-hero-family-img {
	position: absolute;
	right: 0;
	left: auto;
	top: 0;
	height: 100%;
	width: 42%;
	object-fit: cover;
	object-position: center top;
	z-index: 1;
	pointer-events: none;
	-webkit-mask-image: linear-gradient(to left, black 35%, transparent 90%);
	mask-image: linear-gradient(to left, black 35%, transparent 90%);
}

@media (max-width: 767px) {
	.gs-hero-family-img {
		display: none;
	}
}

/* ============================================================
   GS-STYLE: Hero Banner
   ============================================================ */
.gs-hero {
	position: relative;
	min-height: 560px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	background-color: var(--color-primary-dark);
}

/* When no background image, show solid gradient */
.gs-hero:not([style*="background-image"]) .gs-hero-overlay {
	background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.gs-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(26, 15, 58, 0.93) 0%,
		rgba(42, 24, 88, 0.78) 100%
	);
	display: flex;
	align-items: center;
	width: 100%;
}

.gs-hero .container {
	position: relative;
	z-index: 1;
	padding-top: 7rem;
	padding-bottom: 5rem;
	overflow: visible;
}

.gs-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.375rem 1rem;
	background: rgba(245, 196, 24, 0.12);
	border: 1px solid rgba(245, 196, 24, 0.35);
	border-radius: 99px;
	color: var(--color-accent);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 1.25rem;
	display: block;
	width: fit-content;
}

.gs-hero h1 {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	color: #fff;
	margin-bottom: 1.125rem;
	max-width: 680px;
	line-height: 1.1;
}

.gs-hero-sub {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, 0.82);
	max-width: 580px;
	margin-bottom: 2rem;
	line-height: 1.7;
}

.gs-hero-actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 2.5rem;
}

.btn-lg {
	padding: 1rem 2rem;
	font-size: 1.0625rem;
}

.btn-outline-light {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.45);
	color: #fff;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--radius);
	transition: border-color var(--transition), background var(--transition);
	text-decoration: none;
}

.btn-outline-light:hover {
	border-color: #fff;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-decoration: none;
}

.gs-hero-badges {
	display: flex;
	gap: 0.625rem;
	flex-wrap: wrap;
}

.gs-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.875rem;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 99px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.8rem;
	font-weight: 600;
}

/* ============================================================
   GS-STYLE: Section header (shared)
   ============================================================ */
.section-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.section-header h2 {
	font-size: clamp(1.75rem, 3.5vw, 2.375rem);
	color: var(--color-primary);
	margin-bottom: 0.625rem;
}

.section-header p {
	color: var(--color-text-muted);
	font-size: 1rem;
	max-width: 560px;
	margin: 0.75rem auto 0;
}

.section-divider {
	width: 52px;
	height: 4px;
	background: var(--color-accent);
	border-radius: 2px;
	margin: 0.625rem auto 0;
}

/* ============================================================
   GS-STYLE: Shared button
   ============================================================ */
.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.875rem 1.875rem;
	background: var(--color-accent);
	color: #1a1a1a;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	border-radius: var(--radius);
	box-shadow: 0 3px 10px rgba(245, 196, 24, 0.4);
	transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
	text-decoration: none;
	border: none;
	cursor: pointer;
}

.btn-primary:hover {
	background: var(--color-accent-dark);
	transform: translateY(-1px);
	box-shadow: 0 5px 16px rgba(245, 196, 24, 0.5);
	color: #1a1a1a;
	text-decoration: none;
}

.btn-primary:active {
	transform: translateY(0);
}

/* ============================================================
   GS-STYLE: Services Grid + Service Cards
   ============================================================ */
.gs-services {
	padding: 4rem 0;
	background: var(--color-bg);
}

.gs-services-alt {
	background: var(--color-section-alt);
}

.gs-grid {
	display: grid;
	gap: 1rem;
}

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

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

.service-card {
	position: relative;
	display: block;
	border-radius: var(--radius-lg);
	overflow: hidden;
	aspect-ratio: 1 / 1;
	text-decoration: none;
	background: var(--color-primary-dark);
}

.service-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.45s ease, opacity 0.3s ease;
}

.service-card:hover img {
	transform: scale(1.08);
	opacity: 0.85;
}

.service-card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		transparent 35%,
		rgba(26, 15, 58, 0.92) 100%
	);
	display: flex;
	align-items: flex-end;
	padding: 1rem;
	transition: background 0.35s ease;
}

.service-card:hover .service-card-overlay {
	background: linear-gradient(
		to bottom,
		rgba(26, 15, 58, 0.25) 0%,
		rgba(26, 15, 58, 0.96) 100%
	);
}

.service-card-overlay h3 {
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
	transition: color 0.2s ease;
}

.service-card:hover .service-card-overlay h3 {
	color: var(--color-accent);
}

/* ============================================================
   GS-STYLE: CTA Bar
   ============================================================ */
.gs-cta-bar {
	background: var(--color-primary);
	padding: 2.5rem 0;
}

.gs-cta-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}

.gs-cta-bar-text h2 {
	color: #fff;
	font-size: clamp(1.375rem, 2.5vw, 1.875rem);
	margin-bottom: 0.25rem;
}

.gs-cta-bar-text p {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9375rem;
}

.gs-cta-bar-actions {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
	flex-wrap: wrap;
}

.gs-cta-phone {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	color: #fff;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: 1.375rem;
	font-weight: 700;
	text-decoration: none;
	transition: color var(--transition);
}

.gs-cta-phone:hover {
	color: var(--color-accent);
	text-decoration: none;
}

/* ============================================================
   GS-STYLE: Intervention Types (Résidentiel/Commercial/Industriel)
   ============================================================ */
.gs-types {
	padding: 4rem 0;
	background: var(--color-section-alt);
}

.gs-type-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.gs-type-card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition);
}

.gs-type-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.gs-type-card-img {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.gs-type-card-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.gs-type-card:hover .gs-type-card-img img {
	transform: scale(1.06);
}

.gs-type-card-overlay {
	position: absolute;
	inset: 0;
	background: rgba(42, 24, 88, 0.18);
	transition: background var(--transition);
}

.gs-type-card:hover .gs-type-card-overlay {
	background: rgba(42, 24, 88, 0.08);
}

.gs-type-card-body {
	padding: 1.5rem;
}

.gs-type-card-body h3 {
	font-size: 1.25rem;
	color: var(--color-primary);
	margin-bottom: 0.625rem;
}

.gs-type-card-body p {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

.gs-type-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--color-primary);
	font-weight: 700;
	font-size: 0.9rem;
	text-decoration: none;
	transition: gap var(--transition), color var(--transition);
}

.gs-type-link:hover {
	color: var(--color-accent-dark);
	gap: 0.65rem;
	text-decoration: none;
}

/* ============================================================
   GS-STYLE: Stats Bar
   ============================================================ */
.gs-stats-bar {
	background: var(--color-primary-dark);
	padding: 2.5rem 0;
}

.gs-stats-grid {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
	flex-wrap: wrap;
}

.gs-stat {
	text-align: center;
	padding: 0 1rem;
}

.gs-stat-number {
	display: block;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	color: var(--color-accent);
	line-height: 1.1;
}

.gs-stat-label {
	display: block;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.875rem;
	margin-top: 0.25rem;
}

.gs-stat-divider {
	width: 1px;
	height: 48px;
	background: rgba(255, 255, 255, 0.12);
	flex-shrink: 0;
}

/* ============================================================
   GS-STYLE: Why Choose Us
   ============================================================ */
.gs-why {
	padding: 4.5rem 0;
	background: var(--color-bg);
}

.gs-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.gs-why-item {
	text-align: center;
	padding: 2rem 1.25rem;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.gs-why-item:hover {
	border-color: rgba(42, 24, 88, 0.2);
	box-shadow: var(--shadow-md);
	transform: translateY(-4px);
}

.gs-why-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: rgba(42, 24, 88, 0.07);
	border-radius: 50%;
	color: var(--color-primary);
	margin: 0 auto 1.25rem;
	transition: background var(--transition), color var(--transition);
}

.gs-why-item:hover .gs-why-icon {
	background: var(--color-primary);
	color: var(--color-accent);
}

.gs-why-item h3 {
	font-size: 1.0625rem;
	color: var(--color-primary);
	margin-bottom: 0.625rem;
}

.gs-why-item p {
	color: var(--color-text-muted);
	font-size: 0.9rem;
	line-height: 1.65;
}

/* ============================================================
   GS-STYLE: Reviews Grid
   ============================================================ */
.gs-reviews {
	padding: 4.5rem 0;
	background: var(--color-section-alt);
}

.reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-bottom: 3rem;
}

.review-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 1.75rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
	display: flex;
	flex-direction: column;
	gap: 1rem;
	transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover,
.review-card-new {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}

.review-stars {
	color: var(--color-accent);
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.review-text {
	color: var(--color-text-muted);
	font-size: 0.9375rem;
	line-height: 1.7;
	font-style: italic;
	flex: 1;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.review-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--color-primary);
	color: #fff;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-weight: 700;
	font-size: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.review-author > span:last-child {
	display: flex;
	flex-direction: column;
}

.review-author strong {
	font-size: 0.9375rem;
	color: var(--color-text);
}

.review-author span span {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

/* Review submission form */
.review-submit-wrap {
	max-width: 640px;
	margin: 0 auto;
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 2rem;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--color-border);
}

.review-submit-wrap h3 {
	font-size: 1.25rem;
	color: var(--color-primary);
	margin-bottom: 1.25rem;
}

.review-rating-select {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--color-text);
}

.star-picker {
	display: flex;
	gap: 0.125rem;
}

.star-btn {
	background: none;
	border: none;
	font-size: 1.625rem;
	color: var(--color-border);
	cursor: pointer;
	line-height: 1;
	padding: 0 0.1rem;
	transition: color var(--transition), transform 0.15s ease;
}

.star-btn.active,
.star-btn.hover {
	color: var(--color-accent);
}

.star-btn:hover {
	transform: scale(1.2);
}

.review-form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 0.75rem;
}

.review-submit-form input,
.review-submit-form textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 2px solid var(--color-border);
	border-radius: var(--radius);
	font-family: inherit;
	font-size: 0.9375rem;
	color: var(--color-text);
	background: #111;
	outline: none;
	transition: border-color var(--transition);
	resize: vertical;
}

.review-submit-form input:focus,
.review-submit-form textarea:focus {
	border-color: var(--color-primary);
}

.review-submit-form textarea {
	margin-bottom: 1rem;
}

/* Footer large logo */
.footer-logo-large {
	height: 220px;
	width: auto;
	margin: 0 auto 0.75rem;
}

@media (max-width: 991px) {
	.reviews-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.reviews-grid {
		grid-template-columns: 1fr;
	}
	.review-form-row {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   Dark Theme Overrides
   ============================================================ */

/* Sections with hardcoded white backgrounds */
.gs-services,
.gs-why,
.hp-cta {
	background: var(--color-bg);
}

.gs-services-alt {
	background: var(--color-section-alt);
}

/* Section heading colors on dark */
.section-header h2,
.gs-faq-grid .faq-content h2,
.included-content h2,
.review-submit-wrap h3,
.cta-header h2 {
	color: #fff;
}

.section-header p,
.gs-faq-grid .faq-content > p {
	color: var(--color-text-muted);
}

/* Type cards */
.gs-type-card {
	background: #1a1a1a;
	box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.gs-type-card-body h3 {
	color: #fff;
}

.gs-type-card-body p {
	color: var(--color-text-muted);
}

.gs-type-link {
	color: var(--color-accent);
}

/* Why us items */
.gs-why-item {
	border-color: #2a2a2a;
	background: #111;
}

.gs-why-item h3 {
	color: #fff;
}

/* Review cards */
.review-card {
	background: #1a1a1a;
	border-color: #2d2d2d;
}

.review-text {
	color: var(--color-text-muted);
}

.review-author strong {
	color: var(--color-text);
}

.review-submit-wrap {
	background: #1a1a1a;
	border-color: #2d2d2d;
}

/* Accordion */
.accordion-item {
	border-color: #2d2d2d;
}

.accordion-trigger {
	color: #e8e8e8;
}

.accordion-trigger:hover {
	background: #1a1a1a;
}

.accordion-trigger.open {
	background: var(--color-primary);
	color: #fff;
}

/* Multi-step form */
.multistep-form {
	background: #1a1a1a;
	color: var(--color-text);
}

.form-step h4 {
	color: #fff;
}

.form-option {
	border-color: #2d2d2d;
	color: var(--color-text);
	background: #111;
}

.form-option:hover {
	border-color: var(--color-primary);
	background: #1a1a1a;
}

.form-option:has(input:checked) {
	border-color: var(--color-accent);
	background: rgba(245, 196, 24, 0.08);
	color: #fff;
}

.form-field label {
	color: var(--color-text);
}

.form-field input {
	background: #111;
	border-color: #2d2d2d;
	color: var(--color-text);
}

.form-field input:focus {
	border-color: var(--color-accent);
}

.btn-form-prev {
	border-color: #2d2d2d;
	color: var(--color-text-muted);
	background: #111;
}

.btn-form-prev:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}

/* Progress steps */
.progress-step {
	background: #2d2d2d;
	color: var(--color-text-muted);
}

.progress-line {
	background: #2d2d2d;
}

/* Header on dark */
.site-header {
	background: #0d0d0d;
	border-bottom-color: #2d2d2d;
}

.nav-menu > li > a {
	color: var(--color-text);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
	color: var(--color-accent);
	background: rgba(245, 196, 24, 0.08);
}

.nav-menu .sub-menu {
	background: #1a1a1a;
	border-color: #2d2d2d;
}

.nav-menu .sub-menu a {
	color: var(--color-text);
}

.nav-menu .sub-menu a:hover {
	color: var(--color-accent);
	background: rgba(245, 196, 24, 0.08);
}

.header-slogan {
	color: var(--color-accent) !important;
}

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

/* CTA section text on dark */
.cta-header p {
	color: var(--color-text-muted);
}

.stars-score {
	color: var(--color-text);
}

.stars-count {
	color: var(--color-text-muted);
}

/* FAQ images section */
.gs-faq-employee img {
	filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.6));
}

/* ============================================================
   Mobile — Hero family image (show faces, no text overlap)
   ============================================================ */
@media (max-width: 767px) {
	/* Push hero content up so image shows cleanly below */
	.gs-hero .container {
		padding-bottom: 40%;
	}

	.gs-hero-family-img {
		display: block;
		width: 65%;
		height: 55%;
		top: auto;
		bottom: 0;
		right: 0;
		left: auto;
		object-position: center top;
		-webkit-mask-image: linear-gradient(to left, black 45%, transparent 100%),
		                    linear-gradient(to top, transparent 0%, black 18%);
		mask-image: linear-gradient(to left, black 45%, transparent 100%),
		            linear-gradient(to top, transparent 0%, black 18%);
		mask-composite: intersect;
		-webkit-mask-composite: destination-in;
	}
}

/* ============================================================
   Mobile — Top bar (single line, scrollable)
   ============================================================ */
@media (max-width: 767px) {
	.top-bar {
		display: block;
		padding: 0.4rem 0;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.top-bar-inner {
		flex-wrap: nowrap;
		gap: 0.75rem;
		justify-content: flex-start;
		min-width: max-content;
		padding: 0 var(--container-pad);
	}

	.top-bar-left,
	.top-bar-right {
		flex-wrap: nowrap;
		flex-shrink: 0;
	}

	.top-bar-link,
	.top-bar-badge,
	.top-bar-email {
		font-size: 0.72rem;
		white-space: nowrap;
	}
}

/* ============================================================
   GS-STYLE: Testimonial (simple centered)
   ============================================================ */
.gs-testimonial {
	padding: 5rem 0;
	background: var(--color-primary);
}

.gs-testimonial-inner {
	max-width: 780px;
	margin: 0 auto;
	text-align: center;
}

.gs-testimonial-stars {
	font-size: 1.5rem;
	color: var(--color-accent);
	letter-spacing: 0.08em;
	margin-bottom: 1.5rem;
}

.gs-testimonial-quote {
	font-size: clamp(1.0625rem, 2vw, 1.25rem);
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.75;
	font-style: italic;
	margin-bottom: 2rem;
}

.gs-testimonial-quote::before {
	content: '\201C';
	font-size: 3rem;
	line-height: 0;
	vertical-align: -0.65rem;
	color: var(--color-accent);
	font-style: normal;
	margin-right: 0.2rem;
}

.gs-testimonial-author {
	display: inline-flex;
	align-items: center;
	gap: 0.875rem;
	font-style: normal;
}

.gs-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--color-accent);
	color: #1a1a1a;
	font-family: 'Roboto Condensed', var(--font-sans);
	font-weight: 800;
	font-size: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.gs-testimonial-author strong {
	display: block;
	color: #fff;
	font-size: 1rem;
}

.gs-testimonial-author span span {
	display: block;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

/* ============================================================
   GS-STYLE: FAQ section (new layout)
   ============================================================ */
.gs-faq-section {
	padding: 4.5rem 0;
	background: var(--color-section-alt);
}

.gs-faq-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
	align-items: start;
}

.gs-faq-grid .faq-content h2 {
	font-size: clamp(1.625rem, 3vw, 2.25rem);
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.gs-faq-grid .faq-content > p {
	color: var(--color-text-muted);
	margin-bottom: 2rem;
}

.gs-faq-employee {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.gs-faq-employee img {
	max-height: 520px;
	width: auto;
	object-fit: contain;
	object-position: bottom center;
	border-radius: var(--radius-lg);
	filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}

/* ============================================================
   GS-STYLE: Final CTA + Form (reuses existing .hp-cta)
   ============================================================ */
.hp-cta {
	padding: 5rem 0;
	background: var(--color-bg);
	color: var(--color-text);
	position: relative;
	overflow: hidden;
}

/* Employee photo — right side, full picture, fades left into purple */
.hp-cta-employee {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 100%;
	width: auto;
	max-width: 45%;
	object-fit: contain;
	object-position: right bottom;
	z-index: 0;
	-webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
	mask-image: linear-gradient(to right, transparent 0%, black 30%);
	filter: blur(2px);
	pointer-events: none;
}

/* Lift content above the photo */
.hp-cta > .container {
	position: relative;
	z-index: 1;
}

@media (max-width: 991px) {
	.hp-cta-employee {
		display: none;
	}
}

.cta-header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.cta-header h2 {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	color: var(--color-primary);
	margin-bottom: 0.75rem;
}

.cta-header p {
	color: var(--color-text-muted);
	font-size: 1.0625rem;
	max-width: 560px;
	margin: 0 auto 1.25rem;
}

.star-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-wrap: wrap;
}

.stars {
	color: var(--color-accent);
	font-size: 1.125rem;
	letter-spacing: 0.05em;
}

.stars-score {
	font-weight: 700;
	font-size: 1rem;
	color: var(--color-text);
}

.stars-count {
	color: var(--color-text-muted);
	font-size: 0.9rem;
}

.cta-social {
	margin-top: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
}

.cta-social .social-icon {
	background: rgba(42, 24, 88, 0.07);
	color: var(--color-primary);
}

.cta-social .social-icon:hover {
	background: var(--color-primary);
	color: #fff;
}

/* ============================================================
   GS-STYLE: Responsive — Tablet (max 991px)
   ============================================================ */
@media (max-width: 991px) {
	.gs-grid-4 {
		grid-template-columns: repeat(3, 1fr);
	}

	.gs-type-grid {
		grid-template-columns: 1fr 1fr;
	}

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

	.gs-faq-grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.gs-stats-grid {
		justify-content: center;
		gap: 2rem;
	}

	.gs-stat-divider {
		display: none;
	}

	.gs-cta-bar-inner {
		flex-direction: column;
		text-align: center;
	}

	.gs-cta-bar-actions {
		justify-content: center;
	}
}

/* ============================================================
   GS-STYLE: Responsive — Mobile (max 767px)
   ============================================================ */
@media (max-width: 767px) {
	.gs-hero {
		min-height: 600px;
	}

	.gs-hero .container {
		padding-top: 3.5rem;
		padding-bottom: 42%;
	}

	.gs-hero h1 {
		font-size: 2rem;
	}

	.gs-hero-badges {
		display: none;
	}

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

	.gs-type-grid,
	.gs-why-grid {
		grid-template-columns: 1fr;
	}

	.gs-stats-bar {
		padding: 2rem 0;
	}

	.gs-stats-grid {
		gap: 1.5rem;
	}

	.gs-testimonial {
		padding: 3.5rem 0;
	}

	.gs-faq-images {
		display: none;
	}

	.hp-cta {
		padding: 3.5rem 0;
	}

	.multistep-form {
		padding: 1.5rem 1.25rem;
	}

	.btn-lg {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
}
