/* ==========================================================================
   SEO Promotion Kyiv — landing styles
   Все классы изолированы префиксом seo-*.
   ========================================================================== */

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: var(--seo-surface, #fff);
	color: var(--seo-text, #0f1f33);
	font-family: var(--seo-font, sans-serif);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

body.seo-scroll-lock {
	overflow: hidden;
}

:root {
	--seo-bg: #07101f;
	--seo-bg-soft: #0b1729;
	--seo-surface: #ffffff;
	--seo-surface-2: #f5f8fc;
	--seo-surface-3: #eaf0f7;
	--seo-text: #0f1f33;
	--seo-muted: #607087;
	--seo-line: #dfe7f0;
	--seo-primary: #2dd4bf;
	--seo-primary-dark: #0f9f91;
	--seo-primary-soft: #d9fbf6;
	--seo-secondary: #7c5cff;
	--seo-accent: #f6c344;
	--seo-danger: #ef5b5b;
	--seo-white: #fff;
	--seo-shadow: 0 22px 70px rgba(7, 16, 31, .12);
	--seo-shadow-sm: 0 12px 32px rgba(7, 16, 31, .08);
	--seo-radius: 26px;
	--seo-radius-sm: 18px;
	--seo-container-w: 1180px;
	--seo-transition: 200ms ease;
	--seo-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.seo-landing,
.seo-header,
.seo-footer,
.seo-modal,
.seo-floating-contact {
	color: var(--seo-text);
	font-family: var(--seo-font);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.seo-landing *,
.seo-landing *::before,
.seo-landing *::after,
.seo-header *,
.seo-footer *,
.seo-modal *,
.seo-floating-contact * {
	box-sizing: border-box;
}

.seo-landing img,
.seo-landing svg,
.seo-header svg,
.seo-footer svg,
.seo-modal svg {
	display: block;
	max-width: 100%;
}

:where(.seo-landing, .seo-header, .seo-footer, .seo-modal) :where(h1, h2, h3, p, ul, ol, dl) {
	margin: 0;
	padding: 0;
	list-style: none;
}

:where(.seo-landing, .seo-header, .seo-footer, .seo-modal) a,
:where(.seo-floating-contact) {
	color: inherit;
	text-decoration: none;
}

.seo-landing button,
.seo-landing input,
.seo-landing select,
.seo-landing textarea,
.seo-modal button,
.seo-modal input,
.seo-modal select,
.seo-modal textarea {
	font: inherit;
}

.seo-landing button,
.seo-modal button {
	cursor: pointer;
}

.seo-landing section {
	scroll-margin-top: 92px;
}

.seo-skip-link {
	position: absolute;
	top: -100px;
	left: 12px;
	z-index: 1000;
	background: var(--seo-primary);
	color: #041812;
	padding: 12px 18px;
	border-radius: var(--seo-radius-sm);
	font-weight: 700;
	transition: top var(--seo-transition);
}

.seo-skip-link:focus {
	top: 12px;
}

.seo-sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}

.seo-landing a:focus-visible,
.seo-landing button:focus-visible,
.seo-landing input:focus-visible,
.seo-landing select:focus-visible,
.seo-landing textarea:focus-visible,
.seo-header a:focus-visible,
.seo-header button:focus-visible,
.seo-footer a:focus-visible,
.seo-modal a:focus-visible,
.seo-modal button:focus-visible,
.seo-modal input:focus-visible,
.seo-modal select:focus-visible,
.seo-modal textarea:focus-visible {
	outline: 3px solid var(--seo-primary);
	outline-offset: 2px;
}

/* ---------- Layout ---------- */

.seo-container {
	width: min(calc(100% - 36px), var(--seo-container-w));
	margin-inline: auto;
}

.seo-section {
	padding: 108px 0;
}

.seo-section--soft {
	background: var(--seo-surface-2);
}

.seo-section--dark {
	color: var(--seo-white);
	background: var(--seo-bg);
}

.seo-section-head {
	max-width: 760px;
	margin-bottom: 48px;
}

.seo-section-head.seo-center {
	margin-inline: auto;
	text-align: center;
}

.seo-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
	color: var(--seo-primary-dark);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.seo-eyebrow::before {
	content: "";
	width: 26px;
	height: 2px;
	background: currentColor;
}

.seo-section--dark .seo-eyebrow {
	color: #6ee7d7;
}

.seo-landing h1,
.seo-landing h2,
.seo-landing h3 {
	line-height: 1.12;
	letter-spacing: -.03em;
	font-weight: 800;
}

.seo-landing h1 {
	margin-bottom: 24px;
	font-size: clamp(38px, 6.1vw, 78px);
}

.seo-landing h2 {
	margin-bottom: 18px;
	font-size: clamp(30px, 4.2vw, 56px);
}

.seo-landing h3 {
	margin-bottom: 12px;
	font-size: 24px;
}

.seo-lead {
	color: var(--seo-muted);
	font-size: clamp(17px, 2vw, 21px);
}

.seo-section--dark .seo-lead {
	color: #aebbd0;
}

.seo-muted {
	color: var(--seo-muted);
}

.seo-gradient-text {
	color: transparent;
	background: linear-gradient(100deg, #ffffff 5%, #7ef7e6 60%, #c7baff 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

/* ---------- Buttons ---------- */

.seo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 52px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 800;
	transition: transform var(--seo-transition), box-shadow var(--seo-transition), background-color var(--seo-transition);
	white-space: nowrap;
}

.seo-btn:hover {
	transform: translateY(-2px);
}

.seo-btn--primary {
	color: #041812;
	background: var(--seo-primary);
	box-shadow: 0 12px 28px rgba(45, 212, 191, .24);
}

.seo-btn--primary:hover {
	background: #5be3d0;
}

.seo-btn--light {
	color: var(--seo-text);
	background: var(--seo-white);
}

.seo-btn--outline {
	color: var(--seo-white);
	border-color: rgba(255, 255, 255, .25);
	background: rgba(255, 255, 255, .04);
}

.seo-btn--ghost {
	color: var(--seo-text);
	border-color: var(--seo-line);
	background: var(--seo-white);
}

.seo-btn--block {
	width: 100%;
}

.seo-btn svg {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

/* ---------- Header ---------- */

.seo-header {
	position: fixed;
	z-index: 1000;
	inset: 0 0 auto;
	min-height: 78px;
	color: var(--seo-white);
	background: rgba(7, 16, 31, .92);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
	backdrop-filter: blur(16px);
	transition: background-color var(--seo-transition), box-shadow var(--seo-transition), backdrop-filter var(--seo-transition);
}

.seo-header--overlay {
	background: rgba(7, 16, 31, 0);
	box-shadow: none;
	backdrop-filter: none;
}

.seo-header--overlay.is-scrolled {
	background: rgba(7, 16, 31, .92);
	box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
	backdrop-filter: blur(16px);
}

.seo-header__inner {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
}

.seo-logo {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	min-width: 0;
	font-weight: 900;
	letter-spacing: -.02em;
}

.seo-logo__mark {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	display: grid;
	place-items: center;
	border-radius: 12px;
	color: #03221d;
	background: var(--seo-primary);
	box-shadow: 0 8px 22px rgba(45, 212, 191, .28);
}

.seo-logo__mark svg {
	width: 22px;
	height: 22px;
}

.seo-logo small {
	display: block;
	color: #90a1b8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .11em;
	text-transform: uppercase;
}

.seo-footer .seo-logo {
	color: var(--seo-white);
}

.seo-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	min-width: 0;
}

.seo-nav a {
	color: #c6d0de;
	font-size: 14px;
	font-weight: 700;
}

.seo-nav a:hover,
.seo-nav a.is-active {
	color: var(--seo-white);
}

.seo-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.seo-lang-switcher {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 4px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 999px;
}

.seo-lang-switcher a {
	padding: 6px 10px;
	border-radius: 999px;
	color: #9aabc0;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .02em;
	min-height: 28px;
	display: inline-flex;
	align-items: center;
}

.seo-lang-switcher a:hover {
	color: #fff;
}

.seo-lang-switcher a.is-active {
	background: var(--seo-primary);
	color: #041812;
}

.seo-nav > .seo-lang-switcher {
	display: none;
}

.seo-menu-btn {
	display: none;
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 14px;
	color: #fff;
	background: transparent;
	align-items: center;
	justify-content: center;
}

/* ---------- Hero ---------- */

.seo-hero {
	position: relative;
	overflow: hidden;
	min-height: 820px;
	padding: 176px 0 98px;
	color: var(--seo-white);
	background:
		radial-gradient(circle at 74% 22%, rgba(124, 92, 255, .27), transparent 28%),
		radial-gradient(circle at 18% 70%, rgba(45, 212, 191, .16), transparent 32%),
		var(--seo-bg);
}

.seo-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	opacity: .28;
	background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.seo-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
	align-items: center;
	gap: 68px;
}

.seo-hero__copy {
	min-width: 0;
	max-width: 690px;
}

.seo-hero__copy .seo-lead {
	max-width: 660px;
	color: #b8c5d8;
}

.seo-hero__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 22px;
}

.seo-chip {
	padding: 8px 12px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 999px;
	color: #cdd7e5;
	background: rgba(255, 255, 255, .05);
	font-size: 13px;
	font-weight: 700;
}

.seo-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 34px 0 42px;
}

.seo-hero__proof {
	display: grid;
	grid-template-columns: repeat(3, max-content);
	gap: 38px;
}

.seo-proof strong {
	display: block;
	color: var(--seo-white);
	font-size: 27px;
	line-height: 1;
}

.seo-proof span {
	display: block;
	margin-top: 7px;
	color: #8293aa;
	font-size: 13px;
}

/* Dashboard visual */

.seo-hero__visual {
	min-width: 0;
}

.seo-dashboard {
	position: relative;
	min-height: 530px;
	padding: 16px;
	border: 1px solid rgba(255, 255, 255, .13);
	border-radius: 30px;
	background: rgba(255, 255, 255, .065);
	box-shadow: 0 50px 100px rgba(0, 0, 0, .35);
	backdrop-filter: blur(18px);
}

.seo-dash-window {
	position: relative;
	z-index: 1;
	height: 100%;
	overflow: hidden;
	border-radius: 20px;
	color: var(--seo-text);
	background: #f7f9fc;
}

.seo-dash-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 18px 22px;
	border-bottom: 1px solid #e7edf4;
	background: #fff;
}

.seo-dots {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.seo-dots i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #dce4ee;
}

.seo-dash-title {
	font-size: 13px;
	font-weight: 850;
}

.seo-dash-updated {
	flex-shrink: 0;
	font-size: 11px;
	color: #8392a6;
}

.seo-dash-body {
	padding: 22px;
}

.seo-metric-row {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.seo-metric {
	min-width: 0;
	padding: 16px;
	border: 1px solid #e2e9f1;
	border-radius: 16px;
	background: #fff;
}

.seo-metric span {
	display: block;
	color: #7c8da4;
	font-size: 11px;
}

.seo-metric strong {
	display: block;
	margin-top: 5px;
	font-size: 24px;
}

.seo-metric em {
	color: #0aa68f;
	font-size: 11px;
	font-style: normal;
	font-weight: 800;
}

.seo-chart-card {
	margin-top: 14px;
	padding: 18px;
	border: 1px solid #e2e9f1;
	border-radius: 18px;
	background: #fff;
}

.seo-chart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
	font-size: 12px;
	font-weight: 800;
}

.seo-chart {
	position: relative;
	height: 190px;
	overflow: hidden;
	border-bottom: 1px solid #e9eef4;
}

.seo-chart::before {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(to bottom, transparent 0 45px, #eef2f7 46px);
}

.seo-chart svg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.seo-search-table {
	display: grid;
	gap: 9px;
	margin-top: 16px;
}

.seo-search-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 70px 62px;
	align-items: center;
	gap: 10px;
	font-size: 11px;
}

.seo-search-row span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.seo-bar {
	height: 7px;
	overflow: hidden;
	border-radius: 99px;
	background: #e9eef4;
}

.seo-bar i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--seo-secondary), var(--seo-primary));
}

.seo-floating-card {
	position: absolute;
	z-index: 3;
	max-width: 200px;
	padding: 15px 17px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 18px;
	color: #fff;
	background: rgba(10, 22, 39, .9);
	box-shadow: var(--seo-shadow);
	backdrop-filter: blur(14px);
}

.seo-floating-card strong {
	display: block;
	font-size: 22px;
}

.seo-floating-card span {
	color: #96a6ba;
	font-size: 11px;
}

.seo-floating-card--one {
	top: 66px;
	right: -20px;
}

.seo-floating-card--two {
	bottom: 54px;
	left: -20px;
}

/* ---------- Trustbar ---------- */

.seo-trustbar {
	position: relative;
	z-index: 5;
	margin-top: -38px;
}

.seo-trustbar__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
	align-items: center;
	gap: 34px;
	padding: 25px 30px;
	border: 1px solid var(--seo-line);
	border-radius: 22px;
	background: #fff;
	box-shadow: var(--seo-shadow-sm);
}

.seo-trustbar p {
	color: var(--seo-muted);
	font-size: 13px;
	font-weight: 700;
}

.seo-tools {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
}

.seo-tool {
	padding: 9px 13px;
	border-radius: 10px;
	color: #34465d;
	background: #f3f6fa;
	font-size: 12px;
	font-weight: 850;
}

/* ---------- About specialist ---------- */

.seo-about__inner {
	display: grid;
	grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
	gap: 64px;
	align-items: center;
}

.seo-about__media {
	min-width: 0;
	border-radius: var(--seo-radius);
	overflow: hidden;
	box-shadow: var(--seo-shadow-sm);
	aspect-ratio: 853 / 1280;
	max-width: 420px;
}

.seo-about__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 20%;
}

.seo-about__content {
	min-width: 0;
}

.seo-about__benefits {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 20px;
	margin: 24px 0 32px;
}

.seo-about__benefits li {
	position: relative;
	padding-left: 26px;
	font-size: .94rem;
	color: var(--seo-text);
}

.seo-about__benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--seo-primary);
}

.seo-about__stats {
	display: grid;
	grid-template-columns: auto auto 1fr;
	margin-bottom: 32px;
	background: var(--seo-surface-2);
	border: 1px solid var(--seo-line);
	border-radius: var(--seo-radius-sm);
	overflow: hidden;
}

.seo-about__stat {
	min-width: 0;
	padding: 20px 24px;
	border-left: 1px solid var(--seo-line);
}

.seo-about__stat:first-child {
	border-left: none;
}

.seo-about__stats dt {
	margin: 0;
	padding: 0;
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--seo-secondary);
	line-height: 1.2;
}

.seo-about__stats dd {
	margin: 4px 0 0;
	padding: 0;
	font-size: .8rem;
	color: var(--seo-muted);
}

.seo-about__stat--geo {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.seo-about__stat--geo dt {
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--seo-muted);
}

.seo-about__stat--geo dd {
	margin-top: 6px;
	font-size: .92rem;
	font-weight: 600;
	color: var(--seo-text);
	line-height: 1.4;
}

/* ---------- Benefits ---------- */

.seo-benefits {
	display: grid;
	grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
	gap: 70px;
	align-items: start;
}

.seo-benefits__intro {
	position: sticky;
	top: 112px;
	min-width: 0;
}

.seo-benefits__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.seo-benefit {
	min-width: 0;
	padding: 28px;
	border: 1px solid var(--seo-line);
	border-radius: var(--seo-radius-sm);
	background: #fff;
	transition: transform var(--seo-transition), box-shadow var(--seo-transition);
}

.seo-benefit:hover {
	transform: translateY(-4px);
	box-shadow: var(--seo-shadow-sm);
}

.seo-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	margin-bottom: 22px;
	border-radius: 15px;
	color: var(--seo-primary-dark);
	background: var(--seo-primary-soft);
}

.seo-icon svg {
	width: 23px;
	height: 23px;
}

.seo-benefit p {
	color: var(--seo-muted);
	font-size: 15px;
}

/* ---------- Services ---------- */

.seo-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.seo-service-card {
	position: relative;
	overflow: hidden;
	min-width: 0;
	min-height: 350px;
	display: flex;
	flex-direction: column;
	padding: 30px;
	border: 1px solid var(--seo-line);
	border-radius: var(--seo-radius);
	background: #fff;
}

.seo-service-card::after {
	content: attr(data-num);
	position: absolute;
	right: 20px;
	bottom: -18px;
	color: #f0f4f8;
	font-size: 108px;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.seo-service-card--featured {
	color: #fff;
	border-color: transparent;
	background: linear-gradient(145deg, #17264a, #6f50eb);
}

.seo-service-card--featured::after {
	color: rgba(255, 255, 255, .08);
}

.seo-service-card .seo-icon {
	position: relative;
	z-index: 1;
}

.seo-service-card--featured .seo-icon {
	color: #fff;
	background: rgba(255, 255, 255, .14);
}

.seo-service-card h3,
.seo-service-card p,
.seo-service-list,
.seo-service-card .seo-text-link {
	position: relative;
	z-index: 1;
}

.seo-service-card p {
	color: var(--seo-muted);
}

.seo-service-card--featured p,
.seo-service-card--featured .seo-service-list {
	color: #d8def1;
}

.seo-service-list {
	display: grid;
	gap: 8px;
	margin: 20px 0 28px;
	color: #52657b;
	font-size: 14px;
	flex-grow: 1;
}

.seo-service-list li {
	display: flex;
	gap: 9px;
}

.seo-service-list li::before {
	content: "✓";
	color: var(--seo-primary-dark);
	font-weight: 900;
}

.seo-service-card--featured .seo-service-list li::before {
	color: #72f0de;
}

.seo-text-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	border: none;
	background: none;
	padding: 0;
	color: var(--seo-primary-dark);
	font-weight: 850;
	font-size: 15px;
	min-height: 44px;
}

.seo-service-card--featured .seo-text-link {
	color: #fff;
}

/* ---------- Process ---------- */

.seo-process-wrap {
	position: relative;
}

.seo-process-line {
	position: absolute;
	top: 40px;
	left: 8%;
	right: 8%;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .24) 12%, rgba(255, 255, 255, .24) 88%, transparent);
}

.seo-process-grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.seo-step {
	min-width: 0;
	padding-top: 6px;
}

.seo-step__num {
	width: 68px;
	height: 68px;
	display: grid;
	place-items: center;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 255, 255, .15);
	border-radius: 21px;
	color: #061b17;
	background: var(--seo-primary);
	font-size: 14px;
	font-weight: 900;
	box-shadow: 0 13px 30px rgba(45, 212, 191, .16);
}

.seo-step h3 {
	font-size: 19px;
}

.seo-step p {
	color: #94a4b9;
	font-size: 13px;
}

/* ---------- Cases ---------- */

.seo-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.seo-case-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--seo-line);
	border-radius: var(--seo-radius);
	background: #fff;
	box-shadow: var(--seo-shadow-sm);
}

.seo-case-visual {
	position: relative;
	min-height: 260px;
	padding: 26px;
	background: linear-gradient(145deg, #eef4ff, #e8fffb);
}

.seo-case-card:nth-child(2) .seo-case-visual {
	background: linear-gradient(145deg, #f3edff, #eff4ff);
}

.seo-case-card:nth-child(3) .seo-case-visual {
	background: linear-gradient(145deg, #fff4e9, #eef9ff);
}

.seo-case-browser {
	overflow: hidden;
	border: 8px solid #fff;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 18px 48px rgba(39, 54, 76, .16);
}

.seo-mini-browser-top {
	height: 24px;
	border-bottom: 1px solid #e8eef5;
	background: #fff;
}

.seo-case-shot {
	display: block;
	width: 100%;
	padding: 0;
	border: none;
	background: #fff;
	cursor: zoom-in;
	min-height: 44px;
}

.seo-case-shot img {
	width: 100%;
	height: auto;
	object-fit: contain;
	background: #fff;
}

.seo-case-badge {
	position: absolute;
	right: 24px;
	bottom: -18px;
	z-index: 2;
	padding: 12px 15px;
	border-radius: 14px;
	color: #fff;
	background: #0a1728;
	box-shadow: var(--seo-shadow-sm);
	font-weight: 900;
	max-width: calc(100% - 48px);
}

.seo-case-badge small {
	display: block;
	color: #9aabba;
	font-size: 10px;
	font-weight: 700;
}

.seo-case-content {
	padding: 34px 30px 30px;
}

.seo-case-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 17px;
}

.seo-case-meta span {
	padding: 6px 10px;
	border-radius: 999px;
	color: #53647a;
	background: #f2f5f8;
	font-size: 11px;
	font-weight: 800;
}

.seo-case-result {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin: 25px 0;
}

.seo-case-result div {
	min-width: 0;
	padding: 12px 10px;
	border-radius: 13px;
	background: var(--seo-surface-2);
	border: 1px solid var(--seo-line);
}

.seo-case-result strong {
	display: block;
	line-height: 1.25;
	font-size: 17px;
}

.seo-case-result span {
	display: block;
	margin-top: 3px;
	color: var(--seo-muted);
	font-size: 11px;
	line-height: 1.3;
}

/* ---------- Reviews ---------- */

.seo-reviews-layout {
	display: grid;
	grid-template-columns: minmax(0, .68fr) minmax(0, 1.32fr);
	gap: 44px;
	align-items: stretch;
}

.seo-rating-card {
	min-width: 0;
	padding: 38px;
	border-radius: var(--seo-radius);
	color: #fff;
	background: linear-gradient(150deg, #152444, #0b1424);
}

.seo-stars {
	color: var(--seo-accent);
	font-size: 25px;
	letter-spacing: 2px;
}

.seo-rating-card .seo-big {
	display: block;
	margin: 24px 0 8px;
	font-size: 72px;
	font-weight: 900;
	line-height: 1;
}

.seo-rating-card p {
	margin-bottom: 24px;
	color: #a9b6c8;
}

.seo-review-list {
	display: grid;
	gap: 18px;
	min-width: 0;
}

.seo-review {
	padding: 30px;
	border: 1px solid var(--seo-line);
	border-radius: var(--seo-radius-sm);
	background: #fff;
}

.seo-review blockquote {
	margin: 0 0 22px;
	color: #304157;
	font-size: 17px;
}

.seo-review-author {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.seo-review-author strong {
	display: block;
}

.seo-review-author span {
	color: var(--seo-muted);
	font-size: 12px;
}

/* ---------- Calculator ---------- */

.seo-calculator {
	display: grid;
	grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
	overflow: hidden;
	border-radius: 30px;
	background: #fff;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .2);
}

.seo-calculator__form {
	min-width: 0;
	padding: 42px;
	color: var(--seo-text);
}

.seo-calculator__result {
	min-width: 0;
	padding: 42px;
	color: #fff;
	background: linear-gradient(145deg, #15334b, #6b4ce2);
}

.seo-calc-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.seo-field {
	min-width: 0;
	display: grid;
	gap: 8px;
}

.seo-field.seo-field--full {
	grid-column: 1 / -1;
}

.seo-field label {
	color: #42546a;
	font-size: 13px;
	font-weight: 850;
}

.seo-form-input,
.seo-form__input {
	width: 100%;
	min-height: 50px;
	padding: 12px 14px;
	border: 1px solid var(--seo-line);
	border-radius: 13px;
	outline: 0;
	background: #fff;
	color: var(--seo-text);
	font-weight: 400;
}

.seo-form-input:focus,
.seo-form__input:focus {
	border-color: var(--seo-primary);
	box-shadow: 0 0 0 4px rgba(45, 212, 191, .12);
}

.seo-form-input::placeholder,
.seo-form__input::placeholder {
	color: #93a2b6;
	font-weight: 400;
}

textarea.seo-form-input,
textarea.seo-form__input {
	height: 110px;
	min-height: 80px;
	max-height: 260px;
	resize: vertical;
}

input[type="range"].seo-form-range {
	width: 100%;
	min-height: 44px;
	padding: 0;
	accent-color: var(--seo-primary-dark);
}

.seo-range-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	color: var(--seo-muted);
	font-size: 12px;
}

.seo-range-row strong {
	color: var(--seo-text);
}

.seo-calc-label {
	color: #c9d5e7;
	font-size: 13px;
}

.seo-calc-price {
	margin: 10px 0 4px;
	font-size: clamp(34px, 5vw, 52px);
	font-weight: 900;
	line-height: 1;
}

.seo-calc-range {
	color: #aebbd0;
	font-size: 14px;
}

.seo-calc-details {
	display: grid;
	gap: 12px;
	margin: 32px 0;
	padding: 22px 0;
	border-top: 1px solid rgba(255, 255, 255, .13);
	border-bottom: 1px solid rgba(255, 255, 255, .13);
}

.seo-calc-details div {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	color: #cbd6e7;
	font-size: 13px;
}

.seo-calc-details strong {
	color: #fff;
}

.seo-calculator__result .seo-btn {
	width: 100%;
}

.seo-calc-note {
	margin-top: 15px;
	color: #99aac0;
	font-size: 11px;
}

/* ---------- Blog / posts ---------- */

.seo-posts-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.seo-post {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--seo-line);
	border-radius: var(--seo-radius-sm);
	background: #fff;
	transition: transform var(--seo-transition), box-shadow var(--seo-transition);
}

.seo-post:hover {
	transform: translateY(-4px);
	box-shadow: var(--seo-shadow-sm);
}

.seo-post-visual {
	min-height: 190px;
	display: grid;
	place-items: center;
	padding: 28px;
	background: #0c1729;
	overflow: hidden;
}

.seo-post-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.seo-post-visual svg {
	width: 150px;
	height: 120px;
}

.seo-post:nth-child(2) .seo-post-visual {
	background: #17234d;
}

.seo-post:nth-child(3) .seo-post-visual {
	background: #0b3b36;
}

.seo-post-content {
	padding: 25px;
}

.seo-post-meta {
	display: flex;
	gap: 10px;
	margin-bottom: 13px;
	color: var(--seo-muted);
	font-size: 11px;
	font-weight: 750;
}

.seo-post h3 {
	font-size: 20px;
}

.seo-post h3 a {
	color: inherit;
}

.seo-post p {
	color: var(--seo-muted);
	font-size: 14px;
}

.seo-blog__empty {
	text-align: center;
	color: var(--seo-muted);
}

/* ---------- Single post ---------- */

.seo-post-single__header {
	max-width: 800px;
	margin: 0 auto 40px;
	text-align: center;
}

.seo-post-single__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 24px;
	color: var(--seo-primary-dark);
	font-weight: 700;
	font-size: 14px;
}

.seo-post-single__back svg {
	width: 16px;
	height: 16px;
}

.seo-post-single__meta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-bottom: 18px;
	color: var(--seo-muted);
	font-size: 13px;
	font-weight: 700;
}

.seo-post-single__meta span {
	padding: 6px 12px;
	border-radius: 999px;
	background: var(--seo-surface-2);
}

.seo-post-single__title {
	font-size: clamp(28px, 4vw, 44px);
	margin-bottom: 0;
}

.seo-post-single__thumbnail {
	max-width: 900px;
	margin: 40px auto;
	border-radius: var(--seo-radius);
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.seo-post-single__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.seo-prose {
	max-width: 760px;
	margin: 0 auto;
	color: var(--seo-text);
	font-size: 17px;
	line-height: 1.75;
}

.seo-prose > * + * {
	margin-top: 22px;
}

.seo-prose h2 {
	font-size: 28px;
	margin-top: 48px;
}

.seo-prose h3 {
	font-size: 22px;
	margin-top: 36px;
}

.seo-prose p,
.seo-prose li {
	color: var(--seo-text);
}

.seo-prose ul,
.seo-prose ol {
	padding-left: 22px;
	list-style: revert;
}

.seo-prose li + li {
	margin-top: 8px;
}

.seo-prose a {
	color: var(--seo-primary-dark);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.seo-prose blockquote {
	margin: 0;
	padding: 18px 24px;
	border-left: 3px solid var(--seo-primary);
	background: var(--seo-surface-2);
	border-radius: 0 var(--seo-radius-sm) var(--seo-radius-sm) 0;
	color: var(--seo-muted);
	font-style: italic;
}

.seo-prose img {
	width: 100%;
	height: auto;
	border-radius: var(--seo-radius-sm);
}

.seo-prose figcaption {
	margin-top: 8px;
	text-align: center;
	color: var(--seo-muted);
	font-size: 13px;
}

.seo-prose pre {
	padding: 18px;
	border-radius: var(--seo-radius-sm);
	background: var(--seo-bg);
	color: #e2e9f1;
	overflow-x: auto;
	font-size: 14px;
}

.seo-prose code {
	padding: 2px 6px;
	border-radius: 6px;
	background: var(--seo-surface-2);
	font-size: 14px;
}

.seo-prose pre code {
	padding: 0;
	background: none;
}

.seo-post-single__tags {
	max-width: 760px;
	margin: 40px auto 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.seo-post-single__tags a {
	padding: 7px 14px;
	border-radius: 999px;
	background: var(--seo-surface-2);
	color: var(--seo-muted);
	font-size: 13px;
	font-weight: 700;
}

.seo-post-single__tags a:hover {
	color: var(--seo-primary-dark);
}

.seo-post-single__nav {
	max-width: 900px;
	margin: 56px auto 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.seo-post-single__nav-link {
	min-width: 0;
	padding: 22px;
	border: 1px solid var(--seo-line);
	border-radius: var(--seo-radius-sm);
	transition: transform var(--seo-transition), box-shadow var(--seo-transition);
}

.seo-post-single__nav-link:hover {
	transform: translateY(-2px);
	box-shadow: var(--seo-shadow-sm);
}

.seo-post-single__nav-link--next {
	text-align: right;
}

.seo-post-single__nav-label {
	display: block;
	margin-bottom: 6px;
	color: var(--seo-muted);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.seo-post-single__nav-title {
	display: block;
	font-weight: 700;
	color: var(--seo-text);
}

/* ---------- FAQ ---------- */

.seo-faq-list {
	max-width: 900px;
	margin-inline: auto;
	border-top: 1px solid var(--seo-line);
}

.seo-faq {
	border-bottom: 1px solid var(--seo-line);
}

.seo-faq h3 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
}

.seo-faq button {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 44px;
	padding: 24px 0;
	border: 0;
	color: var(--seo-text);
	background: transparent;
	text-align: left;
	font-size: 18px;
	font-weight: 850;
}

.seo-faq button span:last-child {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	flex: none;
	border-radius: 50%;
	color: var(--seo-primary-dark);
	background: var(--seo-primary-soft);
	transition: transform var(--seo-transition);
}

.seo-faq.is-open button span:last-child {
	transform: rotate(45deg);
}

.seo-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .28s ease;
}

.seo-faq__answer p {
	max-width: 760px;
	padding: 0 0 24px;
	margin: 0;
	color: var(--seo-muted);
}

/* ---------- Final CTA ---------- */

.seo-cta {
	position: relative;
	overflow: hidden;
	padding: 70px;
	border-radius: 34px;
	color: #fff;
	background: linear-gradient(135deg, #111f3b, #7656ef);
}

.seo-cta::after {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	right: -90px;
	top: -110px;
	border: 1px solid rgba(255, 255, 255, .17);
	border-radius: 50%;
	box-shadow: 0 0 0 44px rgba(255, 255, 255, .04), 0 0 0 88px rgba(255, 255, 255, .025);
}

.seo-cta__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	gap: 40px;
}

.seo-cta h2 {
	max-width: 720px;
	margin-bottom: 14px;
}

.seo-cta p {
	max-width: 670px;
	margin-bottom: 0;
	color: #cad3e5;
}

/* ---------- Footer ---------- */

.seo-footer {
	padding: 62px 0 30px;
	color: #c2cedd;
	background: #050c17;
}

.seo-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.5fr) minmax(0, .7fr) minmax(0, .8fr);
	gap: 50px;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.seo-footer-grid > div {
	min-width: 0;
}

.seo-footer p {
	max-width: 430px;
	margin-top: 16px;
	color: #8191a8;
}

.seo-footer h3 {
	color: #fff;
	font-size: 15px;
	letter-spacing: 0;
	margin-bottom: 12px;
}

.seo-footer-links {
	display: grid;
	gap: 9px;
	color: #9aabc0;
	font-size: 14px;
}

.seo-footer-links a:hover {
	color: var(--seo-primary);
}

.seo-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px 30px;
	padding-top: 26px;
	color: #687a91;
	font-size: 12px;
}

.seo-footer-bottom a {
	color: inherit;
}

.seo-footer-bottom a:hover {
	color: var(--seo-primary);
}

/* ---------- Floating contact ---------- */

.seo-floating-contact {
	position: fixed;
	z-index: 900;
	right: 22px;
	bottom: 22px;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px 15px 11px 11px;
	border: 0;
	border-radius: 999px;
	color: #061a16;
	background: var(--seo-primary);
	box-shadow: 0 16px 35px rgba(45, 212, 191, .3);
	font-weight: 900;
}

.seo-floating-contact i {
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, .48);
	font-style: normal;
	flex-shrink: 0;
}

/* ---------- Modal ---------- */

.seo-modal[hidden] {
	display: none;
}

.seo-modal {
	position: fixed;
	z-index: 2000;
	inset: 0;
	display: grid;
	place-items: center;
	padding: 20px;
}

.seo-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(2, 8, 16, .72);
	backdrop-filter: blur(8px);
}

.seo-modal-card {
	position: relative;
	z-index: 1;
	width: min(100%, 560px);
	max-height: 88vh;
	overflow-y: auto;
	padding: 36px;
	border-radius: 24px;
	background: #fff;
	box-shadow: var(--seo-shadow);
}

.seo-modal-card--lightbox {
	width: min(100%, 960px);
	padding: 16px;
	background: var(--seo-bg);
}

.seo-modal-card--lightbox img {
	width: 100%;
	height: auto;
	border-radius: 14px;
}

.seo-modal-close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 2;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 0;
	border-radius: 50%;
	background: var(--seo-surface-2);
	font-size: 22px;
	line-height: 1;
}

.seo-modal-card--lightbox .seo-modal-close {
	background: rgba(255, 255, 255, .12);
	color: #fff;
}

.seo-modal-card h2 {
	font-size: 32px;
	padding-right: 32px;
}

.seo-modal-card > .seo-muted {
	margin-bottom: 24px;
}

/* CF7 form styling */

.seo-modal-form .wpcf7-form label {
	display: block;
	color: #42546a;
	font-size: 13px;
	font-weight: 850;
	margin-bottom: 0;
}

.seo-modal-form .wpcf7-form-control-wrap {
	display: block;
	margin-top: 6px;
}

.seo-form__field {
	margin-bottom: 18px;
}

.seo-form__field--hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.seo-form__field--consent {
	font-size: .85rem;
	color: var(--seo-muted);
}

.seo-form__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.seo-form__consent input {
	margin-top: 3px;
	width: 18px;
	height: 18px;
	accent-color: var(--seo-secondary);
}

.seo-form__submit-row {
	margin-top: 20px;
}

.seo-modal-form .wpcf7-form-control.wpcf7-submit {
	width: 100%;
	min-height: 52px;
	border-radius: 999px;
	border: none;
	background: var(--seo-primary);
	color: #041812;
	font-weight: 800;
	font-size: 1rem;
	cursor: pointer;
	transition: transform var(--seo-transition), background-color var(--seo-transition);
}

.seo-modal-form .wpcf7-form-control.wpcf7-submit:hover {
	transform: translateY(-2px);
	background: #5be3d0;
}

.seo-modal-form .wpcf7-form-control.wpcf7-submit:disabled {
	opacity: .6;
	cursor: not-allowed;
	transform: none;
}

.seo-modal-form .wpcf7-not-valid-tip {
	color: var(--seo-danger);
	font-size: .78rem;
	font-weight: 500;
	margin-top: 4px;
}

.seo-modal-form .wpcf7-response-output {
	border-radius: 12px;
	padding: 12px 14px;
	font-size: 13px;
	font-weight: 750;
	margin-top: 18px;
	border: 1px solid var(--seo-line);
}

.seo-modal-form form.sent .wpcf7-response-output {
	border-color: var(--seo-primary);
	background: var(--seo-primary-soft);
	color: #086d61;
}

.seo-modal-form form.invalid .wpcf7-response-output,
.seo-modal-form form.failed .wpcf7-response-output,
.seo-modal-form form.spam .wpcf7-response-output {
	border-color: var(--seo-danger);
	background: rgba(239, 91, 91, .08);
}

.seo-modal-form form.submitting .wpcf7-form-control.wpcf7-submit {
	opacity: .7;
}

/* ---------- Animations ---------- */

.seo-benefit,
.seo-service-card,
.seo-case-card,
.seo-step,
.seo-post {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 500ms ease, transform 500ms ease;
}

.seo-benefit.is-visible,
.seo-service-card.is-visible,
.seo-case-card.is-visible,
.seo-step.is-visible,
.seo-post.is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}

	.seo-benefit,
	.seo-service-card,
	.seo-case-card,
	.seo-step,
	.seo-post {
		opacity: 1;
		transform: none;
	}
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1050px) {
	.seo-nav {
		display: none;
	}

	.seo-menu-btn {
		display: flex;
	}

	.seo-header__actions .seo-lang-switcher,
	.seo-header__actions > .seo-btn {
		display: none;
	}

	.seo-nav.seo-mobile-open {
		position: fixed;
		inset: 78px 0 0;
		z-index: 999;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 24px;
		background: var(--seo-bg-soft);
		overflow-y: auto;
	}

	.seo-nav.seo-mobile-open a {
		padding: 15px 0;
		border-bottom: 1px solid rgba(255, 255, 255, .08);
		font-size: 18px;
		min-height: 44px;
	}

	.seo-nav.seo-mobile-open > .seo-lang-switcher {
		display: inline-flex;
		align-self: flex-start;
		margin-top: 20px;
	}

	.seo-nav.seo-mobile-open > .seo-lang-switcher a {
		border-bottom: none;
		padding: 6px 10px;
		min-height: 28px;
		font-size: 12px;
	}

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

	.seo-hero__copy {
		max-width: 820px;
	}

	.seo-dashboard {
		max-width: 720px;
		margin-inline: auto;
	}

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

	.seo-benefits__intro {
		position: static;
	}

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

	.seo-about__media {
		max-width: 320px;
		margin: 0 auto;
	}

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

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

	.seo-process-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 36px 18px;
	}

	.seo-process-line {
		display: none;
	}

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

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

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

@media (max-width: 760px) {
	.seo-section {
		padding: 78px 0;
	}

	.seo-hero {
		min-height: auto;
		padding: 148px 0 78px;
	}

	.seo-hero__proof {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 16px;
	}

	.seo-proof strong {
		font-size: 22px;
	}

	.seo-dashboard {
		min-height: 430px;
	}

	.seo-floating-card {
		display: none;
	}

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

	.seo-metric:nth-child(n+2) {
		display: none;
	}

	.seo-trustbar {
		margin-top: 18px;
	}

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

	.seo-tools {
		justify-content: flex-start;
	}

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

	.seo-about__stat {
		border-left: none;
		border-top: 1px solid var(--seo-line);
	}

	.seo-about__stat:first-child {
		border-top: none;
	}

	.seo-about__benefits,
	.seo-benefits__grid,
	.seo-services-grid,
	.seo-cases-grid,
	.seo-posts-grid {
		grid-template-columns: minmax(0, 1fr);
	}

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

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

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

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

	.seo-post-single__nav-link--next {
		text-align: left;
	}

	.seo-prose {
		font-size: 16px;
	}

	.seo-field.seo-field--full {
		grid-column: auto;
	}

	.seo-calculator__form,
	.seo-calculator__result {
		padding: 28px 22px;
	}

	.seo-cta {
		padding: 44px 26px;
	}

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

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

	.seo-footer-bottom {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.seo-container {
		width: min(calc(100% - 24px), var(--seo-container-w));
	}

	.seo-landing h1 {
		font-size: 38px;
	}

	.seo-landing h2 {
		font-size: 30px;
	}

	.seo-hero__actions .seo-btn {
		width: 100%;
	}

	.seo-hero__proof {
		gap: 8px;
	}

	.seo-proof span {
		font-size: 10px;
	}

	.seo-dashboard {
		display: none;
	}

	.seo-services-grid,
	.seo-benefits__grid,
	.seo-process-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.seo-floating-contact span {
		display: none;
	}

	.seo-floating-contact {
		padding: 10px;
	}

	.seo-modal-card {
		padding: 24px;
		max-height: 92vh;
	}
}
