@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

/* ─── DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --c-primary:    #DC2626; /* Crimson Red */
  --c-primary-dk: #B91C1C; /* Dark Crimson */
  --c-accent:     #EF4444; /* Bright Red Accent */
  --c-accent-dk:  #991B1B; /* Deep Red Accent */
  --c-bg:         #FAF8F8; /* Soft Warm Gray/Red Tint Base */
  --c-bg-cool:    #F5EDED; /* Warm Light Gray Container BG */
  --c-neutral:    #374151;
  --c-text:       #111827;
  --c-muted:      #6B7280;
  --c-white:      #FFFFFF;
  --c-border:     #E5D5D5; /* Subtle Red-Gray Border */
  --c-error:      #991B1B;
  --c-error-bg:   #FEF2F2;
  --f-serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-sans:       'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-sm:    0 1px 4px rgba(220, 38, 38, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md:    0 4px 16px rgba(220, 38, 38, .08), 0 2px 6px rgba(0, 0, 0, .05);
  --shadow-lg:    0 12px 40px rgba(220, 38, 38, .12), 0 4px 12px rgba(0, 0, 0, .06);
}

/* ─── RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: var(--f-sans);
	font-size: 16px;
	line-height: 1.65;
	color: var(--c-text);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
}
a {
	color: var(--c-primary);
	text-decoration: underline;
	text-underline-offset: 2px;
}
a:hover {
	color: var(--c-primary-dk);
}
button {
	font-family: var(--f-sans);
	cursor: pointer;
	border: none;
}
img {
	max-width: 100%;
}
ul {
	list-style: none;
}
/* ─── HTML/CSS LOGO STYLES ───────────────────────────────── */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  user-select: none;
}

.brand-logo__mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.brand-logo__mark::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.15) 50%, transparent 55%);
}

.brand-logo__icon {
  width: 20px;
  height: 20px;
  color: #FFFFFF;
  display: block;
}

.brand-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo__main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.3px;
}

.brand-logo__main span {
  color: #DC2626;
}

.brand-logo__sub {
  font-size: 10px;
  font-weight: 600;
  color: #6B7280;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Dark mode adjustments for footer logo */
.footer .brand-logo__main {
  color: #FFFFFF;
}

.footer .brand-logo__sub {
  color: rgba(255, 255, 255, 0.5);
}
/* ─── UTILITY ───────────────────────────────────────────── */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
	white-space: nowrap;
	border: 0;
}
.text-muted {
	color: var(--c-muted);
}
.text-accent {
	color: var(--c-accent);
}
.text-primary {
	color: var(--c-primary);
}

/* ─── NAV ───────────────────────────────────────────────── */
.logo {
	width: 100%;
	max-width: 120px;
}
.nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--c-white);
	border-bottom: 1px solid var(--c-border);
	box-shadow: var(--shadow-sm);
	height: 64px;
	display: flex;
	align-items: center;
}
.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}
.nav__wordmark {
	font-family: var(--f-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--c-primary);
	text-decoration: none;
	letter-spacing: -.3px;
}
.nav__wordmark span {
	color: var(--c-accent);
}
.nav__links {
	display: flex;
	align-items: center;
	gap: 28px;
}
.nav__link {
	font-size: 14px;
	font-weight: 500;
	color: var(--c-neutral);
	text-decoration: none;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	font-family: var(--f-sans);
	transition: color .18s;
}
.nav__link:hover {
	color: var(--c-primary);
}
.nav__cta-mobile {
	display: none;
}

/* ─── HERO SECTION ──────────────────────────────────────── */
.hero {
	margin-top: 64px;
	display: grid;
	grid-template-columns: 55fr 45fr;
	min-height: calc(100vh - 64px);
	max-height: 720px;
}
.hero__left {
	background: var(--c-bg);
	padding: 72px 56px 72px 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.hero__left-inner {
	max-width: 540px;
	margin-left: auto;
	padding-left: 24px;
}
.hero__label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: rgba(220, 38, 38, .08);
	color: var(--c-primary);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .6px;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 40px;
	margin-bottom: 20px;
}
.hero__label svg circle,
.hero__label svg path {
	stroke: var(--c-primary);
}
.hero__h1 {
	font-family: var(--f-serif);
	font-size: 40px;
	font-weight: 700;
	line-height: 1.22;
	color: var(--c-text);
	margin-bottom: 20px;
	letter-spacing: -.4px;
}
.hero__subhead {
	font-size: 17px;
	color: var(--c-neutral);
	line-height: 1.6;
	margin-bottom: 32px;
	max-width: 460px;
}
.hero__trust {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}
.hero__trust-item {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 13.5px;
	font-weight: 500;
	color: var(--c-neutral);
}
.hero__trust-icon {
	width: 20px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(220, 38, 38, .12);
	border-radius: 50%;
	flex-shrink: 0;
}
.hero__trust-icon svg path {
	stroke: var(--c-primary);
}
.hero__trust-icon svg {
	width: 11px;
	height: 11px;
}
.hero__trust-sep {
	width: 1px;
	height: 18px;
	background: var(--c-border);
}
.hero__cta-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: 16px;
	font-weight: 600;
	padding: 15px 30px;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: background .2s, transform .15s, box-shadow .2s;
	box-shadow: 0 4px 14px rgba(220, 38, 38, .3);
	text-decoration: none;
	margin-bottom: 14px;
	width: fit-content;
}
.hero__cta-primary:hover {
	background: var(--c-primary-dk);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(220, 38, 38, .38);
	color: var(--c-white);
	text-decoration: none;
}
.hero__cta-secondary {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--c-primary);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	font-family: var(--f-sans);
	transition: gap .18s;
}
.hero__cta-secondary:hover {
	gap: 10px;
}

/* ─── HERO RIGHT (ESTIMATION CARD) ─────────────────────── */
.hero__right {
	background: var(--c-bg-cool);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 48px 40px;
}
.estimation-card {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 32px 28px;
	width: 100%;
	max-width: 340px;
	border: 1px solid rgba(220, 38, 38, .1);
}
.estimation-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.estimation-card__title {
	font-family: var(--f-serif);
	font-size: 17px;
	font-weight: 600;
	color: var(--c-text);
}
.estimation-card__badge {
	font-size: 10px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	background: rgba(220, 38, 38, .1);
	color: var(--c-accent-dk);
	padding: 3px 8px;
	border-radius: 20px;
}
.estimation-card__subtitle {
	font-size: 12px;
	color: var(--c-muted);
	margin-bottom: 24px;
}
.estimation-card__rows {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 24px;
}
.estimation-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	background: var(--c-bg);
	border-radius: var(--radius-sm);
	border: 1px solid var(--c-border);
}
.estimation-card__row-left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.estimation-card__row-icon {
	width: 32px;
	height: 32px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	flex-shrink: 0;
}
.estimation-card__row-icon--energy {
	background: rgba(220, 38, 38, .08);
}
.estimation-card__row-icon--telecom {
	background: rgba(239, 68, 68, .08);
}
.estimation-card__row-icon--insurance {
	background: rgba(55, 65, 81, .07);
}
.estimation-card__row-label {
	font-size: 13px;
	font-weight: 500;
	color: var(--c-neutral);
}
.estimation-card__row-value {
	font-size: 14px;
	font-weight: 700;
	color: var(--c-text);
	filter: blur(4.5px);
	user-select: none;
	letter-spacing: .3px;
}
.estimation-card__lock {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 16px;
	background: var(--c-bg-cool);
	border-radius: var(--radius-md);
	border: 1px dashed var(--c-border);
	margin-bottom: 18px;
	text-align: center;
}
.estimation-card__lock-icon {
	font-size: 22px;
}
.estimation-card__lock-text {
	font-size: 12.5px;
	font-weight: 500;
	color: var(--c-neutral);
	line-height: 1.4;
}
.estimation-card__cta-secondary {
	width: 100%;
	background: transparent;
	border: 1.5px solid var(--c-primary);
	color: var(--c-primary);
	font-size: 14px;
	font-weight: 600;
	padding: 11px 20px;
	border-radius: var(--radius-md);
	cursor: pointer;
	transition: background .18s, color .18s;
	font-family: var(--f-sans);
}
.estimation-card__cta-secondary:hover {
	background: var(--c-primary);
	color: var(--c-white);
}

/* ─── TRUST ANCHOR STRIP ────────────────────────────────── */
.trust-strip {
	background: var(--c-bg-cool);
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
	padding: 28px 0;
}
.trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	align-items: center;
}
.trust-strip__item {
	display: flex;
	align-items: center;
	gap: 14px;
}
.trust-strip__icon {
	width: 40px;
	height: 40px;
	background: var(--c-white);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: var(--shadow-sm);
}
.trust-strip__text-label {
	font-size: 12px;
	color: var(--c-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .4px;
	margin-bottom: 1px;
}
.trust-strip__text-value {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--c-neutral);
	line-height: 1.3;
}
.trust-strip__sep {
	width: 1px;
	background: var(--c-border);
	height: 44px;
	justify-self: center;
	display: block;
}
.trust-strip__inner-grid {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

/* ─── SECTION SHARED ────────────────────────────────────── */
.section {
	padding: 80px 0;
}
.section--alt {
	background: var(--c-white);
}
.section__header {
	text-align: center;
	margin-bottom: 52px;
}
.section__eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .7px;
	text-transform: uppercase;
	color: var(--c-primary);
	margin-bottom: 10px;
}
.section__h2 {
	font-family: var(--f-serif);
	font-size: 28px;
	font-weight: 700;
	color: var(--c-text);
	line-height: 1.28;
	letter-spacing: -.25px;
	margin-bottom: 14px;
}
.section__intro {
	font-size: 16px;
	color: var(--c-muted);
	max-width: 560px;
	margin: 0 auto;
	line-height: 1.7;
}

/* ─── BENEFIT CARDS ─────────────────────────────────────── */
.benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.benefit-card {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	padding: 32px 28px;
	border: 1px solid var(--c-border);
	box-shadow: var(--shadow-md);
	transition: box-shadow .22s, transform .22s;
}
.benefit-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-3px);
}
.benefit-card__icon {
	width: 52px;
	height: 52px;
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
}
.benefit-card__icon--energy {
	background: rgba(220, 38, 38, .08);
}
.benefit-card__icon--telecom {
	background: rgba(239, 68, 68, .1);
}
.benefit-card__icon--insurance {
	background: rgba(55, 65, 81, .07);
}
.benefit-card__category {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--c-muted);
	margin-bottom: 6px;
}
.benefit-card__title {
	font-family: var(--f-serif);
	font-size: 18px;
	font-weight: 600;
	color: var(--c-text);
	margin-bottom: 6px;
}
.benefit-card__savings {
	font-size: 22px;
	font-weight: 700;
	color: var(--c-accent-dk);
	margin-bottom: 12px;
	letter-spacing: -.3px;
}
.benefit-card__savings span {
	font-size: 13px;
	font-weight: 500;
	color: var(--c-muted);
	letter-spacing: 0;
}
.benefit-card__body {
	font-size: 14.5px;
	color: var(--c-muted);
	line-height: 1.65;
}
.benefit-card__note {
	display: inline-flex;
	margin-top: 14px;
	font-size: 11.5px;
	color: var(--c-muted);
	font-style: italic;
}

/* ─── PROCESS STEPS ─────────────────────────────────────── */
.process-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0;
	position: relative;
}
.process-grid::before {
	content: '';
	position: absolute;
	top: 28px;
	left: calc(16.66% + 20px);
	right: calc(16.66% + 20px);
	height: 2px;
	background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-accent) 100%);
	opacity: .25;
	z-index: 0;
}
.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 0 24px;
	position: relative;
	z-index: 1;
}
.process-step__num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--c-primary);
	color: var(--c-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	box-shadow: 0 4px 14px rgba(220, 38, 38, .3);
	flex-shrink: 0;
	font-family: var(--f-serif);
}
.process-step__icon-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .4px;
	text-transform: uppercase;
	color: var(--c-primary);
	margin-bottom: 8px;
}
.process-step__title {
	font-family: var(--f-serif);
	font-size: 17px;
	font-weight: 600;
	color: var(--c-text);
	margin-bottom: 8px;
	line-height: 1.3;
}
.process-step__desc {
	font-size: 14px;
	color: var(--c-muted);
	line-height: 1.6;
}

/* ─── FORM SECTION ──────────────────────────────────────── */
.form-section {
	padding: 80px 0;
	background: var(--c-bg-cool);
	border-top: 1px solid var(--c-border);
	border-bottom: 1px solid var(--c-border);
}
.form-wrapper {
	max-width: 620px;
	margin: 0 auto;
}
.form-card {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
	border: 1px solid rgba(220, 38, 38, .1);
}
.form-card__topbar {
	background: var(--c-primary);
	padding: 24px 32px 20px;
	color: var(--c-white);
}
.form-card__topbar-title {
	font-family: var(--f-serif);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 6px;
}
.form-card__topbar-sub {
	font-size: 14px;
	opacity: .85;
}
.form-progress {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 16px;
}
.form-progress__label {
	font-size: 12px;
	opacity: .75;
	white-space: nowrap;
}
.form-progress__bar {
	flex: 1;
	height: 4px;
	background: rgba(255, 255, 255, .25);
	border-radius: 2px;
	overflow: hidden;
}
.form-progress__fill {
	height: 100%;
	background: #FFFFFF;
	border-radius: 2px;
	transition: width .35s ease;
}
.form-card__body {
	padding: 32px;
}
.form-step {
	display: none;
}
.form-step--active {
	display: block;
}
.form-group {
	margin-bottom: 22px;
}
.form-label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--c-neutral);
	margin-bottom: 7px;
}
.form-label span {
	color: var(--c-error);
	margin-left: 2px;
}
.form-input {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--c-border);
	border-radius: var(--radius-sm);
	font-size: 15px;
	font-family: var(--f-sans);
	color: var(--c-text);
	background: var(--c-white);
	transition: border-color .18s, box-shadow .18s;
	outline: none;
	appearance: none;
}
.form-input:focus {
	border-color: var(--c-primary);
	box-shadow: 0 0 0 3px rgba(220, 38, 38, .1);
}
.form-input.invalid {
	border-color: var(--c-error);
	background: var(--c-error-bg);
}
.form-input.invalid:focus {
	box-shadow: 0 0 0 3px rgba(153, 27, 27, .15);
}
.form-error {
	display: none;
	font-size: 12.5px;
	color: var(--c-error);
	margin-top: 5px;
	align-items: center;
	gap: 4px;
}
.form-error.visible {
	display: flex;
}
.form-radio-group, .form-check-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.form-radio-row, .form-check-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border: 1.5px solid var(--c-border);
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: border-color .15s, background .15s;
	user-select: none;
}
.form-radio-row:hover, .form-check-row:hover {
	border-color: var(--c-primary);
	background: rgba(220, 38, 38, .03);
}
.form-radio-row input, .form-check-row input {
	accent-color: var(--c-primary);
	width: 16px;
	height: 16px;
	cursor: pointer;
	flex-shrink: 0;
}
.form-radio-row label, .form-check-row label {
	font-size: 14px;
	color: var(--c-neutral);
	cursor: pointer;
	font-weight: 500;
	flex: 1;
}
.form-radio-row.selected, .form-check-row.selected {
	border-color: var(--c-primary);
	background: rgba(220, 38, 38, .04);
}
.form-helper {
	font-size: 12px;
	color: var(--c-muted);
	margin-top: 5px;
}
.form-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.form-consent {
	padding: 16px;
	background: var(--c-bg);
	border-radius: var(--radius-sm);
	border: 1px solid var(--c-border);
	margin-bottom: 22px;
}
.form-consent-row {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
.form-consent-row input {
	margin-top: 3px;
	accent-color: var(--c-primary);
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	cursor: pointer;
}
.form-consent-text {
	font-size: 13px;
	color: var(--c-muted);
	line-height: 1.55;
}
.form-consent-text a {
	color: var(--c-primary);
	cursor: pointer;
}
.btn-primary {
	width: 100%;
	background: var(--c-primary);
	color: var(--c-white);
	font-size: 16px;
	font-weight: 600;
	padding: 15px 24px;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: background .2s, transform .15s, box-shadow .2s;
	box-shadow: 0 4px 14px rgba(220, 38, 38, .28);
	font-family: var(--f-sans);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}
.btn-primary:hover {
	background: var(--c-primary-dk);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(220, 38, 38, .36);
}
.btn-primary:disabled {
	background: var(--c-muted);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
.form-back {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	color: var(--c-muted);
	font-size: 13px;
	cursor: pointer;
	padding: 0;
	margin-top: 12px;
	font-family: var(--f-sans);
	transition: color .15s;
}
.form-back:hover {
	color: var(--c-primary);
}
.form-card__privacy {
	padding: 14px 32px 20px;
	border-top: 1px solid var(--c-border);
	display: flex;
	align-items: center;
	gap: 8px;
}
.form-card__privacy-text {
	font-size: 12px;
	color: var(--c-muted);
	line-height: 1.4;
}
.form-card__privacy-text a {
	color: var(--c-primary);
	cursor: pointer;
}

/* ─── SUCCESS STATE ──────────────────────────────────────── */
.form-success {
	display: none;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 52px 32px;
	gap: 16px;
}
.form-success.visible {
	display: flex;
}
.form-success__check {
	width: 64px;
	height: 64px;
	background: rgba(220, 38, 38, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	color: var(--c-primary);
}
.form-success__title {
	font-family: var(--f-serif);
	font-size: 24px;
	font-weight: 700;
	color: var(--c-text);
}
.form-success__body {
	font-size: 15px;
	color: var(--c-muted);
	max-width: 420px;
	line-height: 1.65;
}

/* ─── REVIEW SNIPPETS ───────────────────────────────────── */
.profiles-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.profile-card {
	background: var(--c-white);
	border-radius: var(--radius-lg);
	padding: 28px;
	border: 1px solid var(--c-border);
	box-shadow: var(--shadow-sm);
	position: relative;
}
.profile-card__quote-mark {
	font-family: var(--f-serif);
	font-size: 48px;
	color: var(--c-primary);
	opacity: .15;
	line-height: 1;
	position: absolute;
	top: 16px;
	left: 22px;
}
.profile-card__body {
	font-size: 14.5px;
	color: var(--c-neutral);
	line-height: 1.7;
	padding-top: 16px;
	margin-bottom: 18px;
}
.profile-card__saving {
	font-size: 20px;
	font-weight: 700;
	color: var(--c-accent-dk);
	margin-bottom: 4px;
	letter-spacing: -.2px;
}
.profile-card__saving-label {
	font-size: 12px;
	color: var(--c-muted);
	font-weight: 500;
	margin-bottom: 14px;
}
.profile-card__meta {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.profile-card__city {
	font-size: 12px;
	font-weight: 600;
	color: var(--c-neutral);
	display: flex;
	align-items: center;
	gap: 4px;
}
.profile-card__tag {
	font-size: 11px;
	font-weight: 600;
	padding: 3px 8px;
	border-radius: 20px;
	letter-spacing: .3px;
}
.profile-card__tag--energy {
	background: rgba(220, 38, 38, .08);
	color: var(--c-primary);
}
.profile-card__tag--telecom {
	background: rgba(239, 68, 68, .1);
	color: var(--c-accent-dk);
}
.profile-card__tag--insurance {
	background: rgba(55, 65, 81, .07);
	color: var(--c-neutral);
}
.profile-card__note {
	font-size: 11.5px;
	color: var(--c-muted);
	font-style: italic;
	margin-top: 10px;
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
	background: var(--c-text);
	color: rgba(255, 255, 255, .8);
	padding: 56px 0 0;
}
.footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 48px;
}
.footer__wordmark {
	font-family: var(--f-serif);
	font-size: 20px;
	font-weight: 700;
	color: var(--c-white);
	margin-bottom: 10px;
}
.footer__wordmark span {
	color: var(--c-accent);
}
.footer__brand-desc {
	font-size: 13.5px;
	line-height: 1.65;
	color: rgba(255, 255, 255, .6);
	margin-bottom: 16px;
}
.footer__contact {
	font-size: 13px;
	line-height: 1.9;
	color: rgba(255, 255, 255, .55);
}
.footer__contact a {
	color: rgba(255, 255, 255, .7);
	text-decoration: none;
}
.footer__contact a:hover {
	color: var(--c-white);
}
.footer__col-title {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .45);
	margin-bottom: 16px;
}
.footer__links {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.footer__link {
	font-size: 13.5px;
	color: rgba(255, 255, 255, .65);
	text-decoration: none;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	font-family: var(--f-sans);
	text-align: left;
	transition: color .15s;
}
.footer__link:hover {
	color: var(--c-white);
}
.footer__rule {
	border: none;
	border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer__bottom {
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer__legal-line {
	font-size: 12px;
	color: rgba(255, 255, 255, .4);
	line-height: 1.6;
}
.footer__identity {
	font-size: 12px;
	color: rgba(255, 255, 255, .35);
}

/* ─── MODAL / DRAWER SYSTEM ──────────────────────────────── */
.modal-overlay {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, .45);
	z-index: 200;
	backdrop-filter: blur(2px);
}
.modal-overlay.active {
	display: flex;
	justify-content: flex-end;
}
.modal-drawer {
	background: var(--c-white);
	width: 100%;
	max-width: 520px;
	height: 100%;
	overflow-y: auto;
	box-shadow: -8px 0 40px rgba(0, 0, 0, .15);
	display: flex;
	flex-direction: column;
	animation: slideIn .28s ease;
}
@keyframes slideIn {
	from {
		transform: translateX(100%);
		opacity: .5;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}
.modal-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 28px;
	border-bottom: 1px solid var(--c-border);
	position: sticky;
	top: 0;
	background: var(--c-white);
	z-index: 10;
}
.modal-drawer__title {
	font-family: var(--f-serif);
	font-size: 18px;
	font-weight: 700;
	color: var(--c-text);
}
.modal-drawer__close {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--c-bg);
	border: 1px solid var(--c-border);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	color: var(--c-neutral);
	transition: background .15s;
}
.modal-drawer__close:hover {
	background: var(--c-bg-cool);
}
.modal-drawer__body {
	padding: 28px;
	font-size: 14px;
	line-height: 1.75;
	color: var(--c-neutral);
	flex: 1;
}
.modal-drawer__body h3 {
	font-family: var(--f-serif);
	font-size: 16px;
	font-weight: 600;
	color: var(--c-text);
	margin: 22px 0 8px;
}
.modal-drawer__body h3:first-child {
	margin-top: 0;
}
.modal-drawer__body p {
	margin-bottom: 12px;
}
.modal-drawer__body ul {
	padding-left: 18px;
	list-style: disc;
	margin-bottom: 12px;
}
.modal-drawer__body ul li {
	margin-bottom: 5px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
	.hero {
		display: block;
		max-height: none;
		min-height: auto;
	}
	.hero__left {
		padding: 52px 24px 36px;
	}
	.hero__left-inner {
		max-width: 100%;
		margin: 0;
		padding: 0;
	}
	.hero__h1 {
		font-size: 30px;
	}
	.hero__right {
		display: none;
	}
	.hero__estimation-teaser {
		display: flex !important;
		align-items: center;
		gap: 12px;
		background: var(--c-bg-cool);
		border: 1px solid var(--c-border);
		border-radius: var(--radius-md);
		padding: 14px 18px;
		margin-top: 20px;
	}
	.hero__trust {
		gap: 14px;
	}
	.hero__trust-sep {
		display: none;
	}
	.trust-strip__inner-grid {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}
	.trust-strip__sep-vertical {
		display: none;
	}
	.benefit-grid {
		grid-template-columns: 1fr;
	}
	.process-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.process-grid::before {
		display: none;
	}
	.process-step {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
		padding: 0;
	}
	.process-step__num {
		margin-bottom: 0;
		margin-right: 18px;
		flex-shrink: 0;
	}
	.process-step__content {
		flex: 1;
	}
	.profiles-grid {
		grid-template-columns: 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}
	.modal-overlay.active {
		justify-content: flex-start;
	}
	.modal-drawer {
		max-width: 100%;
		animation: slideUp .28s ease;
		max-height: 92vh;
		position: fixed;
		bottom: 0;
	}
	@keyframes slideUp {
		from {
			transform: translateY(100%);
		}
		to {
			transform: translateY(0);
		}
	}
	.form-row-2 {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.section {
		padding: 56px 0;
	}
	.section__h2 {
		font-size: 24px;
	}
}

@media (max-width: 640px) {
	.nav__links {
		display: none;
	}
	.hero__h1 {
		font-size: 26px;
	}
	.hero__cta-primary {
		font-size: 15px;
		padding: 14px 24px;
	}
	.form-card__body {
		padding: 24px 20px;
	}
	.form-card__topbar {
		padding: 20px 20px 16px;
	}
}