/* ═══════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 4rem;
	-webkit-font-smoothing: antialiased;
}

body {
	font-family: var(--font-used);
	font-size: 1rem;
	color: var(--text);
	background: var(--bg);
	line-height: 1.65;
}

img,
svg {
	display: block;
	max-width: 100%;
}

ul {
	list-style: none;
}

button {
	cursor: pointer;
	background: none;
	border: none;
	font: inherit;
}

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

:focus-visible {
	outline: 2px solid var(--main_primary);
	outline-offset: 3px;
	border-radius: var(--radius-sm);
}

/* ═══════════════════════════════════════════════
       LAYOUT UTILITIES
    ═══════════════════════════════════════════════ */
.lp-container {
	max-width: 1200px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 3rem);
}

.section-pad {
	padding-block: clamp(3.5rem, 7vw, 6rem);
}

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

.text-center .section-sub {
	margin-inline: auto;
}

/* ═══════════════════════════════════════════════
       TYPOGRAPHY
    ═══════════════════════════════════════════════ */
.section-label {
	display: inline-block;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--main_primary);
	margin-bottom: .75rem;
}

.section-title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: var(--background-primary);
	line-height: 1.2;
	margin-bottom: 1rem;
	text-wrap: balance;
}

.section-sub {
	font-size: 1rem;
	color: var(--text-muted);
	max-width: 60ch;
	line-height: 1.7;
}

.section-sub.centered {
	margin-inline: auto;
}

/* ═══════════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════════ */
.lp-btn {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	padding: .75rem 1.5rem;
	border-radius: var(--radius-md);
	font-size: .9375rem;
	font-weight: 600;
	transition: background var(--transition), color var(--transition),
		box-shadow var(--transition), transform var(--transition);
	cursor: pointer;
	text-decoration: none;
}

.lp-btn-primary {
	background: var(--main_primary);
	color: var(--background-primary);
}

.lp-btn-primary:hover {
	background: #d9a400;
	box-shadow: 0 4px 16px rgba(239, 181, 9, .35);
	transform: translateY(-1px);
}

.lp-btn-light {
	background: var(--white);
	color: var(--background-primary);
	border: 1px solid var(--border);
}

.lp-btn-light:hover {
	background: var(--not-clear-white-bg);
	border-color: rgba(0, 0, 0, .14);
}

.lp-btn-outline {
	background: transparent;
	color: var(--main_primary);
	border: 1.5px solid var(--main_primary);
	padding: .75rem 1.5rem;
}

.lp-btn-outline:hover {
	background: var(--main_primary-soft);
}

/* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
.hero {
	background: var(--background-primary);
	padding-block: clamp(3rem, 6vw, 5.5rem);
	border-bottom: 1px solid rgba(255, 255, 255, .08);
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 60% 50% at 70% 50%, rgba(239, 181, 9, .07) 0%, transparent 70%);
	pointer-events: none;
}

.two-columns {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	max-width: 1300px;
	margin-inline: auto;
	padding-inline: clamp(1rem, 4vw, 3rem);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
	font-size: .8125rem;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--white);
	background: var(--main_primary);
	border: 1px solid var(--main_primary-border);
	border-radius: 999px;
	padding: .3rem .9rem;
	margin-bottom: 1.25rem;
}

.hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--success);
	animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
		transform: scale(1)
	}

	50% {
		opacity: .5;
		transform: scale(.8)
	}
}

.hero-inner h1 {
	font-size: clamp(1.75rem, 3.5vw, 2.75rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.15;
	margin-bottom: 1rem;
	text-wrap: balance;
}

.hero-inner h1 em {
	font-style: normal;
	color: var(--main_primary);
}

.hero-sub {
	font-size: 1.0625rem;
	color: rgba(255, 255, 255, .82);
	line-height: 1.7;
	margin-bottom: 1.5rem;
	max-width: 52ch;
}

.hero-benefits {
	display: flex;
	flex-direction: column;
	gap: .6rem;
	margin-bottom: 2rem;
}

.hero-benefit {
	display: flex;
	align-items: center;
	gap: .65rem;
	font-size: .9375rem;
	color: rgba(255, 255, 255, .88);
}

.hero-benefit svg {
	stroke: var(--main_primary);
	flex-shrink: 0;
}

.hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

/* Hero Visual – Comparison Card */
.hero-visual {
	background: var(--not-clear-white-bg);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius-xl);
	padding: 1.75rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.hero-visual-title {
	font-size: .8125rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: 1.25rem;
}

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

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

.compare-old {
	background: rgba(182, 0, 0, .06);
	border: 1px solid rgba(182, 0, 0, .15);
	border-radius: var(--radius-md);
	padding: .65rem .85rem;
	font-size: .8125rem;
	color: #b60000;
	display: flex;
	align-items: center;
	gap: .4rem;
}

.compare-old svg {
	flex-shrink: 0;
}

.compare-arrow {
	color: var(--text-faint);
	font-size: .8rem;
}

.compare-new {
	background: rgba(0, 181, 9, .06);
	border: 1px solid rgba(0, 181, 9, .18);
	border-radius: var(--radius-md);
	padding: .65rem .85rem;
	font-size: .8125rem;
	color: #0a8010;
	display: flex;
	align-items: center;
	gap: .4rem;
}

.compare-new svg {
	flex-shrink: 0;
}

.hero-visual-footer {
	margin-top: 1.25rem;
	padding-top: 1rem;
	border-top: 1px solid var(--border);
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .8125rem;
	font-weight: 600;
	color: var(--main_primary);
}

/* ═══════════════════════════════════════════════
       TRUST STRIP
    ═══════════════════════════════════════════════ */
.trust-strip {
	background: var(--white);
	border-bottom: 1px solid var(--border);
	padding-block: 1rem;
}

.trust-strip-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem 2rem;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--text-muted);
}

.trust-item svg {
	width: 16px;
	height: 16px;
	stroke: var(--main_primary);
}

.trust-divider {
	width: 1px;
	height: 1rem;
	background: var(--border);
}

/* ═══════════════════════════════════════════════
       MIDDLEWARE HIGHLIGHT (USP Section)
    ═══════════════════════════════════════════════ */
.middleware-section {
	background: var(--white);
}

.middleware-box {
	background: linear-gradient(135deg, #16253D 0%, #002C54 100%);
	border-radius: var(--radius-xl);
	padding: clamp(2rem, 5vw, 3.5rem);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	box-shadow: 0 20px 60px rgba(22, 37, 61, .18);
	position: relative;
	overflow: hidden;
}

.middleware-box::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(239, 181, 9, .1) 0%, transparent 70%);
	pointer-events: none;
}

.middleware-text {
	position: relative;
	z-index: 1;
}

.middleware-text .section-label {
	color: var(--main_primary);
}

.middleware-text h2 {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
	font-weight: 700;
	color: var(--white);
	line-height: 1.2;
	margin-bottom: 1rem;
}

.middleware-text h2 em {
	font-style: normal;
	color: var(--main_primary);
}

.middleware-text p {
	font-size: .9375rem;
	color: rgba(255, 255, 255, .78);
	line-height: 1.7;
	margin-bottom: 1.25rem;
}

.middleware-list {
	display: flex;
	flex-direction: column;
	gap: .6rem;
}

.middleware-list li {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
	font-size: .9375rem;
	color: rgba(255, 255, 255, .88);
}

.middleware-list li svg {
	stroke: var(--main_primary);
	flex-shrink: 0;
	margin-top: .15rem;
}

/* Middleware Diagram */
.middleware-diagram {
	position: relative;
	z-index: 1;
}

.mw-diagram-wrap {
	background: rgba(255, 255, 255, .05);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius-xl);
	padding: 1.75rem;
}

.mw-layer {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: 1rem 1.25rem;
	margin-bottom: .75rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	box-shadow: var(--shadow-sm);
}

.mw-layer:last-child {
	margin-bottom: 0;
}

.mw-layer-name {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--background-primary);
	display: flex;
	align-items: center;
	gap: .6rem;
}

.mw-layer-badge {
	font-size: .7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .07em;
	padding: .2rem .55rem;
	border-radius: 99px;
}

.badge-gold {
	background: var(--main_secondary);
	color: #9a6f00;
	border: 1px solid var(--main_primary-border);
}

.style-class-1{
	border-color: rgba(0, 0, 0, 0.4); 
	background: var(--main_primary);
}

.style-class-2{
	font-size:1rem;
}

.style-class-3{
	position:relative;
	z-index:1;
}

.style-class-4{
	font-size:1rem;
	padding:.875rem 2rem;
}

.badge-green {
	background: rgba(0, 181, 9, .1);
	color: #0a8010;
}

.badge-blue {
	background: rgba(22, 37, 61, .08);
	color: var(--background-primary);
}

.mw-connector {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: .35rem 0;
	gap: .5rem;
}

.mw-connector-line {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, var(--main_primary-border), var(--main_primary), var(--main_primary-border));
}

.mw-connector-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--main_primary);
	animation: mw-pulse 2s ease-in-out infinite;
}

@keyframes mw-pulse {

	0%,
	100% {
		transform: scale(1);
		opacity: 1
	}

	50% {
		transform: scale(1.3);
		opacity: .7
	}
}

.mw-note {
	font-size: .75rem;
	color: rgba(255, 255, 255, .5);
	text-align: center;
	margin-top: 1rem;
	letter-spacing: .03em;
}

/* ═══════════════════════════════════════════════
       BENEFITS GRID
    ═══════════════════════════════════════════════ */
.benefits-section {
	background: var(--not-clear-white-bg);
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
	margin-top: 2.5rem;
}

.benefit-card {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition);
}

.benefit-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.benefit-icon {
	width: 40px;
	height: 40px;
	background: var(--main_primary-soft);
	border: 1px solid var(--main_primary-border);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.benefit-icon svg {
	width: 18px;
	height: 18px;
	stroke: var(--main_primary);
}

.benefit-card h3 {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .4rem;
}

.benefit-card p {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ═══════════════════════════════════════════════
       COMPETITIVE DIFFERENTIATOR
    ═══════════════════════════════════════════════ */
.diff-section {
	background: var(--white);
}

.diff-table-wrap {
	margin-top: 2.5rem;
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow);
}

table.diff-table {
	width: 100%;
	border-collapse: collapse;
}

.diff-table thead {
	background: var(--background-primary);
}

.diff-table thead th {
	padding: 1rem 1.25rem;
	font-size: .8125rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-align: left;
}

.diff-table thead th:first-child {
	color: rgba(255, 255, 255, .6);
}

.diff-table thead th:nth-child(2) {
	color: var(--main_primary);
}

.diff-table thead th:nth-child(3),
.diff-table thead th:nth-child(4) {
	color: rgba(255, 255, 255, .5);
}

.diff-table tbody tr {
	border-bottom: 1px solid var(--border);
}

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

.diff-table tbody tr:nth-child(even) {
	background: var(--not-clear-white-bg);
}

.diff-table tbody td {
	padding: .9rem 1.25rem;
	font-size: .9rem;
	vertical-align: middle;
}

.diff-table tbody td:first-child {
	font-weight: 600;
	color: var(--background-primary);
}

.check-yes {
	color: #0a8010;
	font-size: 1rem;
}

.check-partial {
	color: #9a6f00;
	font-size: .85rem;
}

.check-no {
	color: #b60000;
	font-size: 1rem;
}

.diff-highlight {
	background: rgba(239, 181, 9, .05) !important;
}

/* ═══════════════════════════════════════════════
       TIME SAVINGS / SOCIAL PROOF
    ═══════════════════════════════════════════════ */
.savings-section {
	background: var(--not-clear-white-bg);
}

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

.savings-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 1.75rem 1.25rem;
	text-align: center;
	box-shadow: var(--shadow-sm);
}

.savings-number {
	font-size: 2.25rem;
	font-weight: 800;
	color: var(--main_primary);
	line-height: 1;
	margin-bottom: .4rem;
}

.savings-label {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.4;
}

/* ═══════════════════════════════════════════════
       HOW IT WORKS
    ═══════════════════════════════════════════════ */
.howit-section {
	background: var(--white);
}

.steps-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 2.5rem;
	position: relative;
}

.steps-list::before {
	content: '';
	position: absolute;
	top: 26px;
	left: calc(12.5% + 20px);
	right: calc(12.5% + 20px);
	height: 2px;
	background: linear-gradient(90deg, var(--main_primary) 0%, rgba(239, 181, 9, .2) 100%);
	z-index: 0;
}

.step-card {
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	text-align: center;
	position: relative;
	z-index: 1;
}

.step-number {
	width: 44px;
	height: 44px;
	background: var(--main_primary);
	color: var(--background-primary);
	font-size: 1rem;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
}

.step-card h3 {
	font-size: .9375rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .5rem;
}

.step-card p {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.6;
}

/* ═══════════════════════════════════════════════
       WHY NOT ALTERNATIVES
    ═══════════════════════════════════════════════ */
.alternatives-section {
	background: var(--not-clear-white-bg);
}

.alt-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.alt-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 1.75rem 1.5rem;
	box-shadow: var(--shadow-sm);
	position: relative;
}

.alt-card-label {
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: var(--text-muted);
	margin-bottom: .75rem;
}

.alt-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .75rem;
}

.alt-card p {
	font-size: .875rem;
	color: var(--text-muted);
	line-height: 1.65;
	margin-bottom: 1rem;
}

.alt-problems {
	display: flex;
	flex-direction: column;
	gap: .4rem;
}

.alt-problem {
	display: flex;
	align-items: flex-start;
	gap: .45rem;
	font-size: .8125rem;
	color: #b60000;
}

.alt-problem svg {
	flex-shrink: 0;
	margin-top: .1rem;
}

.alt-vs-badge {
	background: var(--main_primary);
	color: var(--background-primary);
	font-size: .7rem;
	font-weight: 800;
	padding: .2rem .6rem;
	border-radius: 99px;
	letter-spacing: .05em;
	display: inline-block;
	margin-top: 1rem;
}

/* ═══════════════════════════════════════════════
       AUDIENCE
    ═══════════════════════════════════════════════ */
.audience-section {
	background: var(--white);
}

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

.audience-card {
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition);
}

.audience-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.audience-icon {
	width: 44px;
	height: 44px;
	background: var(--main_primary-soft);
	border: 1px solid var(--main_primary-border);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.audience-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--main_primary);
}

.audience-card h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--background-primary);
	margin-bottom: .5rem;
}

.audience-card p {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.65;
}

/* ═══════════════════════════════════════════════
       FAQ
    ═══════════════════════════════════════════════ */
.faq-section {
	background: var(--not-clear-white-bg);
}

.faq-list {
	max-width: 780px;
	margin: 2.5rem auto 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.faq-item {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.faq-q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.1rem 1.25rem;
	font-size: .9375rem;
	font-weight: 600;
	color: var(--background-primary);
	text-align: left;
	transition: background var(--transition);
}

.faq-q:hover {
	background: var(--not-clear-white-bg);
}

.faq-q svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
	stroke: var(--main_primary);
	transition: transform var(--transition);
}

.faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s cubic-bezier(.16, 1, .3, 1);
}

.faq-a p {
	padding: 0 1.25rem 1.25rem;
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.7;
}

.faq-item.open .faq-a {
	max-height: 400px;
}

.faq-item.open .faq-q svg {
	transform: rotate(45deg);
}

/* ═══════════════════════════════════════════════
       CTA FINAL
    ═══════════════════════════════════════════════ */
.cta-final {
	background: var(--background-primary);
	text-align: center;
	padding-block: clamp(3.5rem, 7vw, 6rem);
	position: relative;
	overflow: hidden;
}

.cta-final::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(239, 181, 9, .08) 0%, transparent 70%);
	pointer-events: none;
}

.cta-final .section-label {
	color: var(--main_primary);
}

.cta-final .section-title {
	color: #fff;
	margin-inline: auto;
}

.cta-final p {
	color: rgba(255, 255, 255, .65);
	font-size: 1rem;
	max-width: 52ch;
	margin: 1rem auto 2rem;
	line-height: 1.7;
}

.cta-final-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: .75rem;
}

.cta-final .lp-btn-light {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	border-color: rgba(255, 255, 255, .2);
}

.cta-final .lp-btn-light:hover {
	background: rgba(255, 255, 255, .18);
	border-color: rgba(255, 255, 255, .35);
}

.cta-final-trust {
	margin-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.cta-trust-item {
	display: flex;
	align-items: center;
	gap: .4rem;
	font-size: .8125rem;
	color: rgba(255, 255, 255, .5);
}

.cta-trust-item svg {
	stroke: var(--main_primary);
}

/* ═══════════════════════════════════════════════
       FEATURE HIGHLIGHT STRIP
    ═══════════════════════════════════════════════ */
.feature-highlight {
	background: var(--white);
}

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

.fh-card {
	background: var(--not-clear-white-bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-xl);
	padding: 2rem 1.5rem;
	box-shadow: var(--shadow-sm);
	transition: box-shadow var(--transition), transform var(--transition);
	display: flex;
	flex-direction: column;
	gap: .85rem;
}

.fh-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}

.fh-icon {
	width: 44px;
	height: 44px;
	border-radius: var(--radius-md);
	background: var(--main_primary-soft);
	display: flex;
	align-items: center;
	justify-content: center;
}

.fh-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--main_primary);
}

.fh-card h3 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--background-primary);
}

.fh-card p {
	font-size: .9375rem;
	color: var(--text-muted);
	line-height: 1.65;
	flex: 1;
}

/* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
@media (max-width: 960px) {
	.two-columns {
		grid-template-columns: 1fr;
	}

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

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

	.steps-list {
		grid-template-columns: 1fr 1fr;
	}

	.steps-list::before {
		display: none;
	}

	.diff-table-wrap {
		overflow-x: auto;
	}

	.alt-grid {
		grid-template-columns: 1fr;
		max-width: 480px;
		margin-inline: auto;
	}

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

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

@media (max-width: 640px) {
	.savings-grid {
		grid-template-columns: 1fr 1fr;
	}

	.steps-list {
		grid-template-columns: 1fr;
	}

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

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

	.hero-ctas {
		flex-direction: column;
	}

	.hero-ctas .lp-btn {
		width: 100%;
		justify-content: center;
	}

	.trust-divider {
		display: none;
	}

	.trust-strip-inner {
		gap: .75rem 1.25rem;
	}
}