:root {
	--bg: #f7f8fc;
	--bg-soft: #eef0fa;
	--surface: #ffffff;
	--text: #0f1535;
	--text-soft: #5a6080;
	--text-mute: #8a90a8;
	--border: #e7e9f4;
	--accent: #5b6cff;
	--accent-2: #7a3cff;
	--accent-soft: rgba(91, 108, 255, 0.12);
	--success: #20c997;
	--warning: #ff8a3d;
	--shadow-sm: 0 2px 6px rgba(15, 21, 53, 0.06);
	--shadow-md: 0 12px 30px rgba(15, 21, 53, 0.08);
	--shadow-lg: 0 30px 60px rgba(15, 21, 53, 0.12);
	--radius-sm: 10px;
	--radius: 16px;
	--radius-lg: 22px;
	--max-w: 1180px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	color: var(--text);
	background: var(--bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.55;
}

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

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

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

/* ============ Header ============ */
.header {
	--header-h: 72px;
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid var(--border);
}

.header__inner {
	display: flex;
	align-items: center;
	gap: 16px;
	height: var(--header-h);
	position: relative;
}

.logo {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
	color: var(--text);
	letter-spacing: -0.02em;
	flex-shrink: 0;
	z-index: 2;
}

.logo__mark {
	font-weight: 800;
	font-size: 22px;
}

.logo__accent {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.logo__sub {
	font-size: 11px;
	color: var(--text-mute);
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-top: 2px;
}

.nav {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-left: auto;
}

.nav a:not(.btn) {
	color: var(--text-soft);
	font-weight: 500;
	font-size: 15px;
	transition: color 0.2s ease;
	white-space: nowrap;
}

.nav a:not(.btn):hover {
	color: var(--text);
}

.nav__cta {
	flex-shrink: 0;
}

.header__overlay {
	display: none;
}

.nav__burger {
	display: none;
	flex-shrink: 0;
	background: var(--bg);
	border: 1px solid var(--border);
	width: 44px;
	height: 44px;
	border-radius: 12px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	padding: 0;
	z-index: 2;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.nav__burger:hover {
	background: var(--accent-soft);
	border-color: rgba(91, 108, 255, 0.25);
}

.nav__burger span {
	display: block;
	width: 20px;
	height: 2px;
	background: var(--text);
	border-radius: 2px;
	transform-origin: center;
	transition: transform 0.25s ease;
}

.nav__burger span:nth-child(2) {
	transition: transform 0.2s ease, opacity 0.15s ease;
}

.nav__burger:not([aria-expanded="true"]) span:nth-child(2) {
	transition: transform 0.2s ease 0.18s, opacity 0.15s ease 0.18s;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.nav__burger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
	transform: scale(0);
}

.nav__burger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

body.nav-open {
	overflow: hidden;
}

/* ============ Buttons ============ */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 12px;
	font-weight: 600;
	font-size: 15px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
	user-select: none;
}

.btn--primary {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	box-shadow: 0 8px 20px rgba(91, 108, 255, 0.35);
}

.btn--primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(91, 108, 255, 0.45);
}

.btn--ghost {
	background: transparent;
	color: var(--text);
	border-color: var(--border);
}

.btn--ghost:hover {
	border-color: var(--accent);
	color: var(--accent);
}

.btn--sm {
	padding: 10px 16px;
	font-size: 14px;
}

.btn--lg {
	padding: 18px 28px;
	font-size: 16px;
}

/* ============ Hero ============ */
.hero {
	position: relative;
	padding: 80px 0 60px;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -200px;
	right: -200px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(122, 60, 255, 0.18), transparent 65%);
	z-index: 0;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -180px;
	left: -160px;
	width: 480px;
	height: 480px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(91, 108, 255, 0.18), transparent 65%);
	z-index: 0;
}

.hero__inner {
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	align-items: center;
	gap: 60px;
	position: relative;
	z-index: 1;
}

.badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 999px;
	font-size: 13px;
	color: var(--text-soft);
	font-weight: 500;
	box-shadow: var(--shadow-sm);
}

.badge__dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--success);
	box-shadow: 0 0 0 4px rgba(32, 201, 151, 0.15);
}

.hero__title {
	margin: 22px 0 18px;
	font-size: clamp(34px, 4.6vw, 56px);
	line-height: 1.08;
	letter-spacing: -0.025em;
	font-weight: 800;
}

.accent {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lead {
	font-size: 18px;
	color: var(--text-soft);
	max-width: 560px;
	margin: 0 0 28px;
}

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

.hero__perks {
	list-style: none;
	padding: 0;
	margin: 32px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
}

.hero__perks li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--text-soft);
	font-size: 14px;
}

.check {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
	background: rgba(32, 201, 151, 0.15);
	color: var(--success);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
}

/* ============ Hero visual ============ */
.hero__visual {
	position: relative;
	height: 460px;
}

.card-stack {
	position: relative;
	width: 100%;
	height: 100%;
}

.mock-card {
	position: absolute;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	padding: 22px;
}

.mock-card--main {
	top: 20px;
	left: 30px;
	right: 30px;
	/* bottom: 60px; */
	display: flex;
	flex-direction: column;
}

.mock-card__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.mock-card__title {
	font-weight: 700;
	font-size: 15px;
}

.mock-card__pill {
	font-size: 11px;
	font-weight: 600;
	padding: 5px 10px;
	border-radius: 999px;
	background: var(--accent-soft);
	color: var(--accent);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mock-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.mock-list li {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--bg);
	font-size: 14px;
}

.mock-time {
	color: var(--text-mute);
	font-variant-numeric: tabular-nums;
	font-weight: 600;
}

.mock-name {
	color: var(--text);
	font-weight: 500;
}

.mock-tag {
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	text-transform: lowercase;
}

.mock-tag--green { background: rgba(32, 201, 151, 0.14); color: #129a72; }
.mock-tag--blue  { background: rgba(91, 108, 255, 0.14); color: var(--accent); }
.mock-tag--grey  { background: rgba(15, 21, 53, 0.08);  color: var(--text-soft); }
.mock-tag--orange{ background: rgba(255, 138, 61, 0.16); color: #cc6b1e; }

.mock-card--mini {
	bottom: 0;
	right: 0;
	width: 230px;
	padding: 18px;
}

.mini__label {
	font-size: 12px;
	color: var(--text-mute);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 14px;
	font-weight: 600;
}

.mini__bars {
	display: flex;
	align-items: flex-end;
	gap: 8px;
	height: 80px;
	margin-bottom: 8px;
}

.mini__bars span {
	flex: 1;
	height: var(--h, 50%);
	background: linear-gradient(180deg, var(--accent), var(--accent-2));
	border-radius: 6px;
	opacity: 0.9;
}

.mini__legend {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	color: var(--text-mute);
	font-variant-numeric: tabular-nums;
}

.mock-card--bubble {
	top: -35px;
	left: -10px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 18px;
	border-radius: 18px;
}

.bubble__avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
}

.bubble__name {
	font-weight: 600;
	font-size: 14px;
}

.bubble__text {
	font-size: 12px;
	color: var(--text-mute);
}

/* ============ Sections ============ */
.section {
	padding: 90px 0;
}

.section--alt {
	background: var(--bg-soft);
}

.section__head {
	max-width: 720px;
	margin: 0 auto 50px;
	text-align: center;
}

.eyebrow {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--accent);
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	background: var(--accent-soft);
	margin-bottom: 16px;
}

.section h2 {
	margin: 0 0 14px;
	font-size: clamp(28px, 3.2vw, 40px);
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.section__head p {
	font-size: 17px;
	color: var(--text-soft);
	margin: 0;
}

/* ============ Features grid ============ */
.grid {
	display: grid;
	gap: 22px;
}

.grid--features {
	grid-template-columns: repeat(3, 1fr);
}

.feature {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
	border-color: transparent;
}

.feature__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: var(--accent-soft);
	color: var(--accent);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.feature__icon svg {
	width: 24px;
	height: 24px;
}

.feature h3 {
	margin: 0 0 8px;
	font-size: 18px;
	letter-spacing: -0.01em;
}

.feature p {
	margin: 0;
	color: var(--text-soft);
	font-size: 15px;
}

/* ============ Steps ============ */
.steps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}

.step {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 28px;
	position: relative;
}

.step__num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	margin-bottom: 16px;
}

.step h3 {
	margin: 0 0 6px;
	font-size: 17px;
}

.step p {
	margin: 0;
	color: var(--text-soft);
	font-size: 15px;
}

/* ============ Schedule ============ */
.schedule {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.schedule__copy h2 {
	font-size: clamp(26px, 2.8vw, 36px);
	margin: 14px 0 16px;
}

.schedule__copy p {
	color: var(--text-soft);
	font-size: 17px;
	margin: 0 0 22px;
}

.check-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.check-list li {
	position: relative;
	padding-left: 30px;
	color: var(--text);
	font-size: 15px;
}

.check-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--accent-soft);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6cff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='5 13 10 18 19 7'/></svg>");
	background-size: 12px;
	background-repeat: no-repeat;
	background-position: center;
}

.schedule__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 28px;
	background: var(--surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
}

.chip {
	padding: 12px 18px;
	border-radius: 999px;
	background: var(--bg);
	border: 1px solid var(--border);
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
}

.chip--accent {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	border-color: transparent;
	box-shadow: 0 6px 16px rgba(91, 108, 255, 0.3);
}

/* ============ Pricing ============ */
.pricing__card {
	max-width: 760px;
	margin: 0 auto;
	background: var(--surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	padding: 36px;
	position: relative;
	overflow: hidden;
}

.pricing__card::after {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(91, 108, 255, 0.18), transparent 65%);
}

.pricing__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 26px;
	position: relative;
}

.pricing__plan {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.pricing__hint {
	color: var(--text-soft);
	font-size: 14px;
	margin-top: 4px;
}

.pricing__price {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.pricing__amount {
	font-size: 54px;
	font-weight: 800;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.pricing__currency {
	font-size: 26px;
	font-weight: 700;
	color: var(--text);
}

.pricing__period {
	font-size: 14px;
	color: var(--text-mute);
	margin-left: 4px;
}

.pricing__list {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px 24px;
	position: relative;
}

.pricing__list li {
	position: relative;
	padding-left: 28px;
	color: var(--text);
	font-size: 15px;
}

.pricing__list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(32, 201, 151, 0.16);
	color: var(--success);
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.pricing__cta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	position: relative;
}

.pricing__note {
	font-size: 13px;
	color: var(--text-mute);
	max-width: 320px;
}

/* ============ FAQ ============ */
.faq {
	max-width: 860px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.faq__item {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item[open] {
	border-color: var(--accent);
	box-shadow: 0 14px 30px rgba(91, 108, 255, 0.1);
}

.faq__item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 24px;
	font-weight: 600;
	font-size: 16px;
	cursor: pointer;
	list-style: none;
	color: var(--text);
}

.faq__item summary::-webkit-details-marker {
	display: none;
}

.faq__chevron {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--accent-soft);
	color: var(--accent);
	position: relative;
	transition: transform 0.2s ease, background 0.2s ease;
}

.faq__chevron::before,
.faq__chevron::after {
	content: '';
	position: absolute;
	width: 10px;
	height: 2px;
	background: var(--accent);
	border-radius: 2px;
	transition: transform 0.2s ease;
}

.faq__chevron::after {
	transform: rotate(90deg);
}

.faq__item[open] .faq__chevron::after {
	transform: rotate(0deg);
}

.faq__answer {
	padding: 0 24px 22px;
	color: var(--text-soft);
	font-size: 15.5px;
	line-height: 1.65;
}

.faq__answer p {
	margin: 0;
}

/* ============ CTA ============ */
.cta {
	padding: 70px 24px 100px;
}

.cta__inner {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	border-radius: var(--radius-lg);
	padding: 50px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	box-shadow: 0 24px 50px rgba(91, 108, 255, 0.35);
	position: relative;
	overflow: hidden;
}

.cta__inner::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
}

.cta h2 {
	margin: 0 0 8px;
	font-size: 28px;
	letter-spacing: -0.02em;
}

.cta p {
	margin: 0;
	font-size: 16px;
	opacity: 0.9;
}

.cta .btn--primary {
	background: #fff;
	color: var(--accent);
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.cta .btn--primary:hover {
	color: var(--accent-2);
}

/* ============ Footer ============ */
.footer {
	background: #0f1535;
	color: #c8cdf1;
	padding: 50px 0 36px;
}

.footer__inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1.5fr;
	gap: 40px;
	align-items: start;
}

.footer .logo__mark {
	color: #fff;
}

.footer__brand p {
	margin: 12px 0 0;
	color: #9aa1cc;
	font-size: 14px;
	max-width: 340px;
}

.footer__nav {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer__nav a {
	color: #c8cdf1;
	font-size: 14px;
}

.footer__nav a:hover {
	color: #fff;
}

.footer__meta {
	font-size: 13px;
	color: #8088b8;
	text-align: right;
}

/* ============ Responsive ============ */
@media (max-width: 980px) {
	.hero {
		padding: 60px 0 40px;
	}

	.hero__inner {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.hero__visual {
		order: -1;
		height: 380px;
	}

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

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

	.schedule {
		grid-template-columns: 1fr;
		gap: 32px;
	}

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

	.footer__inner {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.footer__meta {
		text-align: left;
	}
}

/* ---------- Header: tablet & mobile ---------- */
@media (max-width: 900px) {
	.header {
		--header-h: 64px;
	}

	.header__inner {
		gap: 12px;
		overflow: visible;
	}

	.nav__burger {
		display: flex;
		margin-left: auto;
	}

	.header__overlay {
		display: block;
		position: fixed;
		inset: 0;
		top: var(--header-h);
		background: rgba(15, 21, 53, 0.45);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 0.25s ease, visibility 0.25s ease;
		z-index: 90;
	}

	.header__overlay.is-visible {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav {
		position: fixed;
		top: var(--header-h);
		left: 0;
		right: 0;
		height: calc(100vh - var(--header-h));
		height: calc(100dvh - var(--header-h));
		max-height: calc(100dvh - var(--header-h));
		margin: 0;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 12px 20px 28px;
		padding-bottom: max(28px, env(safe-area-inset-bottom));
		background: var(--surface);
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow-lg);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateY(-12px);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: transform 0.28s ease, opacity 0.25s ease, visibility 0.25s ease;
		z-index: 95;
	}

	.nav.is-open {
		transform: translateY(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.nav a:not(.btn) {
		padding: 16px 4px;
		font-size: 17px;
		border-bottom: 1px solid var(--border);
		white-space: normal;
	}

	.nav a:not(.btn):last-of-type {
		border-bottom: 0;
	}

	.nav__cta {
		margin-top: 20px;
		width: 100%;
		padding: 16px 20px;
		font-size: 16px;
		justify-content: center;
	}
}

@media (max-width: 720px) {
	.container {
		padding: 0 16px;
	}

	.logo__sub {
		display: none;
	}

	.logo__mark {
		font-size: 20px;
	}

	.nav__burger {
		width: 42px;
		height: 42px;
	}

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

	.section {
		padding: 60px 0;
	}

	.pricing__card,
	.cta__inner {
		padding: 28px;
	}

	.pricing__top {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
	}

	.pricing__amount {
		font-size: 44px;
	}

	.cta__inner {
		text-align: left;
		flex-direction: column;
		align-items: flex-start;
	}

	.hero__visual {
		/* height: 320px; */
		height: 450px;
	}

	.mock-card--mini {
		width: 200px;
	}

	.cta {
		padding-left: 16px;
		padding-right: 16px;
	}
}
