/* ============================================================
   Express4u INSURANCE — Main Stylesheet
   Author: CoastalShield Insurance Design System
   Version: 1.0
   ============================================================ */

/* ── Google Fonts Import ── */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=DM+Sans:wght@300;400;500;600&display=swap");

/* ── CSS Custom Properties ── */
:root {
	/* Colors */
	--navy: #0d2b4e;
	--navy-light: #163c6b;
	--sky: #1a7dc4;
	--sky-light: #3a9fe8;
	--teal: #0fa89e;
	--sand: #f5f0e8;
	--white: #ffffff;
	--gray-50: #f8fafc;
	--gray-100: #eff4f9;
	--gray-200: #d6e4f0;
	--gray-400: #7fa8c9;
	--gray-600: #4a6d8c;
	--gray-800: #1e3a52;
	--text: #1c2e3f;
	--text-muted: #5a7a96;
	--accent: #e8a034;

	/* Typography */
	--font-display: "Playfair Display", Georgia, serif;
	--font-body: "DM Sans", system-ui, sans-serif;

	/* Spacing */
	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 1.5rem;
	--space-lg: 2.5rem;
	--space-xl: 4rem;
	--space-2xl: 6rem;

	/* Radius */
	--radius-sm: 6px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 32px;

	/* Shadows */
	--shadow-sm: 0 2px 8px rgba(13, 43, 78, 0.08);
	--shadow-md: 0 6px 24px rgba(13, 43, 78, 0.12);
	--shadow-lg: 0 16px 48px rgba(13, 43, 78, 0.16);
	--shadow-xl: 0 24px 64px rgba(13, 43, 78, 0.2);

	/* Transitions */
	--ease: cubic-bezier(0.4, 0, 0.2, 1);
	--duration: 0.28s;
}

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

html {
	font-size: 16px;
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-body);
	color: var(--text);
	background: var(--white);
	line-height: 1.65;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	color: inherit;
	text-decoration: none;
	transition: color var(--duration) var(--ease);
}
ul {
	list-style: none;
}
button {
	cursor: pointer;
	font-family: inherit;
	border: none;
	background: none;
}
input,
textarea,
select {
	font-family: inherit;
}

/* ── Utility Classes ── */
.container {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1.5rem;
}
.section {
	padding: var(--space-2xl) 0;
}
.section--alt {
	background: var(--gray-50);
}
.section--dark {
	background: var(--navy);
	color: var(--white);
}
.text-center {
	text-align: center;
}
.text-muted {
	color: var(--text-muted);
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

/* ── Typography ── */
.display-xl {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5.5vw, 4rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
}
.display-lg {
	font-family: var(--font-display);
	font-size: clamp(1.9rem, 4vw, 2.9rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.015em;
}
.display-md {
	font-family: var(--font-display);
	font-size: clamp(1.4rem, 3vw, 2rem);
	font-weight: 600;
	line-height: 1.3;
}
.eyebrow {
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sky);
}
.lead {
	font-size: clamp(1rem, 2vw, 1.15rem);
	color: var(--text-muted);
	line-height: 1.75;
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.85rem 2rem;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: var(--radius-xl);
	transition: all var(--duration) var(--ease);
	white-space: nowrap;
}
.btn--primary {
	background: var(--sky);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(26, 125, 196, 0.35);
}
.btn--primary:hover {
	background: var(--sky-light);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(26, 125, 196, 0.45);
	color: var(--white);
}
.btn--outline {
	border: 2px solid var(--white);
	color: var(--white);
}
.btn--outline:hover {
	background: var(--white);
	color: var(--navy);
}
.btn--navy {
	background: var(--navy);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(13, 43, 78, 0.25);
}
.btn--navy:hover {
	background: var(--navy-light);
	transform: translateY(-2px);
	color: var(--white);
}
.btn--ghost {
	color: var(--sky);
	font-weight: 600;
	padding-left: 0;
}
.btn--ghost:hover {
	color: var(--navy);
}
.btn--ghost .arrow {
	transition: transform var(--duration) var(--ease);
}
.btn--ghost:hover .arrow {
	transform: translateX(4px);
}

/* ── HEADER ── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--gray-200);
	transition: box-shadow var(--duration) var(--ease);
}
.site-header.scrolled {
	box-shadow: var(--shadow-md);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	gap: 2rem;
}

/* Logo */
.logo {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}
.logo__icon {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, var(--sky), var(--teal));
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.logo__icon svg {
	width: 22px;
	height: 22px;
}
.logo__text {
	line-height: 1.1;
}
.logo__name {
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	color: var(--navy);
}
.logo__tag {
	font-size: 0.65rem;
	font-weight: 500;
	color: var(--text-muted);
	letter-spacing: 0.05em;
}

/* Nav */
.site-nav {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}
.nav-link {
	padding: 0.5rem 0.85rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--gray-800);
	border-radius: var(--radius-sm);
	transition: all var(--duration) var(--ease);
	white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
	color: var(--sky);
	background: var(--gray-100);
}
.nav-link.active {
	font-weight: 600;
}

/* Header CTA */
.header-cta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}
.header-phone {
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--navy);
	display: flex;
	align-items: center;
	gap: 0.4rem;
}
.header-phone:hover {
	color: var(--sky);
}

/* Hamburger */
.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 0.5rem;
	border-radius: var(--radius-sm);
}
.hamburger span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--navy);
	border-radius: 2px;
	transition: all var(--duration) var(--ease);
}
.hamburger.open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
	opacity: 0;
}
.hamburger.open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
	display: none;
	flex-direction: column;
	gap: 0.25rem;
	padding: 1rem 1.5rem 1.5rem;
	border-top: 1px solid var(--gray-200);
	background: var(--white);
}
.mobile-nav.open {
	display: flex;
}
.mobile-nav .nav-link {
	display: block;
	padding: 0.75rem 1rem;
}
.mobile-nav .btn {
	width: 100%;
	justify-content: center;
	margin-top: 0.5rem;
}

/* ── HERO ── */
.hero {
	position: relative;
	background: linear-gradient(
		135deg,
		var(--navy) 0%,
		var(--navy-light) 55%,
		#1e5a8e 100%
	);
	color: var(--white);
	padding: 5rem 0 4rem;
	overflow: hidden;
}
.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 4rem;
	position: relative;
	z-index: 1;
}
.hero__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: var(--radius-xl);
	padding: 0.35rem 1rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.5rem;
}
.hero__eyebrow::before {
	content: "";
	width: 6px;
	height: 6px;
	background: var(--teal);
	border-radius: 50%;
	flex-shrink: 0;
}
.hero__title {
	color: var(--white);
	margin-bottom: 1.25rem;
}
.hero__title em {
	font-style: normal;
	color: var(--accent);
}
.hero__desc {
	color: rgba(255, 255, 255, 0.78);
	max-width: 540px;
	margin-bottom: 2rem;
	font-size: 1.05rem;
}
.hero__actions {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}
.hero__trust {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	flex-wrap: wrap;
}
.trust-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.75);
}
.trust-item svg {
	color: var(--teal);
	flex-shrink: 0;
}
.trust-item strong {
	color: var(--white);
	font-weight: 600;
}

/* Hero Visual Card */
.hero__visual {
	position: relative;
}
.hero-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-lg);
	padding: 2rem;
}
.hero-card__title {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 1.25rem;
}
.coverage-pills {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.pill {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: var(--radius-md);
	padding: 1rem;
	transition: background var(--duration) var(--ease);
	cursor: default;
}
.pill:hover {
	background: rgba(255, 255, 255, 0.16);
}
.pill__icon {
	font-size: 1.4rem;
	margin-bottom: 0.35rem;
}
.pill__name {
	font-size: 0.83rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
}
.pill__desc {
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 0.15rem;
}
.hero-card__cta {
	background: var(--sky);
	color: var(--white);
	border-radius: var(--radius-md);
	padding: 1rem;
	text-align: center;
	font-weight: 600;
	font-size: 0.9rem;
	transition: background var(--duration) var(--ease);
	display: block;
}
.hero-card__cta:hover {
	background: var(--sky-light);
	color: var(--white);
}

/* ── STATS BAR ── */
.stats-bar {
	background: var(--white);
	border-bottom: 1px solid var(--gray-200);
	padding: 2.5rem 0;
}
.stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	divide-color: var(--gray-200);
}
.stat-item {
	text-align: center;
	padding: 0.5rem 1rem;
	border-right: 1px solid var(--gray-200);
}
.stat-item:last-child {
	border-right: none;
}
.stat-item__num {
	font-family: var(--font-display);
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
}
.stat-item__num span {
	color: var(--sky);
}
.stat-item__label {
	font-size: 0.83rem;
	color: var(--text-muted);
	margin-top: 0.35rem;
	font-weight: 500;
}

/* ── SERVICES OVERVIEW ── */
.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.service-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: all var(--duration) var(--ease);
	position: relative;
	overflow: hidden;
}
.service-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--sky), var(--teal));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--duration) var(--ease);
}
.service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: var(--gray-200);
}
.service-card:hover::before {
	transform: scaleX(1);
}
.service-card__icon {
	width: 52px;
	height: 52px;
	background: var(--gray-100);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	margin-bottom: 1.25rem;
	transition: background var(--duration) var(--ease);
}
.service-card:hover .service-card__icon {
	background: rgba(26, 125, 196, 0.1);
}
.service-card h3 {
	font-family: var(--font-display);
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 0.6rem;
}
.service-card p {
	font-size: 0.9rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 1.25rem;
}

/* ── WHY CHOOSE US ── */
.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.why-visual {
	position: relative;
	background: linear-gradient(135deg, var(--navy) 0%, var(--sky) 100%);
	border-radius: var(--radius-xl);
	padding: 3rem 2.5rem;
	color: var(--white);
}
.why-visual__badge {
	position: absolute;
	top: -1.25rem;
	right: -1.25rem;
	background: var(--accent);
	color: var(--white);
	border-radius: 50%;
	width: 90px;
	height: 90px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-family: var(--font-display);
	font-weight: 700;
	box-shadow: var(--shadow-lg);
	text-align: center;
}
.why-visual__badge .big {
	font-size: 1.6rem;
	line-height: 1;
}
.why-visual__badge .small {
	font-size: 0.58rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.why-list {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}
.why-item {
	display: flex;
	gap: 1.25rem;
	align-items: flex-start;
}
.why-item__icon {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
}
.why-item h4 {
	font-family: var(--font-display);
	font-size: 1rem;
	margin-bottom: 0.3rem;
}
.why-item p {
	font-size: 0.85rem;
	opacity: 0.78;
}

.reasons-list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 2rem;
}
.reason-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-md);
	transition: all var(--duration) var(--ease);
}
.reason-item:hover {
	border-color: var(--sky);
	box-shadow: var(--shadow-sm);
}
.reason-icon {
	width: 40px;
	height: 40px;
	background: rgba(26, 125, 196, 0.1);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sky);
	font-size: 1.1rem;
	flex-shrink: 0;
}
.reason-item h4 {
	font-weight: 600;
	color: var(--navy);
	font-size: 0.95rem;
	margin-bottom: 0.2rem;
}
.reason-item p {
	font-size: 0.85rem;
	color: var(--text-muted);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.testimonial-card {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	padding: 2rem;
	transition: box-shadow var(--duration) var(--ease);
}
.testimonial-card:hover {
	box-shadow: var(--shadow-md);
}
.stars {
	display: flex;
	gap: 3px;
	color: var(--accent);
	margin-bottom: 1rem;
	font-size: 0.9rem;
}
.testimonial-card blockquote {
	font-size: 0.92rem;
	color: var(--text);
	line-height: 1.7;
	margin-bottom: 1.25rem;
	font-style: italic;
}
.testimonial-author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.author-avatar {
	width: 42px;
	height: 42px;
	background: linear-gradient(135deg, var(--sky), var(--teal));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-weight: 700;
	font-size: 0.9rem;
	flex-shrink: 0;
}
.author-name {
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--navy);
}
.author-city {
	font-size: 0.78rem;
	color: var(--text-muted);
}

/* ── COVERAGE HIGHLIGHTS ── */
.coverage-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
	margin-top: 3rem;
}
.coverage-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-md);
	padding: 1.75rem;
	text-align: center;
	transition: background var(--duration) var(--ease);
}
.coverage-card:hover {
	background: rgba(255, 255, 255, 0.1);
}
.coverage-card__icon {
	font-size: 2rem;
	margin-bottom: 0.75rem;
}
.coverage-card h3 {
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--white);
	margin-bottom: 0.5rem;
}
.coverage-card p {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
}

/* ── CTA BANNER ── */
.cta-banner {
	background: linear-gradient(135deg, var(--sky) 0%, var(--teal) 100%);
	padding: var(--space-xl) 0;
	color: var(--white);
	text-align: center;
}
.cta-banner .display-lg {
	color: var(--white);
	max-width: 700px;
	margin: 0.75rem auto 1.5rem;
}
.cta-banner p {
	color: rgba(255, 255, 255, 0.85);
	max-width: 560px;
	margin: 0 auto 2rem;
}
.cta-actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── FOOTER ── */
.site-footer {
	background: var(--gray-800);
	color: rgba(255, 255, 255, 0.85);
	padding: var(--space-2xl) 0 0;
}
.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand .logo__name {
	color: var(--white);
}
.footer-brand .logo__tag {
	color: rgba(255, 255, 255, 0.5);
}
.footer-brand p {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.6);
	margin: 1rem 0 1.5rem;
	line-height: 1.7;
	max-width: 280px;
}
.footer-contact {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.footer-contact a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.65);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	transition: color var(--duration) var(--ease);
}
.footer-contact a:hover {
	color: var(--sky-light);
}
.footer-col h4 {
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	margin-bottom: 1rem;
}
.footer-links {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.footer-links a {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.65);
	transition: color var(--duration) var(--ease);
}
.footer-links a:hover {
	color: var(--sky-light);
}
.footer-bottom {
	padding: 1.5rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
	color: rgba(255, 255, 255, 0.45);
	transition: color var(--duration) var(--ease);
}
.footer-bottom a:hover {
	color: rgba(255, 255, 255, 0.8);
}
.footer-legal {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.license-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius-xl);
	padding: 0.3rem 0.85rem;
	font-size: 0.72rem;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 1rem;
}

/* ── INNER PAGE HERO ── */
.page-hero {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
	padding: 4rem 0 3.5rem;
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.page-hero::after {
	content: "";
	position: absolute;
	right: -100px;
	bottom: -100px;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(26, 125, 196, 0.2) 0%,
		transparent 70%
	);
}
.page-hero .eyebrow {
	color: var(--teal);
	margin-bottom: 0.75rem;
	display: block;
}
.page-hero .display-lg {
	color: var(--white);
	margin-bottom: 1rem;
}
.page-hero .lead {
	color: rgba(255, 255, 255, 0.75);
}

/* ── ABOUT PAGE ── */
.about-intro-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}
.about-visual-block {
	position: relative;
	padding: 2.5rem;
	background: linear-gradient(135deg, var(--navy), var(--sky));
	border-radius: var(--radius-xl);
	color: var(--white);
}
.about-stat-pair {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	margin-top: 1.5rem;
}
.astat {
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 1.25rem;
}
.astat .num {
	font-family: var(--font-display);
	font-size: 2rem;
	font-weight: 700;
	color: var(--white);
}
.astat .label {
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.65);
	margin-top: 0.25rem;
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin-top: 3rem;
}
.value-card {
	padding: 2rem;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-lg);
	transition: all var(--duration) var(--ease);
}
.value-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
}
.value-card__icon {
	font-size: 2rem;
	margin-bottom: 1rem;
}
.value-card h3 {
	font-family: var(--font-display);
	font-size: 1.1rem;
	color: var(--navy);
	margin-bottom: 0.5rem;
}
.value-card p {
	font-size: 0.88rem;
	color: var(--text-muted);
}

.team-section {
	text-align: center;
}
.trust-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2.5rem;
}
.trust-badge {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-xl);
	padding: 0.65rem 1.25rem;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--navy);
	box-shadow: var(--shadow-sm);
}
.trust-badge .icon {
	font-size: 1.2rem;
}

/* ── SERVICES PAGE ── */
.service-detail {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.5rem;
	align-items: center;
	padding: var(--space-xl) 0;
	border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child {
	border-bottom: none;
}
.service-detail:nth-child(even) .service-detail__content {
	order: -1;
}
.service-detail__visual {
	background: linear-gradient(135deg, var(--navy), var(--sky));
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	color: var(--white);
	min-height: 280px;
	display: flex;
	align-items: center;
}
.service-detail__icon-big {
	font-size: 3.5rem;
	margin-bottom: 1rem;
}
.service-detail__visual h3 {
	font-family: var(--font-display);
	font-size: 1.5rem;
	margin-bottom: 0.75rem;
}
.service-detail__visual p {
	opacity: 0.8;
	font-size: 0.9rem;
}

.service-features {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin: 1.5rem 0;
}
.feature-check {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.9rem;
	color: var(--text);
}
.feature-check::before {
	content: "✓";
	width: 22px;
	height: 22px;
	background: rgba(15, 168, 158, 0.12);
	color: var(--teal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 700;
	flex-shrink: 0;
}

/* ── CONTACT PAGE ── */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 3.5rem;
	align-items: start;
}
.contact-info-block {
	background: var(--navy);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	color: var(--white);
}
.contact-info-block h3 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
}
.contact-info-block p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	margin-bottom: 2rem;
}
.contact-details {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
.contact-detail-item {
	display: flex;
	align-items: flex-start;
	gap: 0.85rem;
}
.contact-detail-item .ci-icon {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	flex-shrink: 0;
}
.ci-label {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.2rem;
}
.ci-value {
	font-size: 0.88rem;
	color: var(--white);
	font-weight: 500;
}
.hours-box {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	margin-top: 1.75rem;
}
.hours-box h4 {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 0.75rem;
}
.hours-row {
	display: flex;
	justify-content: space-between;
	font-size: 0.85rem;
	margin-bottom: 0.4rem;
}
.hours-row span:first-child {
	color: rgba(255, 255, 255, 0.7);
}
.hours-row span:last-child {
	color: var(--white);
	font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
	background: var(--white);
	border: 1px solid var(--gray-200);
	border-radius: var(--radius-xl);
	padding: 2.5rem;
	box-shadow: var(--shadow-sm);
}
.form-group {
	margin-bottom: 1.25rem;
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
label {
	display: block;
	font-size: 0.83rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 0.4rem;
}
label .required {
	color: var(--sky);
	margin-left: 2px;
}
.form-control {
	width: 100%;
	padding: 0.8rem 1rem;
	font-size: 0.9rem;
	color: var(--text);
	background: var(--gray-50);
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius-md);
	transition: all var(--duration) var(--ease);
	outline: none;
	appearance: none;
}
.form-control:focus {
	border-color: var(--sky);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(26, 125, 196, 0.1);
}
.form-control::placeholder {
	color: var(--gray-400);
}
.form-control.error {
	border-color: #e53e3e;
	box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}
textarea.form-control {
	resize: vertical;
	min-height: 130px;
}
.field-error {
	font-size: 0.78rem;
	color: #e53e3e;
	margin-top: 0.3rem;
	display: none;
}
.field-error.show {
	display: block;
}
.form-submit {
	width: 100%;
	padding: 1rem;
	font-size: 1rem;
	font-weight: 700;
	border-radius: var(--radius-md);
	margin-top: 0.5rem;
}
.form-success {
	display: none;
	text-align: center;
	padding: 2rem;
	background: rgba(15, 168, 158, 0.06);
	border: 1px solid rgba(15, 168, 158, 0.2);
	border-radius: var(--radius-md);
	color: var(--teal);
}
.form-success.show {
	display: block;
}
.form-success .success-icon {
	font-size: 2.5rem;
	margin-bottom: 0.75rem;
}

/* ── LEGAL PAGES ── */
.legal-content {
	max-width: 800px;
	margin: 0 auto;
	padding: var(--space-2xl) 0;
}
.legal-content h2 {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--navy);
	margin: 2.5rem 0 0.75rem;
	padding-top: 2rem;
	border-top: 1px solid var(--gray-200);
}
.legal-content h2:first-of-type {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}
.legal-content h3 {
	font-family: var(--font-display);
	font-size: 1.05rem;
	color: var(--navy);
	margin: 1.5rem 0 0.5rem;
}
.legal-content p {
	margin-bottom: 1rem;
	font-size: 0.92rem;
	color: var(--text);
	line-height: 1.75;
}
.legal-content ul {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}
.legal-content ul li {
	font-size: 0.92rem;
	color: var(--text);
	margin-bottom: 0.4rem;
	line-height: 1.65;
}
.legal-meta {
	display: flex;
	gap: 2rem;
	flex-wrap: wrap;
	font-size: 0.82rem;
	color: var(--text-muted);
	margin-bottom: 2.5rem;
	padding: 1rem 1.25rem;
	background: var(--gray-100);
	border-radius: var(--radius-md);
}

/* ── SECTION HEADER ── */
.section-header {
	max-width: 640px;
}
.section-header.center {
	text-align: center;
	margin: 0 auto 0.75rem;
}
.section-header .eyebrow {
	margin-bottom: 0.6rem;
	display: block;
}
.section-header .display-lg {
	margin-bottom: 0.75rem;
}

/* ── ANIMATIONS ── */
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition:
		opacity 0.55s var(--ease),
		transform 0.55s var(--ease);
}
.fade-in.visible {
	opacity: 1;
	transform: none;
}
.fade-in:nth-child(2) {
	transition-delay: 0.08s;
}
.fade-in:nth-child(3) {
	transition-delay: 0.16s;
}
.fade-in:nth-child(4) {
	transition-delay: 0.24s;
}
.fade-in:nth-child(5) {
	transition-delay: 0.32s;
}

/* ── BREADCRUMB ── */
.breadcrumb {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.55);
	margin-bottom: 1rem;
}
.breadcrumb a {
	color: rgba(255, 255, 255, 0.55);
}
.breadcrumb a:hover {
	color: var(--white);
}
.breadcrumb span {
	color: rgba(255, 255, 255, 0.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
	.footer-grid {
		grid-template-columns: 1fr 1fr;
	}
	.why-grid,
	.about-intro-grid {
		gap: 2.5rem;
	}
}

@media (max-width: 900px) {
	.hero__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}
	.hero__visual {
		max-width: 480px;
	}
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.stat-item {
		border-right: none;
		border-bottom: 1px solid var(--gray-200);
	}
	.stat-item:nth-child(odd) {
		border-right: 1px solid var(--gray-200);
	}
	.stat-item:last-child,
	.stat-item:nth-last-child(2):nth-child(odd) {
		border-bottom: none;
	}
	.why-grid,
	.about-intro-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.service-detail {
		grid-template-columns: 1fr;
	}
	.service-detail:nth-child(even) .service-detail__content {
		order: 0;
	}
}

@media (max-width: 768px) {
	.site-nav,
	.header-cta .btn {
		display: none;
	}
	.hamburger {
		display: flex;
	}
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}
	.footer-legal {
		justify-content: center;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	:root {
		--space-2xl: 4rem;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 3.5rem 0 3rem;
	}
	.hero__actions {
		flex-direction: column;
	}
	.hero__actions .btn {
		width: 100%;
		justify-content: center;
	}
	.coverage-pills {
		grid-template-columns: 1fr;
	}
	.stats-grid {
		grid-template-columns: 1fr;
	}
	.stat-item {
		border-right: none;
	}
}
