@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:wght@400;500;600;700&display=swap');

.seo-page {
	--seo-green: #7aac63;
	--seo-green-dark: #34611f;
	--seo-lime: #8bc34a;
	--seo-ink: #141414;
	--seo-muted: #6f6f6f;
	--seo-line: #e4e4e4;
	--seo-dark: #0e0e0e;
	--seo-maxw: 1760px;
	--seo-radius-lg: 24px;
	--seo-transition: .25s ease;

	font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
	color: var(--seo-ink);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip;
}

.seo-page :where(h1, h2, h3, p, a, blockquote, td, th, span) {
	overflow-wrap: break-word;
}

.seo-page *,
.seo-page *::before,
.seo-page *::after {
	box-sizing: border-box;
}

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

/* accessible visually-hidden helper */
.seo-visually-hidden {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}

/* ---------- Layout primitives ---------- */
.seo-container {
	width: 100%;
	max-width: var(--seo-maxw);
	margin: 0 auto;
	padding: 0 clamp(22px, 4vw, 50px);
}

.seo-container--narrow {
	max-width: 980px;
}

.seo-section {
	padding: clamp(40px, 5vw, 50px) 0;
}

.seo-section__header {
	margin-bottom: clamp(32px, 4vw, 56px);
}

.seo-section__title {
	font-size: clamp(32px, 4.4vw, 60px);
	font-weight: 500;
	line-height: 1.1;
	margin: 0;
}

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

.seo-section__lead {
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.7;
	color: #333;
	max-width: 1200px;
	margin: 20px auto 0;
	text-align: center;
}

/* ---------- Buttons ---------- */
.seo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: background-color var(--seo-transition), color var(--seo-transition), transform var(--seo-transition);
}

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

.seo-btn--outline-light {
	border: 2px solid rgba(255, 255, 255, .85);
	color: #fff;
	border-radius: 20px;
	padding: clamp(12px, 1.2vw, 16px) clamp(28px, 3vw, 40px);
	font-size: clamp(16px, 1.4vw, 20px);
	background: transparent;
}

.seo-btn--outline-light:hover {
	background: rgba(255, 255, 255, 255);
	color: #000;
}

.seo-btn--dark {
	background: #111;
	color: #fff;
	border: none;
	border-radius: 30px;
	padding: clamp(16px, 1.6vw, 20px) clamp(34px, 3.4vw, 48px);
	font-size: clamp(17px, 1.6vw, 22px);
}

.seo-btn--dark:hover {
	background: #000;
}

/* ---------- Hero ---------- */
.seo-hero {
	position: relative;
	background: #000;
	color: #fff;
	overflow: hidden;
}

.seo-hero__bg {
	position: absolute;
	inset: 0;
}

.seo-hero__bg img {
	width: auto;
	height: 100%;
}

.seo-hero__inner {
	position: relative;
	text-align: center;
	padding-top: clamp(120px, 14vw, 180px);
	padding-bottom: clamp(60px, 10vw, 110px);
}

.seo-hero__title {
	font-size: clamp(32px, 5vw, 68px);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 auto 34px;
	max-width: 1200px;
}

.seo-hero__subtitle {
	font-size: clamp(16px, 1.7vw, 24px);
	line-height: 1.5;
	color: #cfcfcf;
	max-width: 900px;
	margin: 0 auto 48px;
	text-align: center;
}

/* ---------- When (pills) ---------- */

.seo-section-pills {
	position: relative;
}

.seo-section-pills .seo-section-pills__img {
	position: absolute;
	bottom: -100%;
	left: -5%;
	z-index: -1;
}

.seo-section-pills .seo-section-pills__img {
	width: 100%;
	height: auto;
}

@media (max-width: 560px) {
	.seo-section-pills .seo-section__title {
		text-align: center;
	}

	.seo-section-pills .seo-section-pills__img {
		bottom: -5%;
	}

	.seo-section-pills .seo-section-pills__img {
		max-width: 50%;
	}

	.seo-pills__item {
		width: 100%;
	}
}

.seo-pills {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: clamp(20px, 2.5vw, 40px);
	justify-content: space-between;
}

.seo-pills__item {
	display: inline-flex;
	align-items: center;
	gap: 20px;
	padding: clamp(16px, 1.6vw, 22px) clamp(24px, 2.5vw, 40px);
	border: 2px solid #000;
	border-radius: 40px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, .05);
	font-size: clamp(15px, 1.2vw, 20px);
	font-weight: 700;
	background: #fff;
	transition: transform var(--seo-transition), box-shadow var(--seo-transition);
}

.seo-pills__item:hover {
	transform: translateY(-1px);
}

.seo-pills__icon {
	min-width: 40px;
	width: 40px;
	height: 40px;
	background-size: contain;
	background-repeat: no-repeat;
}

/* ---------- Services (numbered) ---------- */

.seo-section-services .seo-section__title,
.seo-section-services .seo-section__lead {
	text-align: right;
}

.seo-section-services .seo-section__lead {
	max-width: 1000px;
	margin: 20px 0 0 auto;
}

@media (max-width: 560px) {

	.seo-section-services .seo-section__title,
	.seo-section-services .seo-section__lead {
		text-align: center;
	}

	.seo-section-services .seo-section__lead {
		margin: 20px auto 0;
	}
}

.seo-services {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
	gap: clamp(18px, 2vw, 30px);
}

.seo-services__item {
	display: flex;
	align-items: center;
	gap: clamp(20px, 1.5vw, 25px);
	transition: transform var(--seo-transition), box-shadow var(--seo-transition), border-color var(--seo-transition);
}

.seo-services__item:hover {
	transform: translateY(-1px);
}

.seo-services__num {
	width: 80px;
	height: 80px;
	display: grid;
	place-items: center;
	border: 2px solid #000;
	border-radius: 10px;
	box-shadow: 0 5px 5px 0 #00000040;

	font-size: clamp(30px, 2vw, 40px);
	font-weight: 700;
	flex-shrink: 0;
}

.seo-services__label {
	font-size: clamp(18px, 1.5vw, 25px);
	font-weight: 600;
}

@media (max-width: 560px) {
	.seo-services {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.seo-services__item {
		gap: clamp(10px, 1.5vw, 25px);
	}

	.seo-services__num {
		width: 30px;
		height: 30px;
		font-size: clamp(15px, 2vw, 40px);
	}

	.seo-services__label {
		font-size: clamp(15px, 1.5vw, 25px);
	}
}

/* ---------- Approach (two intro columns) ---------- */
.seo-approach {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
	gap: clamp(24px, 4vw, 80px);
	margin-bottom: clamp(48px, 6vw, 96px);
}

.seo-approach__title {
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 600;
	margin: 0 0 16px;
}

@media (max-width: 560px) {
	.seo-approach__title {
		text-align: center;
	}
}

.seo-approach__text {
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.7;
	color: #000;
	margin: 0;

	padding: 15px;
	border: 1px solid #000;
	border-radius: 10px;
	box-shadow: 5px 5px 5px 0 #00000040;
}

/* ---------- Process flow / reusable component ---------- */

.seo-process__header {
	margin-bottom: clamp(20px, 4vw, 40px);
}

.seo-flow-wrap {
	--flow-max-width: 1440px;

	--flow-row-height: clamp(130px, 10vw, 155px);
	--flow-side-padding: clamp(20px, 3.5vw, 55px);

	--flow-dot-size: clamp(45px, 3.5vw, 60px);
	--flow-dot-radius: clamp(25px, 1.75vw, 30px);

	--flow-dot-bg: var(--seo-green-dark, #225d13);
	--flow-dot-color: #ffffff;

	--flow-text: #111111;
	--flow-muted: var(--seo-muted, #7e7e7e);

	--flow-line-muted: #6f8980;
	--flow-line-dark: #5c704b;
	--flow-line-green: var(--seo-green, #6caf63);

	--flow-stroke-width: 2;
	--flow-arrow-width: 1.5;
	--flow-dash: 4 5;

	position: relative;
	isolation: isolate;
	box-sizing: border-box;
	width: 100%;
	max-width: var(--flow-max-width);
	margin: 0 auto;
	padding: 0 var(--flow-side-padding);
}

.seo-flow-wrap *,
.seo-flow-wrap *::before,
.seo-flow-wrap *::after {
	box-sizing: border-box;
}

/* SVG lines layer */
.seo-flow__map {
	position: absolute;
	z-index: 1;
	top: 0;
	left: calc(var(--flow-side-padding) + var(--flow-dot-radius));
	width: calc(100% - var(--flow-side-padding) - var(--flow-side-padding) - var(--flow-dot-size));
	height: 100%;
	overflow: visible;
	pointer-events: none;
}

.seo-flow__path,
.seo-flow__arrow {
	fill: none;
	vector-effect: non-scaling-stroke;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.seo-flow__path {
	stroke-width: var(--flow-stroke-width);
	stroke-dasharray: var(--flow-dash);
}

.seo-flow__arrow {
	stroke-width: var(--flow-arrow-width);
	stroke-dasharray: none;
}

.seo-flow__path--muted {
	stroke: var(--flow-line-muted);
}

.seo-flow__path--dark {
	stroke: var(--flow-line-dark);
}

.seo-flow__path--green {
	stroke: var(--flow-line-green);
}

/* Ordered list */
.seo-flow {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-rows: repeat(4, var(--flow-row-height));
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

.seo-flow__row {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	min-height: var(--flow-row-height);
	margin: 0;
}

.seo-flow__row--left {
	justify-content: flex-start;
}

.seo-flow__row--right {
	justify-content: flex-end;
}

/* Step */
.seo-flow__step {
	position: relative;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: clamp(14px, 1.5vw, 22px);
	max-width: min(640px, 48%);
}

.seo-flow__row--right .seo-flow__step {
	justify-content: flex-end;
}

.seo-flow__num {
	position: relative;
	z-index: 4;
	width: var(--flow-dot-size);
	height: var(--flow-dot-size);
	flex: 0 0 var(--flow-dot-size);
	border-radius: 50%;
	background: var(--flow-dot-bg);
	color: var(--flow-dot-color);
	display: grid;
	place-items: center;
	font-size: clamp(15px, 1.1vw, 18px);
	font-weight: 600;
	line-height: 1;
}

.seo-flow__body {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.seo-flow__row--right .seo-flow__body {
	text-align: right;
}

.seo-flow__label {
	color: var(--flow-text);
	font-size: clamp(20px, 2vw, 25px);
	font-weight: 700;
	line-height: 1.15;
}

.seo-flow__desc {
	color: var(--flow-muted);
	font-size: clamp(16px, 1.2vw, 20px);
	line-height: 1.35;
}

.seo-flow__line {
	display: none !important;
}

/* ---------- Tablet ---------- */

@media (max-width: 1024px) {
	.seo-flow-wrap {
		--flow-row-height: clamp(120px, 10vw, 145px);
		--flow-side-padding: clamp(20px, 4vw, 40px);

		--flow-dot-size: clamp(40px, 4.5vw, 50px);
		--flow-dot-radius: clamp(20px, 2vw, 25px);
	}

	.seo-flow__step {
		max-width: 55%;
	}

	.seo-flow__label {
		font-size: clamp(20px, 2vw, 25px);
	}

	.seo-flow__desc {
		font-size: clamp(15px, 1.8vw, 18px);
	}
}

/* ---------- Mobile ---------- */

@media (max-width: 767px) {

	.seo-flow-wrap {
		--flow-max-width: 560px;
		--flow-row-height: clamp(125px, 25vw, 145px);
		--flow-side-padding: clamp(20px, 5vw, 40px);

		--flow-dot-size: 40px;
		--flow-dot-radius: 20px;

		max-width: var(--flow-max-width);
	}

	.seo-flow__step {
		max-width: 100%;
		gap: 20px;
	}

	.seo-flow__row--right .seo-flow__step {
		margin-left: auto;
	}

	.seo-flow__body {
		max-width: 310px;
	}

	.seo-flow__row--right .seo-flow__body {
		max-width: 300px;
	}

	.seo-flow__label {
		font-size: clamp(20px, 5.5vw, 25px);
	}

	.seo-flow__desc {
		font-size: clamp(15px, 5vw, 16px);
		line-height: 1.25;
	}
}

/* ---------- Small mobile ---------- */

@media (max-width: 560px) {
	.seo-process__header {
		text-align: center;
		margin-bottom: 20px;
	}

	.seo-flow-wrap {
		--flow-side-padding: 20px;
		--flow-row-height: 110px;

		--flow-dot-size: 40px;
		--flow-dot-radius: 20px;
	}

}

/* ---------- Pricing (table) ---------- */
@media (max-width: 560px) {
	.seo-section-pricing .seo-section__title {
		text-align: center;
	}

}

.seo-pricing {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.seo-pricing__table {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	border-collapse: separate;
	border-spacing: 0 15px;
	min-width: 640px;
}

.seo-pricing__row:nth-child(odd) {
	background: #F3F3F3;
}

.seo-pricing__row:nth-child(even),
.seo-pricing__row--head {
	background: #F3F3F3;
}

.seo-pricing__cell {
	text-align: left;
	font-weight: 500;
	font-size: clamp(15px, 1.2vw, 20px);
	padding: clamp(18px, 1.5vw, 20px) clamp(20px, 2.5vw, 40px);
	color: #000;
}

.seo-pricing__cell:first-child {
	border-radius: 20px 0 0 20px;
}

.seo-pricing__cell:last-child {
	border-radius: 0 20px 20px 0;
}

.seo-pricing__row--head .seo-pricing__cell {
	font-weight: 700;
	color: var(--seo-ink);
}

.seo-pricing__cell--name {
	font-weight: 700;
	color: var(--seo-ink);
}

.seo-pricing__row:not(.seo-pricing__row--head) {
	transition: transform var(--seo-transition), box-shadow var(--seo-transition);
}

.seo-pricing__row:not(.seo-pricing__row--head):hover {
	transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

/* ---------- Reference (light section + slider) ---------- */
@media (max-width: 560px) {
	.seo-reference .seo-section__title {
		text-align: center;
	}

}

.seo-reference .seo-section__header {
	margin: 0;
}

.seo-reference__slider {
	position: relative;
	padding: 0 clamp(44px, 5vw, 60px);
}

.seo-reference .splide__arrows {
	position: static;
}

.seo-reference .splide__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 50%;
	background: var(--seo-green);
	opacity: 1;
	transition: background-color var(--seo-transition), transform var(--seo-transition);
}

.seo-reference .splide__arrow svg {
	fill: #fff;
	width: 1em;
	height: 1em;
}

.seo-reference .splide__arrow:hover:not(:disabled) {
	background: var(--seo-green-dark);
	transform: translateY(-50%) scale(1.05);
}

.seo-reference .splide__arrow:disabled {
	opacity: .35;
	cursor: default;
}

.seo-reference .splide__arrow--prev {
	left: 0;
}

.seo-reference .splide__arrow--next {
	right: 0;
}

@media (max-width: 560px) {
	.seo-reference__slider {
		padding: 0;
	}

	.seo-reference .splide__arrows {
		display: none;
	}
}

.seo-reference__card {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: clamp(20px, 4vw, 60px);
	align-items: stretch;
	background: #fff;

	margin: 40px;
	border-radius: 40px;
	padding: clamp(20px, 4vw, 40px);
	box-shadow: 6px 6px 14px 0 #00000040;
}

@media (max-width: 560px) {
	.seo-reference__card {
		margin: 20px;
	}

}

.seo-reference__main {
	display: flex;
	flex-direction: column;
	gap: clamp(20px, 2.5vw, 30px);
}

.seo-reference__client {
	font-size: clamp(16px, 1.5vw, 20px);
	color: #7E7E7EB2;
	margin: 0;
}

.seo-reference__quote {
	font-size: clamp(16px, 1.5vw, 20px);
	line-height: 1.5;
	margin: 0;
	color: var(--seo-ink);
	quotes: none;
}

.seo-reference__logo {
	margin: auto 0 0;
}

.seo-reference__logo img {
	width: 100%;
	max-width: 250px;
	height: auto;
}

.seo-reference__stats {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: clamp(20px, 2vw, 30px);
	margin: 0;
	background: linear-gradient(180deg, #F9FFF7 35%, rgba(122, 172, 99, 0.35) 140%);

	border-radius: 20px;
	padding: clamp(20px, 2.5vw, 40px);
}

.seo-reference__stat {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.seo-reference__stat-value {
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 700;
	color: var(--seo-ink);
	display: flex;
	align-items: baseline;
	gap: 6px;
	word-break: break-word;
}

.seo-reference__stat-value a {
	color: inherit;
	text-decoration: underline;
}

.seo-reference__stat-value a:hover {
	color: var(--seo-green-dark);
}

.seo-reference__arrow {
	color: var(--seo-green);
	font-weight: 700;
}

.seo-reference__stat-label {
	font-size: clamp(14px, 1vw, 16px);
	color: var(--seo-green-dark);
	margin: 0;
}

.seo-reference .splide__pagination {
	bottom: -1em;
}

.seo-reference .splide__pagination__page {
	background: rgba(0, 0, 0, .5);
}

.seo-reference .splide__pagination__page.is-active {
	background: var(--seo-green);
	transform: scale(1.5);
}

/* ---------- Why us ---------- */
@media (max-width: 560px) {
	.seo-section-why .seo-section__title {
		text-align: center;
	}

}

.seo-why {
	display: grid;
	align-items: flex-start;
	grid-template-columns: 1fr 1.5fr;
	gap: clamp(20px, 4vw, 60px);
}

.seo-why__media {
	display: flex;
	justify-content: center;
}

.seo-why__illustration {
	width: 100%;
	max-width: 460px;
	height: auto;
}

.seo-why__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(15px, 2.5vw, 20px);
}

.seo-why__item {
	display: flex;
	align-items: center;
	gap: clamp(15px, 1.5vw, 20px);
}

.seo-why__num {
	font-size: clamp(25px, 2.5vw, 35px);
	font-weight: 700;
	color: var(--seo-green);
	flex-shrink: 0;
	min-width: 40px;
}

.seo-why__text {
	font-size: clamp(16px, 1.5vw, 20px);
	font-weight: 600;
	line-height: 1.45;
}

/* ---------- FAQ ---------- */
.seo-faq {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.seo-faq__item {
	border: 2px solid #000;
	border-radius: 20px;
	padding: 5px 10px;
	background: #fff;
	transition: border-color var(--seo-transition), box-shadow var(--seo-transition);
}

.seo-faq__item[open] {
	border-color: var(--seo-green);
	box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.seo-faq__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	font-size: clamp(15px, 1.5vw, 20px);
	font-weight: 600;
}

.seo-faq__summary::-webkit-details-marker {
	display: none;
}

.seo-faq__mark {
	position: relative;
	width: 20px;
	height: 20px;
	border: 2px solid #7AAC63;
	border-radius: 50%;
	flex-shrink: 0;
}

.seo-faq__mark::before,
.seo-faq__mark::after {
	content: '';
	position: absolute;
	background: #7AAC63;
	transition: transform var(--seo-transition);
}

.seo-faq__mark::before {
	top: 7px;
	left: 2px;
	width: 12px;
	height: 2px;
}

.seo-faq__mark::after {
	left: 7px;
	top: 2px;
	width: 2px;
	height: 12px;
}

.seo-faq__item[open] .seo-faq__mark::after {
	transform: scaleY(0);
}

.seo-faq__answer {
	padding: 0 20px 20px 60px;
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.7;
	color: #000;
	margin: 0;
}

/* ---------- Contact form ---------- */

.seo-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.seo-form__field {
	display: flex;
	flex-direction: column;
}

.seo-form__input {
	border: 1px solid #000;
	border-radius: 40px;
	padding: clamp(16px, 1.6vw, 20px) clamp(20px, 2vw, 30px);
	font-size: clamp(16px, 1.2vw, 18px);
	font-family: inherit;
	color: var(--seo-ink);
	outline: none;
	width: 100%;
	transition: border-color var(--seo-transition);
}

.seo-form__input::placeholder {
	color: var(--seo-muted);
	opacity: 1;
}

.seo-form__input::-webkit-input-placeholder {
	color: var(--seo-muted);
	opacity: 1;
}

.seo-form__input::-moz-placeholder {
	color: var(--seo-muted);
	opacity: 1;
}

.seo-form__input:-ms-input-placeholder {
	color: var(--seo-muted);
	opacity: 1;
}

.seo-form__input:focus {
	border-color: var(--seo-green-dark);
}

.seo-form__input--area {
	resize: vertical;
	border-radius: 40px;
	min-height: 200px;
}

.seo-form__note {
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	color: #000;
	margin: 15px 0 5px;
	line-height: 1.6;
}

.seo-form__note a {
	color: var(--seo-green);
	text-decoration: none;
}

.seo-form__submit {
	align-self: center;
	margin-top: 10px;

	color: #fff;
	background: #7AAC63;
}

/* ---------- Scroll-in animation ---------- */
.seo-anim {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s ease, transform .6s ease;
	will-change: opacity, transform;
}

.seo-anim.is-visible {
	opacity: 1;
	transform: none;
}

/* light stagger for grid children */
.seo-services__item:nth-child(2),
.seo-why__item:nth-child(2) {
	transition-delay: .08s;
}

.seo-services__item:nth-child(3),
.seo-why__item:nth-child(3) {
	transition-delay: .16s;
}

.seo-services__item:nth-child(4),
.seo-why__item:nth-child(4) {
	transition-delay: .24s;
}

.seo-services__item:nth-child(5) {
	transition-delay: .32s;
}

.seo-services__item:nth-child(6) {
	transition-delay: .40s;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.seo-why {
		grid-template-columns: 1fr;
	}

	.seo-why__media {
		order: -1;
		max-width: 360px;
		margin: 0 auto;
	}

	.seo-reference__card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.seo-pricing__table {
		border-spacing: 0;
		min-width: 0;
	}

	.seo-pricing__table thead {
		display: none;
	}

	.seo-pricing__row,
	.seo-pricing__cell {
		display: block;
		width: 100%;
	}

	.seo-pricing__row {
		margin-bottom: 15px;
		border-radius: 15px;
		overflow: hidden;
	}

	.seo-pricing__cell {
		border-radius: 0 !important;
		padding: 10px 20px;
	}

	.seo-pricing__cell--name {
		font-size: 20px;
		background: #ececec;
		padding-top: 15px;
	}

	.seo-pricing__cell[data-label]::before {
		content: attr(data-label);
		display: block;
		font-size: 14px;
		font-weight: 700;
		color: #000;
		margin-bottom: 5px;
	}
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

	.seo-page *,
	.seo-page *::before,
	.seo-page *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.seo-anim {
		opacity: 1;
		transform: none;
	}
}