:root {
	--brand-blue: #2f2889;
	--brand-red: #bf2738;
	--brand-accent-purple: #c6b4d6;
	--redwood-red: var(--brand-red);
	--redwood-red-dark: #901d2b;
	--redwood-gold: var(--brand-accent-purple);
	--bg-light: #f7fafc;
	--bg-dark: #0b1520;
	--text-main: #111827;
	--text-muted: #4b5563;
	--border-subtle: #e2e8f0;
	--shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
	--radius-lg: 18px;
	--radius-pill: 999px;
	--transition-fast: 0.2s ease;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: var(--text-main);
	background: radial-gradient(circle at top left, #eef2ff 0, #f9fafb 40%, #f3f4ff 100%);
	-webkit-font-smoothing: antialiased;
}

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

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

.page-shell {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.wrapper {
	width: min(1120px, 100% - 3rem);
	margin: 0 auto;
}

header {
	position: sticky;
	top: 0;
	z-index: 40;
	backdrop-filter: blur(14px);
	background: rgba(248, 250, 252, 0.92);
	border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.9rem 0;
	gap: 1.75rem;
}

.logo {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	gap: 0.55rem;
}


.logo-mark {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	background: transparent;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	overflow: hidden;
	flex-shrink: 0;
}

.logo-mark img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	object-fit: contain;
	border-radius: 8px;
}

/* Skeleton placeholder shown while client-side navbar is fetched */
.wrapper.nav-bar.skeleton {
	pointer-events: none; /* avoid accidental interactions */
}
.wrapper.nav-bar.skeleton .logo-mark {
	background: #f3f4f6;
}
.wrapper.nav-bar.skeleton .logo-text-title,
.wrapper.nav-bar.skeleton .logo-text-sub,
.wrapper.nav-bar.skeleton nav,
.wrapper.nav-bar.skeleton .nav-cta {
	visibility: hidden;
}

.logo-text-title {
	font-weight: 700;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-size: 0.9rem;
}

.logo-text-sub {
	font-size: 0.75rem;
	color: var(--text-muted);
}

nav {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	font-size: 0.9rem;
	color: #475569;
}

nav a {
	position: relative;
	padding-bottom: 0.2rem;
}

nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 0;
	height: 2px;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
	transition: width var(--transition-fast);
}

nav a:hover::after,
nav a:focus-visible::after {
	width: 100%;
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}

.lead-form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem 1rem;
}

.lead-form label {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin-bottom: 0.18rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
	width: 100%;
	border-radius: 10px;
	border: 1px solid var(--border-subtle);
	padding: 0.5rem 0.65rem;
	font-size: 0.86rem;
	font-family: inherit;
	color: var(--text-main);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
	background: rgba(255, 255, 255, 0.9);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
	outline: none;
	border-color: var(--redwood-red);
	box-shadow: 0 0 0 1px rgba(191, 39, 56, 0.15);
	background: #fff;
}

.lead-form textarea {
	min-height: 130px;
	resize: vertical;
}

.lead-form button[type="submit"] {
	grid-column: 1 / -1;
}

.lead-form small {
	grid-column: 1 / -1;
}

@media (max-width: 720px) {
	.lead-form {
		grid-template-columns: 1fr;
	}
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	border-radius: var(--radius-pill);
	padding: 0.6rem 1.3rem;
	font-size: 0.9rem;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
	background: linear-gradient(135deg, var(--redwood-red), var(--redwood-red-dark));
	color: #fff;
	box-shadow: 0 14px 30px rgba(148, 27, 54, 0.4);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(148, 27, 54, 0.55);
}

.btn-outline {
	background: rgba(255, 255, 255, 0.7);
	border-color: rgba(148, 163, 184, 0.7);
	color: #0f172a;
}

.btn-outline:hover {
	background: #fff;
	border-color: var(--redwood-red);
	color: var(--redwood-red-dark);
	transform: translateY(-1px);
}

.hero {
	padding: 3.5rem 0 3rem;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
	gap: 2.8rem;
	align-items: center;
}

.hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	border-radius: 999px;
	padding: 0.2rem 0.6rem 0.2rem 0.2rem;
	background: rgba(248, 250, 252, 0.95);
	border: 1px solid rgba(226, 232, 240, 0.9);
	box-shadow: 0 8px 22px rgba(148, 27, 54, 0.15);
	margin-bottom: 1.05rem;
}

.hero-kicker-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--redwood-red), var(--brand-accent-purple));
	color: #fff;
	font-size: 0.75rem;
	font-weight: 700;
}

.hero-kicker-text {
	font-size: 0.76rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #475569;
	font-weight: 600;
}

.hero h1 {
	font-size: clamp(2.4rem, 4vw, 3.1rem);
	line-height: 1.08;
	margin: 0 0 0.85rem;
}

.hero h1 span {
	background: linear-gradient(120deg, var(--redwood-red), var(--brand-accent-purple));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-subtitle {
	font-size: 1rem;
	color: var(--text-muted);
	max-width: 34rem;
	margin-bottom: 1.4rem;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 0.9rem;
	align-items: center;
	margin-bottom: 1.3rem;
}

.hero-disclaimer {
	font-size: 0.8rem;
	color: #64748b;
}

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2rem;
	margin-top: 1.7rem;
	font-size: 0.78rem;
	color: #475569;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.8rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.8);
	border: 1px solid rgba(226, 232, 240, 0.9);
}

.dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--redwood-red);
}

.hero-right {
	position: relative;
}

.hero-card {
	position: relative;
	border-radius: 26px;
	padding: 1.5rem 1.4rem;
	background: linear-gradient(135deg, #eff6ff, #c6b4d6);
	box-shadow: var(--shadow-soft);
	overflow: hidden;
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.45) 0, transparent 55%),
					  radial-gradient(circle at 80% 10%, rgba(248, 250, 252, 0.6) 0, transparent 55%);
	mix-blend-mode: soft-light;
	pointer-events: none;
}

.hero-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1.1rem;
}

.hero-card-title {
	font-weight: 600;
	font-size: 0.95rem;
}

.hero-card-chip {
	font-size: 0.7rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.74);
	color: #e5e7eb;
}

.hero-card-body {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
	gap: 1.1rem;
	align-items: start;
	position: relative;
	z-index: 1;
}

.mini-step-list {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.8rem;
	display: grid;
	gap: 0.45rem;
}

.mini-step-list li {
	display: flex;
	gap: 0.4rem;
	align-items: flex-start;
}

.mini-step-index {
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	color: #f9fafb;
	font-size: 0.7rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 0.05rem;
}

.mini-step-text strong {
	display: block;
	font-weight: 600;
}

.mini-metric-card {
	border-radius: 18px;
	padding: 0.9rem 1rem;
	background: rgba(15, 23, 42, 0.82);
	color: #e5e7eb;
	font-size: 0.8rem;
	display: grid;
	gap: 0.4rem;
}

.mini-metric-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.65rem;
}

.mini-metric-label {
	font-size: 0.68rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: #cbd5f5;
}

.mini-metric-value {
	font-size: 1.05rem;
	font-weight: 700;
}

.mini-metric-caption {
	font-size: 0.7rem;
	color: #e5e7eb;
}

.hero-card-footnote {
	margin-top: 0.7rem;
	font-size: 0.72rem;
	color: #0f172a;
}

.pill-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.4rem;
}

.pill {
	font-size: 0.75rem;
	padding: 0.35rem 0.8rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.06);
	border: 1px solid rgba(148, 163, 184, 0.4);
	color: #334155;
}

.section {
	padding: 1.9rem 0 1.8rem;
}

.section-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1.25rem;
	margin-bottom: 1.2rem;
}

.section-kicker {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: #9ca3af;
	font-weight: 600;
	margin-bottom: 0.4rem;
}

.section-title {
	font-size: 1.5rem;
	margin: 0;
}

.section-subtitle {
	margin: 0;
	font-size: 0.9rem;
	color: var(--text-muted);
	max-width: 26rem;
}

.value-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.2rem;
}

.stats-grid {
	margin-top: 0.9rem;
}

.stat-card {
	text-align: center;
}

.stat-number {
	font-size: 2.15rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1.05;
}

.stat-label {
	margin-top: 0.35rem;
	font-size: 0.9rem;
	font-weight: 650;
	color: var(--text-muted);
	display: inline-block;
}

.stat-link {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.value-card {
	padding: 1.1rem 1.1rem 1rem;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 25px rgba(148, 163, 184, 0.18);
}

.value-icon {
	width: 30px;
	height: 30px;
	border-radius: 10px;
	background: rgba(220, 38, 38, 0.07);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.05rem;
	margin-bottom: 0.6rem;
}

.value-card h3 {
	font-size: 0.98rem;
	margin: 0 0 0.35rem;
}

.value-card p {
	font-size: 0.86rem;
	margin: 0 0 0.4rem;
	color: var(--text-muted);
}

.value-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3rem;
}

.callout-card {
	margin: 0.9rem 0 1rem;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 25px rgba(148, 163, 184, 0.18);
}

.callout-title {
	font-weight: 800;
	letter-spacing: 0.02em;
	margin-bottom: 0.25rem;
}

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

.callout-actions {
	margin-top: 0.7rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	align-items: center;
}

.calendly-embed {
	margin-top: 0.75rem;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 25px rgba(148, 163, 184, 0.18);
	overflow: hidden;
}

.calendly-embed .calendly-inline-widget {
	width: 100%;
}

.media-placeholder {
	margin-top: 0.6rem;
	border-radius: 14px;
	border: 1px dashed rgba(148, 163, 184, 0.7);
	background: rgba(248, 250, 252, 0.9);
	aspect-ratio: 16 / 9;
	display: grid;
	place-items: center;
	color: #64748b;
	font-size: 0.85rem;
}

.flag-row {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.flag-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	border: 1px solid rgba(148, 163, 184, 0.6);
	background: rgba(255, 255, 255, 0.75);
	font-size: 0.9rem;
}

.flag-chip:hover {
	border-color: var(--redwood-red);
}

.value-tag {
	font-size: 0.7rem;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: #f1f5f9;
	color: #475569;
}

.quick-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.9rem;
}

.quick-link-card {
	border-radius: 14px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	padding: 0.8rem 0.9rem;
	font-size: 0.9rem;
	background: rgba(255, 255, 255, 0.9);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
	cursor: pointer;
	transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.quick-link-card:hover {
	border-color: var(--redwood-red);
	box-shadow: 0 14px 28px rgba(148, 27, 54, 0.26);
	transform: translateY(-1px);
}

.quick-link-label {
	display: flex;
	flex-direction: column;
	gap: 0.08rem;
}

.quick-link-label span:first-child {
	font-weight: 600;
}

.quick-link-label span:last-child {
	font-size: 0.77rem;
	color: #64748b;
}

.quick-link-icon {
	width: 26px;
	height: 26px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(248, 250, 252, 0.9);
	border: 1px solid rgba(226, 232, 240, 0.9);
	font-size: 0.9rem;
}

.trust-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
	gap: 1.4rem;
	align-items: center;
}

.trust-card {
	border-radius: 18px;
	padding: 1.1rem 1.1rem 1rem;
	background: #0f172a;
	color: #e5e7eb;
	border: 1px solid #1f2937;
}

.trust-card h3 {
	margin: 0 0 0.5rem;
	font-size: 0.95rem;
}

.trust-meta {
	display: grid;
	gap: 0.35rem;
	font-size: 0.78rem;
}

.trust-meta strong {
	font-weight: 600;
}

.trust-logos-label {
	font-size: 0.8rem;
	color: #6b7280;
	margin-bottom: 0.35rem;
}

.trust-logos-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.trust-logos-item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	align-items: flex-start;
}

.logo-pill {
	padding: 0.35rem 0.75rem;
	border-radius: 999px;
	border: 1px dashed rgba(148, 163, 184, 0.7);
	font-size: 0.72rem;
	color: #4b5563;
	background: rgba(15, 23, 42, 0.02);
}

.testimonials-wrapper {
	border-radius: 20px;
	padding: 1.3rem 1.3rem 1.1rem;
	background: linear-gradient(135deg, #0f172a, #111827);
	color: #e5e7eb;
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.65);
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
	gap: 1.4rem;
	align-items: center;
}

.testimonial-quote {
	font-size: 0.95rem;
	line-height: 1.5;
	margin-bottom: 0.9rem;
}

.testimonial-author {
	font-size: 0.8rem;
	color: #cbd5f5;
}

.testimonial-meta {
	font-size: 0.72rem;
	color: #9ca3af;
}

.testimonial-slider-controls {
	display: flex;
	gap: 0.4rem;
	margin-top: 0.85rem;
}

.dot-button {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	border: none;
	padding: 0;
	background: #4b5563;
	cursor: pointer;
}

.dot-button.active {
	width: 16px;
	background: #f97316;
}

.case-spotlight {
	border-radius: 16px;
	padding: 1rem 1rem 0.9rem;
	background: rgba(15, 23, 42, 0.72);
	border: 1px solid rgba(248, 250, 252, 0.08);
	font-size: 0.8rem;
}

.case-spotlight h3 {
	margin: 0 0 0.4rem;
	font-size: 0.9rem;
}

.case-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin-top: 0.5rem;
}

.case-tag {
	font-size: 0.7rem;
	padding: 0.18rem 0.5rem;
	border-radius: 999px;
	border: 1px solid rgba(248, 250, 252, 0.18);
	color: #e5e7eb;
}

.assessment-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.15fr);
	gap: 0.8rem;
}

.quiz-card {
	border-radius: 18px;
	padding: 0.9rem 0.9rem 0.85rem;
	background: #ffffff;
	border: 1px solid var(--border-subtle);
	box-shadow: 0 12px 30px rgba(148, 163, 184, 0.22);
	font-size: 0.88rem;
}

.quiz-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-bottom: 0.7rem;
}

.chip-option {
	border-radius: 999px;
	padding: 0.25rem 0.7rem;
	border: 1px solid #e5e7eb;
	font-size: 0.8rem;
	background: #f9fafb;
	cursor: pointer;
}

.chip-option.active {
	border-color: var(--redwood-red);
	background: rgba(248, 113, 113, 0.08);
	color: #b91c1c;
}

.quiz-result {
	font-size: 0.82rem;
	color: #4b5563;
	margin-top: 0.4rem;
}

.contact-card {
	border-radius: 18px;
	padding: 1.1rem 1.1rem 1rem;
	background: #0f172a;
	color: #e5e7eb;
	border: 1px solid #1f2937;
	font-size: 0.86rem;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.7rem;
	margin-top: 0.6rem;
}

.contact-item strong {
	display: block;
	font-size: 0.8rem;
	color: #9ca3af;
	margin-bottom: 0.1rem;
}

.contact-item span {
	font-size: 0.88rem;
}

.footer {
	margin-top: auto;
	background: #020617;
	color: #9ca3af;
	padding: 1.7rem 0 1.3rem;
	font-size: 0.78rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.4rem;
}

.footer-heading {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #6b7280;
	margin-bottom: 0.5rem;
}

.footer a {
	color: inherit;
}

.footer-links {
	display: grid;
	gap: 0.25rem;
}

.footer-bottom {
	margin-top: 1.1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #111827;
	padding-top: 0.7rem;
}

.badge-compliance {
	font-size: 0.7rem;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	border: 1px solid #1f2937;
	color: #9ca3af;
}

.badge-compliance span {
	color: #e5e7eb;
}

.language-note {
	font-size: 0.75rem;
	color: #9ca3af;
	margin-top: 0.35rem;
}

.iaa-logo {
	max-height: 48px;
	display: block;
	margin-top: 0.4rem;
}

.mobile-menu-toggle {
	display: none;
}

.mobile-only {
	display: none;
}

.fees-grid {
	grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
	align-items: start;
}

.video-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 1.2rem;
	margin-bottom: 1.2rem;
	align-items: start;
}

@media (max-width: 900px) {

	.fees-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.video-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(248, 250, 252, 0.98);
		backdrop-filter: blur(14px);
		flex-direction: column;
		padding: 1rem 1.5rem;
		gap: 0.75rem;
		border-bottom: 1px solid rgba(148, 163, 184, 0.3);
		box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
		z-index: 50;
	}

	nav.mobile-open {
		display: flex;
	}

	nav a {
		padding: 0.5rem 0;
		font-size: 1rem;
	}

	.nav-cta {
		display: none;
	}

	.nav-cta.mobile-open {
		display: flex;
		flex-direction: column;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(248, 250, 252, 0.98);
		backdrop-filter: blur(14px);
		padding: 0 1.5rem 1rem;
		gap: 0.65rem;
		border-bottom: 1px solid rgba(148, 163, 184, 0.3);
		box-shadow: 0 8px 20px rgba(15, 23, 42, 0.1);
		z-index: 49;
	}

	header .nav-bar {
		position: relative;
	}

	.mobile-menu-toggle {
		display: inline-flex;
		border-radius: 999px;
		border: 1px solid rgba(148, 163, 184, 0.7);
		padding: 0.3rem 0.6rem;
		background: rgba(248, 250, 252, 0.9);
		font-size: 0.8rem;
		align-items: center;
		gap: 0.3rem;
		cursor: pointer;
	}

	.hero {
		padding-top: 2.4rem;
	}

	.hero-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.hero-right {
		order: -1;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.value-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.quick-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.trust-grid,
	.testimonials-wrapper,
	.assessment-grid,
	.footer-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.footer {
		padding-bottom: 1.5rem;
	}

	.mobile-only {
		display: block;
	}
}

@media (max-width: 600px) {

	.wrapper {
		width: min(100% - 2rem, 640px);
	}

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

	.quick-links {
		grid-template-columns: minmax(0, 1fr);
	}
}

