/* Fonts */
@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Regular.woff2') format('woff2'), url('../fonts/Inter-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Medium.woff2') format('woff2'), url('../fonts/Inter-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-SemiBold.woff2') format('woff2'), url('../fonts/Inter-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-Bold.woff2') format('woff2'), url('../fonts/Inter-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Inter';
	src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'), url('../fonts/Inter-ExtraBold.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Geologica';
	src: url('../fonts/Geologica-Regular.woff2') format('woff2'), url('../fonts/Geologica-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Geologica';
	src: url('../fonts/Geologica-Bold.woff2') format('woff2'), url('../fonts/Geologica-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

/* Tokens */
:root {
	--bg: #faf7f2;
	--ink: #17161d;
	--muted: #5f5b65;
	--muted-2: #756f79;
	--muted-3: #7b7680;
	--accent: #7040f5;
	--accent-2: #703df5;
	--border: rgba(23, 22, 29, 0.08);
	--border-strong: rgba(23, 22, 29, 0.16);
	--white-72: rgba(255, 255, 255, 0.72);
	--white-56: rgba(255, 255, 255, 0.56);
	--shadow-card: 0 14px 40px rgba(59, 45, 85, 0.06);
	--shadow-btn: 0 14px 16px rgba(23, 22, 29, 0.18);
	--container: 1240px;
	--gutter: 100px;
	--radius-pill: 999px;
	--radius-card: 18px;
	--radius-promo: 38px;
	--font: 'Inter', system-ui, sans-serif;
	--transition: 0.2s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.5;
	color: var(--ink);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
}

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

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

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

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.container {
	width: min(var(--container), 100% - 40px);
	margin-inline: auto;
}

.page {
	overflow-x: clip;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -0.1px;
	border-radius: var(--radius-pill);
	transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
	white-space: nowrap;
}

.btn:active {
	transform: scale(0.98);
}

.btn--dark {
	background: var(--ink);
	color: #fff;
	box-shadow: var(--shadow-btn);
}

.btn--dark:hover {
	background: #2a2930;
}

.btn--outline {
	background: var(--white-56);
	border: 0.8px solid var(--border-strong);
	color: var(--ink);
}

.btn--outline:hover {
	background: rgba(255, 255, 255, 0.8);
}

.btn--light {
	background: #fff;
	color: var(--ink);
}

.btn--light:hover {
	background: #f5f5f5;
}

.btn--sm {
	min-height: 54px;
	padding: 14px 24px;
}

.btn--lg {
	min-height: 64px;
	padding: 0 30px;
}

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

.btn__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 17px;
	background: var(--accent);
	color: #fff;
	font-size: 20px;
	line-height: 1;
}

.btn__arrow--dark {
	background: var(--accent);
}

.eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 800;
	line-height: normal;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--accent);
}

.eyebrow--light {
	color: rgba(255, 255, 255, 0.72);
}

.section {
	padding: 112px 0;
}

.section__title {
	margin: 0;
	font-size: clamp(36px, 4vw, 53px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -2.4px;
}

.section__head {
	display: grid;
	grid-template-columns: 1fr 470px;
	gap: 40px;
	align-items: end;
	margin-bottom: 55px;
}

.section__lead {
	margin: 0;
	font-size: 20px;
	line-height: 1.55;
	letter-spacing: -0.25px;
	color: var(--muted);
}

/* Header / Hero */
.hero {
	position: relative;
	min-height: 900px;
	border-bottom: 0.8px solid var(--border);
}

.hero__bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.hero__bg-img {
	position: absolute;
	top: 0;
	left: -11.05%;
	width: 111.05%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.hero__bg-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, #faf7f2 0%, rgba(250, 247, 242, 0.98) 38%, rgba(250, 247, 242, 0.56) 60%, rgba(250, 247, 242, 0.04) 100%);
}

.hero__inner {
	position: relative;
	padding-top: 104px;
	padding-bottom: 55px;
}

.header {
	position: fixed;
	top: 0;
	left: calc((100vw - var(--container)) / 2);
	z-index: 80;
	isolation: isolate;
	width: var(--container);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 104px;
	border-bottom: 0.8px solid rgba(23, 22, 29, 0.1);
	transition: border-color 0.2s ease;
}

.header::before {
	content: '';
	position: absolute;
	inset: 0 50%;
	z-index: -1;
	width: 100vw;
	transform: translateX(-50%);
	background: rgba(250, 247, 242, 0);
	backdrop-filter: blur(0);
	transition: background-color 0.2s ease, backdrop-filter 0.2s ease;
	pointer-events: none;
}

.header.is-scrolled {
	border-bottom-color: rgba(23, 22, 29, 0.14);
}

.header.is-scrolled::before {
	background: #faf7f2;
	backdrop-filter: blur(18px);
	box-shadow: 0 8px 24px rgba(23, 22, 29, 0.06);
}

.header__logo img {
	width: 284px;
	height: auto;
}

.header__nav {
	display: flex;
	gap: 34px;
}

.header__link {
	font-size: 14px;
	font-weight: 400;
	opacity: 1;
	white-space: nowrap;
	transition: opacity var(--transition);
}

.header__link:hover {
	opacity: 1;
}

.header__phone {
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	color: var(--accent-2);
	white-space: nowrap;
}

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

.header__logo {
	flex-shrink: 0;
}

.header__cta {
	flex-shrink: 0;
	white-space: nowrap;
}

.header__burger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 10px;
}

.header__burger span {
	display: block;
	height: 2px;
	background: var(--ink);
	border-radius: 1px;
}

.hero__content {
	max-width: 680px;
	margin-top: 62px;
}

.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8.5px 13.8px;
	border-radius: var(--radius-pill);
	background: rgba(255, 255, 255, 0.62);
	border: 0.8px solid rgba(111, 59, 255, 0.24);
}

.hero__badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background: var(--accent);
	box-shadow: 0 0 0 0 rgba(112, 64, 245, 0.12);
}

.hero__badge-text {
	font-size: 12px;
	font-weight: 800;
	line-height: normal;
	letter-spacing: 1.2px;
	color: #6538e6;
}

.hero__badge-text strong {
	color: var(--accent);
}

.hero__title {
	margin: 7px 0 0;
	font-size: 69px;
	font-weight: 700;
	line-height: 70px;
	letter-spacing: -4.4px;
}

.hero__title-accent {
	display: block;
	font-size: 72px;
	line-height: 72px;
	color: var(--accent-2);
}

.hero__subtitle {
	margin: 53px 0 0;
	max-width: 650px;
	font-size: 20px;
	line-height: 31px;
	letter-spacing: -0.25px;
	color: var(--muted);
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 39px;
}

.hero__cta-register {
	display: none;
}

.hero__cta-callback {
	border-radius: var(--radius-pill);
	background: var(--white-56);
	border: 0.8px solid var(--border-strong);
	color: var(--ink);
	font-weight: 700;
	font-size: 15px;
	letter-spacing: -0.0067em;
	padding: 0 24px 0 30px;
}

.hero__cta .btn--lg {
	min-height: 62px;
}

.hero__disclaimer {
	margin: 14px 0 0;
	font-size: 12px;
	color: var(--muted-3);
}

.hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 49px;
}

.stat-card {
	width: 172px;
	height: 96px;
	min-width: 172px;
	padding: 10px 18px;
	border-radius: var(--radius-card);
	background: var(--white-72);
	border: 0.8px solid var(--border);
	box-shadow: var(--shadow-card);
}

.stat-card__value {
	margin: 0;
	font-size: 24px;
	font-weight: 700;
	line-height: 29px;
	letter-spacing: -1px;
	animation: stat-value-pulse 1s ease-in-out both;
}

/* One-shot pulse, cards one after another; text stays accent-colored at the end */
@keyframes stat-value-pulse {
	0% { transform: scale3d(1, 1, 1); }
	50% { transform: scale3d(1.05, 1.05, 1.05); }
	100% { transform: scale3d(1, 1, 1); color: var(--accent-2); }
}

.stat-card:nth-child(1) .stat-card__value { animation-delay: 0.4s; }
.stat-card:nth-child(2) .stat-card__value { animation-delay: 1.4s; }
.stat-card:nth-child(3) .stat-card__value { animation-delay: 2.4s; }

@media (prefers-reduced-motion: reduce) {
	.stat-card__value {
		animation: none;
		color: var(--accent-2);
	}
}

.stat-card__label {
	margin: 5px 0 0;
	font-size: 12px;
	line-height: 16px;
	color: var(--muted-2);
}

/* Process */
.process {
	position: relative;
	background: #f6f1ea;
}

.process__head .section__head-left {
	max-width: 500px;
}

.process .section__title {
	font-size: 50px;
	line-height: 53px;
	letter-spacing: -2.8px;
}

.process__lead {
	font-size: 17px;
	line-height: 27.2px;
	color: #6c6771;
}

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

.guarantees {
	background: #fff;
	border-top: 0.8px solid var(--border);
}

.guarantees .section__title {
	font-size: 50px;
	line-height: 53px;
	letter-spacing: -2.8px;
}

.guarantees .step-card {
	min-height: 280px;
}

.step-card {
	padding: 30.8px;
	min-height: 330px;
	border-radius: 28px;
	background: #fff;
	border: 0.8px solid var(--border);
	display: flex;
	flex-direction: column;
}

.step-card__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #f0eaff;
	color: var(--accent);
	font-size: 16px;
	font-weight: 800;
}

.step-card__title {
	margin: 64px 0 0;
	font-size: 26px;
	font-weight: 700;
	line-height: 29.38px;
	letter-spacing: -1px;
}

.step-card__text {
	margin: 12px 0 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--muted);
	flex: 1;
}

.step-card__tag {
	margin: 24px 0 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	color: var(--accent);
}

.process__cta {
	position: absolute;
	left: 50%;
	bottom: 24px;
	transform: translateX(-50%);
}

/* Benefits */
.benefits {
	position: relative;
	overflow: hidden;
}

.benefits__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.benefits__bg-img {
	position: absolute;
	top: -0.05%;
	left: -2.57vw;
	width: 105.11vw;
	height: 104.01%;
	max-width: none;
	object-fit: cover;
}

.benefits__bg-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(89.886deg, #faf7f2 0%, #faf8f3 36.554%, rgba(255, 255, 255, 0) 99.944%);
}

.benefits__inner {
	position: relative;
	z-index: 1;
}

.benefits__content {
	width: 472.175px;
}

.benefits .section__title {
	font-size: 50px;
	line-height: 53px;
	letter-spacing: -2.8px;
}

.benefits__list {
	width: 462px;
	height: 407px;
	margin-top: 55px;
	display: grid;
	grid-template-rows: repeat(4, 1fr);
}

.benefit-item__title {
	margin: 0;
	padding-top: 4px;
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: -0.8px;
	color: var(--accent);
}

.benefit-item__text {
	width: 462px;
	margin: 0;
	padding-top: 10px;
	font-size: 15px;
	line-height: 24.3px;
	color: var(--ink);
}

/* Promo pair */
.promo-pair {
	padding: 81px 0 237px;
	background: #f6f1ea;
}

.promo-pair__grid {
	display: grid;
	grid-template-columns: 644px 644px;
	gap: 44px;
	align-items: start;
	width: 1332px;
	margin-left: calc((100vw - 1332px) / 2);
	margin-right: calc((100vw - 1332px) / 2);
}

.promo-card {
	position: relative;
	height: 457px;
	min-height: 457px;
	border-radius: var(--radius-promo);
	overflow: hidden;
	color: #fff;
	background-size: 180% 180%;
	animation: promo-gradient-flow 22s ease-in-out infinite alternate;
}

.promo-card__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.promo-card--workspace {
	background-image: linear-gradient(135deg, #000 0%, #000 48%, #302063 75%, #6940d9 100%);
}

.promo-card--workspace .promo-card__bg {
	display: none;
}

.promo-card__inner {
	position: relative;
	z-index: 1;
	padding: 27px 58px 46px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.promo-card__title {
	margin: 8px 0 0;
	width: 730px;
	font-size: 58px;
	font-weight: 400;
	line-height: 61.5px;
	letter-spacing: -3.5px;
	max-width: 730px;
}

.promo-card__text {
	margin: 31px 0 0;
	font-size: 17px;
	line-height: normal;
	color: #b9b5c1;
	max-width: 520px;
}

.promo-card__checks {
	margin: 26px 0 0 5px;
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.promo-card__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-top: 19px;
}

.promo-card__row .promo-card__checks {
	margin: 0 0 0 5px;
	flex: 1;
	min-width: 0;
}

.promo-card__row .btn {
	margin-top: 0;
	flex-shrink: 0;
}

.promo-card__checks li {
	position: relative;
	padding-left: 38px;
	font-size: 14px;
	line-height: 26px;
}

.promo-card__checks li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--accent);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.promo-card--offer {
	background: linear-gradient(134.62deg, #17161d 6.17%, #231949 58.77%, #6940da 93.83%);
	background-size: 180% 180%;
	animation-duration: 26s;
	animation-delay: -9s;
}

@keyframes promo-gradient-flow {
	0% {
		background-position: 0% 20%;
	}

	100% {
		background-position: 100% 80%;
	}
}

.promo-card--offer .promo-card__inner {
	padding: 30px 66px 51px;
}

.promo-card--workspace .eyebrow,
.promo-card--workspace .promo-card__text {
	margin-left: 5px;
}

.promo-card--workspace .promo-card__title {
	width: 730px;
	margin-top: 11px;
	letter-spacing: -3.5px;
	white-space: nowrap;
}

.promo-card--workspace .promo-card__text {
	margin-top: 8px;
}

.promo-card--offer .promo-card__text {
	margin-top: 18px;
	font-size: 18px;
	line-height: 28.8px;
	color: rgba(255, 255, 255, 0.68);
}

.promo-card__accent {
	color: #a486ff;
}

.promo-card--workspace .eyebrow--light {
	color: #a98cff;
}

.promo-card--offer .eyebrow--light {
	color: #af96ff;
}

.promo-card--offer .btn {
	margin-top: auto;
	align-self: flex-start;
	min-height: 62px;
}

.promo-card--workspace .btn {
	align-self: center;
	min-height: 62px;
	background: rgba(255, 255, 255, 0.88);
	border: 0.8px solid rgba(255, 255, 255, 0.35);
	color: var(--ink);
}

.promo-card--workspace .btn:hover {
	background: rgba(255, 255, 255, 0.96);
}

/* FAQ */
.faq {
	/* Content-driven height (was fixed 711px for 4 items); bottom padding keeps the original 41px gap before the footer */
	height: auto;
	padding-bottom: 41px;
	background: #f6f1ea;
}

.faq__grid {
	display: grid;
	grid-template-columns: 414px 1fr;
	gap: 90px;
	align-items: start;
}

.faq .section__title {
	font-size: 50px;
	line-height: 53px;
	letter-spacing: -2.8px;
}

.faq__lead {
	margin: 16px 0 16px;
	font-size: 16px;
	line-height: 25.6px;
	color: #6c6771;
}

.faq__intro .btn {
	min-height: 54px;
	padding: 0 24.8px;
}

.faq__list {
	border-top: 0.8px solid rgba(23, 22, 29, 0.15);
}

.faq-item {
	min-height: 139.25px;
	border-bottom: 0.8px solid rgba(23, 22, 29, 0.15);
	padding: 28px 0;
}

.faq-item:last-child {
	border-bottom: 0.8px solid rgba(23, 22, 29, 0.15);
}

.faq-item__question {
	position: relative;
	padding-right: 62px;
	font-size: 19px;
	font-weight: 700;
	line-height: 25.65px;
	letter-spacing: -0.35px;
	cursor: pointer;
	list-style: none;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

/* Plus/minus drawn with gradients so the icon is optically centered (font «+» sits high) */
.faq-item__question::after {
	content: '';
	flex-shrink: 0;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 0.8px solid rgba(23, 22, 29, 0.15);
	background-color: transparent;
	background-image:
		linear-gradient(var(--accent), var(--accent)),
		linear-gradient(var(--accent), var(--accent));
	background-size: 12px 2px, 2px 12px;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.25s ease, background-color 0.25s ease;
	position: absolute;
	top: 0;
	right: 0;
}

.faq-item[open] .faq-item__question::after {
	transform: none;
	background-color: rgba(112, 64, 245, 0.06);
	/* minus: horizontal bar only */
	background-image: linear-gradient(var(--accent), var(--accent));
	background-size: 12px 2px;
	background-position: center;
	background-repeat: no-repeat;
}

.faq-item--figma-plus[open] .faq-item__question::after {
	background-color: transparent;
	background-image:
		linear-gradient(var(--accent), var(--accent)),
		linear-gradient(var(--accent), var(--accent));
	background-size: 12px 2px, 2px 12px;
	background-position: center;
	background-repeat: no-repeat;
}

.faq-item__body {
	overflow: hidden;
}

.faq-item__answer {
	margin: 0;
	padding: 12px 58px 0 0;
	font-size: 14px;
	line-height: 22.4px;
	color: #706b75;
}

@media (prefers-reduced-motion: reduce) {
	.promo-card {
		animation: none;
		background-position: 50% 50%;
	}

	.faq-item__body,
	.faq-item__question::after {
		transition: none;
	}
}

/* Footer */
.footer {
	padding: 64px 0 38px;
	background: #17161d;
	color: #fff;
	margin-top: auto;
}

.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 58px;
}

.footer__brand {
	width: 360px;
}

.footer__brand-row {
	display: flex;
	align-items: center;
	gap: 16px;
}

.footer__brand-mark {
	position: relative;
	display: block;
	width: 58px;
	height: 58px;
	flex: 0 0 58px;
	border-radius: 17px;
	background: #15141a;
	box-shadow: 0 12px 13px rgba(23, 22, 29, 0.12);
}

.footer__brand-mark i,
.footer__brand-mark b {
	position: absolute;
	display: block;
	border-radius: 50%;
}

.footer__brand-mark i {
	left: 17px;
	top: 12px;
	width: 33px;
	height: 33px;
	background: #5b38bf;
}

.footer__brand-mark b {
	left: 9px;
	top: 24px;
	width: 25px;
	height: 25px;
	background: #835cff;
}

.footer__brand-name {
	font-size: 21px;
	font-weight: 400;
	line-height: 22.05px;
	letter-spacing: -0.5px;
}

.footer__brand-text {
	width: 360px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.48);
	font-size: 13px;
	font-weight: 400;
	line-height: 20.15px;
}

.footer__nav {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 40px 48px;
}

.footer__nav-group {
	display: grid;
	gap: 13px;
}

.footer__nav-title {
	margin: 0 0 4px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: normal;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.footer__nav-group a {
	color: rgba(255, 255, 255, 0.66);
	font-size: 13px;
	line-height: normal;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-top: 24.8px;
	border-top: 0.8px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p,
.footer__bottom a {
	margin: 0;
	color: rgba(255, 255, 255, 0.4);
	font-size: 12px;
	line-height: normal;
}

.footer__legal {
	display: grid;
	gap: 13px;
}

.footer__legal-entity {
	display: flex;
	flex-direction: column;
	gap: 8px;
	max-width: 40rem;
}

/* Mobile menu */
.mobile-menu {
	position: fixed;
	inset: 0;
	z-index: 90;
	background: var(--bg);
	padding: 120px 24px 40px;
}

.mobile-menu__close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 44px;
	height: 44px;
	color: var(--ink);
	font-size: 30px;
	line-height: 1;
}

.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.mobile-menu__link {
	font-size: 18px;
	font-weight: 500;
}

/* Modal */
.modal {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}

.modal[hidden] {
	display: none;
}

.modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(23, 22, 29, 0.45);
	backdrop-filter: blur(4px);
}

.modal__dialog {
	position: relative;
	width: min(420px, 100%);
	padding: 32px 28px 28px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 24px 64px rgba(23, 22, 29, 0.2);
	animation: modal-in 0.25s ease;
}

@keyframes modal-in {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.98);
	}
}

.modal__close {
	position: absolute;
	top: 12px;
	right: 16px;
	width: 36px;
	height: 36px;
	font-size: 24px;
	line-height: 1;
	color: var(--muted);
}

.modal__title {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

.modal__subtitle {
	margin: 8px 0 24px;
	font-size: 14px;
	color: var(--muted);
}

.modal__subtitle--flush {
	margin-bottom: 28px;
}

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

.modal__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: #e8f7ef;
	color: #1b7a45;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
}

.field {
	display: block;
	margin-bottom: 16px;
}

.field__label {
	display: block;
	margin-bottom: 6px;
	font-size: 13px;
	font-weight: 500;
}

.field__input {
	width: 100%;
	padding: 14px 16px;
	border: 0.8px solid var(--border-strong);
	border-radius: 12px;
	font: inherit;
	color: var(--ink);
	background: var(--bg);
	transition: border-color var(--transition);
}

.field__input:focus {
	outline: none;
	border-color: var(--accent);
}

.field__error {
	margin: 0 0 12px;
	font-size: 13px;
	color: #c0392b;
}

.consent-field {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 16px;
	font-size: 13px;
	line-height: 1.45;
	color: var(--muted-3);
}

.consent-field__checkbox {
	flex-shrink: 0;
	margin-top: 2px;
	width: 16px;
	height: 16px;
	accent-color: var(--accent);
}

.consent-field__text a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.consent-field__text a:hover {
	color: var(--ink);
}

.lead-form__operator {
	margin: -8px 0 16px;
	font-size: 12px;
	line-height: 1.45;
	color: var(--muted-3);
}

.btn:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

/* Floating pill above the persistent Jivo bottom strip (~40px tall) */
.mobile-cta {
	position: fixed;
	bottom: calc(52px + env(safe-area-inset-bottom, 0px));
	left: 12px;
	right: 12px;
	z-index: 2147483646;
}

.mobile-cta .btn {
	box-shadow: 0 8px 24px rgba(23, 22, 29, 0.28);
}

.mobile-cta[hidden] {
	display: none;
}

@media (min-width: 769px) {
	.mobile-cta {
		display: none !important;
	}
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
	.hero__content {
		animation: fade-up 0.7s ease both;
	}

	.step-card {
		animation: fade-up 0.6s ease both;
	}

	.step-card:nth-child(2) {
		animation-delay: 0.1s;
	}

	.step-card:nth-child(3) {
		animation-delay: 0.2s;
	}
}

@keyframes fade-up {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
}

/* Tablet */
@media (max-width: 1200px) {
	:root {
		--gutter: 40px;
	}

	.header {
		left: 20px;
		width: calc(100vw - 40px);
	}

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

	.faq__grid {
		grid-template-columns: 1fr;
		gap: 48px;
		height: auto;
	}

	.footer__top {
		flex-direction: column;
		align-items: center;
		height: auto;
		gap: 40px;
	}

	.promo-pair,
	.faq,
	.footer {
		height: auto;
	}

	.promo-pair {
		padding: 112px 0;
	}

	.promo-pair__grid {
		grid-template-columns: 1fr;
		width: min(var(--container), 100% - 40px);
		margin-inline: auto;
	}

	.footer {
		padding: 64px 0 38px;
	}
}

/* Mobile */
@media (max-width: 900px) {
	.header__nav,
	.header__actions {
		display: none;
	}

	.mobile-cta {
		display: block;
	}

	.header__burger {
		display: flex;
	}

	.header {
		margin-bottom: 0;
	}

	.hero {
		min-height: auto;
	}

	.hero__bg-img {
		left: 0;
		width: 100%;
		opacity: 0.35;
	}

	.hero__bg-gradient {
		background: linear-gradient(180deg, #faf7f2 0%, rgba(250, 247, 242, 0.92) 55%, rgba(250, 247, 242, 0.98) 100%);
	}

	.hero__title {
		font-size: clamp(32px, 7vw, 48px);
		letter-spacing: -1.5px;
		line-height: 1.05;
		text-align: center;
	}

	.hero__title-accent {
		font-size: inherit;
		line-height: inherit;
	}

	.hero__content {
		text-align: center;
		margin-top: 48px;
		margin-inline: auto;
	}

	.hero__badge {
		margin-inline: auto;
	}

	.hero__subtitle,
	.hero__disclaimer {
		margin-inline: auto;
	}

	.hero__cta {
		justify-content: center;
	}

	.hero__cta-register {
		display: inline-flex;
	}

	.section__title {
		font-size: clamp(30px, 6.5vw, 40px);
		letter-spacing: -1.6px;
		text-align: center;
	}

	.process .section__title,
	.guarantees .section__title {
		font-size: clamp(30px, 6.5vw, 40px);
		line-height: 1.05;
		letter-spacing: -1.6px;
	}

	.faq {
		height: auto;
	}

	.faq .section__title {
		font-size: clamp(30px, 6.5vw, 40px);
		line-height: 1.05;
		letter-spacing: -1.6px;
	}

	.faq__grid {
		height: auto;
	}

	.faq-item {
		min-height: 0;
	}

	.benefits {
		height: auto;
		min-height: 760px;
	}

	.benefits .section__title {
		font-size: clamp(30px, 6.5vw, 40px);
		line-height: 1.05;
		letter-spacing: -1.6px;
	}

	.benefits__bg-img {
		left: -30%;
		width: 150%;
		opacity: 0.3;
	}

	.benefits__bg-gradient {
		background: linear-gradient(90deg, #faf7f2 0%, rgba(250, 247, 242, 0.96) 70%, rgba(250, 247, 242, 0.72) 100%);
	}

	.benefits__content,
	.benefits__list,
	.benefit-item__text {
		width: 100%;
	}

	.benefits__list {
		height: auto;
	}

	.section__head,
	.section__head-left,
	.faq__intro,
	.benefits__content {
		text-align: center;
	}

	.section__head .eyebrow,
	.benefits__content .eyebrow,
	.faq__intro .eyebrow {
		display: block;
	}

	.section__lead,
	.process__lead,
	.faq__lead {
		margin-inline: auto;
	}

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

	.promo-pair {
		height: auto;
	}

	.promo-pair__grid {
		width: min(var(--container), 100% - 40px);
		margin-inline: auto;
	}

	.promo-card__title {
		width: auto;
		font-size: clamp(24px, 6vw, 30px);
		line-height: 1.1;
		letter-spacing: -0.8px;
		margin-inline: auto;
	}

	.promo-card--workspace .promo-card__title {
		width: 100%;
		max-width: 100%;
		letter-spacing: -0.2px;
		word-spacing: 0.12em;
		white-space: normal;
	}

	.promo-card--workspace .promo-card__title br {
		display: none;
	}

	.promo-card__text {
		margin-inline: auto;
	}

	.promo-card__checks {
		text-align: left;
	}

	.promo-card__row {
		flex-direction: column;
		align-items: stretch;
		gap: 28px;
		margin-top: 26px;
	}

	.promo-card__row .promo-card__checks {
		margin-left: 0;
	}

	.promo-card--workspace .eyebrow,
	.promo-card--workspace .promo-card__text {
		margin-inline: auto;
	}

	.hero__cta .btn--lg {
		width: 100%;
	}

	.hero__cta .btn {
		width: 100%;
	}

	.hero__stats {
		flex-direction: column;
		margin-top: 32px;
	}

	.stat-card {
		flex: 1 1 auto;
		width: 100%;
		min-width: 0;
	}

	.promo-card__inner {
		padding: 32px 24px 40px;
	}

	.promo-card--offer .promo-card__inner {
		padding: 32px 24px 40px;
	}

	.promo-card--workspace .btn,
	.promo-card--offer .btn {
		align-self: stretch;
		width: 100%;
	}

	.promo-card--offer .promo-card__text {
		margin-bottom: 28px;
	}

	.faq-item__answer {
		padding-right: 0;
	}

	.section__lead,
	.hero__subtitle,
	.process__lead {
		font-size: 17px;
	}

	.step-card {
		min-height: auto;
		padding: 24px 20px;
		display: grid;
		grid-template-columns: 48px minmax(0, 1fr);
		column-gap: 14px;
	}

	.step-card__title {
		align-self: center;
		font-size: 18px;
		line-height: 1.25;
		margin: 0;
		text-align: left;
	}

	.step-card__text,
	.step-card__tag {
		grid-column: 1 / -1;
		text-align: left;
	}

	.step-card__text {
		margin-top: 16px;
	}

	.process__cta {
		position: static;
		transform: none;
		margin-top: 32px;
	}

	.process__cta .btn {
		width: 100%;
	}

	.benefits__list {
		margin-top: 28px;
		gap: 22px;
		text-align: left;
	}

	.process__grid,
	.promo-pair__grid {
		grid-template-columns: 1fr;
	}

	.promo-card {
		height: auto;
		min-height: auto;
	}

	.footer {
		height: auto;
		padding: 48px 0 32px;
	}

	.footer__top {
		flex-direction: column;
		align-items: center;
		padding-bottom: 40px;
	}

	.footer__brand {
		width: 100%;
		text-align: center;
	}

	.footer__brand-row {
		justify-content: center;
	}

	.footer__brand-text {
		width: min(360px, 100%);
		margin-inline: auto;
	}

	.footer__nav {
		width: 100%;
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
		align-items: start;
		gap: 32px 24px;
		text-align: left;
	}

	.footer__nav-group {
		min-width: 0;
	}

	.footer__nav-group a {
		overflow-wrap: anywhere;
	}

	.footer__bottom {
		gap: 20px;
		flex-wrap: wrap;
	}

	.section {
		padding: 72px 0;
	}
}

@media (max-width: 480px) {
	:root {
		--radius-promo: 28px;
	}

	.container {
		width: min(var(--container), 100% - 32px);
	}

	.header {
		left: 16px;
		width: calc(100vw - 32px);
		height: auto;
		min-height: 72px;
		margin-bottom: 0;
		padding: 12px 0;
	}

	.header__logo img {
		width: 168px;
	}

	.hero__inner {
		padding-top: 72px;
		padding-bottom: 48px;
	}

	.hero__content {
		margin-top: 40px;
	}

	.hero__title {
		font-size: clamp(26px, 8vw, 32px);
		letter-spacing: -1.2px;
	}

	.hero__subtitle {
		font-size: 16px;
	}

	.section__title {
		font-size: clamp(24px, 7.5vw, 30px);
		letter-spacing: -1.2px;
	}

	.process .section__title,
	.guarantees .section__title {
		font-size: clamp(24px, 7.5vw, 30px);
		line-height: 1.05;
		letter-spacing: -1.2px;
	}

	.promo-card__title {
		font-size: clamp(20px, 6.2vw, 24px);
		letter-spacing: -0.5px;
	}

	.step-card__title {
		font-size: 17px;
	}

	.hero__badge {
		max-width: 100%;
	}

	.hero__badge-text {
		font-size: 11px;
		letter-spacing: 0.8px;
	}

	.section {
		padding: 24px 0;
	}

	.section__head {
		margin-bottom: 36px;
		gap: 16px;
	}

	.benefit-item__title {
		font-size: 18px;
	}

	.faq__grid {
		gap: 32px;
	}

	.faq-item {
		padding: 20px 0;
	}

	.faq-item__question {
		font-size: 16px;
		gap: 12px;
	}

	.faq-item__question::after {
		width: 32px;
		height: 32px;
		background-size: 10px 2px, 2px 10px;
	}

	.faq-item[open] .faq-item__question::after {
		background-size: 10px 2px;
	}

	.faq-item--figma-plus[open] .faq-item__question::after {
		background-size: 10px 2px, 2px 10px;
	}

	.faq-item__answer {
		font-size: 14px;
		padding-top: 10px;
	}

	.faq__intro .btn {
		width: 100%;
	}

	.promo-card__inner,
	.promo-card--offer .promo-card__inner {
		padding: 24px 18px 28px;
	}

	.promo-card__text,
	.promo-card__checks li {
		font-size: 14px;
	}

	.promo-card__checks {
		margin-top: 20px;
		gap: 14px;
	}

	.promo-card__checks li {
		padding-left: 32px;
	}

	.promo-card__checks li::before {
		width: 22px;
		height: 22px;
		font-size: 11px;
	}

	.promo-pair__grid {
		gap: 16px;
	}

	.btn {
		white-space: normal;
		text-align: center;
	}

	.btn--lg {
		min-height: 56px;
		padding: 12px 20px;
	}

	.footer__content {
		margin-top: 32px;
	}

	.footer__content p {
		font-size: 13px;
		line-height: 18px;
	}

	.footer__logo {
		top: 0;
		max-width: 140px;
	}
}

/* Banks collage */
.banks {
	position: relative;
	background: #f6f1ea;
	padding: 0;
}

.banks__stage {
	position: relative;
	width: 1440px;
	height: 730px;
	margin-inline: auto;
	overflow: hidden;
}

@media (min-width: 1201px) and (max-width: 1439px) {
	.banks__stage {
		zoom: calc(100vw / 1440);
	}
}

.banks__text {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.banks__head {
	position: absolute;
	top: 86px;
	left: 84px;
	z-index: 2;
	margin: 0;
	transform: translateY(-50%);
	font-size: 50px;
	font-weight: 400;
	line-height: normal;
	color: #17161d;
}

.banks__num {
	position: absolute;
	top: 234.5px;
	left: 69px;
	z-index: 0;
	margin: 0;
	transform: translateY(-50%);
	font-size: 200px;
	font-weight: 600;
	line-height: normal;
	color: #8248f4;
}

.banks__num-shadow {
	position: absolute;
	top: 0.035em;
	left: 0.057em;
	z-index: 0;
	color: #4a249d;
}

.banks__num-fill {
	position: relative;
	z-index: 1;
	color: #8248f4;
}

.banks__subtitle {
	position: absolute;
	top: 396.44px;
	left: 73px;
	z-index: 2;
	margin: 0;
	transform: translateY(-50%);
	font-size: 94px;
	font-weight: 400;
	line-height: normal;
	color: #17161d;
	text-transform: uppercase;
}

.banks__caption {
	position: absolute;
	top: 460px;
	left: 77px;
	z-index: 2;
	width: 590px;
	margin: 0;
	font-family: 'Geologica', 'Inter', system-ui, sans-serif;
	font-size: 25px;
	font-weight: 400;
	line-height: normal;
	color: #6c6771;
	text-align: left;
}

.banks__grid {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.banks__card {
	--card-border: #8952f3;
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 230.58px;
	height: 230.58px;
	/* Size container so card text can scale with the card via cqw units */
	container-type: size;
}

/* Diamond: 163px rounded square rotated 45deg (bounding box 230.58px), as in Figma */
.banks__card::before {
	content: '';
	position: absolute;
	inset: 0;
	margin: auto;
	width: 163.042px;
	height: 163.042px;
	border-radius: 36.366px;
	background: #f4f4f5;
	border: 5px solid var(--card-border);
	transform: rotate(45deg);
}

.banks__card--accent {
	--card-border: #8248f4;
}

.banks__card--solid {
	--card-border: #8248f4;
	flex-direction: column;
}

.banks__card--solid::before {
	background: #8248f4;
}

/* animate.css "pulse" traveling from card to card (1.8s pulse per card, 18s cycle) */
@keyframes banks-card-pulse {
	0% { transform: scale3d(1, 1, 1); }
	5% { transform: scale3d(1.05, 1.05, 1.05); }
	10%, 100% { transform: scale3d(1, 1, 1); }
}

.banks__card {
	animation: banks-card-pulse 18s ease-in-out infinite;
}

.banks__card:nth-child(1) { animation-delay: 0s; }
.banks__card:nth-child(2) { animation-delay: 1.8s; }
.banks__card:nth-child(3) { animation-delay: 3.6s; }
.banks__card:nth-child(4) { animation-delay: 5.4s; }
.banks__card:nth-child(5) { animation-delay: 7.2s; }
.banks__card:nth-child(6) { animation-delay: 9s; }
.banks__card:nth-child(7) { animation-delay: 10.8s; }
.banks__card:nth-child(8) { animation-delay: 12.6s; }
.banks__card:nth-child(9) { animation-delay: 14.4s; }
.banks__card:nth-child(10) { animation-delay: 16.2s; }

@media (prefers-reduced-motion: reduce) {
	.banks__card {
		animation: none;
	}
}

.banks__card:nth-child(1) { left: 788.8px; top: 77px; }
.banks__card:nth-child(2) { left: 1055.59px; top: 77px; }
.banks__card:nth-child(3) { left: 655.4px; top: 199.28px; }
.banks__card:nth-child(4) { left: 922.19px; top: 199.28px; }
.banks__card:nth-child(5) { left: 1188.99px; top: 199.28px; }
.banks__card:nth-child(6) { left: 522px; top: 321.56px; }
.banks__card:nth-child(7) { left: 788.8px; top: 321.56px; }
.banks__card:nth-child(8) { left: 1053.78px; top: 320.82px; }
.banks__card:nth-child(9) { left: 655.4px; top: 443.84px; }
.banks__card:nth-child(10) { left: 922.19px; top: 443.84px; }

/* <picture> wrappers must not affect the card flex layout (logo centering) */
.banks__card picture {
	display: contents;
}

.banks__logo {
	position: relative;
	z-index: 1;
	object-fit: contain;
}

/* Exact per-logo offsets from card center, as placed in Figma */
.banks__card:nth-child(1) .banks__logo { transform: translate(3px, 6.7px); }
.banks__card:nth-child(2) .banks__logo { transform: translate(5.2px, 2.2px); }
.banks__card:nth-child(3) .banks__logo { transform: translate(-0.6px, 3.9px); }
.banks__card:nth-child(4) .banks__logo { transform: translate(-0.4px, 3.9px); }
.banks__card:nth-child(5) .banks__logo { transform: translate(0.3px, 3.4px); }
.banks__card:nth-child(6) .banks__logo { transform: translate(-0.2px, 7.2px); }
.banks__card:nth-child(7) .banks__logo { transform: translate(-0.5px, 7.2px); }
.banks__card:nth-child(8) .banks__logo { transform: translate(3.7px, 6.3px); }
.banks__card:nth-child(9) .banks__logo { transform: translate(-8.6px, 4.9px); }

.banks__dots {
	position: absolute;
	left: 69.4px;
	top: 99.2px;
	z-index: 1;
	transform: translateY(-50%);
	font-size: 37px;
	font-weight: 400;
	line-height: normal;
	color: #fff;
}

.banks__more {
	position: absolute;
	left: 69.4px;
	top: 139.2px;
	z-index: 1;
	transform: translateY(-50%);
	font-family: 'Geologica', 'Inter', system-ui, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: normal;
	color: #fff;
}

/* Banks collage - responsive */
@media (max-width: 1200px) {
	.banks {
		padding: 112px 24px;
	}

	.banks__stage {
		width: 100%;
		height: auto;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.banks__text {
		position: static;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.banks__head {
		position: static;
		transform: none;
		font-size: clamp(28px, 4.5vw, 44px);
	}

	.banks__num {
		position: relative;
		top: auto;
		left: auto;
		margin-top: 8px;
		transform: none;
		font-size: clamp(96px, 16vw, 150px);
		line-height: 1;
		letter-spacing: -4px;
	}

	.banks__num-shadow {
		top: 0.035em;
		left: 0.057em;
	}

	.banks__subtitle {
		position: static;
		margin-top: 12px;
		transform: none;
		font-size: clamp(40px, 7vw, 72px);
		letter-spacing: -2px;
	}

	.banks__caption {
		position: static;
		width: auto;
		margin-top: 20px;
		font-size: clamp(16px, 2.6vw, 22px);
		line-height: 1.5;
	}

	.banks__grid {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
		width: 100%;
		max-width: 760px;
	}

	.banks__card:nth-child(n) {
		position: relative;
		left: auto;
		top: auto;
		width: auto;
		height: auto;
		aspect-ratio: 1 / 1;
	}

	/* Keep the rotated diamond on mobile, scaled to the card (163/230.58 = 70.71%) */
	.banks__card::before {
		width: 70.71%;
		height: 70.71%;
		border-width: 4px;
		border-radius: clamp(20px, 4vw, 36px);
	}

	.banks__logo {
		width: auto;
		height: auto;
		max-width: 55%;
		max-height: 50%;
	}

	.banks__card:nth-child(n) .banks__logo {
		transform: none;
	}

	.banks__dots,
	.banks__more {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
	}

	/* Scale text with the card so it always stays inside the diamond (desktop ratios: 37/230.58 and 22/230.58),
	   capped at the design sizes. vw values approximate the card width (~vw/2 here) for browsers without cqw. */
	.banks__dots {
		font-size: min(8vw, 37px);
		font-size: min(16cqw, 37px);
	}

	.banks__more {
		margin-top: 8px;
		font-size: min(4.75vw, 22px);
		font-size: min(9.5cqw, 22px);
	}
}

@media (max-width: 768px) {
	/* Compensate the 3D shadow offset so "50+" looks optically centered */
	.banks__num {
		margin-left: -0.03em;
	}

	/* Half-size cards, still 2 columns */
	.banks__grid {
		max-width: 50%;
	}

	.banks__card::before {
		border-width: 3px;
		border-radius: clamp(10px, 3vw, 24px);
	}

	/* Cards are half width here (grid max-width 50%) — halve the viewport-based fallback */
	.banks__dots {
		font-size: min(4vw, 37px);
		font-size: min(16cqw, 37px);
	}

	.banks__more {
		font-size: min(2.4vw, 22px);
		font-size: min(9.5cqw, 22px);
	}
}

@media (max-width: 480px) {
	.banks {
		padding: 24px 16px;
	}

	.banks__grid {
		gap: 12px;
	}

	.banks__num {
		font-size: clamp(84px, 24vw, 110px);
	}

	.banks__subtitle {
		font-size: clamp(34px, 9vw, 44px);
	}

	.banks__dots {
		display: none;
	}

	.banks__more {
		margin-top: 0;
	}
}
