:root {
	/* Colors */
	--bg: #ffffff;
	--bg-muted: #f5f7fa;
	--text: #0f172a;
	--text-muted: #64748b;
	--accent: #2563eb;
	--accent-dark: #1d4ed8;
	--border-color: #e5e7eb;
	
	/* Spacing */
	--spacing-xs: 8px;
	--spacing-sm: 16px;
	--spacing-md: 24px;
	--spacing-lg: 32px;
	--spacing-xl: 48px;
	
	/* Border radius */
	--radius-sm: 12px;
	--radius-md: 16px;
	--radius-lg: 20px;
	--radius-xl: 28px;
	--radius-full: 999px;
	
	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.25s ease;
	--transition-slow: 0.3s ease;
	
	/* Shadows */
	--shadow-sm: 0 20px 50px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 25px 60px rgba(0, 0, 0, 0.12);
	--shadow-button: 0 12px 30px rgba(37, 99, 235, 0.35);
}

/* ===== RESET & BASE STYLES ===== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-tap-highlight-color: transparent;
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	background: 
		linear-gradient(180deg, 
			#fdfeff 0%, 
			#ffffff 15%,
			#fefeff 35%,
			#ffffff 50%,
			#fbfcff 70%,
			#ffffff 85%,
			#fdfeff 100%
		);
	color: var(--text);
	line-height: 1.6;
	min-height: 100vh;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
	width: 100%;
}

/* ===== LAYOUT ===== */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--spacing-md);
	position: relative;
	z-index: 2;
}

#canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1;
	pointer-events: none;
}

/* ===== HEADER ===== */
.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	z-index: 1000;
}

.header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 72px;
}

.header .btn-primary {
	background: var(--bg);
	color: var(--accent);
	border: 1px solid var(--accent);
	padding: 12px var(--spacing-md);
	display: inline-block;
	transition: 
		transform var(--transition-normal), 
		box-shadow var(--transition-normal), 
		background-color var(--transition-normal), 
		color var(--transition-normal);
}

.header .btn-primary:hover {
	background: var(--accent);
	color: var(--bg);
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 14px 28px rgba(37, 99, 235, 0.25);
}

.header .btn-primary:active {
	transform: translateY(0) scale(0.99);
	box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
}

.logo {
	height: 40px;
	width: auto;
	object-fit: contain;
}

/* ===== NAVIGATION ===== */
.nav {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
}

.nav a:not(.btn) {
	text-decoration: none;
	color: var(--text);
	position: relative;
	transition: 
		transform var(--transition-normal), 
		color var(--transition-normal);
}

.nav a:not(.btn):hover {
	transform: translateY(-1px);
}

.nav a:not(.btn)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition-normal);
}

.nav a:not(.btn):hover::after {
	transform: scaleX(1);
}

/* ===== MAIN ===== */
main {
	padding-top: 72px;
}

/* ===== HERO SECTION ===== */
.hero {
	min-height: calc(100svh - 72px);
	display: flex;
	align-items: center;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: center;
	transform: translateY(-40px);
}

.hero h1 {
	font-size: 52px;
	line-height: 1.2;
}

.hero-title-accent {
	color: var(--accent);
}

.hero p {
	color: var(--text-muted);
}

.hero-actions {
	margin: 32px 0;
	display: flex;
	align-items: center;
	gap: 20px;
}

.btn-link {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	position: relative;
	transition: 
		transform var(--transition-normal), 
		color var(--transition-normal);
}

.btn-link:hover {
	transform: translateY(-1px);
}

.btn-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform var(--transition-normal);
}

.btn-link:hover::after {
	transform: scaleX(1);
}

.hero-note {
	margin: -12px 0 24px;
	font-size: 14px;
	color: var(--text-muted);
}

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

.hero-note a:hover {
	text-decoration: underline;
}

.hero-achievements {
	display: inline-flex;
	align-items: center;
	gap: 18px;
	padding: 10px var(--spacing-sm);
	border-radius: var(--radius-full);
	background: rgba(15, 23, 42, 0.04);
	border: 1px solid rgba(15, 23, 42, 0.06);
	white-space: nowrap;
}

.hero-achievement {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--text-muted);
	position: relative;
	padding-right: 18px;
}

.hero-achievement i {
	color: var(--accent);
}

.hero-achievement strong {
	color: var(--text);
	font-weight: 700;
	margin-right: 6px;
}

.hero-achievement::after {
	content: "";
	position: absolute;
	right: 4px;
	top: 50%;
	width: 1px;
	height: 16px;
	background: rgba(15, 23, 42, 0.15);
	transform: translateY(-50%);
}

.hero-achievement:last-child {
	padding-right: 0;
}

.hero-achievement:last-child::after {
	display: none;
}

.hero-features {
	list-style: none;
	padding: 0;
	display: flex;
	gap: var(--spacing-md);
	color: var(--text-muted);
}

.hero-visual img {
	width: 100%;
	max-width: 350px;
	height: auto;
	object-fit: contain;
	margin-bottom: -40px;
	margin-left: 90px;
	transform: translateY(4px);
	filter: drop-shadow(0 18px 36px rgba(15, 23, 42, 0.18));
}

.hero-visual {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-visual img {
	position: relative;
	z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h2 {
	font-size: 36px;
	margin-bottom: var(--spacing-lg);
}

.section-lead {
	max-width: 760px;
	margin: -20px 0 32px;
	color: var(--text-muted);
	font-size: 16px;
}

/* ===== GRID & CARDS ===== */
.section {
	padding: 96px 0;
}

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

.section-accent {
	background: linear-gradient(180deg, #eef2ff, var(--bg));
}

.btn {
	padding: 14px 28px;
	border-radius: var(--radius-full);
	text-decoration: none;
	font-weight: 500;
	transition: 
		transform var(--transition-normal), 
		box-shadow var(--transition-normal), 
		background-color var(--transition-normal), 
		color var(--transition-normal);
}

.btn-primary {
	background: var(--accent);
	color: var(--bg);
	border: none;
}

.btn-primary:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: var(--shadow-button);
}

.btn-primary:active {
	transform: translateY(0) scale(0.99);
	box-shadow: 0 12px 24px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
	border: 1px solid var(--border-color);
	color: var(--text);
	background: transparent;
}

.btn-secondary:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
}

.btn-secondary:active {
	transform: translateY(0) scale(0.99);
}

.grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: var(--spacing-lg);
}

.card {
	background: var(--bg);
	padding: var(--spacing-lg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid transparent;
	transition: 
		transform var(--transition-slow), 
		box-shadow var(--transition-slow), 
		border-color var(--transition-slow);
}

.card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--accent);
}

/* ===== GUARANTEES ===== */
.guarantees-two-col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--spacing-lg);
	margin-top: var(--spacing-xl);
}

.guarantee-item {
	position: relative;
	padding: var(--spacing-xl) var(--spacing-lg);
	background: linear-gradient(135deg, var(--bg) 0%, rgba(255,255,255,0.95) 100%);
	border-radius: 18px;
	box-shadow: var(--shadow-sm);
	border: 1px solid rgba(37, 99, 235, 0.08);
	transition: 
		transform var(--transition-slow), 
		box-shadow var(--transition-slow), 
		border-color var(--transition-slow);
	text-align: center;
}

.guarantee-item:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--accent);
}

.guarantee-item i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin: 0 auto 18px;
	border-radius: var(--radius-sm);
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.06));
	color: var(--accent);
	font-size: 24px;
}

.guarantee-metric {
	display: none;
}

.guarantee-item h3 {
	margin: 0 0 10px 0;
	font-size: 18px;
	font-weight: 600;
	color: var(--text);
}

.guarantee-highlight {
	background: rgba(37, 99, 235, 0.06);
	border-radius: var(--radius-sm);
	padding: 14px;
	margin-top: 14px;
}

.guarantee-highlight p {
	margin: 0;
	color: var(--text);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
}

.guarantee-item p {
	margin: 0;
	color: var(--text-muted);
	font-size: 14px;
	line-height: 1.6;
}

/* ===== STEP & PROCESS ===== */
.step-number {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: .08em;
	color: var(--accent);
}

.process-grid .step-number {
	display: none;
}

.step-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(37, 99, 235, 0.12);
	color: var(--accent);
	margin-bottom: var(--spacing-sm);
}

/* ===== PROCESS GRID ===== */
.process-grid {
	position: relative;
	grid-template-columns: repeat(2, minmax(260px, 1fr));
	row-gap: 40px;
}

.process-grid::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 24px;
	bottom: 24px;
	width: 2px;
	background: repeating-linear-gradient(
		to bottom,
		rgba(37, 99, 235, 0.3),
		rgba(37, 99, 235, 0.3) 6px,
		transparent 6px,
		transparent 14px
	);
	transform: translateX(-50%);
}

.process-grid .card {
	position: relative;
	overflow: hidden;
}

.process-grid .card::before {
	content: attr(data-step);
	position: absolute;
	right: 18px;
	top: 10px;
	font-size: 64px;
	font-weight: 700;
	color: rgba(37, 99, 235, 0.12);
	letter-spacing: 0.08em;
}

.fa-solid {
	color: var(--accent);
}

.fa-arrow-left {
	color: var(--bg);
}

.fa-arrow-right {
	color: var(--bg);
}


/* CASES */
.slider-wrapper {
	position: relative;
	padding: 0 72px;
	overflow: hidden;
	margin: 0 auto;
}

.slider {
	display: flex;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
}

.slider.no-slide-transition .slide {
	transition: none !important;
}

.slide {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 100%;
	max-width: 980px;
	margin: 0 auto;
	opacity: 0;
	transform: scale(0.96);
	transition: transform 0.5s ease, opacity 0.5s ease;
	will-change: transform, opacity;
	cursor: pointer;
	padding: 16px;
}

.slide.active {
	opacity: 1;
	transform: scale(1);
	z-index: 10;
}


.case-card {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
	align-items: center;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.case-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, var(--accent), rgba(37, 99, 235, 0));
}

.case-content {
	position: relative;
}

.case-content h3 {
	margin: 8px 0 12px;
}

.case-goal {
	margin: 0 0 16px;
	font-size: 15px;
	color: var(--text);
	font-weight: 500;
}

.case-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	background: rgba(37, 99, 235, 0.1);
	padding: 6px 12px;
	border-radius: 999px;
}

.case-desc {
	color: var(--text-muted);
	margin: 0 0 20px;
}

.case-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin: 0 0 18px;
}

.case-summary-item {
	background: rgba(37, 99, 235, 0.06);
	border-radius: 16px;
	padding: 14px 16px;
}

.case-summary-item span {
	display: inline-block;
	font-size: 11px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 6px;
}

.case-summary-item p {
	margin: 0;
	color: var(--text-muted);
	font-size: 13px;
}

.case-hero {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin: 0 0 18px;
}

.case-hero-number {
	font-size: 32px;
	font-weight: 700;
	color: var(--accent);
}
/* 
.case-hero-text {
	color: var(--text-muted);
	font-size: 14px;
} */

.case-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 16px;
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 12px;
}

.case-meta span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.case-meta i {
	color: var(--accent);
}

.case-complexity {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 150px;
}

.case-complexity span {
	font-size: 12px;
	white-space: nowrap;
}

.complexity-bar {
	height: 6px;
	background: linear-gradient(90deg, var(--accent), #60a5fa);
	border-radius: 3px;
	flex: 1;
	opacity: 0.8;
}

.case-before-after {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 12px;
	align-items: center;
	padding: 16px;
	background: rgba(37, 99, 235, 0.04);
	border-radius: 12px;
	margin: 16px 0;
	font-size: 13px;
}

.before-after-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.before-label, .after-label {
	display: flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
}

.before-label i {
	color: #ef4444;
}

.after-label i {
	color: #10b981;
}

.before-after-item p {
	margin: 0;
	color: var(--text-muted);
	font-size: 13px;
}

.before-after-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-muted);
	opacity: 0.5;
}


.case-metrics {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	display: grid;
	gap: 10px;
}

.case-metrics li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.case-metrics li::before {
	content: "•";
	color: var(--accent);
}

.case-metrics span {
	color: var(--accent);
	font-weight: 600;
	margin-right: 8px;
}

.case-stack {
	font-size: 13px;
	color: var(--text-muted);
	margin: 0 0 24px;
}

.case-btn {
	display: inline-block;
}

.case-buttons {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-top: 24px;
}

.case-buttons .btn {
	padding: 14px 28px;
}

.btn-link-unstyled {
	color: var(--accent);
	text-decoration: none;
	font-weight: 600;
	position: relative;
	transition: transform 0.25s ease, color 0.25s ease;
	border: none;
	background: none;
	cursor: pointer;
	font-size: 16px;
	font-family: inherit;
	padding: 0;
}

.btn-link-unstyled::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.btn-link-unstyled:hover {
	transform: translateY(-1px);
}

.btn-link-unstyled:hover::after {
	transform: scaleX(1);
}

.case-visual {
	display: flex;
	justify-content: center;
	position: relative;
	padding-left: 28px;
}

.case-visual::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8%;
	bottom: 8%;
	width: 1px;
	background: linear-gradient(180deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0));
}

.case-visual-card {
	background: #f8fafc;
	border-radius: 24px;
	padding: 22px;
	box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.04);
	text-align: center;
}

.case-visual img {
	width: 100%;
	max-width: 280px;
	height: auto;
	object-fit: contain;
	display: block;
	border-radius: 24px;
}

.case-visual-caption {
	margin-top: 12px;
	font-size: 12px;
	color: var(--text-muted);
}

.slider-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	background: var(--accent);
	color: var(--bg);
	border: none;
	border-radius: 50%;
	width: 48px;
	height: 48px;
	cursor: pointer;
	font-size: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 
		background-color var(--transition-slow), 
		transform var(--transition-slow);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
	background: var(--accent-dark);
	transform: translateY(-50%) scale(1.05);
}

.slider-btn.prev {
	left: 8px;
}

.slider-btn.next {
	right: 8px;
}

.slider-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.slider-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: #cbd5e1;
	cursor: pointer;
	transition: background-color 0.2s ease;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	flex-shrink: 0;
}

.slider-dot.active {
	background: var(--accent);
	transform: scale(1.25);
}

/* PROCESS */
#process {
	position: relative;
	overflow: hidden;
}

.process-arrows {
	position: absolute;
	top: 180px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 1200px;
	pointer-events: none;
	opacity: 0.35;
	z-index: 2;
}


.process-arrows path {
	stroke-dashoffset: 0;
	animation: draw-line 4s ease-in-out infinite;
}

@keyframes draw-line {
	0% {
		stroke-dashoffset: 40;
	}

	100% {
		stroke-dashoffset: 0;
	}
}

/* ===== FAQ SECTION ===== */
.faq {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 64px;
	row-gap: var(--spacing-xs);
}

.faq h2 {
	grid-column: 1 / -1;
}

.faq-item {
	border-bottom: 1px solid var(--border-color);
	padding-right: var(--spacing-sm);
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--spacing-sm);
	padding: var(--spacing-md) 0;
	font-size: 18px;
	font-weight: 500;
	background: none;
	border: none;
	cursor: pointer;
	color: var(--text);
	text-align: left;
}

.faq-question:hover {
	color: var(--accent);
}

.faq-icon {
	font-size: 24px;
	font-weight: 300;
	transition: transform .35s ease;
	flex-shrink: 0;
}

.faq-content {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
	overflow: hidden;
}

.faq-answer p {
	margin: 0 0 24px;
	color: var(--text-muted);

	/* text animation */
	opacity: 0;
	transform: translateY(12px);
	transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* OPEN STATE */
.faq-item.active .faq-content {
	grid-template-rows: 1fr;
}

.faq-item.active .faq-answer p {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.15s;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
	color: var(--accent);
}

/* ===== CONTACT SECTION ===== */
.contact-box {
	background: var(--bg);
	border-radius: var(--radius-xl);
	padding: var(--spacing-xl);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
	border: 1px solid var(--border-color);
}

.contact-box h2 {
	text-align: center;
	margin-bottom: var(--spacing-lg);
}

.contact-form {
	display: grid;
	gap: 20px;
}

/* ===== FORM INPUTS ===== */
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: var(--spacing-sm) 18px;
	font-size: 15px;
	border-radius: 14px;
	border: 1px solid var(--border-color);
	background: #f9fafb;
	color: var(--text);
	transition: 
		border-color var(--transition-normal), 
		box-shadow var(--transition-normal), 
		background var(--transition-normal);
}

.contact-form textarea {
	min-height: 120px;
	resize: vertical;
	font-family: inherit;
}

/* Form focus states */
.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	background: var(--bg);
	border-color: var(--accent);
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

/* Placeholders */
.contact-form ::placeholder {
	color: #9ca3af;
}

/* Submit button */
.contact-form button {
	margin-top: var(--spacing-xs);
	padding: var(--spacing-sm);
	font-size: 16px;
	font-weight: 600;
	border-radius: var(--radius-full);
	border: none;
	cursor: pointer;
	background: var(--accent);
	color: var(--bg);
	box-shadow: var(--shadow-button);
	transition: 
		transform var(--transition-fast), 
		box-shadow var(--transition-fast);
}

.contact-form button:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.contact-form button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.contact-note {
	margin-top: var(--spacing-sm);
	text-align: center;
	font-size: 14px;
	color: var(--text-muted);
}

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

.contact-note a:hover {
	text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
	text-align: center;
	color: var(--text-muted);
	padding: var(--spacing-lg) 0;
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrapper {
	overflow-x: auto;
	margin-top: 40px;
	background: var(--bg);
	padding: var(--spacing-lg);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid transparent;
}

.comparison-wrapper.card {
	transition: 
		transform var(--transition-slow), 
		box-shadow var(--transition-slow), 
		border-color var(--transition-slow);
}

.comparison-wrapper.card:hover {
	box-shadow: var(--shadow-md);
	border-color: var(--accent);
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	background: transparent;
	border-radius: 0;
	overflow: visible;
	box-shadow: none;
}

.comparison-table thead {
	background: transparent;
}

.comparison-table th {
	padding: 16px;
	text-align: center;
	font-weight: 600;
	font-size: 14px;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-bottom: 2px solid #e5e7eb;
}

.comparison-table th.criteria-col {
	text-align: left;
}

.comparison-table th.company-col {
	text-align: center;
}

.comparison-table th.highlight {
	background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
	color: var(--bg);
	border-radius: var(--radius-sm);
}

.comparison-table td {
	padding: 16px;
	border-bottom: 1px solid #f0f1f3;
	text-align: center;
	vertical-align: middle;
	color: var(--text);
	font-size: 14px;
}

.comparison-table td:first-child {
	text-align: left;
	font-weight: 500;
}

.comparison-table tbody tr:nth-child(even) {
	background: #fafbfc;
}

.comparison-table tr:last-child td {
	border-bottom: none;
}

.comparison-table td:nth-child(2) {
	text-align: center;
	font-weight: 500;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
}

.check-icon {
	color: #10b981;
	font-size: 18px;
}

.cross-icon {
	color: #ef4444;
	font-size: 18px;
}

/* EXCLUSIVE FEATURES */
.comparison-table tr.exclusive {
	background: linear-gradient(90deg, rgba(251, 191, 36, 0.1) 0%, transparent 100%) !important;
	border-left: 4px solid var(--accent);
}

.comparison-table tr.exclusive td {
	color: var(--text);
	font-weight: 500;
}

.comparison-table tr.exclusive td:first-child {
	padding-left: 20px;
}

.exclusive-icon {
	color: #fbbf24;
	margin-right: 8px;
	font-size: 14px;
}

/* ===== ANIMATIONS ===== */
.js .reveal {
	opacity: 0;
	transform: translateY(24px);
}

.js .reveal.animate {
	animation: fadeUp 0.8s ease forwards;
}

@media (prefers-reduced-motion: reduce) {
	.js .reveal {
		opacity: 1;
		transform: none;
	}

	.js .reveal.animate {
		animation: none;
	}
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
	}

	.hero-achievements {
		flex-wrap: wrap;
		white-space: normal;
		border-radius: 16px;
	}

	.process-grid {
		padding-top: 0;
		grid-template-columns: 1fr;
	}

	.process-grid::before {
		display: none;
	}

	.process-grid .card::before {
		font-size: 48px;
		right: 12px;
	}

	.guarantees-two-col {
		grid-template-columns: repeat(2, 1fr);
		gap: 28px;
	}

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

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

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav {
		position: fixed;
		top: 72px;
		right: 0;
		width: 100%;
		max-width: 320px;
		height: calc(100vh - 72px);
		background: #ffffff;
		display: flex;
		flex-direction: column;
		padding: 24px 24px 32px 24px;
		transform: translateX(100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
		overflow-y: auto;
		z-index: 1000;
		border-top: none;
	}

	.nav.active {
		transform: translateX(0);
	}

	.nav a {
		margin: 0 !important;
		padding: 16px 12px;
		border-bottom: 1px solid #f1f5f9;
		font-size: 16px;
		font-weight: 500;
		transition: background-color 0.2s ease;
	}

	.nav a:hover {
		background-color: #f8fafc;
		transform: none;
	}

	.nav a:not(.btn)::after {
		display: none;
	}

	.nav a:last-child {
		border-bottom: none;
	}

	.header .btn-primary {
		margin: 16px 0 8px 0 !important;
		width: 100%;
		text-align: center;
		padding: 16px 24px;
		border-radius: 12px;
		box-sizing: border-box;
	}

	.container {
		padding: 0 16px;
	}

	.hero {
		min-height: auto;
		padding: 40px 0 48px;
		margin: 0;
	}

	.hero-grid {
		transform: translateY(0);
		gap: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	.hero-content {
		order: 1;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	.hero h1 {
		font-size: 32px;
		line-height: 1.2;
		margin: 0 0 20px 0;
		text-align: center;
		width: 100%;
	}

	.hero p {
		font-size: 16px;
		line-height: 1.5;
		text-align: center;
		margin: 0;
		width: 100%;
	}

	.hero-visual {
		display: flex;
		justify-content: center;
		align-items: center;
		order: 0;
		margin-top: 0;
		margin-bottom: 20px;
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-visual img {
		width: 100%;
		max-width: 200px;
		height: auto;
		margin-bottom: 0;
		margin-left: 0;
		filter: none;
	}

	.hero-actions {
		margin: 20px 0 0 0;
		display: flex;
		flex-direction: column;
		gap: 10px;
		order: 1;
		width: 100%;
		align-self: stretch;
		padding: 0;
	}

	.hero-actions .btn {
		width: 100%;
		text-align: center;
		margin: 0;
		padding-left: 28px;
		padding-right: 28px;
		box-sizing: border-box;
		display: block;
	}

	.hero-actions .btn-link {
		width: 100%;
		text-align: center;
		margin: 0;
		padding: 14px 28px;
		box-sizing: border-box;
		display: block;
	}

	.hero-note {
		font-size: 14px;
		text-align: center;
		width: 100%;
		padding: 0;
		margin: 12px 0 0 0;
		order: 2;
	}

	.hero-achievements {
		gap: 6px;
		justify-content: center;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		order: 3;
		margin: 16px 0 0 0;
		width: 100%;
		padding: 0;
	}

	.hero-achievement {
		font-size: 11px;
		padding: 8px 10px;
		flex: 0 0 auto;
		white-space: nowrap;
		justify-content: center;
		gap: 6px;
	}

	.hero-achievement i {
		font-size: 14px;
	}

	.section {
		padding: 56px 0;
	}

	.section h2 {
		font-size: 32px;
		margin-bottom: 32px;
		text-align: center;
	}

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

	.card {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.card:not(.case-card) p {
		display: none;
	}

	.step-icon {
		width: 56px;
		height: 56px;
		font-size: 24px;
	}

	.slider-wrapper {
		padding: 0 52px;
	}

	.slide {
		max-width: 560px;
	}

	.case-card {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
		flex-direction: column;
		padding: 24px 16px;
		border-radius: 16px;
	}

	.case-content {
		flex: none;
		width: 100%;
	}

	.case-tag {
		font-size: 11px;
		padding: 4px 10px;
		margin-bottom: 10px;
	}

	.case-content h3 {
		font-size: 20px;
		margin-bottom: 12px;
		line-height: 1.3;
	}

	.case-visual {
		flex: none;
		width: 100%;
		margin-top: 20px;
		display: none;
		padding-left: 0;
	}

	.case-visual img {
		border-radius: 12px;
	}

	.case-visual::before {
		display: none;
	}

	.case-meta {
		flex-wrap: wrap;
		gap: 6px;
		margin: 10px 0;
	}

	.case-meta span {
		font-size: 12px;
		padding: 5px 8px;
	}

	.case-goal {
		font-size: 14px;
		margin: 10px 0;
		line-height: 1.5;
		display: block;
		color: var(--text-muted);
	}

	.case-summary {
		gap: 12px;
		margin: 16px 0;
		flex-direction: column;
		display: flex;
		grid-template-columns: 1fr;
	}

	.case-summary-item {
		padding: 12px;
		border-radius: 8px;
		background: rgba(37, 99, 235, 0.06);
	}

	.case-summary-item span {
		font-size: 11px;
		font-weight: 600;
		margin-bottom: 6px;
		color: var(--accent);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		display: inline-block;
	}

	.case-summary-item p {
		font-size: 13px;
		line-height: 1.5;
		color: var(--text-muted);
		margin: 0;
	}

	.case-desc {
		font-size: 14px;
		display: block;
		color: var(--text-muted);
	}

	.case-hero {
		display: none;
	}

	.case-metrics {
		display: none;
		justify-items: center;
		margin: 12px 0;
		gap: 8px;
		color: var(--text-muted);
	}

	.case-hero-number {
		font-size: 48px;
		margin-bottom: 8px;
	}

	.case-metrics li {
		font-size: 13px;
		padding: 8px 12px;
	}

	.case-metrics li span {
		font-size: 16px;
	}

	.case-stack {
		font-size: 12px;
		margin: 12px 0;
	}

	.case-buttons {
		flex-direction: column;
		gap: 10px;
		margin-top: 16px;
	}

	.case-buttons .btn {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
		min-height: 48px;
		font-size: 15px;
	}

	.case-buttons .btn-link-unstyled {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
		min-height: 48px;
		font-size: 14px;
	}

	.slider-btn {
		width: 40px;
		height: 40px;
		font-size: 20px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}

	.slider-btn.prev {
		left: 8px;
	}

	.slider-btn.next {
		right: 8px;
	}

	.slider-btn:hover {
		transform: translateY(-50%) scale(1.05);
	}

	.slider-dots {
		margin-top: 24px;
		gap: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slider-dot {
		width: 12px;
		height: 12px;
		min-width: 12px;
		min-height: 12px;
		padding: 0;
		border-radius: 50%;
	}

	.slider-dot.active {
		width: 16px !important;
		height: 16px !important;
		min-width: 16px !important;
		min-height: 16px !important;
		border-radius: 50% !important;
		transform: none !important;
		background: var(--accent) !important;
	}

	.slider-wrapper {
		padding: 0;
		margin: 0 -16px;
	}

	.slider {
		padding: 0 16px;
		min-height: 600px;
	}

	.comparison-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 -16px;
		padding: 0 16px;
	}

	.comparison-table {
		min-width: 100%;
		font-size: 11px;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 10px 6px;
	}

	.comparison-table th {
		font-size: 10px;
		text-transform: none;
		letter-spacing: 0;
		word-break: break-word;
		line-height: 1.3;
	}

	.comparison-table td:first-child {
		font-size: 11px;
		text-align: left;
		padding-left: 8px;
		word-break: break-word;
	}

	.comparison-table .check-icon,
	.comparison-table .cross-icon {
		font-size: 16px;
		display: inline-block;
		vertical-align: middle;
	}

	.comparison-table tr.exclusive td:first-child {
		padding: 10px 6px 10px 12px;
	}

	.comparison-table tr.exclusive td:not(:first-child) {
		padding: 10px 6px;
	}

	.guarantees-two-col {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.guarantee-item {
		padding: 20px 16px;
		border-radius: 16px;
		text-align: center;
	}

	.guarantee-item i {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.guarantee-metric {
		font-size: 44px;
		margin-bottom: 10px;
	}

	.guarantee-item h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.guarantee-item p {
		font-size: 14px;
		line-height: 1.5;
	}

	.guarantee-highlight {
		margin-top: 12px;
		padding: 10px;
	}

	.guarantee-highlight p {
		font-size: 13px;
	}

	.faq-question {
		font-size: 16px;
		font-weight: 500;
		padding: 18px 0;
		gap: 12px;
	}

	.faq-icon {
		font-size: 24px;
		right: 0;
	}

	.faq-answer {
		padding: 0 0 18px 0;
	}

	.faq-answer p {
		font-size: 15px;
		line-height: 1.6;
	}

	.contact-form {
		gap: 16px;
	}

	.contact-form input,
	.contact-form textarea {
		font-size: 16px;
		padding: 14px 16px;
	}

	.contact-form textarea {
		min-height: 120px;
	}

	.contact-form div[style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.btn {
		padding: 16px 28px;
		font-size: 16px;
		min-height: 48px;
		border-radius: 12px;
	}
}

@media (max-width: 600px) {
	.guarantees-two-col {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.contact-box {
		padding: 32px 24px;
		border-radius: 24px;
	}
}

/* ===== MOBILE STYLES ===== */

/* Бургер-меню */
.mobile-menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 24px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1002;
	position: relative;
}

.mobile-menu-toggle span {
	width: 100%;
	height: 3px;
	background: var(--text);
	border-radius: 10px;
	transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

body.menu-open {
	overflow: hidden;
}

body.menu-open .header {
	border-bottom: none;
	z-index: 1001;
}

/* Overlay для мобильного меню */
.mobile-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0, 0, 0, 0.6);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
	z-index: 999;
}

.mobile-overlay.active {
	opacity: 1;
	pointer-events: all;
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: flex;
	}

	.nav {
		position: fixed;
		top: 72px;
		right: 0;
		width: 100%;
		max-width: 320px;
		height: calc(100vh - 72px);
		background: #ffffff;
		display: flex;
		flex-direction: column;
		padding: 24px 24px 32px 24px;
		transform: translateX(100%);
		transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		box-shadow: -8px 0 24px rgba(0, 0, 0, 0.15);
		overflow-y: auto;
		z-index: 1000;
		border-top: none;
	}

	.nav.active {
		transform: translateX(0);
	}

	.nav a {
		margin: 0 !important;
		padding: 16px 12px;
		border-bottom: 1px solid #f1f5f9;
		font-size: 16px;
		font-weight: 500;
		transition: background-color 0.2s ease;
	}

	.nav a:hover {
		background-color: #f8fafc;
		transform: none;
	}

	.nav a:not(.btn)::after {
		display: none;
	}

	.nav a:last-child {
		border-bottom: none;
	}

	.header .btn-primary {
		margin: 16px 0 8px 0 !important;
		width: 100%;
		text-align: center;
		padding: 16px 24px;
		border-radius: 12px;
		box-sizing: border-box;
	}

	.container {
		padding: 0 16px;
	}

	.hero {
		min-height: auto;
		padding: 40px 0 48px;
		margin: 0;
	}

	.hero-grid {
		transform: translateY(0);
		gap: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	.hero-content {
		order: 1;
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin: 0;
		padding: 0;
	}

	.hero h1 {
		font-size: 32px;
		line-height: 1.2;
		margin: 0 0 20px 0;
		text-align: center;
		width: 100%;
	}

	.hero p {
		font-size: 16px;
		line-height: 1.5;
		text-align: center;
		margin: 0;
		width: 100%;
	}

	.hero-visual {
		display: flex;
		justify-content: center;
		align-items: center;
		order: 0;
		margin-top: 0;
		margin-bottom: 20px;
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-visual img {
		width: 100%;
		max-width: 200px;
		height: auto;
		margin-bottom: 0;
		margin-left: 0;
		filter: none;
	}

	.hero-actions {
		margin: 20px 0 0 0;
		display: flex;
		flex-direction: column;
		gap: 10px;
		order: 1;
		width: 100%;
		align-self: stretch;
		padding: 0;
	}

	.hero-actions .btn {
		width: 100%;
		text-align: center;
		margin: 0;
		padding-left: 28px;
		padding-right: 28px;
		box-sizing: border-box;
		display: block;
	}

	.hero-actions .btn-link {
		width: 100%;
		text-align: center;
		margin: 0;
		padding: 14px 28px;
		box-sizing: border-box;
		display: block;
	}

	.hero-note {
		font-size: 14px;
		text-align: center;
		width: 100%;
		padding: 0;
		margin: 12px 0 0 0;
		order: 2;
	}

	.hero-achievements {
		gap: 6px;
		justify-content: center;
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		order: 3;
		margin: 16px 0 0 0;
		width: 100%;
		padding: 0;
	}

	.hero-achievement {
		font-size: 11px;
		padding: 8px 10px;
		flex: 0 0 auto;
		white-space: nowrap;
		justify-content: center;
		gap: 6px;
	}

	.hero-achievement i {
		font-size: 14px;
	}

	.section {
		padding: 56px 0;
	}

	.section h2 {
		font-size: 32px;
		margin-bottom: 32px;
		text-align: center;
	}

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

	.card {
		padding: 24px 20px;
		border-radius: 16px;
	}

	.card:not(.case-card) p {
		display: none;
	}

	.step-icon {
		width: 56px;
		height: 56px;
		font-size: 24px;
	}

	.case-card {
		flex-direction: column;
		padding: 24px 16px;
		border-radius: 16px;
	}

	.case-content {
		flex: none;
		width: 100%;
	}

	.case-tag {
		font-size: 11px;
		padding: 4px 10px;
		margin-bottom: 10px;
	}

	.case-content h3 {
		font-size: 20px;
		margin-bottom: 12px;
		line-height: 1.3;
	}

	.case-visual {
		flex: none;
		width: 100%;
		margin-top: 20px;
		display: none;
	}

	.case-visual img {
		border-radius: 12px;
	}

	.case-meta {
		flex-wrap: wrap;
		gap: 6px;
		margin: 10px 0;
	}

	.case-meta span {
		font-size: 12px;
		padding: 5px 8px;
	}

	.case-goal {
		font-size: 14px;
		margin: 10px 0;
		line-height: 1.5;
		display: block;
		color: var(--text-muted);
	}

	.case-summary {
		gap: 12px;
		margin: 16px 0;
		flex-direction: column;
		display: flex;
	}

	.case-summary-item {
		padding: 12px;
		border-radius: 8px;
		background: rgba(37, 99, 235, 0.06);
	}

	.case-summary-item span {
		font-size: 11px;
		font-weight: 600;
		margin-bottom: 6px;
		color: var(--accent);
		text-transform: uppercase;
		letter-spacing: 0.12em;
		display: inline-block;
	}

	.case-summary-item p {
		font-size: 13px;
		line-height: 1.5;
		color: var(--text-muted);
		margin: 0;
	}

	.case-desc {
		font-size: 14px;
		display: block;
		color: var(--text-muted);
	}

	.case-hero {
		display: none;
	}

	.case-metrics {
		display: none;
	}

	.case-hero-number {
		font-size: 48px;
		margin-bottom: 8px;
	}

	/* .case-hero-text {
		font-size: 14px;
		line-height: 1.4;
	} */

	.case-metrics {
		margin: 12px 0;
		gap: 8px;
		color: var(--text-muted);
	}

	.case-metrics li {
		font-size: 13px;
		padding: 8px 12px;
	}

	.case-metrics li span {
		font-size: 16px;
	}

	.case-stack {
		font-size: 12px;
		margin: 12px 0;
	}

	.case-buttons {
		flex-direction: column;
		gap: 10px;
		margin-top: 16px;
	}

	.case-buttons .btn {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
		min-height: 48px;
		font-size: 15px;
	}

	.case-buttons .btn-link-unstyled {
		width: 100%;
		text-align: center;
		padding: 14px 20px;
		min-height: 48px;
		font-size: 14px;
	}

	.slider-btn {
		width: 36px;
		height: 36px;
		font-size: 18px;
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}

	.slider-btn.prev {
		left: 8px;
	}

	.slider-btn.next {
		right: 8px;
	}

	.slider-btn:hover {
		transform: translateY(-50%) scale(1.05);
	}

	.slider-dots {
		margin-top: 24px;
		gap: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.slider-dot {
		width: 12px;
		height: 12px;
		min-width: 12px;
		min-height: 12px;
		padding: 0;
		border-radius: 50%;
	}

	.slider-dot.active {
		width: 16px !important;
		height: 16px !important;
		min-width: 16px !important;
		min-height: 16px !important;
		border-radius: 50% !important;
		transform: none !important;
		background: var(--accent) !important;
	}

	.slider-wrapper {
		padding: 0;
		margin: 0 -16px;
	}

	.slider {
		padding: 0 16px;
		min-height: 600px;
	}

	.comparison-wrapper {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		margin: 0 -16px;
		padding: 0 16px;
	}

	.comparison-table {
		min-width: 100%;
		font-size: 11px;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 10px 6px;
	}

	.comparison-table th {
		font-size: 10px;
		text-transform: none;
		letter-spacing: 0;
		word-break: break-word;
		line-height: 1.3;
	}

	.comparison-table td:first-child {
		font-size: 11px;
		text-align: left;
		padding-left: 8px;
		word-break: break-word;
	}

	.comparison-table .check-icon,
	.comparison-table .cross-icon {
		font-size: 16px;
		display: inline-block;
		vertical-align: middle;
	}

	.comparison-table tr.exclusive td:first-child {
		padding: 10px 6px 10px 12px;
	}

	.comparison-table tr.exclusive td:not(:first-child) {
		padding: 10px 6px;
	}

	.guarantees-two-col {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	.guarantee-item {
		padding: 20px 16px;
		border-radius: 16px;
		text-align: center;
	}

	.guarantee-item i {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.guarantee-metric {
		font-size: 44px;
		margin-bottom: 10px;
	}

	.guarantee-item h3 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.guarantee-item p {
		font-size: 14px;
		line-height: 1.5;
	}

	.guarantee-highlight {
		margin-top: 12px;
		padding: 10px;
	}

	.guarantee-highlight p {
		font-size: 13px;
	}

	.faq-question {
		font-size: 16px;
		font-weight: 500;
		padding: 18px 0;
		gap: 12px;
	}

	.faq-icon {
		font-size: 24px;
		right: 0;
	}

	.faq-answer {
		padding: 0 0 18px 0;
	}

	.faq-answer p {
		font-size: 15px;
		line-height: 1.6;
	}

	.contact-form {
		gap: 16px;
	}

	.contact-form input,
	.contact-form textarea {
		font-size: 16px;
		padding: 14px 16px;
	}

	.contact-form textarea {
		min-height: 120px;
	}

	/* Два поля в один ряд на мобильных тоже в колонку */
	.contact-form div[style*="grid-template-columns"] {
		grid-template-columns: 1fr !important;
		gap: 16px !important;
	}

	.btn {
		padding: 16px 28px;
		font-size: 16px;
		min-height: 48px;
		border-radius: 12px;
	}
}

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

	.header-inner {
		height: 64px;
	}

	.logo {
		height: 36px;
	}

	.hero {
		padding: 32px 0 40px;
		margin: 0;
	}

	.hero h1 {
		font-size: 28px;
		line-height: 1.25;
		margin: 0 0 16px 0;
	}

	.hero p {
		font-size: 15px;
		margin: 0;
	}

	.hero-actions {
		margin: 16px 0 12px 0;
		gap: 8px;
	}

	.hero-visual {
		display: flex;
		justify-content: center;
		align-items: center;
		order: 0;
		margin-top: 0;
		margin-bottom: 16px;
		max-width: 160px;
		margin-left: auto;
		margin-right: auto;
	}

	.hero-visual img {
		width: 100%;
		max-width: 160px;
		height: auto;
		margin-bottom: 0;
		margin-left: 0;
		filter: none;
	}

	.section {
		padding: 48px 0;
	}

	.section h2 {
		font-size: 26px;
		margin-bottom: 28px;
	}

	.grid {
		gap: 12px;
	}

	.card {
		padding: 20px 16px;
	}

	.card h3 {
		font-size: 16px;
	}

	.card p {
		font-size: 14px;
	}

	.step-icon {
		width: 48px;
		height: 48px;
		font-size: 20px;
	}

	.hero-achievements {
		flex-direction: row;
		align-items: center;
		gap: 4px;
		justify-content: center;
		overflow-x: auto;
		margin-top: 12px;
	}

	.hero-achievement {
		width: auto;
		min-width: auto;
		flex-shrink: 0;
		justify-content: center;
		font-size: 10px;
		padding: 6px 8px;
		gap: 4px;
	}

	.hero-achievement i {
		font-size: 12px;
	}

	.case-goal {
		display: none;
	}

	.case-summary {
		display: flex;
	}

	.case-hero {
		display: none;
	}

	.case-card {
		padding: 20px 14px;
	}

	.case-tag {
		font-size: 10px;
		padding: 4px 8px;
	}

	.case-content h3 {
		font-size: 18px;
		line-height: 1.3;
	}

	.case-meta span {
		font-size: 11px;
		padding: 4px 6px;
	}

	.case-goal {
		font-size: 13px;
		display: block;
		color: var(--text-muted);
	}

	.case-summary {
		gap: 10px;
		margin: 12px 0;
		flex-direction: column;
		display: flex;
	}

	.case-summary-item {
		padding: 10px;
		background: rgba(37, 99, 235, 0.06);
	}

	.case-summary-item span {
		font-size: 10px;
		font-weight: 600;
		display: block;
		margin-bottom: 4px;
		color: var(--accent);
		text-transform: uppercase;
		letter-spacing: 0.12em;
	}

	.case-summary-item p {
		font-size: 12px;
		margin: 0;
		color: var(--text-muted);
	}

	.case-desc {
		font-size: 13px;
		display: block;
		color: var(--text-muted);
	}

	.case-hero {
		display: none;
	}

	.case-metrics {
		display: none;
	}

	.case-hero {
		margin: 12px 0;
		padding: 16px 12px;
	}

	.case-hero-number {
		font-size: 40px;
	}

	.case-hero-text {
		font-size: 13px;
	}

	.case-metrics {
		margin: 10px 0;
		gap: 6px;
	}

	.case-metrics li {
		font-size: 12px;
		padding: 6px 10px;
	}

	.case-metrics li span {
		font-size: 15px;
	}

	.case-stack {
		font-size: 11px;
		margin: 10px 0;
	}

	.case-buttons {
		margin-top: 12px;
		gap: 8px;
	}

	.case-buttons .btn {
		padding: 12px 16px;
		font-size: 14px;
		min-height: 48px;
	}

	.case-buttons .btn-link-unstyled {
		padding: 12px 16px;
		font-size: 13px;
		min-height: 48px;
	}

	.guarantee-item {
		padding: 16px 14px;
	}

	.guarantee-item i {
		font-size: 24px;
		margin-bottom: 8px;
	}

	.guarantee-metric {
		font-size: 36px;
		margin-bottom: 8px;
	}

	.guarantee-item h3 {
		font-size: 16px;
		margin-bottom: 8px;
	}

	.guarantee-item p {
		font-size: 13px;
	}

	.guarantee-highlight {
		margin-top: 10px;
		padding: 8px;
	}

	.guarantee-highlight p {
		font-size: 12px;
	}

	.card {
		padding: 24px 20px;
	}

	.comparison-table {
		min-width: 100%;
		font-size: 10px;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 8px 4px;
	}

	.comparison-table th {
		font-size: 9px;
		line-height: 1.2;
	}

	.comparison-table td:first-child {
		font-size: 10px;
		padding-left: 6px;
	}

	.comparison-table .check-icon,
	.comparison-table .cross-icon {
		font-size: 14px;
		display: inline-block;
		vertical-align: middle;
	}

	.comparison-table tr.exclusive td:first-child {
		padding: 8px 4px 8px 10px;
	}

	.comparison-table tr.exclusive td:not(:first-child) {
		padding: 8px 4px;
	}

	.comparison-table th.highlight {
		border-radius: 8px;
	}

	.contact-box {
		padding: 28px 20px;
	}

	.btn {
		font-size: 15px;
		padding: 15px 24px;
	}

	.slider-btn {
		width: 32px;
		height: 32px;
		font-size: 16px;
	}

	.slider-btn.prev {
		left: 8px;
	}

	.slider-btn.next {
		right: 8px;
	}

	.slider-dots {
		margin-top: 24px;
	}

	.slider-dot {
		width: 10px;
		height: 10px;
		min-width: 10px;
		min-height: 10px;
		padding: 0;
	}

	.slider-dot.active {
		width: 14px !important;
		height: 14px !important;
		min-width: 14px !important;
		min-height: 14px !important;
		border-radius: 50% !important;
		transform: none !important;
		background: var(--accent) !important;
	}

	.slider {
		min-height: 550px;
	}

	.faq-question {
		font-size: 15px;
		padding: 16px 0;
		gap: 10px;
	}

	.faq-icon {
		font-size: 20px;
	}

	.faq-answer {
		padding: 0 0 16px 0;
	}

	.faq-answer p {
		font-size: 14px;
	}
}
