:root {
	--color-primary: #0f1b2d;
	--color-primary-light: #1a3050;
	--color-accent: #00d4aa;
	--color-text: #1a1a2e;
	--color-text-light: #5a6a7a;
	--color-bg: #f5f7fa;
	--color-bg-dark: #0f1b2d;
	--font-main: 'DM Sans', sans-serif;
	--container: 1200px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	color: var(--color-text);
	line-height: 1.7;
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
}

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

/* ========== HEADER ========== */
.header {
	padding: 12px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	background: rgba(255,255,255,0.85);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	z-index: 100;
	border-bottom: 1px solid rgba(0,0,0,0.04);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 20px;
}

.logo {
	text-decoration: none;
	display: flex;
	align-items: center;
}

.logo__img {
	height: 68px;
	width: auto;
}

.footer__logo .logo__img {
	height: 58px;
	filter: brightness(0) invert(1);
}

.nav {
	display: flex;
	gap: 32px;
}

.nav a {
	color: var(--color-text-light);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.3px;
	text-transform: uppercase;
	position: relative;
	transition: color 0.3s;
}

.nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--color-accent);
	transition: width 0.3s ease;
}

.nav a:hover {
	color: var(--color-primary);
}

.nav a:hover::after {
	width: 100%;
}

/* ========== BUTTONS ========== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	background: var(--color-primary);
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-family: var(--font-main);
	font-size: 14px;
	letter-spacing: 0.5px;
	border-radius: 8px;
	transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.btn::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--color-accent), #00b894);
	opacity: 0;
	transition: opacity 0.35s;
}

.btn:hover::before {
	opacity: 1;
}

.btn span {
	position: relative;
	z-index: 1;
}

.btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0,212,170,0.3);
}

.btn_small {
	padding: 10px 22px;
	font-size: 13px;
}

.btn_outline {
	background: transparent;
	color: #fff;
	border: 2px solid rgba(255,255,255,0.3);
}

.btn_outline::before {
	display: none;
}

.btn_outline:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
	box-shadow: none;
	transform: translateY(-2px);
}

.btn_full {
	width: 100%;
	justify-content: center;
}

/* ========== HERO ========== */
.hero {
	padding: 160px 0 100px;
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
}

.hero__bg {
	position: absolute;
	inset: 0;
	background: url('../img/hero-bg.jpg') center/cover no-repeat;
	z-index: -2;
}

.hero__bg-overlay {
	position: absolute;
	inset: 0;
	background: var(--color-primary);
	z-index: -1;
	opacity: 0.92;
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		radial-gradient(ellipse at 20% 50%, rgba(0,212,170,0.15) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 30%, rgba(0,212,170,0.1) 0%, transparent 50%),
		radial-gradient(ellipse at 50% 100%, rgba(0,212,170,0.06) 0%, transparent 40%);
	z-index: 1;
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 0;
	background: 
		linear-gradient(135deg, transparent 0%, rgba(0,212,170,0.03) 50%, transparent 100%);
	animation: heroShift 8s ease-in-out infinite alternate;
}

@keyframes heroShift {
	0% { transform: translateX(0) scale(1); }
	100% { transform: translateX(-30px) scale(1.05); }
}

.hero__bg-grid {
	position: absolute;
	inset: 0;
	z-index: 1;
	opacity: 0.06;
	background-image: 
		linear-gradient(rgba(0,212,170,0.3) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,212,170,0.3) 1px, transparent 1px);
	background-size: 60px 60px;
}

.hero__container {
	position: relative;
	z-index: 2;
}

.hero__content {
	max-width: 680px;
}

.hero__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: var(--color-accent);
	margin-bottom: 24px;
	opacity: 0.8;
}

.hero__label::before {
	content: '◆';
	font-size: 8px;
}

.hero h1 {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.15;
	margin-bottom: 24px;
	color: #fff;
}

.hero h1 em {
	font-style: normal;
	color: var(--color-accent);
}

.hero__subtitle {
	font-size: 17px;
	color: rgba(255,255,255,0.7);
	margin-bottom: 36px;
	line-height: 1.8;
	max-width: 540px;
}

.hero__buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.hero__stats {
	display: flex;
	gap: 64px;
	margin-top: 64px;
	padding-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.08);
}

.stat {
	text-align: left;
}

.stat__num {
	display: block;
	font-size: 44px;
	font-weight: 700;
	color: var(--color-accent);
	line-height: 1;
	margin-bottom: 6px;
	letter-spacing: -1px;
}

.stat__label {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 500;
}

.hero__particles {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
	pointer-events: none;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--color-accent);
	border-radius: 50%;
	opacity: 0.15;
	animation: floatParticle 12s infinite ease-in-out;
}

@keyframes floatParticle {
	0%, 100% { transform: translateY(0) translateX(0); opacity: 0.15; }
	25% { transform: translateY(-40px) translateX(20px); opacity: 0.3; }
	50% { transform: translateY(-80px) translateX(-10px); opacity: 0.15; }
	75% { transform: translateY(-30px) translateX(30px); opacity: 0.25; }
}

/* ========== SECTIONS ========== */
.section {
	padding: 100px 0;
	position: relative;
}

.section_gray {
	background: var(--color-bg);
}

.section__title {
	font-size: 40px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 12px;
	text-align: center;
	line-height: 1.2;
}

.section__title_white {
	color: #fff;
}

.section__sub {
	text-align: center;
	color: var(--color-text-light);
	font-size: 16px;
	margin-bottom: 0;
	font-weight: 400;
}

.section_dark .section__sub {
	color: rgba(255,255,255,0.5);
}

/* ========== SERVICES INTRO ========== */
.section_services-intro {
	padding: 80px 0 60px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-bg-dark) 100%);
}

.section_services-intro::before {
	content: '';
	position: absolute;
	inset: 0;
	background: 
		url('../img/arrow-bg.jpg') center/cover no-repeat,
		radial-gradient(ellipse at 30% 50%, rgba(0,212,170,0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 70% 50%, rgba(0,212,170,0.05) 0%, transparent 50%);
	opacity: 0.12;
	z-index: 0;
}

.section_services-intro::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,212,170,0.15), transparent);
}

.services-intro {
	position: relative;
	z-index: 1;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.services-intro__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--color-accent);
	margin-bottom: 16px;
	opacity: 0.7;
}

.services-intro .section__title {
	color: #fff;
	font-size: 48px;
	margin-bottom: 0;
}

.services-intro__divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin: 24px auto;
}

.services-intro__divider-line {
	flex: 0 1 80px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,212,170,0.3));
}

.services-intro__divider-line:last-child {
	background: linear-gradient(90deg, rgba(0,212,170,0.3), transparent);
}

.services-intro__divider-icon {
	font-size: 24px;
	line-height: 1;
	animation: gentlyBounce 3s ease-in-out infinite;
}

@keyframes gentlyBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-4px); }
}

.services-intro__sub {
	font-size: 18px;
	font-weight: 500;
	color: rgba(255,255,255,0.8);
	margin-bottom: 16px;
}

.services-intro__desc {
	font-size: 15px;
	color: rgba(255,255,255,0.5);
	line-height: 1.8;
	max-width: 560px;
	margin: 0 auto;
}

/* ========== SERVICE SECTIONS (listing) ========== */
.service-section {
	position: relative;
	min-height: 90vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.service-section__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-section:hover .service-section__bg {
	transform: scale(1.05);
}

.service-section__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(15,27,45,0.88) 0%,
		rgba(15,27,45,0.75) 40%,
		rgba(15,27,45,0.6) 100%
	);
	display: flex;
	align-items: center;
}

.service-section_light .service-section__overlay {
	background: linear-gradient(
		135deg,
		rgba(255,255,255,0.82) 0%,
		rgba(245,247,250,0.76) 40%,
		rgba(240,243,245,0.70) 100%
	);
}

.service-section_light .service-section__title {
	color: var(--color-primary);
}

.service-section_light .service-section__desc {
	color: var(--color-text-light);
}

.service-section_light .btn_outline {
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.service-section_light .btn_outline:hover {
	color: var(--color-accent);
	border-color: var(--color-accent);
}

.service-section__inner {
	position: relative;
	z-index: 2;
	max-width: 680px;
}

.service-section__num {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--color-accent);
	display: block;
	margin-bottom: 16px;
}

.service-section__title {
	font-size: 56px;
	font-weight: 700;
	color: #fff;
	line-height: 1.1;
	margin-bottom: 20px;
}

.service-section__desc {
	font-size: 18px;
	color: rgba(255,255,255,0.7);
	line-height: 1.7;
	margin-bottom: 32px;
	max-width: 520px;
}

@media (max-width: 768px) {
	.service-section {
		min-height: 80vh;
	}

	.service-section__overlay {
		background: linear-gradient(
			180deg,
			rgba(15,27,45,0.9) 0%,
			rgba(15,27,45,0.8) 100%
		);
	}

	.service-section__title {
		font-size: 36px;
	}

	.service-section__desc {
		font-size: 15px;
	}
}

/* ========== CASES ========== */
.cases {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.case-card {
	padding: 36px;
	background: #fff;
	border-radius: 16px;
	position: relative;
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border: 1px solid rgba(0,0,0,0.04);
	box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.case-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 40px rgba(0,212,170,0.1);
	border-color: rgba(0,212,170,0.15);
}

.case-card__num {
	position: absolute;
	top: 16px;
	right: 20px;
	font-size: 48px;
	font-weight: 700;
	color: rgba(0,0,0,0.03);
	line-height: 1;
	transition: color 0.3s;
	letter-spacing: -2px;
}

.case-card:hover .case-card__num {
	color: rgba(0,212,170,0.08);
}

.case-card__logo {
	display: block;
	max-width: 160px;
	height: 50px;
	object-fit: contain;
	margin-bottom: 20px;
	opacity: 0.7;
	transition: opacity 0.3s;
}

.case-card:hover .case-card__logo {
	opacity: 1;
}

.case-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary);
	margin-bottom: 10px;
	position: relative;
}

.case-card p {
	color: var(--color-text-light);
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 16px;
	position: relative;
}

.case-card__tag {
	display: inline-block;
	padding: 5px 14px;
	background: rgba(0,212,170,0.08);
	border-radius: 20px;
	font-size: 11px;
	font-weight: 600;
	color: var(--color-accent);
	letter-spacing: 1px;
	text-transform: uppercase;
}

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

.about__photo {
	position: relative;
}

.about__photo::after {
	content: '';
	position: absolute;
	inset: -4px;
	border: 2px solid rgba(0,212,170,0.2);
	border-radius: 16px;
	z-index: -1;
	transition: transform 0.4s;
}

.about:hover .about__photo::after {
	transform: rotate(2deg) scale(1.02);
}

.about__photo-img {
	width: 100%;
	border-radius: 14px;
	box-shadow: 0 8px 30px rgba(0,0,0,0.1);
	transition: transform 0.4s;
}

.about:hover .about__photo-img {
	transform: scale(1.01);
}

.about__info .section__title {
	text-align: left;
}

.about__info p {
	margin-bottom: 16px;
	font-size: 16px;
	color: var(--color-text-light);
	line-height: 1.8;
}

.about__info p strong {
	color: var(--color-primary);
	font-weight: 600;
}

.about__list {
	list-style: none;
	margin-top: 24px;
}

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

.about__list li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--color-accent);
	font-weight: bold;
}

.about__quote {
	padding: 32px 36px;
	background: linear-gradient(135deg, rgba(0,212,170,0.06) 0%, rgba(0,212,170,0.02) 100%);
	border-radius: 14px;
	border: 1px solid rgba(0,212,170,0.1);
	margin-top: 32px;
	position: relative;
}

.about__quote-marker {
	position: absolute;
	top: -12px;
	left: 24px;
	background: var(--color-bg);
	padding: 0 8px;
	line-height: 1;
}

.about__quote blockquote {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-text);
	line-height: 1.6;
	position: relative;
}

.about__quote-author {
	display: block;
	margin-top: 12px;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-accent);
	letter-spacing: 1px;
}

/* ========== CONTACT ========== */
.section_dark {
	background: var(--color-bg-dark);
	color: #fff;
	position: relative;
	overflow: hidden;
}

.section_dark::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(0,212,170,0.3), transparent);
}

.section_dark-grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	opacity: 0.04;
	background-image: 
		linear-gradient(rgba(0,212,170,0.3) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0,212,170,0.3) 1px, transparent 1px);
	background-size: 60px 60px;
}

.contact-header {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 48px;
}

.contact-header__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 4px;
	color: var(--color-accent);
	margin-bottom: 12px;
	opacity: 0.6;
}

.form {
	max-width: 600px;
	margin: 0 auto 40px;
	position: relative;
	z-index: 1;
}

.form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.form__input {
	width: 100%;
	padding: 16px 20px;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-family: var(--font-main);
	background: rgba(255,255,255,0.05);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.08);
	transition: all 0.3s;
}

.form__row + .form__input {
	margin-bottom: 16px;
}

.form__input::placeholder {
	color: rgba(255,255,255,0.3);
	font-weight: 400;
}

.form__input:focus {
	outline: none;
	border-color: var(--color-accent);
	background: rgba(255,255,255,0.08);
	box-shadow: 0 0 0 3px rgba(0,212,170,0.08);
}

.form__textarea {
	min-height: 120px;
	resize: vertical;
	margin-bottom: 20px;
}

.form__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255,255,255,0.5);
}

.form__consent input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--color-accent);
	cursor: pointer;
}

.form__consent label {
	cursor: pointer;
	user-select: none;
}

.form__consent a {
	color: var(--color-accent);
	text-decoration: none;
	border-bottom: 1px dashed rgba(0,212,170,0.4);
}

.form__consent a:hover {
	border-bottom-color: var(--color-accent);
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 48px;
	position: relative;
	z-index: 1;
}

.contact-info__link {
	display: inline-flex;
	align-items: center;
	color: rgba(255,255,255,0.4);
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: color 0.3s;
}

.contact-info__link:hover {
	color: var(--color-accent);
}

.form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
	margin-bottom: 16px;
}

.form__input {
	width: 100%;
	padding: 16px 20px;
	border: none;
	border-radius: 10px;
	font-size: 15px;
	font-family: var(--font-main);
	background: rgba(255,255,255,0.06);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.1);
	transition: all 0.3s;
}

.form__row + .form__input {
	margin-bottom: 16px;
}

.form__input::placeholder {
	color: rgba(255,255,255,0.35);
	font-weight: 400;
}

.form__input:focus {
	outline: none;
	border-color: var(--color-accent);
	background: rgba(255,255,255,0.1);
	box-shadow: 0 0 0 3px rgba(0,212,170,0.1);
}

.form__textarea {
	min-height: 120px;
	resize: vertical;
	margin-bottom: 20px;
}

.form__consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 1.5;
	color: rgba(255,255,255,0.5);
}

.form__consent input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--color-accent);
	cursor: pointer;
}

.form__consent label {
	cursor: pointer;
	user-select: none;
}

.form__consent a {
	color: var(--color-accent);
	text-decoration: none;
	border-bottom: 1px dashed rgba(0,212,170,0.4);
}

.form__consent a:hover {
	border-bottom-color: var(--color-accent);
}

.contact-info {
	display: flex;
	justify-content: center;
	gap: 40px;
}

.contact-info__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	font-size: 15px;
	font-weight: 500;
	transition: color 0.3s;
}

.contact-info__link:hover {
	color: var(--color-accent);
}

/* ========== FOOTER ========== */
.footer {
	padding: 36px 0;
	background: var(--color-primary);
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer__copy {
	color: rgba(255,255,255,0.3);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.3px;
}

/* ========== ANIMATIONS ========== */
.animate-element {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
	            transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-element.animate-in {
	opacity: 1;
	transform: translateY(0);
}

.service-section.animate-element {
	transition-delay: 0ms;
}

/* Staggered for case cards */
.case-card:nth-child(1) { transition-delay: 0ms; }
.case-card:nth-child(2) { transition-delay: 80ms; }
.case-card:nth-child(3) { transition-delay: 160ms; }
.case-card:nth-child(4) { transition-delay: 240ms; }
.case-card:nth-child(5) { transition-delay: 320ms; }
.case-card:nth-child(6) { transition-delay: 400ms; }

/* ========== BURGER ========== */
.burger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 5px;
	padding: 4px;
}

.burger__line {
	width: 24px;
	height: 2px;
	background: var(--color-primary);
	transition: all 0.3s;
	border-radius: 2px;
}

.burger.active .burger__line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.burger.active .burger__line:nth-child(2) {
	opacity: 0;
}

.burger.active .burger__line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
	.cases {
		grid-template-columns: repeat(2, 1fr);
	}

	.about {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.header__actions {
		gap: 12px;
	}

	.btn_small {
		display: none;
	}

	.burger {
		display: flex;
	}

	.nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: rgba(255,255,255,0.95);
		backdrop-filter: blur(20px);
		flex-direction: column;
		padding: 24px;
		gap: 4px;
		box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	}

	.nav.active {
		display: flex;
	}

	.nav a {
		padding: 12px 0;
		font-size: 13px;
	}

	.nav a::after {
		display: none;
	}

	.hero {
		padding: 140px 0 80px;
	}

	.hero h1 {
		font-size: 36px;
	}

	.hero__subtitle {
		font-size: 15px;
	}

	.hero__stats {
		gap: 32px;
		flex-wrap: wrap;
		margin-top: 40px;
		padding-top: 28px;
	}

	.stat__num {
		font-size: 34px;
	}

	.section {
		padding: 80px 0;
	}

	.section__title {
		font-size: 30px;
	}

	.section__sub {
		margin-bottom: 0;
	}

	.section_services-intro {
		padding: 60px 0 40px;
	}

	.services-intro .section__title {
		font-size: 36px;
	}

	.services-intro__divider-line {
		flex: 0 1 40px;
	}

	.cases {
		grid-template-columns: 1fr;
		gap: 20px;
	}

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

	.about__info .section__sub {
		text-align: center;
	}

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

	.contact-info {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}

	.footer__inner {
		flex-direction: column;
		gap: 12px;
		text-align: center;
	}
}
