* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
	background: #34383a;
	color: #ffffff;
}

.container {
	width: min(100% - 32px, 1180px);
	margin: 0 auto;
}

/* Header */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
	background: #ffffff;
	border-top: 4px solid rgba(96, 230, 188, 0.55);
	box-shadow: 0 2px 18px rgba(0, 0, 0, 0.08);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 32px;
}

.header-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	font-size: 26px;
	font-weight: 800;
	color: #61e6c7;
	letter-spacing: -0.04em;
}

.header-logo-img {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 18px rgba(96, 230, 196, 0.18);
	background: #f3f3f3;
	flex-shrink: 0;
}

.header-logo-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.header-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex: 1;
}

.nav-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 18px;
	border-radius: 12px;
	text-decoration: none;
	color: #202427;
	font-size: 15px;
	font-weight: 800;
	transition: 0.25s ease;
	position: relative;
}

.nav-link span {
	font-size: 13px;
	line-height: 1;
}

.nav-link:hover {
	color: #61e6c9;
	background: rgba(96, 230, 150, 0.1);
}

.nav-link.active {
	color: #61e6a6;
	background: linear-gradient(135deg, #ffd4cc, #ffe8e4);
}

.nav-link.active::after {
	content: '';
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: -2px;
	height: 3px;
	border-radius: 999px;
	background: linear-gradient(90deg, #61e6cb, #4cb8d8);
}

.header-burger {
	display: none;
	width: 44px;
	height: 44px;
	border: none;
	background: #ffe3de;
	border-radius: 12px;
	cursor: pointer;
	padding: 10px;
}

.header-burger span {
	display: block;
	width: 100%;
	height: 3px;
	background: #61e6ac;
	border-radius: 999px;
	margin: 5px 0;
	transition: 0.25s ease;
}

/* Hero */

.hero-section {
	position: relative;
	min-height: 100vh;
	padding: 150px 0 80px;
	overflow: hidden;
	background: radial-gradient(
			circle at 20% 70%,
			rgba(67, 160, 185, 0.28),
			transparent 32%
		),
		radial-gradient(
			circle at 85% 85%,
			rgba(96, 230, 199, 0.24),
			transparent 34%
		),
		linear-gradient(120deg, #353447 0%, #373839 48%, #403a36 100%);
}

.hero-bg-shape {
	position: absolute;
	right: -120px;
	top: 24%;
	width: 290px;
	height: 430px;
	border: 1px solid rgba(77, 184, 216, 0.32);
	border-radius: 120px;
	transform: rotate(-5deg);
	pointer-events: none;
}

.hero-bg-shape::after {
	content: '';
	position: absolute;
	right: -80px;
	top: 90px;
	width: 160px;
	height: 160px;
	border: 1px dashed rgba(189, 183, 93, 0.35);
	border-radius: 50%;
}

.hero-container {
	min-height: calc(100vh - 230px);
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: end;
	gap: 48px;
	position: relative;
	z-index: 2;
}

.hero-content {
	max-width: 620px;
	padding-bottom: 48px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	margin-bottom: 22px;
	border-radius: 999px;
	border: 1px solid rgba(83, 190, 220, 0.45);
	background: rgba(65, 166, 194, 0.35);
	color: #ffffff;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.hero-title {
	margin: 0 0 24px;
	font-size: clamp(42px, 5vw, 74px);
	line-height: 0.98;
	font-weight: 900;
	letter-spacing: -0.07em;
	color: #ffffff;
}

.hero-title span {
	display: inline-block;
	background: linear-gradient(90deg, #b8c177, #4cb8d8, #e66a61);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero-text {
	max-width: 620px;
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: rgba(255, 255, 255, 0.88);
	font-weight: 500;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 34px;
	min-width: 210px;
	padding: 17px 28px;
	border-radius: 999px;
	text-decoration: none;
	color: #344247;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
	background: linear-gradient(135deg, #b8c177, #4cb8d8);
	box-shadow: 0 16px 34px rgba(67, 160, 185, 0.22);
	transition: 0.25s ease;
}

.hero-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 20px 42px rgba(67, 160, 185, 0.32);
}

.hero-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
	align-items: stretch;
	padding-bottom: 40px;
}

.stat-side {
	display: grid;
	gap: 22px;
}

.stat-card {
	position: relative;
	min-height: 190px;
	padding: 34px 28px 28px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 22px;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.08),
		rgba(255, 255, 255, 0.02)
	);
	backdrop-filter: blur(8px);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	overflow: hidden;
}

.stat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	opacity: 0.35;
	background: radial-gradient(
		circle at 70% 10%,
		rgba(76, 184, 216, 0.3),
		transparent 45%
	);
	pointer-events: none;
}

.stat-card-large {
	min-height: 420px;
	background: linear-gradient(
		145deg,
		rgba(230, 105, 96, 0.25),
		rgba(255, 255, 255, 0.03)
	);
}

.stat-number-small {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 38px;
	height: 38px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	font-size: 17px;
	font-weight: 800;
	z-index: 2;
}

.stat-main {
	position: relative;
	z-index: 2;
	font-size: 52px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.06em;
	color: #ffffff;
}

.stat-card-large .stat-main {
	font-size: 58px;
}

.stat-label {
	position: relative;
	z-index: 2;
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

/* Adaptive */

@media (max-width: 991px) {
	.header-container {
		min-height: 76px;
	}

	.header-burger {
		display: block;
	}

	.header-burger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}

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

	.header-burger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.header-nav {
		position: absolute;
		top: 76px;
		left: 16px;
		right: 16px;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
		padding: 16px;
		background: #ffffff;
		border-radius: 18px;
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
	}

	.header-nav.active {
		display: flex;
	}

	.nav-link {
		width: 100%;
		justify-content: flex-start;
	}

	.hero-section {
		padding-top: 120px;
	}

	.hero-container {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 36px;
	}

	.hero-content {
		max-width: 100%;
		padding-bottom: 0;
		text-align: center;
	}

	.hero-badge {
		justify-content: center;
	}

	.hero-text {
		margin: 0 auto;
	}

	.hero-stats {
		max-width: 720px;
		width: 100%;
		margin: 0 auto;
		padding-bottom: 0;
	}

	.stat-card-large {
		min-height: 300px;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 24px, 1180px);
	}

	.header-logo {
		font-size: 22px;
	}

	.header-logo-img {
		width: 38px;
		height: 38px;
	}

	.hero-section {
		padding: 112px 0 56px;
	}

	.hero-title {
		font-size: 40px;
		line-height: 1.04;
	}

	.hero-text {
		font-size: 16px;
		line-height: 1.65;
	}

	.hero-stats {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.stat-side {
		gap: 16px;
	}

	.stat-card,
	.stat-card-large {
		min-height: 180px;
		border-radius: 18px;
	}

	.stat-main,
	.stat-card-large .stat-main {
		font-size: 44px;
	}

	.hero-button {
		width: 100%;
	}
}

/* Services */

.services-section {
	position: relative;
	padding: 80px 0 90px;
	overflow: hidden;
	background: linear-gradient(90deg, rgba(245, 111, 104, 0.11), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #f7f7f7 100%);
}

.services-header {
	text-align: center;
	margin-bottom: 42px;
}

.services-header h2 {
	margin: 0 0 14px;
	color: #df514a;
	font-size: 34px;
	line-height: 1.1;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.services-header p {
	margin: 0;
	color: #334044;
	font-size: 15px;
	font-weight: 500;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	max-width: 980px;
	margin: 0 auto;
}

.service-card {
	position: relative;
	padding: 34px 28px 28px;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(24, 31, 35, 0.1);
	box-shadow: 0 22px 55px rgba(0, 0, 0, 0.09);
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 18px;
	bottom: 18px;
	width: 5px;
	border-radius: 0 999px 999px 0;
	background: linear-gradient(180deg, #ff8a80, #ffb3aa);
}

.service-card-title {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 22px;
}

.service-icon {
	width: 42px;
	height: 42px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 13px;
	background: #ffa49b;
	color: #df514a;
	font-size: 22px;
	font-weight: 800;
}

.service-card h3 {
	margin: 0;
	color: #20262a;
	font-size: 24px;
	line-height: 1.18;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.service-image {
	position: relative;
	width: 100%;
	height: 430px;
	border-radius: 18px;
	overflow: hidden;
	margin-bottom: 22px;
	background: #eef1f2;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.service-card p {
	margin: 0 0 18px;
	color: #30383c;
	font-size: 15px;
	line-height: 1.8;
	font-weight: 500;
}

.service-note {
	margin-top: 24px;
	padding: 22px;
	border-radius: 16px;
	border: 1px solid rgba(24, 31, 35, 0.12);
	background: #fbfbfb;
}

.service-note h4 {
	margin: 0 0 10px;
	color: #df514a;
	font-size: 15px;
	font-weight: 900;
}

.service-note p {
	margin: 0;
	color: #20262a;
	font-size: 14px;
	line-height: 1.7;
	font-weight: 600;
}

.service-list {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.service-list-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 12px;
	border: 1px solid rgba(24, 31, 35, 0.12);
	background: #fbfbfb;
	color: #20262a;
	font-size: 14px;
	line-height: 1.45;
	font-weight: 700;
}

.service-list-item span {
	color: #ff746b;
	font-weight: 900;
}

.cooperation-card {
	max-width: 980px;
	margin: 42px auto 0;
	padding: 32px 38px;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
	text-align: center;
}

.cooperation-title {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-bottom: 18px;
}

.cooperation-title h3 {
	margin: 0;
	color: #20262a;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.cooperation-card p {
	max-width: 850px;
	margin: 0 auto;
	color: #30383c;
	font-size: 15px;
	line-height: 1.8;
	font-weight: 500;
}

/* Solutions */

.solutions-section {
	padding: 90px 0 100px;
	background: linear-gradient(90deg, rgba(255, 246, 244, 0.9), transparent 48%),
		#ffffff;
}

.solutions-container {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 70px;
	align-items: center;
	max-width: 980px;
}

.solutions-intro {
	position: relative;
	padding-left: 28px;
}

.solutions-intro::before {
	content: '';
	position: absolute;
	left: 0;
	top: -60px;
	width: 4px;
	height: 300px;
	background: linear-gradient(180deg, #ff7a70, #8a9b45);
	border-radius: 999px;
}

.solutions-label {
	display: inline-flex;
	align-items: center;
	padding: 9px 18px;
	margin-bottom: 22px;
	border-radius: 999px;
	background: #ffe0dc;
	color: #df514a;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.solutions-intro h2 {
	margin: 0 0 18px;
	color: #252b2f;
	font-size: clamp(38px, 4.4vw, 58px);
	line-height: 1.02;
	font-weight: 900;
	letter-spacing: -0.06em;
}

.solutions-intro h2 span {
	display: inline;
	color: #ef625a;
	text-decoration: underline;
	text-decoration-color: #0a5a78;
	text-decoration-thickness: 6px;
	text-underline-offset: 6px;
}

.solutions-intro p {
	margin: 0;
	max-width: 380px;
	color: #30383c;
	font-size: 15px;
	line-height: 1.75;
	font-weight: 500;
}

.solutions-list {
	border-left: 1px solid rgba(24, 31, 35, 0.16);
	padding-left: 34px;
}

.solution-item {
	display: grid;
	grid-template-columns: 42px 52px 1fr;
	gap: 20px;
	padding: 26px 0;
	border-bottom: 1px solid rgba(24, 31, 35, 0.14);
}

.solution-item:last-child {
	border-bottom: none;
}

.solution-number {
	padding-top: 10px;
	color: #5b666b;
	font-size: 13px;
	font-weight: 800;
}

.solution-icon {
	width: 42px;
	height: 42px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 13px;
	background: #d9544e;
	color: #ffffff;
	font-size: 20px;
	font-weight: 800;
}

.solution-icon.green {
	background: #7d8c35;
}

.solution-icon.blue {
	background: #087596;
}

.solution-icon.dark-green {
	background: #557500;
}

.solution-content h3 {
	margin: 0 0 8px;
	color: #20262a;
	font-size: 17px;
	line-height: 1.25;
	font-weight: 900;
}

.solution-content p {
	margin: 0;
	color: #30383c;
	font-size: 14px;
	line-height: 1.7;
	font-weight: 500;
}

/* Adaptive */

@media (max-width: 991px) {
	.services-section {
		padding: 64px 0 72px;
	}

	.services-grid {
		grid-template-columns: 1fr;
		max-width: 680px;
	}

	.service-image {
		height: 360px;
	}

	.solutions-section {
		padding: 72px 0 80px;
	}

	.solutions-container {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.solutions-intro {
		max-width: 620px;
	}

	.solutions-intro::before {
		top: -28px;
		height: 230px;
	}

	.solutions-list {
		padding-left: 24px;
	}
}

@media (max-width: 640px) {
	.services-section {
		padding: 52px 0 60px;
	}

	.services-header h2 {
		font-size: 30px;
	}

	.service-card {
		padding: 26px 18px 22px;
		border-radius: 18px;
	}

	.service-card h3 {
		font-size: 21px;
	}

	.service-image {
		height: 260px;
		border-radius: 15px;
	}

	.cooperation-card {
		padding: 26px 20px;
		border-radius: 18px;
	}

	.cooperation-title {
		flex-direction: column;
		gap: 10px;
	}

	.cooperation-title h3 {
		font-size: 22px;
	}

	.solutions-section {
		padding: 58px 0 66px;
	}

	.solutions-intro {
		padding-left: 20px;
	}

	.solutions-intro::before {
		height: 260px;
	}

	.solutions-label {
		font-size: 10px;
		padding: 8px 14px;
	}

	.solutions-intro h2 {
		font-size: 36px;
	}

	.solutions-list {
		border-left: none;
		padding-left: 0;
	}

	.solution-item {
		grid-template-columns: 34px 44px 1fr;
		gap: 14px;
		padding: 22px 0;
	}

	.solution-icon {
		width: 40px;
		height: 40px;
		border-radius: 12px;
	}

	.solution-content h3 {
		font-size: 16px;
	}
}

.site-footer {
	background: linear-gradient(135deg, #95e964 0%, #1a3724 100%);
	color: #ffffff;
	padding: 70px 0 34px;
	border-top: 4px solid rgba(42, 62, 66, 0.35);
}

.footer-container {
	max-width: 1180px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.1fr 1fr 1.35fr;
	gap: 90px;
	padding-bottom: 64px;
}

.footer-title {
	position: relative;
	margin: 0 0 26px;
	color: #ffffff;
	font-size: 15px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.footer-title::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -10px;
	width: 46px;
	height: 2px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
}

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

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 16px;
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 600;
	transition: 0.25s ease;
}

.footer-contact-item span {
	width: 18px;
	flex-shrink: 0;
	font-size: 18px;
	line-height: 1;
	color: #ffffff;
}

a.footer-contact-item:hover {
	opacity: 0.75;
	transform: translateX(4px);
}

.footer-share {
	margin-top: 34px;
}

.footer-share-title {
	margin-bottom: 18px;
}

.footer-socials {
	display: flex;
	align-items: center;
	gap: 10px;
}

.footer-socials a {
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 9px;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	transition: 0.25s ease;
}

.footer-socials a:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-3px);
}

.footer-nav {
	display: grid;
	gap: 13px;
}

.footer-nav a {
	color: #ffffff;
	text-decoration: none;
	font-size: 15px;
	line-height: 1.4;
	font-weight: 500;
	transition: 0.25s ease;
}

.footer-nav a:hover {
	opacity: 0.75;
	transform: translateX(4px);
}

.footer-about p {
	max-width: 430px;
	margin: 0;
	color: rgba(255, 255, 255, 0.96);
	font-size: 15px;
	line-height: 1.85;
	font-weight: 500;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding-top: 34px;
	border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-bottom p {
	margin: 0;
	color: #ffffff;
	font-size: 14px;
	font-weight: 500;
}

.footer-company-code {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border-radius: 999px;
	background: rgba(139, 48, 43, 0.35);
	color: #ffffff;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
}

/* Adaptive */

@media (max-width: 991px) {
	.site-footer {
		padding: 56px 0 30px;
	}

	.footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
		padding-bottom: 48px;
	}

	.footer-about {
		grid-column: 1 / -1;
	}

	.footer-about p {
		max-width: 100%;
	}
}

@media (max-width: 640px) {
	.site-footer {
		padding: 46px 0 26px;
	}

	.footer-grid {
		grid-template-columns: 1fr;
		gap: 38px;
		padding-bottom: 38px;
	}

	.footer-contact-item {
		align-items: flex-start;
		font-size: 14px;
	}

	.footer-nav a {
		font-size: 14px;
	}

	.footer-about p {
		font-size: 14px;
		line-height: 1.75;
	}

	.footer-bottom {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
	}

	.footer-company-code {
		width: 100%;
	}
}

/* Articles Section */

.articles-section {
	padding: 140px 0 95px;
	background: radial-gradient(
			circle at 12% 20%,
			rgba(20, 96, 78, 0.12),
			transparent 34%
		),
		linear-gradient(180deg, #eef5f1 0%, #f8f6ef 100%);
	border-bottom: 5px solid #315f52;
}

.articles-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 70px;
}

.section-eyebrow {
	margin: 0 0 8px;
	color: #315f52;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.articles-title {
	margin: 0;
	max-width: 520px;
	color: #293235;
	font-size: clamp(36px, 4vw, 58px);
	line-height: 1.02;
	font-weight: 900;
	letter-spacing: -0.06em;
}

.articles-title span {
	display: block;
	color: #1f6f88;
}

.title-line {
	width: 260px;
	height: 6px;
	border-radius: 999px;
	background: linear-gradient(90deg, #9d8d45, #d88b5a, #1f6f88);
	box-shadow: 0 18px 0 rgba(31, 111, 136, 0.18);
}

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

.article-card {
	position: relative;
	min-height: 390px;
	padding: 34px 30px 28px;
	border-radius: 22px;
	background: #ffffff;
	box-shadow: 0 22px 55px rgba(30, 45, 50, 0.12);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.article-card::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	height: 5px;
	background: linear-gradient(90deg, #315f52, #d88b5a, #1f6f88);
}

.article-card::after {
	content: '';
	position: absolute;
	right: -45px;
	bottom: -45px;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	opacity: 0.22;
	pointer-events: none;
}

.article-card-one::after {
	background: #d88b5a;
}

.article-card-two::after {
	background: #b5a94e;
}

.article-card-three::after {
	background: #5fb4c4;
}

.article-icon {
	width: 44px;
	height: 44px;
	margin-bottom: 20px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0dfc8;
	color: #315f52;
	font-size: 22px;
	font-weight: 900;
}

.article-tag {
	width: fit-content;
	margin-bottom: 20px;
	padding: 8px 13px;
	border-radius: 999px;
	background: #eef0ec;
	color: #293235;
	font-size: 12px;
	font-weight: 800;
}

.article-card h3 {
	margin: 0 0 16px;
	color: #252b2d;
	font-size: 21px;
	line-height: 1.25;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.article-card p {
	margin: 0;
	color: #3d474a;
	font-size: 15px;
	line-height: 1.75;
	font-weight: 500;
}

.article-bottom {
	position: relative;
	z-index: 2;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-top: 28px;
}

.article-bottom a {
	color: #1f6f88;
	text-decoration: none;
	font-size: 14px;
	font-weight: 900;
}

.article-bottom span {
	color: #315f52;
	font-size: 13px;
	font-weight: 700;
}

/* Legal Focus Section */

.legal-focus-section {
	position: relative;
	padding: 95px 0 80px;
	background: linear-gradient(
			105deg,
			rgba(49, 95, 82, 0.12) 0 6%,
			transparent 6%
		),
		#ffffff;
}

.legal-focus-container {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 80px;
	align-items: center;
}

.legal-focus-image {
	display: flex;
	justify-content: center;
}

.image-frame {
	position: relative;
	width: min(100%, 430px);
	height: 360px;
	padding: 10px;
	border-radius: 28px;
	background: linear-gradient(135deg, #d88b5a, #1f6f88, #9d8d45);
	box-shadow: 0 28px 60px rgba(31, 111, 136, 0.16);
	transform: rotate(1.5deg);
}

.image-frame img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: 20px;
	transform: rotate(-1.5deg);
}

.legal-focus-content h2 {
	position: relative;
	margin: 0 0 24px;
	padding-left: 18px;
	color: #242b2e;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: -0.06em;
}

.legal-focus-content h2::before {
	content: '';
	position: absolute;
	left: 0;
	top: 6px;
	width: 4px;
	height: 62px;
	background: linear-gradient(180deg, #315f52, #1f6f88);
	border-radius: 999px;
}

.legal-focus-content h2 span {
	display: block;
}

.legal-focus-content p {
	margin: 0 0 28px;
	color: #364043;
	font-size: 16px;
	line-height: 1.85;
	font-weight: 500;
}

.focus-list {
	display: grid;
	gap: 13px;
}

.focus-item {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 18px;
	border-radius: 13px;
	border: 1px solid rgba(35, 43, 46, 0.14);
	background: #ffffff;
	box-shadow: 0 10px 22px rgba(30, 45, 50, 0.05);
}

.focus-item span {
	width: 38px;
	height: 38px;
	flex-shrink: 0;
	border-radius: 12px;
	background: #f0dfc8;
	color: #315f52;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	font-weight: 900;
}

.focus-item strong {
	color: #252b2d;
	font-size: 15px;
	font-weight: 900;
}

.legal-stats {
	margin-top: 70px;
	padding: 22px;
	border-radius: 22px;
	background: linear-gradient(
		90deg,
		rgba(157, 141, 69, 0.18),
		rgba(95, 180, 196, 0.22)
	);
	box-shadow: 0 20px 50px rgba(31, 111, 136, 0.11);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.legal-stat {
	position: relative;
	padding: 22px 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.92);
	border-left: 3px solid #315f52;
	text-align: center;
}

.legal-stat:nth-child(2) {
	border-left-color: #9d8d45;
}

.legal-stat:nth-child(3) {
	border-left-color: #1f6f88;
}

.legal-stat strong {
	display: block;
	margin-bottom: 6px;
	color: #18333b;
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.05em;
}

.legal-stat span {
	color: #697276;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* Adaptive */

@media (max-width: 991px) {
	.articles-section {
		padding: 100px 0 78px;
	}

	.articles-head {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 46px;
	}

	.title-line {
		width: 220px;
	}

	.articles-grid {
		grid-template-columns: 1fr;
		max-width: 640px;
	}

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

	.legal-focus-section {
		padding: 74px 0 68px;
	}

	.legal-focus-container {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.legal-focus-content {
		max-width: 720px;
	}

	.legal-stats {
		grid-template-columns: 1fr;
		margin-top: 48px;
	}
}

@media (max-width: 640px) {
	.section-eyebrow {
		font-size: 11px;
		letter-spacing: 0.18em;
	}

	.articles-title {
		font-size: 36px;
	}

	.article-card {
		padding: 28px 22px 24px;
		border-radius: 18px;
	}

	.article-card h3 {
		font-size: 19px;
	}

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

	.article-bottom {
		flex-direction: column;
		align-items: flex-start;
	}

	.legal-focus-section {
		padding: 58px 0 58px;
	}

	.image-frame {
		height: 280px;
		border-radius: 22px;
	}

	.image-frame img {
		border-radius: 16px;
	}

	.legal-focus-content h2 {
		font-size: 34px;
	}

	.legal-focus-content p {
		font-size: 15px;
		line-height: 1.75;
	}

	.focus-item {
		align-items: flex-start;
	}

	.legal-stats {
		padding: 14px;
		border-radius: 18px;
	}

	.legal-stat strong {
		font-size: 30px;
	}
}

.faq-section {
	padding: 88px 0 96px;
	background: radial-gradient(
			circle at 15% 18%,
			rgba(126, 87, 194, 0.22),
			transparent 32%
		),
		radial-gradient(
			circle at 88% 72%,
			rgba(92, 211, 179, 0.28),
			transparent 34%
		),
		linear-gradient(135deg, #f7efe4 0%, #efe7f7 45%, #ddf4ee 100%);
}

.faq-header {
	text-align: center;
	margin-bottom: 64px;
}

.faq-line {
	width: 76px;
	height: 4px;
	margin: 0 auto 18px;
	border-radius: 999px;
	background: linear-gradient(90deg, #7e57c2, #d9a441, #4db99f);
}

.faq-header h2 {
	margin: 0 0 22px;
	color: #24272b;
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: -0.05em;
}

.faq-header p {
	margin: 0;
	color: #3f4b4f;
	font-size: 16px;
	line-height: 1.6;
	font-weight: 500;
}

.faq-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	max-width: 1050px;
	margin: 0 auto;
}

.faq-card {
	position: relative;
	min-height: 190px;
	padding: 34px 76px 34px 34px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 22px 55px rgba(42, 49, 54, 0.11);
	display: flex;
	align-items: flex-start;
	gap: 20px;
	transition: 0.25s ease;
	overflow: hidden;
}

.faq-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(
		135deg,
		rgba(126, 87, 194, 0.4),
		rgba(77, 185, 159, 0.28)
	);
	-webkit-mask:
		linear-gradient(#fff 0 0) content-box,
		linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.faq-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 70px rgba(42, 49, 54, 0.16);
}

.faq-icon {
	width: 50px;
	height: 50px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
}

.faq-icon-purple {
	background: linear-gradient(135deg, #7e57c2, #9b7bd6);
}

.faq-icon-mint {
	background: linear-gradient(135deg, #2f9d86, #6bd8bd);
}

.faq-icon-gold {
	background: linear-gradient(135deg, #b4862e, #dfbf67);
}

.faq-content {
	min-width: 0;
}

.faq-tag {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 15px;
	padding: 8px 13px;
	border-radius: 999px;
	font-size: 11px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tag-purple {
	background: rgba(126, 87, 194, 0.14);
	color: #6a43ae;
}

.tag-mint {
	background: rgba(47, 157, 134, 0.16);
	color: #247966;
}

.tag-gold {
	background: rgba(180, 134, 46, 0.18);
	color: #8a641e;
}

.faq-card h3 {
	margin: 0;
	color: #24272b;
	font-size: 20px;
	line-height: 1.35;
	font-weight: 900;
	letter-spacing: -0.03em;
	word-break: normal;
}

.faq-arrow {
	position: absolute;
	right: 30px;
	bottom: 28px;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #edf0ef;
	color: #394245;
	text-decoration: none;
	font-size: 18px;
	font-weight: 800;
	transition: 0.25s ease;
}

.faq-card:hover .faq-arrow {
	background: #24272b;
	color: #ffffff;
	transform: translateX(4px);
}

/* Adaptive */

@media (max-width: 991px) {
	.faq-section {
		padding: 72px 0 82px;
	}

	.faq-header {
		margin-bottom: 46px;
	}

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

@media (max-width: 640px) {
	.faq-section {
		padding: 58px 0 66px;
	}

	.faq-header h2 {
		font-size: 34px;
	}

	.faq-header p {
		font-size: 15px;
	}

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

	.faq-card {
		min-height: 170px;
		padding: 28px 64px 28px 24px;
		gap: 16px;
		border-radius: 18px;
	}

	.faq-icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
		font-size: 19px;
	}

	.faq-tag {
		font-size: 10px;
		padding: 7px 11px;
	}

	.faq-card h3 {
		font-size: 18px;
	}

	.faq-arrow {
		right: 22px;
		bottom: 24px;
	}
}

@media (max-width: 420px) {
	.faq-card {
		flex-direction: column;
		padding: 26px 24px 70px;
	}

	.faq-arrow {
		left: 24px;
		right: auto;
	}
}

.contact-block-section {
	padding: 130px 0;
	background: radial-gradient(
			circle at 14% 20%,
			rgba(32, 94, 110, 0.12),
			transparent 32%
		),
		linear-gradient(135deg, #f6f0e6 0%, #eef7f4 100%);
}

.contact-block-container {
	display: grid;
	grid-template-columns: 0.95fr 1.05fr;
	gap: 34px;
	align-items: stretch;
	max-width: 1120px;
}

.contact-info-card,
.contact-form-card {
	border-radius: 28px;
	box-shadow: 0 26px 70px rgba(29, 48, 54, 0.14);
}

.contact-info-card {
	padding: 50px 48px;
	background: linear-gradient(145deg, #173f4a 0%, #236d70 100%);
	color: #ffffff;
}

.contact-form-card {
	padding: 50px 48px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(30, 52, 58, 0.12);
}

.contact-badge,
.contact-form-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 24px;
	padding: 10px 18px;
	border-radius: 999px;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
}

.contact-badge {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.contact-form-badge {
	color: #205e6e;
	background: #d8f1ea;
}

.contact-info-card h2,
.contact-form-card h2 {
	margin: 0 0 18px;
	font-size: clamp(32px, 4vw, 44px);
	line-height: 1.08;
	font-weight: 900;
	letter-spacing: -0.05em;
}

.contact-info-card p,
.contact-form-card p {
	margin: 0;
	font-size: 16px;
	line-height: 1.8;
	font-weight: 500;
}

.contact-info-card p {
	color: rgba(255, 255, 255, 0.9);
}

.contact-form-card p {
	color: #39464a;
}

.contact-info-list {
	display: grid;
	gap: 18px;
	margin-top: 72px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 18px 20px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-info-icon {
	width: 46px;
	height: 46px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: #d6a85b;
	color: #173f4a;
	font-size: 20px;
	font-weight: 900;
}

.contact-info-item strong {
	display: block;
	margin-bottom: 6px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
}

.contact-info-item span,
.contact-info-item a {
	color: rgba(255, 255, 255, 0.92);
	text-decoration: none;
	font-size: 15px;
	line-height: 1.45;
	font-weight: 600;
}

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

.contact-form {
	margin-top: 34px;
}

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

.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid rgba(29, 48, 54, 0.16);
	background: #ffffff;
	border-radius: 14px;
	padding: 17px 18px;
	color: #1f2a2e;
	font-size: 15px;
	font-family: inherit;
	outline: none;
	transition: 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	color: #6f7b7f;
}

.contact-form input:focus,
.contact-form textarea:focus {
	border-color: #205e6e;
	box-shadow: 0 0 0 4px rgba(32, 94, 110, 0.12);
}

.contact-form textarea {
	min-height: 140px;
	resize: vertical;
	margin-bottom: 20px;
}

.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 24px;
	color: #39464a;
	font-size: 14px;
	line-height: 1.6;
	cursor: pointer;
}

.form-checkbox input {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #205e6e;
}

.form-checkbox a {
	color: #205e6e;
	font-weight: 800;
	text-decoration: none;
}

.form-checkbox a:hover {
	text-decoration: underline;
}

.contact-form button {
	width: 100%;
	border: none;
	border-radius: 14px;
	padding: 18px 24px;
	background: linear-gradient(135deg, #205e6e, #2f9d86);
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	font-family: inherit;
	cursor: pointer;
	transition: 0.25s ease;
}

.contact-form button:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 32px rgba(32, 94, 110, 0.22);
}

.form-success {
	display: none;
	margin-top: 18px !important;
	padding: 16px 18px;
	border-radius: 14px;
	background: #e2f5ed;
	color: #205e6e !important;
	font-size: 15px !important;
	line-height: 1.6 !important;
	font-weight: 800 !important;
	border: 1px solid rgba(47, 157, 134, 0.24);
}

/* Adaptive */

@media (max-width: 991px) {
	.contact-block-section {
		padding: 72px 0;
	}

	.contact-block-container {
		grid-template-columns: 1fr;
		max-width: 720px;
	}

	.contact-info-list {
		margin-top: 42px;
	}
}

@media (max-width: 640px) {
	.contact-block-section {
		padding: 56px 0;
	}

	.contact-info-card,
	.contact-form-card {
		padding: 34px 22px;
		border-radius: 22px;
	}

	.form-row {
		grid-template-columns: 1fr;
		gap: 14px;
		margin-bottom: 14px;
	}

	.contact-info-item {
		align-items: flex-start;
		padding: 16px;
	}

	.contact-info-icon {
		width: 42px;
		height: 42px;
		border-radius: 12px;
	}

	.contact-form input,
	.contact-form textarea {
		border-radius: 12px;
		padding: 15px 16px;
	}
}

.cookie-consent {
	position: fixed;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 9999;
	max-width: 980px;
	margin: 0 auto;
	display: none;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 24px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(29, 48, 54, 0.12);
	box-shadow: 0 22px 60px rgba(29, 48, 54, 0.18);
	backdrop-filter: blur(12px);
}

.cookie-consent.is-visible {
	display: flex;
}

.cookie-consent__content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.cookie-consent__icon {
	width: 48px;
	height: 48px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: linear-gradient(135deg, #205e6e, #2f9d86);
	color: #ffffff;
	font-size: 22px;
}

.cookie-consent__text h3 {
	margin: 0 0 8px;
	color: #1f2a2e;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.cookie-consent__text p {
	margin: 0;
	max-width: 620px;
	color: #4b575b;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 500;
}

.cookie-consent__actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.cookie-btn {
	border: none;
	border-radius: 12px;
	padding: 14px 18px;
	font-family: inherit;
	font-size: 14px;
	line-height: 1;
	font-weight: 900;
	cursor: pointer;
	transition: 0.25s ease;
	white-space: nowrap;
}

.cookie-btn--secondary {
	background: #eef3f2;
	color: #205e6e;
	border: 1px solid rgba(32, 94, 110, 0.16);
}

.cookie-btn--primary {
	background: linear-gradient(135deg, #205e6e, #2f9d86);
	color: #ffffff;
	box-shadow: 0 12px 28px rgba(32, 94, 110, 0.2);
}

.cookie-btn:hover {
	transform: translateY(-2px);
}

.cookie-btn--secondary:hover {
	background: #dff0ec;
}

.cookie-btn--primary:hover {
	box-shadow: 0 16px 34px rgba(32, 94, 110, 0.28);
}

@media (max-width: 768px) {
	.cookie-consent {
		left: 16px;
		right: 16px;
		bottom: 16px;
		flex-direction: column;
		align-items: stretch;
		padding: 20px;
		border-radius: 18px;
	}

	.cookie-consent__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
	}

	.cookie-btn {
		width: 100%;
	}

	.cookie-consent__text p {
		max-width: 100%;
	}
}

@media (max-width: 420px) {
	.cookie-consent__content {
		flex-direction: column;
	}

	.cookie-consent__icon {
		width: 44px;
		height: 44px;
	}
}

.privacy-section {
	padding: 120px 0 90px;
	background: radial-gradient(
			circle at 15% 12%,
			rgba(47, 157, 134, 0.12),
			transparent 32%
		),
		radial-gradient(circle at 92% 70%, rgba(32, 94, 110, 0.14), transparent 34%),
		linear-gradient(135deg, #f6f0e6 0%, #eef7f4 100%);
	color: #1f2a2e;
}

.privacy-container {
	max-width: 1120px;
}

.privacy-hero {
	margin-bottom: 54px;
	text-align: center;
}

.privacy-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 20px;
	padding: 10px 18px;
	border-radius: 999px;
	background: #d8f1ea;
	color: #205e6e;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.privacy-hero h1 {
	margin: 0 0 20px;
	color: #1f2a2e;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.04;
	font-weight: 900;
	letter-spacing: -0.06em;
}

.privacy-hero p {
	max-width: 760px;
	margin: 0 auto;
	color: #4b575b;
	font-size: 17px;
	line-height: 1.8;
	font-weight: 500;
}

.privacy-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 34px;
	align-items: start;
}

.privacy-sidebar {
	position: sticky;
	top: 110px;
	padding: 28px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(29, 48, 54, 0.12);
	box-shadow: 0 22px 55px rgba(29, 48, 54, 0.1);
}

.privacy-sidebar h3 {
	margin: 0 0 18px;
	color: #1f2a2e;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.privacy-sidebar a {
	display: block;
	padding: 12px 0;
	color: #4b575b;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	border-bottom: 1px solid rgba(29, 48, 54, 0.08);
	transition: 0.25s ease;
}

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

.privacy-sidebar a:hover {
	color: #205e6e;
	transform: translateX(4px);
}

.privacy-content {
	display: grid;
	gap: 22px;
}

.privacy-card {
	position: relative;
	padding: 36px 38px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(29, 48, 54, 0.12);
	box-shadow: 0 18px 45px rgba(29, 48, 54, 0.08);
	overflow: hidden;
}

.privacy-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 28px;
	bottom: 28px;
	width: 5px;
	border-radius: 0 999px 999px 0;
	background: linear-gradient(180deg, #205e6e, #2f9d86);
}

.privacy-card-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 13px;
	background: linear-gradient(135deg, #205e6e, #2f9d86);
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
}

.privacy-card h2 {
	margin: 0 0 18px;
	color: #1f2a2e;
	font-size: 28px;
	line-height: 1.18;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.privacy-card p {
	margin: 0 0 18px;
	color: #3f4b4f;
	font-size: 16px;
	line-height: 1.85;
	font-weight: 500;
}

.privacy-card p:last-child {
	margin-bottom: 0;
}

.privacy-card ul {
	margin: 18px 0 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.privacy-card li {
	position: relative;
	padding-left: 28px;
	color: #3f4b4f;
	font-size: 15px;
	line-height: 1.75;
	font-weight: 500;
}

.privacy-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #2f9d86;
	box-shadow: 0 0 0 5px rgba(47, 157, 134, 0.12);
}

.privacy-card a {
	color: #205e6e;
	font-weight: 800;
	text-decoration: none;
}

.privacy-card a:hover {
	text-decoration: underline;
}

.privacy-contact-box,
.privacy-final-box {
	display: grid;
	gap: 8px;
	margin-top: 20px;
	padding: 22px;
	border-radius: 18px;
	background: linear-gradient(
		135deg,
		rgba(216, 241, 234, 0.85),
		rgba(246, 240, 230, 0.9)
	);
	border: 1px solid rgba(32, 94, 110, 0.14);
}

.privacy-contact-box strong,
.privacy-final-box strong {
	color: #1f2a2e;
	font-size: 17px;
	font-weight: 900;
}

.privacy-contact-box span,
.privacy-final-box a {
	color: #3f4b4f;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 600;
}

.privacy-final-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

@media (max-width: 991px) {
	.privacy-section {
		padding: 92px 0 72px;
	}

	.privacy-layout {
		grid-template-columns: 1fr;
	}

	.privacy-sidebar {
		position: static;
	}

	.privacy-sidebar {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 20px;
	}

	.privacy-sidebar h3 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.privacy-section {
		padding: 72px 0 58px;
	}

	.privacy-hero {
		margin-bottom: 36px;
		text-align: left;
	}

	.privacy-hero h1 {
		font-size: 38px;
	}

	.privacy-hero p {
		font-size: 15px;
		line-height: 1.75;
	}

	.privacy-sidebar {
		grid-template-columns: 1fr;
		padding: 22px;
		border-radius: 20px;
	}

	.privacy-card {
		padding: 30px 22px;
		border-radius: 20px;
	}

	.privacy-card h2 {
		font-size: 24px;
	}

	.privacy-card p {
		font-size: 15px;
		line-height: 1.75;
	}

	.privacy-final-box {
		flex-direction: column;
		align-items: flex-start;
	}
}

.terms-section {
	padding: 120px 0 90px;
	background: radial-gradient(
			circle at 12% 18%,
			rgba(32, 94, 110, 0.14),
			transparent 34%
		),
		radial-gradient(
			circle at 88% 72%,
			rgba(214, 168, 91, 0.16),
			transparent 36%
		),
		linear-gradient(135deg, #f6f0e6 0%, #eef7f4 100%);
	color: #1f2a2e;
}

.terms-container {
	max-width: 1120px;
}

.terms-hero {
	margin-bottom: 54px;
	text-align: center;
}

.terms-badge {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 20px;
	padding: 10px 18px;
	border-radius: 999px;
	background: #d8f1ea;
	color: #205e6e;
	font-size: 13px;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.terms-hero h1 {
	margin: 0 0 20px;
	color: #1f2a2e;
	font-size: clamp(40px, 5vw, 64px);
	line-height: 1.04;
	font-weight: 900;
	letter-spacing: -0.06em;
}

.terms-hero p {
	max-width: 760px;
	margin: 0 auto;
	color: #4b575b;
	font-size: 17px;
	line-height: 1.8;
	font-weight: 500;
}

.terms-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 34px;
	align-items: start;
}

.terms-sidebar {
	position: sticky;
	top: 110px;
	padding: 28px;
	border-radius: 24px;
	background: #ffffff;
	border: 1px solid rgba(29, 48, 54, 0.12);
	box-shadow: 0 22px 55px rgba(29, 48, 54, 0.1);
}

.terms-sidebar h3 {
	margin: 0 0 18px;
	color: #1f2a2e;
	font-size: 20px;
	font-weight: 900;
	letter-spacing: -0.03em;
}

.terms-sidebar a {
	display: block;
	padding: 12px 0;
	color: #4b575b;
	text-decoration: none;
	font-size: 14px;
	line-height: 1.35;
	font-weight: 700;
	border-bottom: 1px solid rgba(29, 48, 54, 0.08);
	transition: 0.25s ease;
}

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

.terms-sidebar a:hover {
	color: #205e6e;
	transform: translateX(4px);
}

.terms-content {
	display: grid;
	gap: 22px;
}

.terms-card {
	position: relative;
	padding: 36px 38px;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(29, 48, 54, 0.12);
	box-shadow: 0 18px 45px rgba(29, 48, 54, 0.08);
	overflow: hidden;
}

.terms-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 28px;
	bottom: 28px;
	width: 5px;
	border-radius: 0 999px 999px 0;
	background: linear-gradient(180deg, #205e6e, #d6a85b);
}

.terms-card-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 18px;
	border-radius: 13px;
	background: linear-gradient(135deg, #205e6e, #2f9d86);
	color: #ffffff;
	font-size: 15px;
	font-weight: 900;
}

.terms-card h2 {
	margin: 0 0 18px;
	color: #1f2a2e;
	font-size: 28px;
	line-height: 1.18;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.terms-card p {
	margin: 0 0 18px;
	color: #3f4b4f;
	font-size: 16px;
	line-height: 1.85;
	font-weight: 500;
}

.terms-card p:last-child {
	margin-bottom: 0;
}

.terms-card ul {
	margin: 18px 0 0;
	padding-left: 0;
	list-style: none;
	display: grid;
	gap: 12px;
}

.terms-card li {
	position: relative;
	padding-left: 28px;
	color: #3f4b4f;
	font-size: 15px;
	line-height: 1.75;
	font-weight: 500;
}

.terms-card li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #d6a85b;
	box-shadow: 0 0 0 5px rgba(214, 168, 91, 0.16);
}

.terms-card a {
	color: #205e6e;
	font-weight: 800;
	text-decoration: none;
}

.terms-card a:hover {
	text-decoration: underline;
}

.terms-link-box,
.terms-final-box {
	display: grid;
	gap: 8px;
	margin-top: 20px;
	padding: 22px;
	border-radius: 18px;
	background: linear-gradient(
		135deg,
		rgba(216, 241, 234, 0.85),
		rgba(246, 240, 230, 0.9)
	);
	border: 1px solid rgba(32, 94, 110, 0.14);
}

.terms-link-box strong,
.terms-final-box strong {
	color: #1f2a2e;
	font-size: 17px;
	font-weight: 900;
}

.terms-link-box a,
.terms-final-box a {
	color: #205e6e;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 900;
}

.terms-final-box span {
	color: #3f4b4f;
	font-size: 15px;
	line-height: 1.5;
	font-weight: 600;
}

/* Adaptive */

@media (max-width: 991px) {
	.terms-section {
		padding: 92px 0 72px;
	}

	.terms-layout {
		grid-template-columns: 1fr;
	}

	.terms-sidebar {
		position: static;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 0 20px;
	}

	.terms-sidebar h3 {
		grid-column: 1 / -1;
	}
}

@media (max-width: 640px) {
	.terms-section {
		padding: 72px 0 58px;
	}

	.terms-hero {
		margin-bottom: 36px;
		text-align: left;
	}

	.terms-hero h1 {
		font-size: 38px;
	}

	.terms-hero p {
		font-size: 15px;
		line-height: 1.75;
	}

	.terms-sidebar {
		grid-template-columns: 1fr;
		padding: 22px;
		border-radius: 20px;
	}

	.terms-card {
		padding: 30px 22px;
		border-radius: 20px;
	}

	.terms-card h2 {
		font-size: 24px;
	}

	.terms-card p {
		font-size: 15px;
		line-height: 1.75;
	}

	.terms-link-box,
	.terms-final-box {
		padding: 18px;
		border-radius: 16px;
	}
}
