:root {
	--karat-red: #f50914;
	--karat-black: #151515;
	--karat-dark: #292929;
	--karat-muted: #6d6d6d;
	--karat-soft: #f4f4f4;
	--karat-line: #e7e7e7;
	--karat-radius: 18px;
	--karat-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
	--container: 1180px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--karat-black);
	background: #fff;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.55;
	overflow-x: hidden;
}

body.motion-ready [data-animate] {
	opacity: 0;
	transform: translate3d(0, 34px, 0);
	transition:
		opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
		transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
		filter 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
	transition-delay: var(--motion-delay, 0ms);
	will-change: opacity, transform;
}

body.motion-ready [data-animate="fade"] {
	transform: translate3d(0, 0, 0);
}

body.motion-ready [data-animate="zoom"] {
	transform: scale(0.94);
	filter: blur(3px);
}

body.motion-ready [data-animate="slide-left"] {
	transform: translate3d(42px, 0, 0);
}

body.motion-ready [data-animate="slide-right"] {
	transform: translate3d(-42px, 0, 0);
}

body.motion-ready [data-animate].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0) scale(1);
	filter: blur(0);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea {
	font: inherit;
}

.container {
	width: min(calc(100% - 40px), var(--container));
	margin-inline: auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(21, 21, 21, 0.06);
}

.site-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 28px;
	width: min(calc(100% - 40px), 1240px);
	min-height: 66px;
	margin-inline: auto;
}

.site-logo {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-weight: 900;
	letter-spacing: 0;
}

.site-logo__image {
	width: 82px;
	height: auto;
}

.site-logo__mark {
	display: grid;
	place-items: center;
	width: 29px;
	height: 24px;
	color: #fff;
	background: linear-gradient(135deg, #111 0 45%, var(--karat-red) 46% 100%);
	transform: skewX(-16deg);
}

.site-logo__text {
	font-size: 18px;
	line-height: 1;
}

.site-nav__list,
.site-footer__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 12px;
	font-weight: 600;
	color: #565656;
}

.site-nav__list a,
.site-footer__nav a {
	padding: 8px 0;
	transition: color 0.2s ease;
}

.site-nav__list a:hover,
.site-footer__nav a:hover {
	color: var(--karat-red);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-header__phone,
.site-footer__phone {
	font-size: 12px;
	font-weight: 800;
	white-space: nowrap;
}

.icon-link {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	color: #fff;
	background: #171717;
	border-radius: 50%;
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
}

.icon-link--image img {
	width: 14px;
	height: 14px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 28px;
	color: #fff;
	background: var(--karat-red);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 15px 28px rgba(245, 9, 20, 0.28);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 34px rgba(245, 9, 20, 0.34);
}

.button:active {
	transform: translateY(0) scale(0.98);
}

.button--small {
	min-height: 30px;
	padding: 0 18px;
	font-size: 11px;
	box-shadow: none;
}

/* Header & footer CTA button — Montserrat 600 (per design). */
.site-header__actions .button,
.site-footer__contacts .button {
	font-family: "Montserrat", Arial, sans-serif;
	font-weight: 600;
}

.button--white {
	color: var(--karat-black);
	background: #fff;
	box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.nav-toggle {
	display: none;
	width: 38px;
	height: 38px;
	padding: 0;
	background: #151515;
	border: 0;
	border-radius: 50%;
}

.nav-toggle span {
	display: block;
	width: 16px;
	height: 2px;
	margin: 4px auto;
	background: #fff;
	border-radius: 99px;
}

.karat-hero {
	padding-top: 72px;
	background: #fff;
}

.karat-hero .container {
	width: min(calc(100% - 80px), 1640px);
}

.karat-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
	align-items: center;
	gap: clamp(44px, 5vw, 90px);
	min-height: 640px;
}

.eyebrow {
	margin: 0 0 11px;
	color: #4d4d4d;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.karat-hero .eyebrow {
	max-width: 690px;
	margin-bottom: 28px;
	color: var(--karat-black);
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: 44px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.03em;
}

.eyebrow--red {
	color: var(--karat-red);
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

.karat-hero h1 {
	max-width: 770px;
	margin-bottom: 36px;
	color: #000;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: 88px;
	font-weight: 700;
	line-height: 1.011;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	overflow-wrap: normal;
}

.karat-hero h1 span,
.section-heading h2 span {
	color: var(--karat-red);
}

.karat-hero__text {
	max-width: 650px;
	margin-bottom: 20px;
	color: #1d1d1f;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
}

.karat-hero__actions {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	flex-wrap: wrap;
}

.button--hero {
	width: min(100%, 455px);
	min-height: 150px;
	padding: 0 54px;
	background: #ef0214;
	border-radius: 300px;
	box-shadow: 0 0 71.3px rgba(168, 168, 168, 0.95);
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: 23px;
	font-weight: 400;
	line-height: 1;
}

.hero-video {
	display: grid;
	justify-items: center;
	gap: 12px;
	width: 113px;
}

.play-button,
.play-dot {
	position: relative;
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 113px;
	height: 113px;
	background: #ef0214;
	border-radius: 50%;
	box-shadow: 0 0 71.3px rgba(168, 168, 168, 0.58);
	animation: pulse-ring 2.2s ease-in-out infinite;
}

.hero-video span {
	width: 93px;
	color: #000;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.15;
	text-align: center;
}

.play-button::before,
.play-dot::before {
	content: "";
	width: 0;
	height: 0;
	margin-left: 7px;
	border-top: 16px solid transparent;
	border-bottom: 16px solid transparent;
	border-left: 26px solid #fff;
}

.karat-hero__media {
	position: relative;
	width: min(100%, 742px);
	aspect-ratio: 742.62 / 658;
	min-height: 0;
	margin-inline: auto;
	overflow: visible;
	filter: drop-shadow(0 0 71.3px rgba(168, 168, 168, 0.85));
	background: transparent;
}

.hero-slider__viewport {
	position: absolute;
	inset: 0 5.92%;
	background: #1d1d1d;
	border-radius: 22px;
	overflow: hidden;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: translateX(34px) scale(0.985);
	pointer-events: none;
	transition: opacity 0.65s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide.is-active {
	opacity: 1;
	transform: translateX(0) scale(1);
	pointer-events: auto;
}

.hero-slide.is-leaving {
	opacity: 0;
	transform: translateX(-34px) scale(0.985);
}

.hero-slide img {
	width: 100%;
	height: 75.2%;
	background: #1d1d1d;
	border-radius: 22px 22px 0 0;
	object-fit: cover;
}

.karat-hero__stats {
	position: absolute;
	right: 3.35%;
	bottom: 3.35%;
	left: 3.35%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3.06%;
	transform: translateY(30px);
	opacity: 0;
	transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s ease;
	transition-delay: 0.18s;
}

.hero-slide.is-active .karat-hero__stats {
	transform: translateY(0);
	opacity: 1;
}

.hero-stat {
	min-height: 0;
	height: clamp(126px, 28.3cqw, 186px);
	padding: clamp(18px, 5.8cqw, 38px) clamp(16px, 4.6cqw, 30px) clamp(14px, 4cqw, 26px);
	color: #fff;
	background: #313131;
	border-radius: 22px;
}

.hero-stat:nth-child(2) {
	background: #ef0214;
}

.hero-stat span,
.hero-stat small {
	display: block;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: clamp(12px, 2.7cqw, 18px);
	font-weight: 400;
	line-height: 1.2;
	text-transform: none;
	opacity: 1;
}

.hero-stat strong {
	display: block;
	margin: 0 0 18px;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(15px, 3.5cqw, 23px);
	font-weight: 700;
	line-height: 1.12;
	text-transform: uppercase;
}

.hero-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: clamp(48px, 7.8cqw, 58px);
	height: clamp(48px, 7.8cqw, 58px);
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #313131;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 0.25s ease, background 0.25s ease;
}

.hero-slider {
	container-type: inline-size;
}

.hero-slider__arrow::before {
	content: "";
	width: 12px;
	height: 12px;
	border-top: 3px solid #fff;
	border-left: 3px solid #fff;
}

.hero-slider__arrow--prev {
	left: 0;
}

.hero-slider__arrow--prev::before {
	transform: rotate(-45deg);
	margin-left: 4px;
}

.hero-slider__arrow--next {
	right: 0;
	background: #ef0214;
}

.hero-slider__arrow--next::before {
	transform: rotate(135deg);
	margin-right: 4px;
}

.hero-slider__arrow:hover {
	transform: translateY(-50%) scale(1.06);
}

.ticker {
	margin-top: 50px;
	min-height: 140px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: #ededed;
	white-space: nowrap;
}

.ticker__track {
	display: inline-flex;
	flex: 0 0 auto;
	gap: 0;
	width: max-content;
	will-change: transform;
	animation: ticker 300s linear infinite;
}

.ticker span {
	padding: 18px 0;
	color: #555;
	font-size: 32px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.role-select {
	padding: clamp(44px, 7vw, 82px) 0;
	background: #f5f5f5;
}

.role-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.role-card {
	position: relative;
	display: grid;
	align-content: end;
	min-height: 260px;
	padding: 20px;
	color: #fff;
	background: #222;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--karat-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.role-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72));
}

.role-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.role-card span,
.role-card strong {
	position: relative;
	z-index: 2;
}

.role-card span {
	max-width: 260px;
	font-size: clamp(20px, 2.5vw, 30px);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.role-card strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-height: 32px;
	margin-top: 14px;
	padding: 0 16px;
	color: #fff;
	background: var(--karat-red);
	border-radius: 999px;
	font-size: 11px;
	text-transform: uppercase;
}

.role-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 22px 40px rgba(0, 0, 0, 0.18);
}

.role-card:hover img {
	transform: scale(1.05);
}

@keyframes ticker {
	to {
		transform: translateX(-50%);
	}
}

@keyframes pulse-ring {
	0%,
	100% {
		box-shadow: 0 14px 28px rgba(245, 9, 20, 0.28), 0 0 0 0 rgba(245, 9, 20, 0.26);
	}
	50% {
		box-shadow: 0 14px 28px rgba(245, 9, 20, 0.2), 0 0 0 12px rgba(245, 9, 20, 0);
	}
}

@keyframes float-soft {
	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}
	50% {
		transform: translate3d(0, -10px, 0);
	}
}

.section {
	padding: clamp(58px, 8vw, 108px) 0;
}

.section-heading {
	margin-bottom: clamp(24px, 4vw, 44px);
}

.section-heading--center {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}

.section-heading h2,
.process__top h2,
.final-cta h2 {
	margin-bottom: 0;
	font-size: clamp(30px, 4vw, 48px);
	font-weight: 900;
	line-height: 0.98;
	text-transform: uppercase;
}

.about {
	padding-top: clamp(34px, 5vw, 64px);
	background: #fff;
}

.about .section-heading {
	max-width: 980px;
	margin-bottom: clamp(36px, 5vw, 64px);
}

.about .section-heading .eyebrow,
.about .section-heading h2 {
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-weight: 700;
	line-height: clamp(52px, 8.25vw, 99px);
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
}

.about .section-heading .eyebrow {
	margin-bottom: -22px;
	color: #000;
	font-size: clamp(28px, 3.6vw, 44px);
}

.about .section-heading h2 {
	color: var(--karat-red);
	font-size: clamp(42px, 5.5vw, 66px);
}

.about__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	align-items: center;
	justify-content: center;
	gap: clamp(34px, 4vw, 56px);
	margin-bottom: clamp(34px, 5vw, 62px);
}

.about__copy {
	width: 100%;
	color: #000;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.14;
}

.about__copy p {
	margin-bottom: 22px;
}

.about__copy p:last-child {
	margin-bottom: 0;
}

.info-slider {
	position: relative;
	width: 100%;
	height: 220px;
	filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18));
}

.info-slider__viewport {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #313131;
	border-radius: 22px;
}

.info-card {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: 89px minmax(0, 1fr);
	align-items: center;
	gap: clamp(28px, 3vw, 52px);
	padding: 45px clamp(54px, 5vw, 82px) 42px clamp(54px, 5vw, 64px);
	color: #fff;
	opacity: 0;
	transform: translateX(26px);
	pointer-events: none;
	transition: opacity 0.42s ease, transform 0.42s ease;
}

.info-card.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

.info-card.is-leaving {
	transform: translateX(-26px);
}

.info-card__icon {
	width: 89px;
	height: 89px;
	object-fit: contain;
	filter: brightness(0) invert(1);
}

.info-card strong {
	display: block;
	margin-bottom: 14px;
	color: #fff;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: 23px;
	font-weight: 700;
	line-height: 1.12;
	text-transform: uppercase;
}

.info-card p {
	margin-bottom: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.18;
}

.info-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	box-shadow: 0 16px 36.6px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-slider__arrow::before {
	content: "";
	width: 22px;
	height: 22px;
	background: url(../images/slider-arrow.svg) center / contain no-repeat;
}

.info-slider__arrow--prev {
	left: -46px;
	background: #1f1f1f;
}

.info-slider__arrow--prev::before {
	transform: rotate(180deg);
}

.info-slider__arrow--next {
	right: -46px;
	background: var(--karat-red);
}

.info-slider__arrow:hover {
	transform: translateY(-50%) scale(1.06);
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.media-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 30px;
}

.media-card {
	position: relative;
	overflow: hidden;
	height: clamp(170px, 17vw, 245px);
	border-radius: var(--karat-radius);
	box-shadow: var(--karat-shadow);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.media-card:hover,
.benefit-card:hover,
.white-card:hover,
.review-card:hover,
.branch-card:hover,
.price-card:hover,
.condition-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 38px rgba(0, 0, 0, 0.16);
}

.media-card img,
.condition-card--image img {
	transition: transform 0.7s ease;
}

.media-card:hover img,
.condition-card--image:hover img {
	transform: scale(1.04);
}

.media-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.media-card__caption {
	position: absolute;
	right: 16px;
	bottom: 16px;
	left: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	color: #fff;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(24px, 3.2vw, 42px);
	font-weight: 900;
	line-height: 1.02;
	text-transform: uppercase;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.media-card__caption strong {
	max-width: 72%;
}

.play-dot {
	width: 86px;
	height: 86px;
}

.play-dot::before {
	position: absolute;
	top: 24px;
	left: 50%;
	transform: translateX(-50%);
	margin-left: 6px;
	border-top-width: 13px;
	border-bottom-width: 13px;
	border-left-width: 22px;
}

.play-dot::after {
	content: "Дивись\A відео";
	position: absolute;
	right: 12px;
	bottom: 16px;
	left: 12px;
	color: #fff;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.05;
	text-align: center;
	text-transform: none;
	white-space: pre-line;
}

.benefits {
	padding-top: clamp(42px, 5vw, 72px);
	background: #fff;
}

.standards,
.reviews {
	background: var(--karat-soft);
}

.benefits .container {
	width: min(calc(100% - 80px), 1200px);
}

.benefits .section-heading {
	margin-bottom: clamp(30px, 4vw, 54px);
}

.benefits .section-heading .eyebrow,
.benefits .section-heading h2 {
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-weight: 700;
	letter-spacing: 0;
	text-align: center;
	text-transform: uppercase;
}

.benefits .section-heading .eyebrow {
	margin-bottom: 0;
	color: #393939;
	font-size: clamp(24px, 2.8vw, 40px);
	line-height: 1.05;
}

.benefits .section-heading h2 {
	color: #393939;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.02;
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(16px, 1.5vw, 20px);
}

.benefit-card {
	display: grid;
	align-content: start;
	height: 218px;
	padding: 22px;
	color: #fff;
	background: #393939;
	border-radius: 32px;
	box-shadow: 0 0 46px rgba(168, 168, 168, 0.78);
	transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.benefit-card span {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	margin-bottom: 18px;
	color: #fff;
	background: var(--karat-red);
	border-radius: 50%;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
}

.white-card span,
.suit-card span {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	margin-bottom: 18px;
	color: #fff;
	background: var(--karat-red);
	border-radius: 50%;
	font-size: 11px;
	font-weight: 900;
}

.benefit-card h3 {
	min-height: 40px;
	margin-bottom: 8px;
	color: #fff;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.benefit-card p {
	margin-bottom: 0;
	color: #fff;
	font-size: 11px;
	font-weight: 400;
	line-height: 1.18;
}

.conditions {
	padding-top: clamp(50px, 7vw, 96px);
	background: #fff;
}

.conditions .container {
	width: min(calc(100% - 80px), 1549px);
}

.conditions .section-heading {
	margin-bottom: clamp(30px, 5vw, 62px);
}

.conditions .section-heading h2 {
	color: #191919;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(42px, 5vw, 66px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.condition-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-areas:
		"candidate career"
		"reject career";
	align-items: start;
	gap: 31px;
}

.condition-card {
	position: relative;
	overflow: hidden;
	padding: 48px;
	background: #fff;
	border-radius: 44px;
	box-shadow: 0 0 71.3px rgba(168, 168, 168, 0.95);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.condition-card__content {
	position: relative;
	z-index: 2;
}

.condition-card h3 {
	margin-bottom: 32px;
	color: #393939;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(28px, 3vw, 44px);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.condition-card strong {
	display: block;
	margin-bottom: 18px;
	color: inherit;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.condition-card ul {
	padding-left: 18px;
	margin: 0;
	color: inherit;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.18;
}

.condition-card li + li {
	margin-top: 2px;
}

.condition-card__shape {
	position: absolute;
	z-index: 0;
	border-radius: 999px;
	pointer-events: none;
}

.condition-card__decor {
	position: absolute;
	z-index: 1;
	pointer-events: none;
}

.condition-card--candidate {
	grid-area: candidate;
	height: 464px;
	color: #393939;
}

.condition-card--candidate .condition-card__shape {
	right: -152px;
	bottom: 72px;
	width: 380px;
	height: 381px;
	background: var(--karat-red);
}

.condition-card__decor--cone {
	right: 18px;
	bottom: 34px;
	width: clamp(190px, 20vw, 301px);
	transform: rotate(-13deg);
	filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.condition-card--red {
	grid-area: reject;
	height: 432px;
	color: #fff;
	background: var(--karat-red);
}

.condition-card--red h3 {
	max-width: 610px;
	color: #fff;
}

.condition-card--red .condition-card__shape {
	right: -128px;
	bottom: -64px;
	width: 328px;
	height: 381px;
	background: #fff;
}

.condition-card__decor--stop {
	right: 48px;
	bottom: -18px;
	width: clamp(170px, 17vw, 260px);
	filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.18));
}

.condition-card--career {
	grid-area: career;
	display: grid;
	align-content: start;
	overflow: visible;
	height: 860px;
	margin-top: 92px;
	padding: 420px 48px 44px;
	color: #1a1a1a;
}

.condition-card--career::before {
	content: "";
	position: absolute;
	top: -118px;
	left: 50%;
	z-index: 0;
	width: min(390px, 62%);
	aspect-ratio: 1;
	border-radius: 50%;
	background: var(--karat-red);
	transform: translateX(-50%);
	pointer-events: none;
}

.condition-card__team {
	position: absolute;
	top: -358px;
	left: 0;
	z-index: 1;
	width: 100%;
	max-width: none;
	height: auto;
	margin: 0;
	object-fit: initial;
	object-position: center top;
	pointer-events: none;
}

.condition-card--career h3 {
	max-width: 580px;
	margin-bottom: 24px;
	color: #1a1a1a;
	font-size: clamp(30px, 2.8vw, 43px);
	line-height: 0.92;
}

.condition-card--career h3 span {
	display: block;
	color: var(--karat-red);
}

.condition-card--career h3 br {
	display: none;
}

.condition-card--career strong {
	margin-bottom: 12px;
	font-size: 20px;
}

.condition-card--career ul {
	font-size: 16px;
	line-height: 1.12;
}

.ticker--conditions {
	margin-top: 0;
}

.pricing {
	background: #fff;
}

.price-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.price-card {
	padding: 22px;
	color: #fff;
	background: var(--karat-red);
	border-radius: 12px;
	box-shadow: 0 14px 28px rgba(245, 9, 20, 0.2);
	text-align: center;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.price-card h3 {
	margin-bottom: 8px;
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
}

.price-card strong {
	display: block;
	margin-bottom: 14px;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 900;
	line-height: 1;
}

.price-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 27px;
	padding: 0 16px;
	color: var(--karat-black);
	background: #fff;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 900;
	text-transform: uppercase;
}

.not-fit {
	display: grid;
	grid-template-columns: minmax(220px, 0.75fr) 1fr;
	gap: 28px;
	align-items: start;
	margin-top: clamp(48px, 7vw, 84px);
}

.not-fit h2 {
	margin-bottom: 12px;
	color: var(--karat-red);
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
}

.not-fit__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.process {
	padding: clamp(58px, 7vw, 96px) 0 clamp(86px, 9vw, 138px);
	background: #fff;
	overflow: hidden;
}

.process__top {
	display: grid;
	grid-template-columns: minmax(0, 650px) minmax(360px, 455px);
	align-items: center;
	justify-content: space-between;
	gap: clamp(32px, 4vw, 72px);
	margin-bottom: clamp(10px, 2vw, 26px);
}

.process__top h2 {
	max-width: 650px;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-style: normal;
	font-size: clamp(34px, 3vw, 42px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: 0;
}

.process__top h2 span {
	display: block;
	white-space: nowrap;
}

.mini-cta {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	width: min(100%, 455px);
	min-height: 132px;
	padding: 16px 14px 16px 34px;
	color: #000;
	background: #fff;
	border-radius: 999px;
	box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-style: normal;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.32px;
	text-decoration: none;
	text-transform: uppercase;
}

.mini-cta span {
	max-width: 275px;
}

.mini-cta i {
	position: relative;
	display: grid;
	flex: 0 0 104px;
	width: 104px;
	height: 104px;
	place-items: center;
	background: var(--karat-red);
	border-radius: 50%;
	box-shadow: 0 16px 28px rgba(237, 28, 36, 0.3);
}

.mini-cta i::before,
.mini-cta i::after {
	content: "";
	position: absolute;
	background: #fff;
}

.mini-cta i::before {
	width: 30px;
	height: 3px;
	transform: rotate(-45deg);
}

.mini-cta i::after {
	width: 18px;
	height: 18px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	background: transparent;
	transform: translate(5px, -5px);
}

.process-speed {
	box-sizing: border-box;
	width: 100%;
	margin: 0 auto;
	padding: 0 24px;
}

/* Gauge wrapper keeps the dial image's aspect ratio, so every overlay
   positioned in % scales perfectly at any width — fully responsive. */
.process-speed__gauge {
	position: relative;
	width: min(100%, 820px);
	margin: 0 auto;
}

.process-speed__dial,
.process-speed__dial img {
	display: block;
	width: 100%;
	height: auto;
}

.process-speed__counter {
	position: absolute;
	left: 50%;
	top: 55%;
	transform: translate(-50%, -50%);
	z-index: 2;
	text-align: center;
	pointer-events: none;
}

.process-speed__counter .elementor-counter {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(8px, 1.4vw, 22px);
}

.process-speed__counter .elementor-counter-number-wrapper {
	display: flex;
	align-items: baseline;
	justify-content: center;
	color: var(--karat-red);
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(42px, 9vw, 96px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 0.86;
	text-transform: uppercase;
}

.process-speed__counter .elementor-counter-title {
	padding: clamp(7px, 1vw, 12px) clamp(18px, 3vw, 42px);
	color: #000;
	border: 3px solid #000;
	border-radius: 12px;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(13px, 2vw, 22px);
	font-weight: 400;
	letter-spacing: -0.04em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Needle pivots from the dial hub (bottom-centre). Origin = bulb (right edge);
   it sweeps over the top of the arc from step 01 to step 07. */
.process-speed__arrow {
	position: absolute;
	right: 50%;
	bottom: 6%;
	z-index: 1;
	width: 30%;
	transform: rotate(20deg);
	transform-origin: right center;
	transition: transform 1.8s cubic-bezier(0.18, 0.82, 0.22, 1);
	pointer-events: none;
}

.process-speed.is-speed-ready .process-speed__arrow {
	transform: rotate(-200deg);
}

.process-speed__arrow img {
	display: block;
	width: 100%;
	height: auto;
}

@media (max-width: 880px) {
	.process {
		padding-top: 54px;
	}

	.process__top {
		grid-template-columns: 1fr;
		gap: 22px;
		margin-bottom: 20px;
	}

	.process__top h2 {
		font-size: clamp(30px, 8vw, 42px);
		line-height: 1;
		letter-spacing: -1.6px;
	}

	.mini-cta {
		width: min(100%, 420px);
		min-height: 104px;
		padding: 12px 12px 12px 26px;
		font-size: 13px;
	}

	.mini-cta i {
		flex-basis: 80px;
		width: 80px;
		height: 80px;
	}

	/* On <=880px <picture> swaps to the label-less mobile dial (shallower arc). */
	.process-speed {
		padding: 0 16px;
	}

	.process-speed__gauge {
		width: min(100%, 460px);
	}

	.process-speed__counter {
		top: 64%;
	}

	.process-speed__counter .elementor-counter {
		gap: clamp(6px, 1.6vw, 12px);
	}

	.process-speed__counter .elementor-counter-number-wrapper {
		font-size: clamp(38px, 11vw, 52px);
	}

	.process-speed__counter .elementor-counter-title {
		font-size: clamp(14px, 4vw, 20px);
	}

	.process-speed__arrow {
		width: 30%;
		bottom: 8%;
	}

	.final-cta__headline {
		margin-bottom: 22px;
	}

	.final-cta__headline span:first-child,
	.final-cta__headline span:last-child {
		font-size: clamp(27px, 7.8vw, 42px);
		line-height: 1.04;
	}

	.final-cta .final-cta__headline span {
		white-space: normal;
	}

	.final-cta__intro p {
		font-size: clamp(14px, 4vw, 18px);
		line-height: 1.08;
	}

	.branch-slider__header {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 18px;
	}

	.branch-slider__tabs {
		justify-content: flex-start;
		gap: 18px;
	}

	.branch-slider__viewport {
		width: calc(100% - 72px);
	}

	.branch-card {
		flex-basis: 178px;
		min-width: 178px;
	}

	.branch-card__map {
		height: 112px;
		border-radius: 24px;
	}

	.branch-slider__arrow {
		top: 78px;
		width: 42px;
		height: 42px;
	}
}

@media (max-width: 420px) {
	.process-speed {
		padding: 0 12px;
	}

	.process-speed__counter .elementor-counter-title {
		padding: 8px 16px;
	}

	.mini-cta {
		min-height: 86px;
		gap: 14px;
		padding: 10px 10px 10px 20px;
		font-size: 11px;
	}

	.mini-cta i {
		flex-basis: 66px;
		width: 66px;
		height: 66px;
	}

	.mini-cta i::before {
		width: 24px;
	}

	.mini-cta i::after {
		width: 14px;
		height: 14px;
	}

	.final-cta__inner {
		padding-bottom: 44px;
	}

	.final-cta__button {
		min-height: 56px;
	}

	.branch-slider {
		margin-top: 44px;
	}

	.branch-slider__header h3 {
		font-size: 44px;
	}

	.branch-slider__tab {
		font-size: 24px;
	}

	.branch-slider__viewport {
		width: calc(100% - 56px);
	}

	.branch-row {
		gap: 16px;
	}

	.branch-card {
		flex-basis: 162px;
		min-width: 162px;
	}

	.branch-card__map {
		height: 102px;
		border-width: 4px;
		border-radius: 22px;
	}

	.branch-card p {
		font-size: 11px;
	}

	.branch-slider__arrow {
		top: 74px;
		width: 38px;
		height: 38px;
	}
}

.white-card-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.white-card {
	min-height: 210px;
	padding: 24px;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.white-card h3,
.suit-card h3 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.1;
	text-transform: uppercase;
}

.white-card p {
	margin-bottom: 0;
	color: #636363;
	font-size: 13px;
}

.suitability,
.mistakes {
	margin-top: clamp(48px, 7vw, 84px);
}

.suitability__cards {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.suit-card {
	min-height: 138px;
	padding: 18px;
	color: #fff;
	background: #242424;
	border-radius: 12px;
}

.suit-card--red {
	background: var(--karat-red);
}

.suit-card--red span {
	color: var(--karat-red);
	background: #fff;
}

.mistakes {
	display: grid;
	grid-template-columns: minmax(220px, 0.75fr) 1fr;
	gap: 28px;
	align-items: start;
}

.mistakes h2 {
	margin-bottom: 12px;
	color: var(--karat-red);
	font-size: clamp(34px, 5vw, 56px);
	font-weight: 900;
	line-height: 0.95;
	text-transform: uppercase;
}

.mistake-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.review-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.review-card {
	min-height: 200px;
	padding: 28px;
	background: #fff;
	border-left: 4px solid var(--karat-red);
	border-radius: 16px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card p {
	color: #4e4e4e;
}

.review-card strong {
	font-weight: 900;
}

.faq {
	background: #fff;
}

.faq-list {
	display: grid;
	gap: 14px;
	max-width: 980px;
	margin-inline: auto;
}

.faq-item {
	background: #fff;
	border: 1px solid var(--karat-line);
	border-radius: 16px;
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
	overflow: hidden;
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	width: 100%;
	padding: 20px 24px;
	background: transparent;
	border: 0;
	font-weight: 900;
	text-align: left;
	text-transform: uppercase;
	cursor: pointer;
}

.faq-item__question i {
	position: relative;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 32px;
	height: 32px;
	background: var(--karat-red);
	border-radius: 50%;
}

.faq-item__question i::before,
.faq-item__question i::after {
	content: "";
	position: absolute;
	width: 12px;
	height: 2px;
	background: #fff;
}

.faq-item__question i::after {
	transform: rotate(90deg);
	transition: transform 0.2s ease;
}

.faq-item__question[aria-expanded="true"] i::after {
	transform: rotate(0);
}

.faq-item__answer {
	padding: 0 24px 22px;
	color: #555;
}

.faq-item__answer p {
	margin-bottom: 0;
}

.final-cta {
	color: #fff;
	background: var(--karat-red);
}

.final-cta__inner {
	padding: clamp(58px, 7vw, 86px) 0 clamp(48px, 6vw, 72px);
	text-align: center;
}

.final-cta__intro {
	max-width: 1040px;
	margin-inline: auto;
}

.final-cta .final-cta__headline {
	max-width: 1080px;
	width: 100%;
	margin-inline: auto;
	margin-bottom: 28px;
	color: #fff;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	text-align: center;
	text-transform: uppercase;
}

.final-cta .final-cta__headline span {
	display: block;
	width: 100%;
	white-space: nowrap;
	text-align: center;
}

.final-cta .final-cta__headline span:first-child {
	font-size: clamp(32px, 3.2vw, 46px);
	line-height: 1.08;
}

.final-cta .final-cta__headline span:last-child {
	font-size: clamp(26px, 2.85vw, 38px);
	line-height: 1.16;
}

.final-cta__intro p {
	max-width: 620px;
	margin: 0 auto 36px;
	color: #fff;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(16px, 1.72vw, 22px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.04em;
	text-align: center;
	text-transform: uppercase;
}

.final-cta__button {
	min-width: 186px;
	min-height: 62px;
	padding: 18px 28px;
	color: #111;
	border-radius: 999px;
	box-shadow: none;
	font-size: 14px;
	font-weight: 500;
	text-transform: none;
}

.branch-slider {
	margin-top: clamp(54px, 7vw, 78px);
}

.branch-slider__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: end;
	gap: 24px;
	margin-bottom: 28px;
	text-align: left;
}

.branch-slider__header h3 {
	margin-bottom: 0;
	color: #fff;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(42px, 6vw, 72px);
	font-weight: 700;
	line-height: 0.9;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.branch-slider__tabs {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 24px;
}

.branch-slider__tab {
	padding: 0;
	color: rgba(255, 255, 255, 0.58);
	background: transparent;
	border: 0;
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-size: clamp(24px, 3.2vw, 43px);
	font-weight: 700;
	line-height: 0.95;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.2s ease, transform 0.2s ease;
}

.branch-slider__tab.is-active,
.branch-slider__tab:hover {
	color: #fff;
}

.branch-slider__tab:hover {
	transform: translateY(-2px);
}

.branch-slider__panel {
	position: relative;
}

.branch-slider__viewport {
	overflow: hidden;
	width: min(100% - 160px, 824px);
	margin-inline: auto;
}

.branch-row {
	display: flex;
	gap: 24px;
	text-align: center;
	transition: transform 0.38s ease;
	will-change: transform;
}

.branch-card {
	flex: 0 0 188px;
	min-width: 188px;
	color: #fff;
	background: transparent;
	border-radius: 28px;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.branch-card:hover {
	box-shadow: none;
}

.branch-card__map {
	height: 122px;
	margin-bottom: 14px;
	background:
		radial-gradient(circle at 48% 42%, #ef1f2a 0 5px, transparent 6px),
		linear-gradient(120deg, rgba(66, 133, 244, 0.16), rgba(66, 133, 244, 0) 48%),
		repeating-linear-gradient(24deg, transparent 0 22px, rgba(95, 118, 147, 0.2) 22px 24px),
		repeating-linear-gradient(115deg, #f8fafc 0 28px, #edf2f7 28px 31px);
	border: 5px solid #fff;
	border-radius: 28px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.branch-card p {
	margin-bottom: 0;
	color: #fff;
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.05;
}

.branch-card strong,
.branch-card a {
	color: inherit;
	font-weight: 700;
}

.branch-slider__arrow {
	position: absolute;
	top: 84px;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 47px;
	height: 47px;
	padding: 0;
	background: #050505;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.branch-slider__arrow::before {
	color: #fff;
	font-family: Arial, sans-serif;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.branch-slider__arrow--prev {
	left: 0;
}

.branch-slider__arrow--prev::before {
	content: "←";
}

.branch-slider__arrow--next {
	right: 0;
}

.branch-slider__arrow--next::before {
	content: "→";
}

.branch-slider__arrow:hover {
	transform: scale(1.08);
}

.branch-slider__arrow:disabled {
	opacity: 0.34;
	cursor: default;
	transform: none;
}

.site-footer {
	background: #fff;
	border-top: 1px solid #ececec;
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 22px 32px;
	min-height: 96px;
	padding-block: 22px;
}

.site-footer__logo {
	display: inline-flex;
	flex: 0 0 auto;
}

.site-footer__logo img {
	display: block;
	width: auto;
	height: clamp(26px, 2.4vw, 38px);
}

.site-footer__contacts {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 16px 24px;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-social {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	color: #fff;
	background: #171717;
	border-radius: 50%;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.footer-social svg {
	width: 20px;
	height: 20px;
}

.footer-social:hover {
	background: var(--karat-red);
	transform: translateY(-2px);
}

/* Footer nav — mirrors the header nav, centred in the middle of the row. */
.site-footer__navwrap {
	display: flex;
	justify-content: center;
	flex: 1 1 auto;
}

.site-footer__nav {
	flex-wrap: wrap;
}

/* Header & footer phone — Unbounded 400, uppercase, underlined (per design). */
.site-header__phone,
.site-footer__phone {
	font-family: "Unbounded", "Montserrat", Arial, sans-serif;
	font-weight: 400;
	font-size: clamp(14px, 1.25vw, 18px);
	text-transform: uppercase;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 1px;
	color: #171717;
	white-space: nowrap;
}

@media (max-width: 1040px) {
	.site-header__inner {
		grid-template-columns: auto auto;
		justify-content: space-between;
	}

	.site-nav {
		position: fixed;
		inset: 66px 18px auto;
		display: none;
		padding: 18px;
		background: #fff;
		border-radius: 18px;
		box-shadow: var(--karat-shadow);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 8px;
		justify-content: start;
	}

	.nav-toggle {
		display: block;
	}

	.karat-hero__grid {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.karat-hero .eyebrow {
		font-size: clamp(30px, 5vw, 44px);
	}

	.karat-hero h1 {
		font-size: clamp(48px, 9vw, 76px);
	}

	.karat-hero__media {
		max-width: 620px;
		margin-inline: auto;
	}

	.benefit-grid,
	.role-grid,
	.white-card-grid,
	.suitability__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.benefit-card {
		min-height: 250px;
	}

	.about__grid {
		grid-template-columns: 1fr;
	}

	.about__copy,
	.info-slider {
		margin-inline: auto;
	}
}

@media (min-width: 1041px) and (max-width: 1500px) {
	.karat-hero .eyebrow {
		font-size: 40px;
		line-height: 40px;
	}

	.karat-hero h1 {
		font-size: 80px;
		line-height: 80.9px;
	}
}

@media (max-width: 760px) {
	.container,
	.site-header__inner {
		width: min(calc(100% - 28px), var(--container));
	}

	.site-header__inner {
		min-height: 62px;
		gap: 10px;
	}

	.site-header__phone,
	.icon-link {
		display: none;
	}

	.button--small {
		min-height: 34px;
		padding-inline: 14px;
	}

	.karat-hero {
		padding-top: 32px;
	}

	.karat-hero .container {
		width: min(calc(100% - 28px), var(--container));
	}

	.karat-hero h1 {
		font-size: clamp(36px, 11vw, 48px);
		margin-bottom: 24px;
	}

	.karat-hero__text {
		font-size: 14px;
		line-height: 1.22;
		margin-bottom: 26px;
	}

	.karat-hero .eyebrow {
		margin-bottom: 18px;
		font-size: clamp(24px, 8vw, 34px);
		line-height: 1.05;
	}

	.button--hero {
		width: min(100%, 330px);
		min-height: 86px;
		padding-inline: 28px;
		font-size: 17px;
	}

	.hero-video {
		width: 82px;
		gap: 8px;
	}

	.hero-video .play-button {
		width: 82px;
		height: 82px;
	}

	.hero-video .play-button::before {
		margin-left: 5px;
		border-top-width: 12px;
		border-bottom-width: 12px;
		border-left-width: 20px;
	}

	.karat-hero__media {
		width: 100%;
		max-width: 100%;
		border-radius: 18px;
	}

	.karat-hero__media {
		width: 100%;
	}

	.hero-slider__viewport {
		border-radius: 18px;
	}

	.hero-slide img {
		border-radius: 18px 18px 0 0;
	}

	.hero-slider__arrow {
		width: 48px;
		height: 48px;
	}

	.ticker {
		margin-top: 34px;
		min-height: 0;
	}

	.ticker span {
		font-size: 14px;
	}

	.about__grid,
	.condition-grid,
	.process__top,
	.mistakes,
	.not-fit,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.condition-grid {
		grid-template-areas:
			"candidate"
			"reject"
			"career";
	}

	.about__grid,
	.process__top {
		display: grid;
	}

	.about__copy {
		font-size: 16px;
		line-height: 1.24;
	}

	.info-slider {
		height: 220px;
	}

	.info-card {
		grid-template-columns: 68px minmax(0, 1fr);
		gap: 20px;
		padding: 34px 36px;
	}

	.info-card__icon {
		width: 64px;
		height: 64px;
	}

	.info-card strong {
		font-size: 18px;
	}

	.info-card p {
		font-size: 15px;
	}

	.info-slider__arrow {
		width: 48px;
		height: 48px;
	}

	.info-slider__arrow--prev {
		left: -16px;
	}

	.info-slider__arrow--next {
		right: -16px;
	}

	.media-grid,
	.benefit-grid,
	.role-grid,
	.white-card-grid,
	.suitability__cards,
	.mistake-list,
	.not-fit__cards,
	.review-grid {
		grid-template-columns: 1fr;
	}

	.benefit-card {
		min-height: 230px;
		padding: 24px;
		border-radius: 32px;
	}

	.benefit-card span {
		width: 64px;
		height: 64px;
		margin-bottom: 20px;
		font-size: 18px;
	}

	.benefit-card h3 {
		min-height: 0;
		font-size: 20px;
	}

	.price-grid {
		grid-template-columns: 1fr;
	}

	.media-card,
	.role-card,
	.media-card img {
		min-height: 150px;
	}

	.media-card__caption {
		font-size: clamp(23px, 8vw, 34px);
	}

	.play-dot {
		width: 72px;
		height: 72px;
	}

	.condition-card {
		min-height: 0;
		padding: 24px;
		border-radius: 28px;
	}

	.condition-card h3 {
		margin-bottom: 22px;
		font-size: clamp(25px, 8vw, 36px);
	}

	.condition-card strong {
		font-size: 16px;
	}

	.condition-card ul {
		font-size: 15px;
		line-height: 1.22;
	}

	.condition-card--candidate,
	.condition-card--red,
	.condition-card--career {
		min-height: 0;
	}

	.condition-card--candidate .condition-card__shape {
		right: -112px;
		bottom: 22px;
		width: 230px;
		height: 230px;
	}

	.condition-card__decor--cone {
		right: -8px;
		bottom: 24px;
		width: 132px;
	}

	.condition-card--red .condition-card__shape {
		right: -92px;
		bottom: -40px;
		width: 200px;
		height: 220px;
	}

	.condition-card__decor--stop {
		right: -2px;
		bottom: -12px;
		width: 128px;
	}

	.condition-card--career {
		height: auto;
		margin-top: 84px;
		padding: 342px 34px 34px;
	}

	.condition-card--career::before {
		top: -78px;
		width: min(270px, 72%);
	}

	.condition-card__team {
		top: -226px;
		width: 100%;
		height: auto;
	}

	.condition-card--career h3 {
		margin-bottom: 20px;
		font-size: clamp(25px, 7.6vw, 31px);
		line-height: 0.92;
	}

	.condition-card--career strong {
		font-size: 17px;
	}

	.condition-card--career ul {
		font-size: 15px;
		line-height: 1.12;
	}

	.speedometer {
		padding-top: 10px;
	}

	.speedometer__stage {
		height: 360px;
	}

	.speedometer__arc {
		bottom: 0;
		width: min(96vw, 380px);
		height: min(48vw, 190px);
	}

	.speedometer__face {
		bottom: 8px;
		width: min(82vw, 320px);
		height: min(41vw, 160px);
	}

	.speedometer__face::after {
		width: min(34vw, 132px);
		height: min(17vw, 66px);
	}

	.speedometer__needle {
		bottom: 58px;
		width: min(40vw, 160px);
		height: 8px;
		transform-origin: 12px center;
	}

	.speedometer__hub {
		bottom: 44px;
		width: min(48vw, 190px);
		height: 12px;
	}

	.speedometer__value {
		bottom: 126px;
		font-size: 50px;
	}

	.speedometer__value small {
		margin-top: 8px;
		padding: 8px 26px;
		border-width: 2px;
		font-size: 15px;
	}

	.process-step {
		width: 54px;
	}

	.process-step strong {
		font-size: 22px;
	}

	.process-step p,
	.process-step em {
		display: none;
	}

	.process-step > span {
		width: 40px;
		height: 40px;
		font-size: 14px;
	}

	.process-step--1 {
		left: 5%;
		bottom: 44px;
	}

	.process-step--2 {
		left: 11%;
		bottom: 134px;
	}

	.process-step--3 {
		left: 28%;
		bottom: 198px;
	}

	.process-step--4 {
		bottom: 224px;
	}

	.process-step--5 {
		right: 28%;
		bottom: 198px;
	}

	.process-step--6 {
		right: 11%;
		bottom: 134px;
	}

	.process-step--7 {
		right: 5%;
		bottom: 44px;
	}

	.site-footer__inner {
		flex-direction: column;
		justify-content: center;
		text-align: center;
		padding: 28px 0;
		gap: 20px;
	}

	.site-footer__contacts {
		flex-direction: column;
		gap: 18px;
	}
}

@media (min-width: 761px) {
	.karat-hero__media:not(.hero-slider) {
		animation: float-soft 6s ease-in-out infinite;
	}

	.info-card,
	.mini-cta {
		transition: transform 0.2s ease;
		transform: translate3d(0, var(--parallax-y, 0), 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.001ms !important;
	}

	body.motion-ready [data-animate] {
		opacity: 1;
		transform: none;
		filter: none;
	}

	.process-speed__arrow,
	.process-speed.is-speed-ready .process-speed__arrow {
		transform: rotate(-200deg);
		transition: none;
	}
}

@media (max-width: 420px) {
	.site-logo__text {
		font-size: 16px;
	}

	.karat-hero__actions,
	.site-header__actions {
		gap: 8px;
	}

	.button {
		width: 100%;
		min-height: 48px;
		padding-inline: 18px;
	}

	.button--hero {
		width: min(100%, 286px);
		min-height: 74px;
		font-size: 15px;
	}

	.site-header__actions .button {
		width: auto;
	}

	.hero-video .play-button {
		width: 72px;
		height: 72px;
	}

	.hero-video {
		width: 72px;
	}

	.hero-video span {
		width: 72px;
		font-size: 10px;
	}

	.karat-hero__stats {
		grid-template-columns: 1fr;
	}

	.section-heading h2,
	.process__top h2,
	.final-cta h2 {
		font-size: clamp(28px, 10vw, 38px);
	}

	.about .section-heading .eyebrow {
		margin-bottom: -2px;
		font-size: clamp(24px, 7vw, 34px);
		line-height: 1.18;
	}

	.about .section-heading h2 {
		font-size: clamp(34px, 10.5vw, 48px);
		line-height: 1.08;
	}

	.faq-item__question {
		padding: 18px;
		font-size: 13px;
	}
}
