/* ═══════════════════════════════════════════════
   iLife Bumble — Main Stylesheet
   Brand colors: Primary Blue (#0061B0), Secondary Blue (#01B0EC), Accent Yellow (#FFD900)
   Reference: Bumble Mobile official brand style guide
   ═══════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
	--color-primary: #0061B0;
	--color-primary-dark: #004D8C;
	--color-primary-light: #E8F4FD;
	--color-secondary: #FFD900;
	--color-secondary-dark: #E6C300;
	--color-accent: #01B0EC;
	--color-text: #333333;
	--color-text-light: #666666;
	--color-bg: #ffffff;
	--color-bg-light: #F9FAFB;
	--color-bg-alt: #E8F4FD;
	--color-border: #e0e0e0;
	--color-success: #4CAF50;
	--color-error: #f44336;

	--font-body: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--font-heading: Arial, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

	--container-width: 1200px;
	--container-padding: 20px;

	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 20px;
	--radius-xl: 30px;

	--shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
	--shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);

	--transition: 0.3s ease;
}

/* ── 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(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--color-primary);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	color: var(--color-primary-dark);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--color-accent);
	line-height: 1.2;
	margin-bottom: 0.5em;
}

ul, ol {
	list-style: none;
}

.container {
	max-width: var(--container-width);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

/* ── Buttons ── */
.btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: var(--radius-xl);
	font-weight: 600;
	font-size: 0.95rem;
	text-align: center;
	cursor: pointer;
	transition: all var(--transition);
	border: 2px solid transparent;
	text-decoration: none;
}

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

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

.btn--secondary {
	background: var(--color-secondary);
	color: var(--color-accent);
	border-color: var(--color-secondary);
}

.btn--secondary:hover {
	background: var(--color-secondary-dark);
	border-color: var(--color-secondary-dark);
	color: var(--color-accent);
}

.btn--outline {
	background: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

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

.btn--text {
	background: none;
	border: none;
	color: var(--color-primary);
	padding: 0;
	font-weight: 600;
}

.btn--text:hover {
	color: var(--color-primary-dark);
}

/* ── Top Bar ── */
.top-bar {
	background: var(--color-primary);
	color: #fff;
	text-align: center;
	padding: 8px 0;
	font-size: 0.875rem;
	font-weight: 500;
}

.top-bar__text {
	margin: 0;
}

.ilb-global-notices {
	padding: 20px 0 0;
	background: linear-gradient(180deg, rgba(232, 244, 253, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
}

.ilb-global-notices .woocommerce-message,
.ilb-global-notices .woocommerce-info,
.ilb-global-notices .woocommerce-error {
	margin-bottom: 0;
}

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

.site-header.is-sticky {
	box-shadow: var(--shadow-md);
}

.site-header--focus {
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(10px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 70px;
	gap: 20px;
}

.site-header--focus .site-header__inner {
	height: 76px;
}

.site-header__logo {
	flex: 0 0 auto;
}

/* Logo Styles */
.site-logo-link {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
	text-decoration: none;
}

.site-logo-link--icon-only {
	gap: 0;
}

.site-logo-img {
	width: 68px;
	height: 68px;
	border-radius: 50%;
	flex: 0 0 auto;
}

.site-logo-wordmark {
	display: block;
	width: 214px;
	max-width: 100%;
	height: auto;
	flex: 0 1 auto;
}

.hero__wordmark {
	display: block;
	width: min(420px, 100%);
	max-width: 100%;
	height: auto;
}

.site-header__logo a,
.site-logo-text {
	text-decoration: none;
	font-size: 1.5rem;
	font-weight: 800;
	font-family: var(--font-heading);
}

.logo-i {
	color: #0061B0;
	font-style: normal;
}

.logo-life {
	color: var(--color-accent);
	font-weight: 800;
}

.logo-bumble {
	color: var(--color-secondary);
	font-weight: 800;
}

.site-header__logo img {
	max-height: 50px;
	width: auto;
}

/* Navigation */
.site-nav {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-menu {
	display: flex;
	gap: 8px;
	align-items: center;
}

.nav-menu li a {
	display: block;
	padding: 8px 14px;
	color: var(--color-text);
	font-weight: 500;
	font-size: 0.9rem;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
	white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item a {
	color: var(--color-primary);
	background: var(--color-primary-light);
}

/* Header Actions */
.site-header__actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.site-header__actions--focus {
	gap: 12px;
}

.header-search-toggle,
.header-cart {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background: transparent;
	color: var(--color-text);
	cursor: pointer;
	transition: all var(--transition);
}

.header-search-toggle:hover,
.header-cart:hover {
	background: var(--color-bg-light);
	color: var(--color-primary);
}

.header-cart {
	position: relative;
	text-decoration: none;
}

.cart-count {
	position: absolute;
	top: 0;
	right: 0;
	background: var(--color-secondary);
	color: var(--color-accent);
	font-size: 0.65rem;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.hamburger-line {
	width: 24px;
	height: 2px;
	background: var(--color-accent);
	transition: all var(--transition);
}

/* Search Overlay */
.search-overlay {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	padding: 20px 0;
	box-shadow: var(--shadow-md);
	z-index: 999;
}

.search-overlay .search-form {
	display: flex;
	gap: 10px;
}

.search-overlay .search-field {
	flex: 1;
	padding: 12px 16px;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 1rem;
	outline: none;
}

.search-overlay .search-field:focus {
	border-color: var(--color-primary);
}

.search-overlay .search-submit {
	padding: 12px 24px;
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	font-weight: 600;
}

/* ── Hero Section ── */
.hero {
	background: var(--color-bg-alt);
	padding: 80px 0;
	overflow: hidden;
	position: relative;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.hero__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	margin-bottom: 24px;
}

.hero__brand-lockup {
	display: flex;
	align-items: flex-end;
	gap: 20px;
	max-width: 100%;
}

.hero__wordmark {
	width: min(520px, 100%);
	max-width: 100%;
	height: auto;
}

.hero__tm-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 76px;
	height: 40px;
	padding: 0 18px;
	border-radius: 20px;
	background: #17171C;
	color: #fff;
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
}

.hero__brand-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

.hero__brand-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 124px;
	height: 44px;
	padding: 0 24px;
	border-radius: 999px;
	font-size: 1.3rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1;
}

.hero__brand-pill--snap {
	background: #fff;
	border: 3px solid var(--color-primary);
	color: var(--color-primary);
}

.hero__brand-pill--tap {
	background: var(--color-accent);
	color: #17171C;
}

.hero__brand-pill--cover {
	background: #2EA8E6;
	color: #fff;
}

.brand-wordmark {
	display: inline-flex;
	align-items: flex-end;
	gap: 14px;
	max-width: 100%;
}

.brand-wordmark__image {
	display: block;
	width: min(520px, 100%);
	max-width: 100%;
	height: auto;
}

.brand-wordmark__tm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 62px;
	height: 32px;
	padding: 0 14px;
	border-radius: 999px;
	background: #17171C;
	color: #fff;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
}

.brand-wordmark--showcase {
	align-items: flex-start;
	gap: 10px;
	justify-content: center;
}

.brand-wordmark--showcase .brand-wordmark__image {
	width: min(210px, 100%);
}

.brand-wordmark--showcase .brand-wordmark__tm {
	min-width: 32px;
	height: 20px;
	padding: 0 8px;
	font-size: 0.6rem;
	margin-top: 2px;
}

.brand-wordmark--footer {
	gap: 12px;
}

.brand-wordmark--footer .brand-wordmark__image {
	width: min(250px, 100%);
}

.brand-wordmark--footer .brand-wordmark__tm {
	min-width: 40px;
	height: 24px;
	padding: 0 10px;
	font-size: 0.72rem;
}

.brand-wordmark--partner {
	gap: 8px;
}

.brand-wordmark--partner .brand-wordmark__image {
	width: 176px;
}

.brand-wordmark--partner .brand-wordmark__tm {
	min-width: 30px;
	height: 20px;
	padding: 0 8px;
	font-size: 0.56rem;
}

.hero__headline {
	font-size: 1.25rem;
	color: var(--color-text);
	margin-bottom: 16px;
	line-height: 1.5;
}

.hero__subheadline {
	font-size: 1.1rem;
	color: var(--color-text-light);
	margin-bottom: 32px;
}

.hero__cta {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero__image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero__blob {
	position: absolute;
	width: 450px;
	height: 450px;
	background: linear-gradient(135deg, var(--color-primary-light), rgba(0, 97, 176, 0.15));
	border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
	z-index: 0;
	animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
	0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
	50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.hero__devices {
	position: relative;
	z-index: 1;
	max-width: 400px;
}

.hero__devices-placeholder {
	position: relative;
	z-index: 1;
}

.hero__logo-mark {
	position: relative;
	margin-bottom: 10px;
}

.hero__bee-icon {
	display: block;
	width: 120px;
	max-width: 100%;
	height: auto;
}

/* ── AKKO Logo (text fallback) ── */
.akko-logo-text {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 2.5rem;
	font-weight: 800;
	font-family: var(--font-heading);
	color: var(--color-accent);
	margin-bottom: 30px;
}

.akko-logo-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #0061B0;
	color: #fff;
	border-radius: 12px;
	font-size: 1.5rem;
	font-weight: 800;
}

/* ── Section Shared Styles ── */
.section-title {
	text-align: center;
	font-size: 2rem;
	margin-bottom: 12px;
	color: var(--color-accent);
}

.section-subtitle {
	text-align: center;
	color: var(--color-text-light);
	font-size: 1.1rem;
	margin-bottom: 48px;
}

/* ── Trust Badges ── */
.trust-badges {
	padding: 56px 0 72px;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.trust-badges__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 18px;
}

.trust-badges__panel {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
	gap: 40px;
	align-items: center;
	padding: 44px 48px;
	border: 1px solid rgba(0, 97, 176, 0.12);
	border-radius: 32px;
	background: linear-gradient(135deg, #ffffff 0%, #f8fbff 58%, #eef8ff 100%);
	box-shadow: 0 24px 48px rgba(10, 55, 102, 0.08);
}

.trust-badges__content .section-title,
.trust-badges__content .section-subtitle {
	text-align: left;
}

.trust-badges__eyebrow {
	margin-bottom: 10px;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.trust-badges__copy {
	max-width: 620px;
	margin-bottom: 26px;
	color: var(--color-text-light);
	font-size: 1.04rem;
	line-height: 1.7;
}

.trust-badges__visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
}

.trust-badges__visual::before {
	content: "";
	position: absolute;
	inset: 24px 8px 18px;
	border-radius: 36px;
	background: radial-gradient(circle at 30% 25%, rgba(255, 214, 10, 0.32), rgba(255, 214, 10, 0) 44%), linear-gradient(155deg, rgba(66, 184, 255, 0.28) 0%, rgba(66, 184, 255, 0.12) 45%, rgba(255, 255, 255, 0.2) 100%);
}

.trust-badges__visual::after {
	content: "";
	position: absolute;
	right: 16px;
	bottom: 22px;
	width: 88px;
	height: 88px;
	border-radius: 28px;
	background: linear-gradient(135deg, rgba(0, 97, 176, 0.18), rgba(66, 184, 255, 0.32));
}

.trust-badges__visual-card {
	position: relative;
	width: min(100%, 340px);
	padding: 22px;
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(8px);
	box-shadow: 0 24px 36px rgba(0, 49, 90, 0.12);
}

.trust-badges__tablet {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 20px 24px rgba(9, 64, 116, 0.18));
}

/* ── Powered By Strip ── */
.powered-by-strip {
	padding: 34px 0 72px;
	background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
	overflow: hidden;
}

.powered-by-strip__intro {
	margin-bottom: 28px;
	text-align: center;
}

.powered-by-strip__eyebrow {
	margin-bottom: 10px;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.powered-by-strip__title {
	margin-bottom: 10px;
	font-size: clamp(1.9rem, 3vw, 2.6rem);
	line-height: 1.02;
	color: #17171c;
}

.powered-by-strip__subtitle {
	max-width: 720px;
	margin: 0 auto;
	font-size: 1rem;
	color: var(--color-text-light);
}

.partner-marquee {
	position: relative;
	padding: 12px 0;
}

.partner-marquee__track,
.partner-marquee__duplicate {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: center;
	gap: 18px;
}

.partner-marquee__track {
	width: 100%;
}

.partner-marquee__duplicate {
	display: none;
}

.partner-tile {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-width: 180px;
	min-height: 110px;
	padding: 20px 26px;
	border: 1px solid rgba(0, 97, 176, 0.1);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 36px rgba(6, 53, 99, 0.08);
}

.partner-tile--wordmark {
	min-width: 240px;
}

.partner-tile--bee {
	min-width: 144px;
}

.partner-tile--logo {
	min-width: 220px;
}

.partner-tile--art {
	min-width: 250px;
}

.partner-tile--snap-cover {
	min-width: 300px;
}

.partner-tile--billboard {
	min-width: 290px;
}

.partner-tile__bee-wrap {
	position: relative;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: radial-gradient(circle at 30% 30%, #f7fbff 0%, #d8f1fb 100%);
	box-shadow: inset 0 0 0 1px rgba(0, 97, 176, 0.08);
}

.partner-tile__bee-wrap--plain {
	background: radial-gradient(circle at 30% 30%, #ffffff 0%, #edf7ff 100%);
}

.partner-tile__bee-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.partner-tile__mark,
.partner-tile__image {
	display: block;
	max-width: 100%;
	height: auto;
	max-height: 76px;
	object-fit: contain;
}

.partner-tile__tm-badge,
.partner-tile__wordmark-tm {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: #17171c;
	color: #ffffff;
	font-size: 0.63rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.partner-tile__tm-badge {
	position: absolute;
	right: -8px;
	bottom: -4px;
	min-width: 34px;
	height: 34px;
	padding: 0 0.55rem;
	box-shadow: 0 10px 18px rgba(23, 23, 28, 0.2);
}

.partner-tile__wordmark-lockup {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
}

.partner-tile__wordmark-image {
	width: 176px;
	height: auto;
}

.partner-tile__wordmark-tm {
	min-width: 30px;
	height: 30px;
	margin-top: 2px;
	padding: 0 0.45rem;
}

.partner-tile__stack,
.partner-tile__serif-lockup {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	line-height: 1;
}

.partner-tile__stack-top {
	font-size: 1.45rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #17171c;
}

.partner-tile__stack-bottom {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.partner-tile__chips {
	display: inline-flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px;
}

.partner-tile__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1rem;
	border-radius: 999px;
	background: #17171c;
	color: #ffffff;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.partner-tile__chip--accent {
	background: var(--color-secondary);
	color: #17171c;
}

.partner-tile__chip--light {
	background: rgba(1, 176, 236, 0.12);
	color: var(--color-primary);
}

.partner-tile__serif-top {
	font-family: Georgia, 'Times New Roman', serif;
	font-size: 1.48rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	color: #17171c;
}

.partner-tile__serif-bottom {
	font-size: 0.92rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-primary);
}

.trust-badge {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 120px;
	padding: 18px 20px;
	border: 1px solid rgba(0, 97, 176, 0.1);
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 12px 24px rgba(6, 53, 99, 0.06);
	text-align: center;
}

.trust-badge__icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--color-bg-alt);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 12px;
}

.trust-badge__icon strong {
	font-size: 1.5rem;
	color: var(--color-primary);
}

.trust-badge__label {
	font-weight: 600;
	color: var(--color-text);
}

/* ── Features ── */
.features {
	padding: 80px 0 80px;
	background: var(--color-bg-light);
	margin-top: 40px;
}

.features__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 30px;
}

.feature-card {
	text-align: center;
	padding: 30px 20px;
	background: #fff;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

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

.feature-card__icon {
	margin-bottom: 16px;
}

.feature-card h3 {
	font-size: 1rem;
	margin-bottom: 8px;
}

.feature-card p {
	font-size: 0.85rem;
	color: var(--color-text-light);
}

/* ── Plans / Pricing ── */
.plans {
	padding: 80px 0;
	background: #fff;
	margin-top: 40px;
}

.plans__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	align-items: stretch;
}

.plan-card {
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform var(--transition), box-shadow var(--transition);
	border: 2px solid var(--color-border);
	height: 100%;
}

.plan-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-lg);
}

.plan-card--featured {
	border-color: var(--color-primary);
	position: relative;
}

.plan-card--featured::before {
	content: 'Most Popular';
	position: absolute;
	top: 0;
	right: 0;
	background: var(--color-primary);
	color: #fff;
	padding: 4px 16px;
	font-size: 0.75rem;
	font-weight: 700;
	border-bottom-left-radius: var(--radius-sm);
}

.plan-card__header {
	padding: 30px 24px 20px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	min-height: 180px;
}

.plan-card__price {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	line-height: 1;
	margin-bottom: 8px;
}

.plan-card__currency {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-accent);
	margin-top: 8px;
}

.plan-card__amount {
	font-size: 3.5rem;
	font-weight: 800;
	color: var(--color-accent);
	font-family: var(--font-heading);
}

.plan-card__cents {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--color-accent);
	margin-top: 8px;
}

.plan-card__period {
	font-size: 1rem;
	color: var(--color-text-light);
	margin-top: auto;
	margin-bottom: 4px;
	margin-left: 4px;
}

.plan-card__name {
	font-size: 1.1rem;
	color: var(--color-accent);
	margin-bottom: 4px;
	font-family: var(--font-heading);
	min-height: 2.6rem;
}

.plan-card__subtitle {
	font-size: 0.9rem;
	color: var(--color-primary);
	font-weight: 600;
	min-height: 2.8rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.plan-card__subtitle--highlight {
	color: var(--color-secondary-dark);
}

.plan-card__body {
	padding: 0 24px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.plan-card__features {
	list-style: none;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.plan-card__features li {
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.875rem;
	color: var(--color-text);
	line-height: 1.45;
}

.plan-card__features li:last-child {
	border-bottom: none;
}

.plan-card__check::before {
	content: '\2713';
	color: var(--color-success);
	font-weight: 700;
	margin-right: 8px;
}

.plan-card__footer {
	padding: 16px 24px 24px;
	display: flex;
	gap: 10px;
	background: var(--color-primary-light);
	margin-top: auto;
	align-items: stretch;
}

.plan-card__footer .btn {
	flex: 1;
	padding: 10px 12px;
	font-size: 0.85rem;
	text-align: center;
}

.plans__disclaimer {
	text-align: center;
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-top: 1.5rem;
	font-style: italic;
}

.plans__disclaimer a {
	color: var(--color-primary);
	text-decoration: underline;
}

.dashboard-akko-notice {
	background: var(--color-bg-light);
	border-left: 4px solid var(--color-primary);
	padding: 1rem 1.25rem;
	margin-top: 1.5rem;
	border-radius: 4px;
	font-size: 0.95rem;
	color: var(--color-text);
}

/* ── Service Fees ── */
.service-fees {
	padding: 60px 0;
	background: var(--color-bg-light);
}

.service-fees__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	max-width: 700px;
	margin: 40px auto 0;
}

.fee-card {
	background: #fff;
	padding: 30px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.fee-card h3 {
	color: var(--color-primary);
	margin-bottom: 16px;
	font-size: 1.1rem;
}

.fee-card li {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 1rem;
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
}

.fee-card li:last-child {
	border-bottom: none;
}

.fee-card strong {
	margin-left: auto;
	flex: 0 0 auto;
	color: var(--color-accent);
	font-variant-numeric: tabular-nums;
	text-align: right;
}

/* ── Comparison Table ── */
.comparison {
	padding: 80px 0;
	background: #fff;
}

.comparison__table-wrapper {
	overflow-x: auto;
	margin-top: 40px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.comparison__table {
	width: 100%;
	border-collapse: collapse;
	min-width: 700px;
}

.comparison__table th,
.comparison__table td {
	padding: 14px 18px;
	text-align: center;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.9rem;
}

.comparison__table thead th {
	background: var(--color-accent);
	color: #fff;
	font-weight: 600;
	white-space: nowrap;
}

.comparison__table tbody tr:nth-child(even) {
	background: var(--color-bg-light);
}

.comparison__table tbody tr:hover {
	background: var(--color-primary-light);
}

.comparison__highlight {
	background: rgba(0, 97, 176, 0.08) !important;
	font-weight: 600;
}

thead .comparison__highlight {
	background: var(--color-primary) !important;
}

/* ── How It Works / Steps ── */
.how-it-works {
	padding: 80px 0;
	background: var(--color-bg-light);
	margin-top: 40px;
}

.steps__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	margin-top: 40px;
}

.step-card {
	text-align: center;
	padding: 40px 30px;
	background: #fff;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.step-card__number {
	width: 60px;
	height: 60px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 800;
	margin: 0 auto 20px;
	font-family: var(--font-heading);
}

.step-card h3 {
	margin-bottom: 12px;
	font-size: 1.15rem;
}

.step-card p {
	color: var(--color-text-light);
	font-size: 0.95rem;
	margin-bottom: 16px;
}

/* ── How It Works Showcase ── */
.process-showcase {
	padding: 96px 0 92px;
	background:
		radial-gradient(circle at 18% 24%, rgba(1, 176, 236, 0.08), transparent 24%),
		radial-gradient(circle at 82% 18%, rgba(255, 217, 0, 0.1), transparent 20%),
		linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
	overflow: hidden;
}

.process-showcase__container {
	position: relative;
}

.process-showcase__header {
	position: relative;
	text-align: center;
	margin-bottom: 54px;
}

.process-showcase__wordmark {
	display: inline-flex;
	align-items: flex-start;
	font-size: clamp(1.75rem, 2vw, 2.2rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.04em;
	margin-bottom: 16px;
}

.process-showcase__brand-mark {
	display: flex;
	justify-content: center;
	margin: 0 auto 16px;
}

.process-showcase__tm {
	font-size: 0.38em;
	font-weight: 700;
	color: var(--color-text-light);
	margin-left: 5px;
	margin-top: 0.18em;
	letter-spacing: 0.08em;
}

.process-showcase__title {
	font-size: clamp(2.9rem, 5vw, 4.35rem);
	line-height: 0.98;
	letter-spacing: -0.05em;
	color: #17171c;
	margin-bottom: 0;
}

.process-showcase__mascot {
	position: absolute;
	top: -54px;
	right: -56px;
	width: min(168px, 16vw);
	opacity: 0.72;
	filter: drop-shadow(0 14px 24px rgba(255, 217, 0, 0.16));
}

.process-showcase__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 42px;
	align-items: end;
}

.process-arch {
	position: relative;
	display: flex;
	width: 100%;
	max-width: 360px;
	min-height: 348px;
	margin: 0 auto;
	padding: 86px 34px 32px;
	border-radius: 999px 999px 28px 28px;
	box-shadow: 0 26px 48px rgba(13, 58, 102, 0.08);
}

.process-arch::after {
	content: "";
	position: absolute;
	left: 12%;
	right: 12%;
	bottom: -18px;
	height: 36px;
	background: rgba(0, 97, 176, 0.1);
	filter: blur(28px);
	z-index: -1;
}

.process-arch--light {
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	color: #17171c;
}

.process-arch--primary {
	min-height: 390px;
	background: linear-gradient(180deg, #1eaee6 0%, #149fd7 100%);
	color: #ffffff;
	transform: translateY(-18px);
}

.process-arch__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 18px;
	text-align: center;
}

.process-arch__title {
	max-width: 8ch;
	font-size: clamp(1.75rem, 2.3vw, 2.35rem);
	line-height: 1.1;
	color: inherit;
	margin-bottom: 0;
}

.process-arch__slogan {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 120px;
	padding: 0.72rem 1.2rem;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.28em;
	text-transform: uppercase;
}

.process-arch--light .process-arch__slogan {
	background: rgba(0, 97, 176, 0.07);
	color: var(--color-primary);
}

.process-arch--primary .process-arch__slogan {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
}

.process-arch__badge {
	position: absolute;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 104px;
	height: 104px;
	margin-left: -52px;
	border-radius: 50%;
	background: var(--color-secondary);
	border: 8px solid rgba(255, 255, 255, 0.72);
	box-shadow: 0 18px 32px rgba(255, 217, 0, 0.26), 0 12px 18px rgba(0, 0, 0, 0.08);
}

.process-arch--badge-top .process-arch__badge {
	top: -36px;
}

.process-arch--badge-bottom .process-arch__badge {
	bottom: -36px;
}

.process-showcase__actions {
	margin-top: 72px;
	text-align: center;
}

.process-showcase__button {
	padding: 1rem 2.35rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	box-shadow: 0 16px 26px rgba(255, 217, 0, 0.35);
}

.process-showcase--page {
	padding-top: 72px;
	padding-bottom: 48px;
}

@media (prefers-reduced-motion: reduce) {
	.partner-marquee {
		overflow-x: auto;
		mask-image: none;
		-webkit-mask-image: none;
	}

	.partner-marquee__track {
		animation: none;
	}
}

/* ── FAQ ── */
.faq {
	padding: 80px 0;
	background: #fff;
	margin-top: 40px;
}

.faq__list {
	max-width: 800px;
	margin: 0 auto;
}

.faq__item {
	border-bottom: 1px solid var(--color-border);
}

.faq__question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1.05rem;
	font-weight: 600;
	color: var(--color-accent);
	text-align: left;
	font-family: var(--font-body);
	transition: color var(--transition);
}

.faq__question:hover {
	color: var(--color-primary);
}

.faq__icon {
	width: 36px;
	height: 36px;
	background: var(--color-secondary);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-left: 16px;
	position: relative;
	transition: background var(--transition);
}

.faq__icon::before,
.faq__icon::after {
	content: '';
	position: absolute;
	background: var(--color-accent);
	transition: transform var(--transition);
}

.faq__icon::before {
	width: 14px;
	height: 2px;
}

.faq__icon::after {
	width: 2px;
	height: 14px;
}

.faq__item.is-open .faq__icon::after {
	transform: rotate(90deg);
}

.faq__answer {
	padding: 0 0 20px;
	color: var(--color-text-light);
	line-height: 1.7;
}

.faq__answer ul,
.faq__answer ol {
	margin: 12px 0;
	padding-left: 24px;
}

.faq__answer ul {
	list-style: disc;
}

.faq__answer ol {
	list-style: decimal;
}

.faq__answer li {
	margin-bottom: 6px;
}

.faq__answer h4 {
	margin-top: 16px;
	color: var(--color-accent);
}

/* ── AKKO Partner Section ── */
.akko-partner-section {
	padding: 80px 0;
	background: var(--color-bg-light);
	text-align: center;
}

.akko-partner-section__inner {
	max-width: 900px;
}

.akko-logo {
	margin: 0 auto 30px;
}

.akko-partner-section p {
	color: var(--color-text-light);
	margin-bottom: 16px;
	font-size: 0.95rem;
	line-height: 1.7;
}

.akko-partner-section a {
	color: #0061B0;
	font-weight: 600;
}

/* ── Curved Section Dividers ── */
.features,
.plans,
.protect-matters,
.cancel-tabs,
.affiliate-cta,
.how-it-works,
.faq {
	position: relative;
}

.features::before,
.plans::before,
.protect-matters::before,
.cancel-tabs::before,
.affiliate-cta::before,
.how-it-works::before,
.faq::before {
	content: '';
	position: absolute;
	top: -39px;
	left: 0;
	right: 0;
	height: 40px;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	pointer-events: none;
}

/* Light-bg sections: curve matches their background */
.features::before,
.protect-matters::before,
.how-it-works::before {
	background: var(--color-bg-light);
}

/* White sections: curve matches white */
.plans::before,
.cancel-tabs::before,
.faq::before {
	background: #fff;
}

/* Accent section: curve matches gold */
.affiliate-cta::before {
	background: var(--color-accent);
}

/* ── Footer ── */
.site-footer {
	width: min(calc(100% - 72px), 1800px);
	margin: 92px auto 0;
	background:
		radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.07), transparent 28%),
		linear-gradient(180deg, #303136 0%, #222327 100%);
	color: rgba(255, 255, 255, 0.88);
	border-radius: clamp(96px, 8vw, 160px) 0 0 0;
	box-shadow: 0 -24px 54px rgba(14, 25, 42, 0.16);
	overflow: hidden;
	padding: 88px 0 0;
	position: relative;
}

.site-footer__inner {
	display: grid;
	grid-template-columns: 1.4fr 0.85fr 0.75fr 1fr;
	gap: 56px;
	align-items: start;
	padding-bottom: 60px;
	position: relative;
	z-index: 1;
}

.site-footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: clamp(70px, 7vw, 132px);
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
	pointer-events: none;
}

.site-footer::after {
	content: '';
	position: absolute;
	top: -92px;
	left: -82px;
	width: clamp(180px, 16vw, 288px);
	height: clamp(180px, 16vw, 288px);
	border-radius: 50%;
	box-shadow: 32px 32px 0 #303136;
	pointer-events: none;
}

.footer-brand .footer-logo-text {
	font-size: 1.5rem;
	font-weight: 800;
	font-family: var(--font-heading);
}

.footer-brand .logo-life,
.footer-brand .logo-i {
	color: #fff;
}

.footer-brand__lockup {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
}

.footer-brand__wordmark {
	display: flex;
	align-items: center;
}

.footer-logo-mark {
	display: block;
	width: 74px;
	height: 74px;
	border-radius: 50%;
	flex-shrink: 0;
}

.footer-about {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.8rem;
	line-height: 1.7;
	margin-top: 0;
	max-width: 34rem;
}

.footer-brand .footer-social {
	margin-top: 24px;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-column__heading {
	margin-bottom: 18px;
	font-size: 0.92rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.96);
}

.footer-links .footer-menu {
	display: flex;
	flex-direction: column;
	gap: 11px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links .footer-menu a {
	color: rgba(255, 255, 255, 0.86);
	font-size: 0.9rem;
	transition: color var(--transition);
}

.footer-links .footer-menu a:hover {
	color: #fff;
}

.footer-contact a {
	color: #fff;
	font-weight: 600;
}

.footer-contact__list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-contact__list li {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.footer-contact__label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #f0c944;
}

.footer-social {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 12px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border-radius: 999px;
	background: rgba(240, 201, 68, 0.12);
	color: #f0c944;
	font-size: 0.82rem;
	font-weight: 700;
}

.footer-social a:hover {
	background: rgba(240, 201, 68, 0.2);
	color: #ffe37a;
}

.footer-partner {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 14px;
	padding-top: 6px;
}

.footer-partner__eyebrow {
	margin: 0;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.76);
}

.footer-partner__logo {
	display: block;
	width: min(100%, 220px);
	height: auto;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 22px 0 24px;
	text-align: center;
	position: relative;
	z-index: 1;
}

.footer-bottom p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.8rem;
	margin-bottom: 4px;
}

.site-footer--focus .site-footer__inner {
	padding-top: 44px;
}

.site-footer--focus {
	margin-top: 56px;
}

.footer-legal a {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.35);
	text-underline-offset: 0.16em;
}

.footer-legal a:hover {
	color: #fff;
	text-decoration-color: rgba(255, 255, 255, 0.7);
}

/* ── Page Content ── */
.page-content {
	padding: 60px 0;
}

.page-header {
	margin-bottom: 40px;
}

.page-title {
	font-size: 2.5rem;
}

.ilb-focus-page .site-main {
	background:
		radial-gradient(circle at top left, rgba(1, 176, 236, 0.1), transparent 28%),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 28%);
}

.page-content--focus {
	padding: 48px 0 72px;
}

.page-header--focus {
	max-width: 1120px;
	margin: 0 auto 32px;
	padding: 0 20px;
}

.page-content--focus .page-title {
	font-size: clamp(2.2rem, 3vw, 3rem);
	color: var(--color-text);
	margin-bottom: 0;
}

.page-content--focus .entry-content {
	max-width: none;
}

.entry-content {
	max-width: 800px;
	line-height: 1.8;
}

.entry-content p {
	margin-bottom: 1.2em;
}

.entry-content h2 {
	margin-top: 2em;
}

.entry-content ul,
.entry-content ol {
	padding-left: 24px;
	margin-bottom: 1.2em;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	margin-bottom: 0.5em;
}

/* ── Posts Grid ── */
.posts-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	padding: 40px 0;
}

.post-card {
	background: #fff;
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition);
}

.post-card:hover {
	transform: translateY(-4px);
}

.post-card__image img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.post-card__content {
	padding: 20px;
}

.post-card__title {
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.post-card__title a {
	color: var(--color-accent);
}

.post-card__title a:hover {
	color: var(--color-primary);
}

/* ── Page Template Shared ── */
.page-hero {
	background: var(--color-bg-alt);
	padding: 60px 0;
	text-align: center;
}

.page-hero h1 {
	font-size: 2.5rem;
	margin-bottom: 12px;
}

.page-hero p {
	font-size: 1.1rem;
	color: var(--color-text-light);
	max-width: 600px;
	margin: 0 auto;
}

.page-section {
	padding: 60px 0;
}

.page-section:nth-child(even) {
	background: var(--color-bg-light);
}

/* ── Contact Form ── */
.contact-form {
	max-width: 600px;
	margin: 0 auto;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--color-accent);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: border-color var(--transition);
	outline: none;
}

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

.form-group textarea {
	min-height: 150px;
	resize: vertical;
}

/* ── Coverage Lists ── */
.coverage-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.coverage-card {
	background: #fff;
	padding: 30px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.coverage-card h3 {
	color: var(--color-primary);
	margin-bottom: 16px;
}

.coverage-card ul {
	list-style: none;
}

.coverage-card li {
	padding: 6px 0;
	padding-left: 24px;
	position: relative;
}

.coverage-card li::before {
	content: '\2713';
	color: var(--color-success);
	font-weight: 700;
	position: absolute;
	left: 0;
}

.coverage-card--not-covered li::before {
	content: '\2717';
	color: var(--color-error);
}

/* ── Claims Steps ── */
.claims-steps {
	max-width: 700px;
	margin: 40px auto;
}

.claim-steps__grid {
	max-width: 700px;
	margin: 40px auto 0;
}

.claim-step {
	display: flex;
	gap: 20px;
	margin-bottom: 30px;
	align-items: flex-start;
}

.claim-step__number {
	width: 48px;
	height: 48px;
	background: var(--color-primary);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.2rem;
	flex-shrink: 0;
}

.claim-step__content h3 {
	font-size: 1.1rem;
	margin-bottom: 4px;
}

.claim-step__content p {
	color: var(--color-text-light);
	font-size: 0.95rem;
}

/* ── 404 Page ── */
.error-404 {
	text-align: center;
	padding: 100px 0;
}

.error-404 h1 {
	font-size: 6rem;
	color: var(--color-primary);
	line-height: 1;
	margin-bottom: 16px;
}

.error-404 p {
	font-size: 1.2rem;
	color: var(--color-text-light);
	margin-bottom: 30px;
}

/* ── We Protect What Matters Most ── */
.protect-matters {
	padding: 80px 0;
	background: var(--color-bg-light);
	margin-top: 40px;
}

.protect-matters__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 40px;
}

.protect-matters__card {
	background: #fff;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-md);
	text-align: center;
	transition: transform var(--transition);
}

.protect-matters__card:hover {
	transform: translateY(-6px);
}

.protect-matters__img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.protect-matters__card h3 {
	padding: 20px;
	font-size: 1.2rem;
	margin: 0;
}

/* ── Cancel Tabs ── */
.cancel-tabs {
	padding: 80px 0;
	background: #fff;
	margin-top: 40px;
}

.cancel-tabs__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-bottom: 30px;
}

.cancel-tabs__btn {
	padding: 10px 20px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-xl);
	background: var(--color-bg-light);
	color: var(--color-text);
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all var(--transition);
	font-family: var(--font-body);
}

.cancel-tabs__btn:hover,
.cancel-tabs__btn.is-active {
	background: var(--color-secondary);
	border-color: var(--color-secondary);
	color: var(--color-accent);
}

.cancel-tabs__panel {
	display: none;
	max-width: 700px;
	margin: 0 auto;
	padding: 30px;
	background: var(--color-bg-light);
	border-radius: var(--radius-md);
}

.cancel-tabs__panel.is-active {
	display: block;
}

.cancel-tabs__panel h3 {
	color: var(--color-primary);
	margin-bottom: 16px;
}

.cancel-tabs__panel p {
	margin-bottom: 12px;
	line-height: 1.7;
	color: var(--color-text);
}

/* ── Affiliate CTA ── */
.affiliate-cta {
	padding: 80px 0;
	background: var(--color-accent);
	color: #fff;
	margin-top: 40px;
}

.affiliate-cta .section-title {
	color: #fff;
}

.affiliate-cta .section-subtitle {
	color: #ccc;
}

/* ── Affiliate Checkout / Thank You ── */
.affiliate-checkout-optin {
	background: var(--color-primary-light);
	padding: 16px 20px;
	border-radius: var(--radius-sm);
	border-left: 4px solid var(--color-primary);
	margin-top: 20px;
}

.affiliate-checkout-optin label {
	font-weight: 500;
	color: var(--color-accent);
}

.affiliate-thankyou-box {
	background: var(--color-primary-light);
	padding: 30px;
	border-radius: var(--radius-md);
	margin: 30px 0;
	text-align: center;
	border: 2px solid var(--color-primary);
}

.affiliate-thankyou-box h3 {
	color: var(--color-primary);
	margin-bottom: 8px;
}

.affiliate-thankyou-box p {
	color: var(--color-text-light);
	margin-bottom: 16px;
}

.affiliate-thankyou-box--subtle {
	border-color: var(--color-border);
	background: var(--color-bg-light);
}

/* ── Member Dashboard ── */
.dashboard-login {
	max-width: 500px;
	margin: 0 auto;
	padding: 40px 0;
}

.dashboard-login__card {
	background: var(--color-bg-light);
	padding: 40px;
	border-radius: var(--radius-lg);
	text-align: center;
}

.dashboard-login__card h2 {
	margin-bottom: 8px;
}

.dashboard-login__card p {
	color: var(--color-text-light);
	margin-bottom: 24px;
}

.dashboard-login__card .login-username,
.dashboard-login__card .login-password {
	margin-bottom: 16px;
	text-align: left;
}

.dashboard-login__card label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--color-accent);
}

.dashboard-login__card input[type="text"],
.dashboard-login__card input[type="password"] {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-size: 1rem;
}

.dashboard-login__card input[type="submit"] {
	width: 100%;
	padding: 12px;
	background: var(--color-primary);
	color: #fff;
	border: none;
	border-radius: var(--radius-xl);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	margin-top: 8px;
}

.dashboard-login__register {
	margin-top: 20px;
	font-size: 0.9rem;
}

.dashboard-login__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-bottom: 24px;
}

.dashboard-login__actions .btn {
	min-width: 220px;
}

.dashboard-login__benefits {
	text-align: left;
	display: grid;
	gap: 10px;
	padding: 18px 20px;
	border-radius: var(--radius-md);
	background: #fff;
	border: 1px solid var(--color-border);
}

.dashboard-login__benefits li {
	position: relative;
	padding-left: 20px;
	color: var(--color-text-light);
}

.dashboard-login__benefits li::before {
	content: "";
	position: absolute;
	top: 0.6em;
	left: 0;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--color-primary);
}

.dashboard-account-actions {
	margin-top: 24px;
}

/* Dashboard Tabs */
.dashboard-tabs {
	display: flex;
	gap: 8px;
	margin-bottom: 30px;
	border-bottom: 2px solid var(--color-border);
	padding-bottom: 0;
}

.dashboard-tabs__btn {
	padding: 12px 24px;
	border: none;
	background: none;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--color-text-light);
	cursor: pointer;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	transition: all var(--transition);
	font-family: var(--font-body);
}

.dashboard-tabs__btn:hover,
.dashboard-tabs__btn.is-active {
	color: var(--color-primary);
	border-bottom-color: var(--color-primary);
}

.dashboard-panel {
	display: none;
	padding: 10px 0 40px;
}

.dashboard-panel.is-active {
	display: block;
}

/* Dashboard Cards */
.dashboard-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 30px;
}

.dashboard-card {
	background: var(--color-bg-light);
	padding: 24px;
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
}

.dashboard-card--primary {
	background: var(--color-primary-light);
	border-color: var(--color-primary);
}

.dashboard-card h3 {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--color-text-light);
	margin-bottom: 8px;
}

.dashboard-card__value {
	font-size: 1.5rem;
	font-weight: 800;
	font-family: var(--font-heading);
	color: var(--color-accent);
	margin-bottom: 4px;
}

.dashboard-card p {
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-bottom: 8px;
}

.dashboard-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: var(--radius-xl);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.dashboard-badge--active {
	background: #dcfce7;
	color: #166534;
}

.dashboard-badge--pending {
	background: #fef9c3;
	color: #854d0e;
}

.dashboard-badge--denied {
	background: #fef2f2;
	color: #991b1b;
}

.dashboard-section {
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px solid var(--color-border);
}

.dashboard-section h3 {
	margin-bottom: 20px;
}

.dashboard-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Device Cards */
.device-list {
	margin-bottom: 20px;
}

.device-card {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: var(--color-bg-light);
	border-radius: var(--radius-md);
	border: 1px solid var(--color-border);
	margin-bottom: 12px;
}

.device-card__info {
	flex: 1;
}

.device-card__info h4 {
	margin-bottom: 4px;
}

.device-card__info p {
	font-size: 0.85rem;
	color: var(--color-text-light);
	margin-bottom: 6px;
}

/* Device Register Form */
.device-register-form,
.claim-form {
	max-width: 700px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.btn--sm {
	padding: 8px 16px;
	font-size: 0.85rem;
}

/* Claims List */
.claim-row {
	display: grid;
	grid-template-columns: 100px 1fr 1fr 80px 100px 100px;
	gap: 16px;
	align-items: center;
	padding: 16px 20px;
	background: var(--color-bg-light);
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	margin-bottom: 8px;
	font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
	.dashboard-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.claim-row {
		grid-template-columns: 1fr 1fr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.dashboard-tabs {
		overflow-x: auto;
	}
}

/* ── Contact Page ── */
.contact-section {
	padding: 60px 0;
}

.contact-section__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.contact-info {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	padding: 36px;
	border: 1px solid rgba(0, 97, 176, 0.08);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.contact-info h2,
.contact-form-wrap h2 {
	font-size: 1.5rem;
	margin-bottom: 24px;
}

.contact-info__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--color-border);
}

.contact-info__item:last-child {
	border-bottom: none;
}

.contact-info__item svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.contact-info__item h4 {
	font-size: 0.9rem;
	color: var(--color-primary);
	margin-bottom: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.contact-info__item p {
	color: var(--color-text-light);
	margin: 0;
	font-size: 0.95rem;
}

.contact-info__item a {
	color: var(--color-primary);
	font-weight: 500;
	display: inline-block;
}

.contact-info__item a + p,
.contact-info__item p + p {
	margin-top: 8px;
}

.contact-form-wrap {
	background: var(--color-bg-light);
	padding: 36px;
	border-radius: var(--radius-lg);
}

.contact-form__field {
	margin-bottom: 20px;
}

.contact-form__field label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--color-accent);
	font-size: 0.9rem;
}

.contact-form__field .required {
	color: var(--color-error);
}

.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid var(--color-border);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 1rem;
	transition: border-color var(--transition);
	outline: none;
	background: #fff;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
	border-color: var(--color-primary);
}

.contact-form__field textarea {
	min-height: 150px;
	resize: vertical;
}

.contact-form__submit {
	margin-top: 8px;
}

/* ── How It Works — Coverage Sections ── */
.coverage-section {
	padding: 60px 0;
}

.not-covered-section {
	padding: 60px 0;
	background: var(--color-bg-light);
}

.coverage-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.coverage-card {
	background: #fff;
	padding: 30px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.coverage-card h3 {
	color: var(--color-primary);
	margin-bottom: 16px;
	font-size: 1.15rem;
}

.coverage-card ul {
	list-style: none;
}

.coverage-card li {
	padding: 8px 0;
	padding-left: 28px;
	position: relative;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
}

.coverage-card li:last-child {
	border-bottom: none;
}

.coverage-card li::before {
	content: '\2713';
	color: var(--color-success);
	font-weight: 700;
	position: absolute;
	left: 0;
}

.coverage-card--not-covered li::before {
	content: '\2717';
	color: var(--color-error);
}

/* ── What's Covered (How It Works) ── */
.whats-covered {
	padding: 60px 0;
	scroll-margin-top: 120px;
}

.covered__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-top: 30px;
}

.covered-card {
	background: #fff;
	padding: 30px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.covered-card__icon {
	margin-bottom: 16px;
}

.covered-card h3 {
	color: var(--color-primary);
	margin-bottom: 16px;
	font-size: 1.15rem;
}

.covered-card ul {
	list-style: none;
}

.covered-card li {
	padding: 8px 0;
	padding-left: 28px;
	position: relative;
	border-bottom: 1px solid var(--color-border);
	font-size: 0.95rem;
}

.covered-card li:last-child {
	border-bottom: none;
}

.covered-card li::before {
	content: '\2713';
	color: var(--color-success);
	font-weight: 700;
	position: absolute;
	left: 0;
}

/* ── What's Not Covered ── */
.not-covered {
	padding: 60px 0;
	background: var(--color-bg-light);
}

.not-covered__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin-top: 30px;
}

.not-covered__item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: #fff;
	padding: 24px;
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.not-covered__icon {
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fef2f2;
	color: var(--color-error);
	border-radius: 50%;
	font-weight: 700;
	font-size: 1rem;
}

.not-covered__item h4 {
	font-size: 1rem;
	margin-bottom: 4px;
}

.not-covered__item p {
	color: var(--color-text-light);
	font-size: 0.9rem;
	margin: 0;
}

/* ── CTA Section ── */
.cta-section {
	padding: 60px 0;
	text-align: center;
}

.cta-section__inner p {
	color: var(--color-text-light);
	margin-bottom: 24px;
}

.cta-section__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ── Contact Support CTA (FAQ, Claims) ── */
.contact-support {
	padding: 60px 0;
	text-align: center;
	background: var(--color-bg-light);
}

.contact-support__inner {
	max-width: 600px;
	margin: 0 auto;
}

.contact-support__inner p {
	color: var(--color-text-light);
	margin-bottom: 16px;
}

.contact-support__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 24px;
}

/* ── Claims CTA ── */
.claim-cta {
	text-align: center;
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid var(--color-border);
}

.claim-cta__note {
	color: var(--color-text-light);
	font-size: 0.9rem;
	margin-top: 12px;
}

.btn--lg {
	padding: 16px 36px;
	font-size: 1.05rem;
}

.cta-section .btn {
	margin: 0 8px;
}

/* ── Center support sections ── */
.support-cta {
	text-align: center;
	padding: 60px 0;
}

.support-cta .btn {
	margin: 0 8px;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1024px) {
	.features__grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

	.site-footer__inner {
		grid-template-columns: 1.1fr 1fr;
	}

	.trust-badges__panel {
		grid-template-columns: 1fr;
		padding: 38px 36px;
	}

	.site-footer {
		width: min(calc(100% - 48px), 1280px);
		margin-top: 64px;
		padding-top: 72px;
		border-radius: clamp(72px, 10vw, 112px) 0 0 0;
	}
}

@media (max-width: 768px) {
	.top-bar {
		padding: 10px 16px;
	}

	.top-bar__text {
		font-size: 0.78rem;
		line-height: 1.4;
	}

	/* Mobile nav */
	.mobile-menu-toggle {
		display: flex;
	}

	.site-header__inner {
		position: relative;
		min-height: 72px;
		height: auto;
		gap: 10px;
	}

	.site-header__actions {
		margin-left: auto;
		gap: 10px;
	}

	.site-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		box-shadow: var(--shadow-md);
		border-top: 1px solid var(--color-border);
		padding: 14px 20px 18px;
		max-height: calc(100vh - 74px);
		overflow-y: auto;
		z-index: 998;
	}

	.site-nav.is-open {
		display: block;
	}

	.nav-menu {
		flex-direction: column;
		gap: 0;
	}

	.nav-menu li a {
		padding: 14px 4px;
		border-bottom: 1px solid var(--color-border);
		font-size: 1rem;
	}

	.page-header--focus {
		padding: 0;
	}

	.dashboard-login__actions .btn {
		width: 100%;
		min-width: 0;
	}

	/* Hero */
	.hero {
		padding: 40px 0;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.hero__brand {
		align-items: center;
	}

	.hero__brand-lockup {
		flex-wrap: wrap;
		justify-content: center;
		gap: 14px;
	}

	.hero__logo-mark {
		display: flex;
		justify-content: center;
	}

	.hero__bee-icon {
		width: 104px;
	}

	.hero__brand-lockup,
	.hero__brand-pills {
		justify-content: center;
	}

	.hero__headline {
		font-size: clamp(2.2rem, 10vw, 3.2rem);
	}

	.hero__subheadline {
		max-width: 34rem;
		margin-inline: auto;
		font-size: 1rem;
	}

	.hero__cta {
		flex-direction: column;
		align-items: stretch;
		justify-content: center;
		width: min(100%, 320px);
		margin-inline: auto;
	}

	.hero__cta .btn {
		width: 100%;
	}

	.site-header__logo {
		min-width: 0;
	}

	.hero__image {
		order: -1;
	}

	.hero__blob {
		width: 300px;
		height: 300px;
	}

	.hero__devices {
		max-width: 280px;
	}

	.search-overlay .search-form {
		flex-direction: column;
	}

	.search-overlay .search-submit {
		width: 100%;
	}

	/* Sections */
	.section-title {
		font-size: 1.6rem;
	}

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

	.plans__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

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

	.process-showcase {
		padding: 76px 0 82px;
	}

	.process-showcase__header {
		margin-bottom: 40px;
	}

	.process-showcase__title {
		font-size: clamp(2.35rem, 12vw, 3.2rem);
	}

	.process-showcase__mascot {
		top: -10px;
		right: -10px;
		width: 92px;
		opacity: 0.34;
	}

	.process-showcase__grid {
		grid-template-columns: 1fr;
		gap: 70px;
	}

	.process-arch,
	.process-arch--primary {
		max-width: 100%;
		min-height: 286px;
		padding: 72px 24px 24px;
		transform: none;
	}

	.process-arch__badge {
		width: 88px;
		height: 88px;
		margin-left: -44px;
		border-width: 6px;
	}

	.process-arch--badge-top .process-arch__badge {
		top: -28px;
	}

	.process-arch__title {
		max-width: none;
		font-size: clamp(1.55rem, 7vw, 2rem);
	}

	.process-arch__slogan {
		width: min(180px, 100%);
		min-width: 0;
	}

	.service-fees__grid {
		grid-template-columns: 1fr;
	}

	.trust-badges__grid {
		gap: 30px;
	}

	.powered-by-strip {
		padding: 24px 0 58px;
	}

	.powered-by-strip__subtitle {
		font-size: 0.95rem;
	}

	.partner-marquee {
		mask-image: none;
		-webkit-mask-image: none;
		overflow-x: auto;
		padding: 4px 0 12px;
		scroll-snap-type: x proximity;
	}

	.partner-marquee__track {
		animation: none;
		padding-right: 20px;
	}

	.partner-marquee__duplicate {
		display: none;
	}

	.partner-tile {
		min-height: 98px;
		padding: 18px 22px;
		border-radius: 24px;
		scroll-snap-align: start;
	}

	.partner-tile--wordmark {
		min-width: 240px;
	}

	.partner-marquee__track {
		flex-wrap: nowrap;
		justify-content: flex-start;
		overflow-x: auto;
		scroll-snap-type: x proximity;
		padding-bottom: 6px;
	}

	.partner-tile {
		scroll-snap-align: center;
	}

	.partner-tile--logo,
	.partner-tile--art,
	.partner-tile--billboard {
		min-width: 210px;
	}

	/* Footer */
	.site-footer__inner {
		grid-template-columns: 1fr;
		gap: 34px;
		padding-bottom: 42px;
	}

	.site-footer {
		width: min(calc(100% - 24px), 1280px);
		margin-top: 48px;
		padding-top: 64px;
		border-radius: 64px 0 0 0;
	}

	.footer-brand__lockup {
		align-items: flex-start;
		gap: 12px;
		margin-bottom: 16px;
	}

	.footer-logo-mark {
		width: 62px;
		height: 62px;
	}

	.footer-brand__wordmark .brand-wordmark {
		display: flex;
		align-items: center;
		gap: 8px;
	}

	.footer-brand__wordmark .brand-wordmark__image {
		width: min(210px, 100%);
		height: auto;
	}

	.footer-brand__wordmark .brand-wordmark__tm {
		transform: scale(0.88);
		transform-origin: left center;
	}

	.footer-about {
		max-width: none;
	}

	.footer-column__heading {
		margin-bottom: 12px;
	}

	.footer-partner {
		margin-top: 6px;
	}

	.footer-partner__logo {
		width: min(100%, 192px);
	}

	.trust-badges__panel {
		padding: 28px 24px;
	}

	.trust-badges__content .section-title,
	.trust-badges__copy {
		text-align: center;
		margin-left: auto;
		margin-right: auto;
	}

	.trust-badges__grid {
		justify-content: center;
	}

	.trust-badges__visual {
		min-height: 220px;
	}

	/* Posts */
	.posts-grid {
		grid-template-columns: 1fr;
	}

	/* Page */
	.page-title {
		font-size: 1.8rem;
	}

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

	.contact-section__grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.contact-form-wrap {
		padding: 24px;
	}

	.contact-info {
		padding: 28px;
	}

	.covered__grid,
	.not-covered__grid {
		grid-template-columns: 1fr;
	}

	.protect-matters__grid {
		grid-template-columns: 1fr;
		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}

	.cancel-tabs__nav {
		gap: 6px;
	}

	.cancel-tabs__btn {
		padding: 8px 14px;
		font-size: 0.8rem;
	}
}

@media (max-width: 480px) {
	.hero__brand-lockup {
		gap: 12px;
		align-items: center;
		flex-direction: column;
	}

	.hero__wordmark {
		width: min(360px, 100%);
	}

	.hero__tm-badge {
		min-width: 60px;
		height: 34px;
		padding: 0 14px;
		font-size: 1rem;
	}

	.hero__brand-pills {
		gap: 10px;
	}

	.hero__brand-pill {
		min-width: 98px;
		height: 38px;
		padding: 0 18px;
		font-size: 1rem;
	}

	.site-header__inner {
		gap: 12px;
	}

	.site-nav {
		padding: 12px 16px 16px;
	}

	.site-logo-link {
		gap: 6px;
	}

	.site-logo-img {
		width: 56px;
		height: 56px;
	}

	.process-showcase {
		padding: 64px 0 76px;
	}

	.process-showcase__brand-mark {
		margin-bottom: 12px;
	}

	.powered-by-strip {
		padding: 18px 0 48px;
	}

	.powered-by-strip__title {
		font-size: 1.7rem;
	}

	.powered-by-strip__subtitle {
		font-size: 0.92rem;
	}

	.partner-marquee {
		padding-bottom: 8px;
	}

	.partner-tile {
		min-width: 170px;
		min-height: 90px;
		padding: 16px 18px;
		border-radius: 22px;
	}

	.partner-tile--bee {
		min-width: 126px;
	}

	.partner-tile--wordmark {
		min-width: 210px;
	}

	.partner-tile--logo,
	.partner-tile--art,
	.partner-tile--billboard {
		min-width: 190px;
	}

	.partner-tile__bee-wrap {
		width: 70px;
		height: 70px;
	}

	.partner-tile__image {
		max-height: 64px;
	}

	.brand-wordmark--partner .brand-wordmark__image {
		width: 144px;
	}

	.brand-wordmark--partner .brand-wordmark__tm {
		min-width: 26px;
		height: 18px;
		font-size: 0.5rem;
	}

	.partner-tile__stack-top,
	.partner-tile__serif-top {
		font-size: 1.18rem;
	}

	.partner-tile__stack-bottom,
	.partner-tile__serif-bottom {
		font-size: 0.82rem;
	}

	.site-footer {
		width: min(calc(100% - 12px), 1280px);
		margin-top: 40px;
		padding-top: 48px;
		border-radius: 44px 0 0 0;
	}

	.site-footer__inner {
		gap: 28px;
		padding-bottom: 36px;
	}

	.footer-logo-mark {
		width: 56px;
		height: 56px;
	}

	.footer-brand__wordmark .brand-wordmark__image {
		width: min(184px, 100%);
	}

	.footer-about,
	.footer-links .footer-menu a,
	.footer-contact a,
	.footer-bottom p {
		font-size: 0.88rem;
	}

	.footer-contact__label,
	.footer-partner__eyebrow {
		font-size: 0.74rem;
	}

	.partner-tile__chips {
		gap: 8px;
	}

	.partner-tile__chip {
		padding: 0.6rem 0.8rem;
		font-size: 0.7rem;
	}

	.process-showcase__title {
		font-size: 2.5rem;
	}

	.process-showcase__mascot {
		display: none;
	}

	.process-arch {
		min-height: 286px;
		padding: 72px 24px 26px;
	}

	.contact-info {
		padding: 22px;
	}

	.contact-info__item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.process-arch__badge {
		width: 92px;
		height: 92px;
		margin-left: -46px;
	}

	.process-arch--badge-top .process-arch__badge {
		top: -30px;
	}

	.process-arch--badge-bottom .process-arch__badge {
		bottom: -30px;
	}

	.process-arch__title {
		font-size: 1.55rem;
	}

	.process-arch__slogan {
		min-width: 108px;
		padding: 0.65rem 1rem;
		font-size: 0.75rem;
	}

	.process-showcase__actions {
		margin-top: 56px;
	}

	.process-showcase__button {
		width: 100%;
		max-width: 320px;
	}

	.hero__cta {
		flex-direction: column;
		align-items: center;
	}

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

	.plan-card__amount {
		font-size: 2.8rem;
	}

	.plan-card__footer {
		flex-direction: column;
	}

	.comparison__table {
		font-size: 0.8rem;
	}
}
