html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
}

.top-bar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #020617;
	color: #ffffff;
	border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.top-bar-shell {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0.6rem 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

/* ЛОГО */
.brand-link {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	color: inherit;
}

.brand-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 999px;
	background: #4f46e5;
	color: #ffffff;
	font-weight: 700;
	font-size: 1rem;
}

.brand-copy {
	display: flex;
	flex-direction: column;
}

.brand-name {
	font-size: 1rem;
	font-weight: 600;
}

/* ===== НАВІГАЦІЯ ДЕСКТОП ===== */
.nav-main {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	font-size: 0.9rem;
}

.nav-main a {
	color: #e5e7eb;
	text-decoration: none;
	padding: 0.25rem 0;
}

.nav-main a:hover {
	color: #ffffff;
}

/* ===== БУРГЕР-КНОПКА (ПОКИ ЩО СХОВАНА) ===== */
.nav-toggle {
	display: none; /* пока desktop */
	background: transparent;
	border: 1px solid rgba(148, 163, 184, 0.7);
	border-radius: 999px;
	width: 34px;
	height: 34px;
	padding: 0;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 4px;
}

.nav-toggle-line {
	width: 18px;
	height: 2px;
	background: #e5e7eb;
	border-radius: 999px;
}

/* ===== МОБІЛЬНА ВЕРСІЯ ===== */
@media (max-width: 768px) {
	.top-bar-shell {
		padding: 0.5rem 1rem;
	}

	/* бургер показуємо */
	.nav-toggle {
		display: flex;
	}

	/* меню ховаємо за замовчуванням */
	.nav-main {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #020617;
		border-bottom: 1px solid rgba(31, 41, 55, 0.9);
		display: none;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		padding: 0.5rem 1rem 0.8rem;
	}

	.nav-main a {
		width: 100%;
		padding: 0.6rem 0;
	}

	/* коли відкрите меню */
	.nav-main.is-open {
		display: flex;
	}
}

@media (max-width: 480px) {
	.brand-name {
		font-size: 0.95rem;
	}
}

.intro-section {
	position: relative;
	padding: 4rem 1rem;
	background: radial-gradient(circle at top left, #111827, #020617);
	color: #f9fafb;
	overflow: hidden;
}

.intro-wrapper {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	align-items: stretch;
}

/* ===== DEKORATIVNÍ TVARY ===== */
.intro-shape {
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 999px;
	filter: blur(80px);
	opacity: 0.5;
	z-index: 0;
}

.intro-shape-left {
	left: -120px;
	top: -60px;
	background: radial-gradient(circle, #4f46e5, transparent);
}

.intro-shape-right {
	right: -140px;
	bottom: -80px;
	background: radial-gradient(circle, #ec4899, transparent);
}

/* ===== LEVÝ SLOUPEC – TEXT ===== */
.intro-text-block {
	position: relative;
	z-index: 1;
	flex: 1 1 0;
}

.intro-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.5);
	color: #e5e7eb;
	font-size: 0.82rem;
	font-weight: 500;
	backdrop-filter: blur(12px);
}

.intro-tag i {
	font-size: 0.9rem;
	color: #4f46e5;
}

.intro-title {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
	font-size: clamp(2rem, 3.2vw, 2.6rem);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.intro-lead {
	max-width: 34rem;
	font-size: 0.98rem;
	line-height: 1.7;
	color: #9ca3af;
}

/* ===== TLAČÍTKA ===== */
.intro-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.8rem;
	margin-bottom: 2rem;
}

.btn-main,
.btn-ghost {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 999px;
	padding: 0.7rem 1.4rem;
	border: 1px solid transparent;
	transition: 0.15s ease;
	cursor: pointer;
	white-space: nowrap;
}

.btn-main {
	background: linear-gradient(135deg, #4f46e5, #6366f1);
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(79, 70, 229, 0.35);
}

.btn-main:hover {
	transform: translateY(-1px);
	box-shadow: 0 16px 36px rgba(79, 70, 229, 0.45);
}

.btn-ghost {
	background: rgba(15, 23, 42, 0.9);
	color: #e5e7eb;
	border-color: rgba(148, 163, 184, 0.6);
}

.btn-ghost:hover {
	background: rgba(15, 23, 42, 1);
	transform: translateY(-1px);
}

/* ===== HIGHLIGHTY ===== */
.intro-highlights {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem;
	max-width: 32rem;
}

.highlight-item {
	border-radius: 0.9rem;
	padding: 0.8rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(15, 23, 42, 0.92);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.5);
}

.highlight-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
	margin-bottom: 0.25rem;
}

.highlight-value {
	display: block;
	font-size: 0.92rem;
	font-weight: 500;
	color: #e5e7eb;
}

/* ===== PRAVÝ SLOUPEC – OBRÁZEK ===== */
.intro-media-block {
	position: relative;
	z-index: 1;
	flex: 1 1 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.info-card {
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.35);
	background: #020617;
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.8);
	padding: 0.9rem;
	max-width: 420px;
	width: 100%;
}

.info-card-image {
	width: 100%;
	display: block;
	border-radius: 14px;
	object-fit: cover;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
	.intro-section {
		padding: 4.5rem 1.5rem 5rem;
	}

	.intro-wrapper {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}

	.intro-text-block {
		max-width: 52%;
	}

	.intro-media-block {
		max-width: 48%;
	}
}

@media (max-width: 767.98px) {
	.intro-section {
		padding: 3.2rem 1rem 3.6rem;
	}

	.info-card {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.intro-buttons {
		flex-direction: column;
	}
}

.info-section {
	padding: 4rem 1rem;
	background: #f5f7fa; /* світлий фон */
	color: #1f2937; /* темний текст */
}

.layout-shell {
	max-width: 1160px;
	margin: 0 auto;
}

/* ===== КАРТКА ===== */
.info-panel {
	background: #ffffff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 20px;
	padding: 2rem;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* ===== GRID ===== */
.info-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

/* ===== TEXT ===== */
.info-copy {
	flex: 1 1 0;
}

.info-title {
	font-size: clamp(1.6rem, 2.4vw, 2rem);
	font-weight: 600;
	margin-bottom: 1rem;
	color: #111827;
	line-height: 1.25;
}

.info-text {
	font-size: 1rem;
	color: #4b5563;
	line-height: 1.7;
	margin-bottom: 1rem;
	max-width: 38rem;
}

/* ===== BULLET LIST ===== */
.bullet-list {
	list-style: none;
	padding: 0;
	margin: 1.2rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.bullet-list li {
	position: relative;
	padding-left: 1.3rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #1f2937;
}

.bullet-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #4f46e5; /* фіолетовий акцент */
}

/* ===== IMAGE ===== */
.info-visual {
	flex: 1 1 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.info-photo img {
	width: 100%;
	max-width: 420px;
	border-radius: 16px;
	border: 1px solid rgba(0, 0, 0, 0.12);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
	object-fit: cover;
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
	.info-section {
		padding: 4.5rem 1.5rem;
	}

	.info-grid {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}

	.info-copy {
		max-width: 55%;
	}

	.info-visual {
		max-width: 45%;
	}
}

/* ===== TABLET / MOBILE ===== */
@media (max-width: 767.98px) {
	.info-panel {
		padding: 1.6rem;
	}
}

/* ===== SMALL MOBILES ===== */
@media (max-width: 480px) {
	.info-section {
		padding: 3rem 1rem;
	}

	.info-title {
		font-size: 1.55rem;
	}
}

.services-section {
	padding: 4rem 1rem;
	background: #0b1120; /* temný podklad */
	color: #f9fafb;
}

.services-shell {
	max-width: 1160px;
	margin: 0 auto;
}

/* ===== HLAVIČKA ===== */
.services-head {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 2.5rem;
}

.services-title {
	font-size: clamp(1.8rem, 2.5vw, 2.2rem);
	font-weight: 600;
	line-height: 1.2;
	color: #e5e7eb;
	margin-bottom: 0.8rem;
}

.services-subtitle {
	font-size: 1rem;
	color: #9ca3af;
	line-height: 1.7;
}

/* ===== GRID SLUŽEB ===== */
.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.service-item {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 16px;
	padding: 1.6rem 1.4rem;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.7);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.service-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.85);
}

.service-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #f9fafb;
	margin-bottom: 0.6rem;
}

.service-text {
	font-size: 0.96rem;
	line-height: 1.7;
	color: #cbd5e1;
}

/* ===== DESKTOP  – GRID 3× ===== */
@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.8rem;
	}

	.service-item {
		padding: 1.8rem 1.5rem;
	}

	.services-section {
		padding: 4.5rem 1.5rem;
	}
}

/* ===== MOBILNÍ ÚPRAVY ===== */
@media (max-width: 480px) {
	.services-section {
		padding: 3.2rem 1rem;
	}

	.service-item {
		padding: 1.4rem 1.2rem;
	}

	.service-title {
		font-size: 1.15rem;
	}
}
.sectors-section {
	padding: 4rem 1rem;
	background: #f5f7fa; /* světle šedý neutrální podklad */
	color: #1f2937;
}

.sectors-wrapper {
	max-width: 1160px;
	margin: 0 auto;
}

/* ===== HLAVIČKA SEKCIE ===== */
.sectors-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2.5rem;
}

.sectors-title {
	font-size: clamp(1.8rem, 2.5vw, 2.2rem);
	font-weight: 600;
	line-height: 1.25;
	color: #111827;
	margin-bottom: 0.7rem;
}

.sectors-subtitle {
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
}

/* ===== GRID – BASIC ===== */
.sectors-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

/* ===== CARD ===== */
.sector-card {
	background: #ffffff;
	border-radius: 18px;
	padding: 1.7rem 1.6rem;
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.07);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.sector-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}

/* ===== TAG ===== */
.sector-tag {
	display: inline-block;
	padding: 0.3rem 0.8rem;
	font-size: 0.75rem;
	font-weight: 600;
	border-radius: 999px;
	background: #e5e7eb;
	color: #374151;
	margin-bottom: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ===== TEXT CONTENT ===== */
.sector-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.5rem;
}

.sector-text {
	font-size: 0.96rem;
	line-height: 1.7;
	color: #4b5563;
}

/* ===== DESKTOP GRID ===== */
@media (min-width: 768px) {
	.sectors-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.8rem;
	}

	.sectors-section {
		padding: 4.5rem 1.5rem;
	}

	.sector-card {
		padding: 1.9rem 1.7rem;
	}
}

/* ===== MOBILNÍ ÚPRAVY ===== */
@media (max-width: 480px) {
	.sectors-section {
		padding: 3rem 1rem;
	}

	.sector-card {
		padding: 1.5rem 1.3rem;
		border-radius: 16px;
	}

	.sector-title {
		font-size: 1.1rem;
	}
}
.data-journey-section {
	padding: 4rem 1rem;
	background: #0b1120; /* temný podklad */
	color: #f9fafb;
}

.data-journey-wrap {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	align-items: stretch;
}

/* ===== TEXTOVÁ ČÁST ===== */
.data-journey-content {
	flex: 1 1 0;
}

.data-journey-title {
	font-size: clamp(1.8rem, 2.6vw, 2.2rem);
	font-weight: 600;
	line-height: 1.2;
	color: #e5e7eb;
	margin-bottom: 1rem;
}

.data-journey-text {
	font-size: 1rem;
	line-height: 1.7;
	color: #9ca3af;
	max-width: 36rem;
	margin-bottom: 1.3rem;
}

/* ===== SEZNAM KROKŮ ===== */
.data-journey-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.data-journey-list li {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #e5e7eb;
	padding-left: 1.3rem;
	position: relative;
}

.data-journey-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.55rem;
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #38bdf8; /* modrý akcent */
}

.data-journey-list strong {
	font-weight: 600;
	color: #f9fafb;
}

/* ===== TLAČÍTKO ===== */
.data-journey-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #4f46e5, #6366f1);
	color: #ffffff;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 500;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 14px 32px rgba(79, 70, 229, 0.45);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.data-journey-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 42px rgba(79, 70, 229, 0.6);
}

/* ===== OBRÁZEK ===== */
.data-journey-media {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.data-journey-image {
	max-width: 500px;
	width: 100%;
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.4);
	box-shadow: 0 22px 60px rgba(0, 0, 0, 0.5);
	object-fit: cover;
	display: block;
}

/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 768px) {
	.data-journey-section {
		padding: 4.5rem 1.5rem;
	}

	.data-journey-wrap {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}

	.data-journey-content {
		max-width: 52%;
	}

	.data-journey-media {
		max-width: 48%;
	}
}

/* ===== TABLET / MOBILE ===== */
@media (max-width: 767.98px) {
	.data-journey-section {
		padding: 3.3rem 1.1rem;
	}

	.data-journey-image {
		max-width: 100%;
	}
}

/* ===== SMALL MOBILES ===== */
@media (max-width: 480px) {
	.data-journey-btn {
		/* width: 100%; */
		justify-content: center;
	}
}

.process-section {
	padding: 4rem 1rem;
	background: #f5f7fa; /* světlý neutrální podklad */
	color: #1f2937;
}

.process-shell {
	max-width: 1160px;
	margin: 0 auto;
}

/* ===== HLAVIČKA ===== */
.process-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2.5rem;
}

.process-title {
	font-size: clamp(1.8rem, 2.5vw, 2.2rem);
	font-weight: 600;
	line-height: 1.25;
	color: #111827;
	margin-bottom: 0.7rem;
}

.process-subtitle {
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
}

/* ===== GRID / VERTIKÁLNÍ TOK KROKŮ ===== */
.process-flow {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.6rem;
}

/* ===== KARTA KROKU ===== */
.process-step {
	background: #ffffff;
	border-radius: 18px;
	padding: 1.7rem 1.6rem;
	border: 1px solid rgba(0, 0, 0, 0.07);
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.process-step:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* ===== TEXT V KARTÁCH ===== */
.process-step-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.5rem;
}

.process-step-text {
	font-size: 0.96rem;
	color: #4b5563;
	line-height: 1.65;
}

/* ===== DESKTOP LAYOUT (4 kolony) ===== */
@media (min-width: 768px) {
	.process-flow {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.8rem;
	}

	.process-section {
		padding: 4.5rem 1.5rem;
	}

	.process-step {
		padding: 1.9rem 1.7rem;
	}
}

/* ===== TABLETY / MOBILY ===== */
@media (max-width: 767.98px) {
	.process-section {
		padding: 3.4rem 1rem;
	}
}

/* ===== MOBIL MALÝ ===== */
@media (max-width: 480px) {
	.process-step-title {
		font-size: 1.1rem;
	}

	.process-step {
		padding: 1.5rem 1.3rem;
		border-radius: 15px;
	}
}

.help-section {
	padding: 4rem 1rem;
	background: #0b1120; /* temná moderní barva */
	color: #f3f4f6;
}

.help-shell {
	max-width: 1100px;
	margin: 0 auto;
}

/* ===== HLAVIČKA ===== */
.help-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 2.3rem;
}

.help-title {
	font-size: clamp(1.8rem, 2.5vw, 2.3rem);
	font-weight: 600;
	color: #e5e7eb;
	margin-bottom: 0.6rem;
}

.help-subtitle {
	color: #94a3b8;
	font-size: 1rem;
	line-height: 1.6;
}

/* ===== GRID ===== */
.help-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.2rem;
}

/* ===== FAQ ITEM ===== */
.help-item {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 14px;
	padding: 1rem 1.2rem;
	transition: background 0.25s ease;
}

.help-item[open] {
	background: rgba(255, 255, 255, 0.08);
}

/* ===== SUMMARY / NADPIS ===== */
.help-summary {
	cursor: pointer;
	font-weight: 600;
	font-size: 1.05rem;
	color: #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 0.4rem 0;
}

.help-summary:hover {
	color: #ffffff;
}

/* ===== IKONA ===== */
.help-icon i {
	color: #93c5fd;
	transition: transform 0.25s ease;
}

.help-item[open] .help-icon i {
	transform: rotate(45deg);
}

/* ===== TEXT ODPOVĚDI ===== */
.help-text {
	margin-top: 0.7rem;
	color: #cbd5e1;
	font-size: 0.95rem;
	line-height: 1.65;
}

/* ===== DESKTOP GRID (2 columns) ===== */
@media (min-width: 768px) {
	.help-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 1.6rem;
	}

	.help-section {
		padding: 4.5rem 1.5rem;
	}
}

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 480px) {
	.help-section {
		padding: 3.2rem 1rem;
	}

	.help-item {
		padding: 0.9rem 1rem;
		border-radius: 12px;
	}

	.help-summary {
		font-size: 1rem;
	}
}

.contact-zone {
	padding: 4rem 1rem;
	background: #f5f7fa; /* světle šedý, neutrální podklad */
	color: #1f2937;
}

.contact-wrap {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* ===== LEVÁ PANEL ČÁST ===== */
.contact-panel {
	background: #ffffff;
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.contact-header {
	margin-bottom: 1.5rem;
}

.contact-title {
	font-size: clamp(1.7rem, 2.3vw, 2.1rem);
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.6rem;
	line-height: 1.25;
}

.contact-intro {
	color: #4b5563;
	font-size: 1rem;
	line-height: 1.7;
}

/* ===== KONTAKTNÍ ŘÁDKY ===== */
.contact-data {
	margin-top: 1.8rem;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.contact-row {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	color: #1f2937;
}

.contact-row i {
	font-size: 1.3rem;
	color: #4f46e5;
	margin-top: 3px;
}

.contact-label {
	font-size: 0.85rem;
	color: #6b7280;
	display: block;
	margin-bottom: 2px;
}

.contact-link,
.contact-text {
	color: #1f2937;
	font-size: 1rem;
	text-decoration: none;
	word-break: break-word;
}

.contact-link:hover {
	text-decoration: underline;
}

/* ===== FORMULÁŘOVÁ KARTA ===== */
.contact-card {
	background: #ffffff;
	padding: 2rem;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.contact-card-title {
	font-size: 1.4rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.6rem;
}

.contact-card-intro {
	color: #4b5563;
	font-size: 1rem;
	margin-bottom: 1.4rem;
	line-height: 1.6;
}

/* ===== FORM LINES ===== */
.form-line {
	display: flex;
	flex-direction: column;
	margin-bottom: 1.2rem;
}

.form-line label {
	font-size: 0.9rem;
	margin-bottom: 6px;
	color: #374151;
}

.form-line input,
.form-line textarea {
	padding: 0.75rem 1rem;
	border-radius: 10px;
	border: 1px solid #d1d5db;
	font-size: 0.95rem;
	background: #f9fafb;
	color: #111827;
	transition: border-color 0.2s ease;
}

.form-line input:focus,
.form-line textarea:focus {
	border-color: #4f46e5;
	outline: none;
	background: #ffffff;
}

/* ===== TLAČÍTKO ===== */
.contact-btn-primary {
	margin-top: 0.6rem;
	width: 100%;
	padding: 0.9rem 1.2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #4f46e5, #6366f1);
	color: #ffffff;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	border: none;
	cursor: pointer;
	box-shadow: 0 14px 30px rgba(79, 70, 229, 0.35);
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease;
}

.contact-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(79, 70, 229, 0.5);
}

.form-hint-text {
	font-size: 0.85rem;
	color: #6b7280;
	margin-top: 0.8rem;
	text-align: center;
}

.form-hint-text a {
	color: #4f46e5;
}

/* ===== SUCCESS MESSAGE ===== */
.contact-success {
	display: none; /* ukáže se po odeslání */
	margin-top: 1.8rem;
	padding: 1.4rem;
	border-radius: 14px;
	background: #ecfdf5;
	border: 1px solid #10b981;
	color: #065f46;
}

.contact-success h4 {
	margin: 0 0 0.3rem;
	font-size: 1.1rem;
}

/* ===== DESKTOP – DVOU SLOUPCOVÝ LAYOUT ===== */
@media (min-width: 900px) {
	.contact-wrap {
		flex-direction: row;
		gap: 3rem;
	}

	.contact-panel,
	.contact-card {
		flex: 1;
	}
}

/* ===== MOBILNÍ ÚPRAVY ===== */
@media (max-width: 480px) {
	.contact-zone {
		padding: 3rem 1rem;
	}

	.contact-panel,
	.contact-card {
		padding: 1.6rem;
		border-radius: 16px;
	}

	.contact-title {
		font-size: 1.6rem;
	}
}

.footer-bar {
	background: #0b1120; /* temný moderní podklad */
	color: #e5e7eb;
	padding: 3.5rem 1rem;
}

.footer-wrap {
	max-width: 1160px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* ===== HLAVNÍ SLOUPEC ===== */
.footer-column-main {
	max-width: 420px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 1rem;
}

.footer-brand-mark {
	width: 42px;
	height: 42px;
	border-radius: 10px;
	background: linear-gradient(135deg, #4f46e5, #6366f1);
	color: #fff;
	font-weight: 700;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(79, 70, 229, 0.4);
}

.footer-brand-title {
	font-size: 1.3rem;
	font-weight: 600;
	color: #ffffff;
}

.footer-description {
	font-size: 0.95rem;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.footer-copy {
	font-size: 0.85rem;
	color: #64748b;
}

/* ===== OSTATNÍ SLOUPCE ===== */
.footer-column {
	flex: 1;
}

.footer-heading {
	font-size: 1rem;
	font-weight: 600;
	color: #f1f5f9;
	margin-bottom: 1rem;
}

.footer-nav {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.footer-nav a {
	color: #cbd5e1;
	font-size: 0.95rem;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-nav a:hover {
	color: #ffffff;
}

/* ===== DESKTOP LAYOUT ===== */
@media (min-width: 900px) {
	.footer-wrap {
		flex-direction: row;
		gap: 3rem;
	}

	.footer-column-main {
		max-width: 360px;
	}

	.footer-column {
		max-width: 260px;
	}
}

/* ===== MOBILNÍ ÚPRAVY ===== */
@media (max-width: 480px) {
	.footer-bar {
		padding: 2.8rem 1rem;
	}

	.footer-brand-mark {
		width: 38px;
		height: 38px;
		font-size: 1.1rem;
	}

	.footer-brand-title {
		font-size: 1.2rem;
	}
}

.consent-strip {
	/* width: 70%; */
	padding: 1.5rem 1rem;
	background: #0b1120; /* tmavší moderní barva */
	color: #f3f4f6;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== TEXT PART ===== */
.consent-text {
	max-width: 760px;
}

.consent-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: #ffffff;
	margin-bottom: 0.4rem;
}

.consent-description {
	font-size: 0.95rem;
	line-height: 1.55;
	color: #d1d5db;
}

.consent-description a {
	color: #60a5fa;
	text-decoration: underline;
}

/* ===== BUTTONS ===== */
.consent-actions {
	display: flex;
	gap: 0.8rem;
	flex-wrap: wrap;
}

.consent-btn-primary {
	background: #4f46e5;
	color: #ffffff;
	border: none;
	padding: 0.7rem 1.2rem;
	border-radius: 8px;
	cursor: pointer;
	font-size: 0.95rem;
	font-weight: 600;
	transition: background 0.2s ease;
}

.consent-btn-primary:hover {
	background: #4338ca;
}

.consent-btn-secondary {
	background: transparent;
	border: 1px solid #94a3b8;
	color: #e2e8f0;
	padding: 0.65rem 1.1rem;
	border-radius: 8px;
	font-size: 0.95rem;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		color 0.2s ease;
}

.consent-btn-secondary:hover {
	border-color: #ffffff;
	color: #ffffff;
}

/* ===== DESKTOP ===== */
@media (min-width: 768px) {
	.consent-strip {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding: 1.5rem 2rem;
	}

	.consent-actions {
		flex-wrap: nowrap;
	}
}

/* ===== MOBILNÍ ===== */
@media (max-width: 480px) {
	.consent-strip {
		padding: 1.2rem 1rem;
	}

	.consent-title {
		font-size: 1rem;
	}

	.consent-actions button {
		width: 100%;
	}
}

.container {
	max-width: 1160px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* HERO SEKCE */
.section.hero {
	position: relative;
	padding: 4rem 0 4.5rem;
	background: radial-gradient(circle at top left, #111827, #020617);
	color: #f9fafb;
	overflow: hidden;
}

.hero-inner {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	align-items: stretch;
}

/* DEKORATIVNÍ TVARY */
.hero-shape {
	position: absolute;
	width: 360px;
	height: 360px;
	border-radius: 999px;
	filter: blur(100px);
	opacity: 0.6;
	z-index: 0;
}

.hero-shape-left {
	left: -140px;
	top: -80px;
	background: radial-gradient(circle, #4f46e5, transparent);
}

.hero-shape-right {
	right: -160px;
	bottom: -120px;
	background: radial-gradient(circle, #ec4899, transparent);
}

/* LEVÁ TEXTOVÁ ČÁST */
.hero-content {
	position: relative;
	z-index: 1;
	flex: 1 1 0;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.5);
	font-size: 0.82rem;
	color: #e5e7eb;
	backdrop-filter: blur(10px);
}

.hero-badge i {
	font-size: 0.9rem;
	color: #38bdf8;
}

.hero-content h1 {
	margin-top: 1.6rem;
	margin-bottom: 1rem;
	font-size: clamp(2.1rem, 3.1vw, 2.6rem);
	line-height: 1.15;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #f9fafb;
}

.hero-content p {
	max-width: 36rem;
	font-size: 0.98rem;
	line-height: 1.8;
	color: #9ca3af;
	margin-bottom: 0.9rem;
}

/* TLAČÍTKA */
.hero-actions {
	margin-top: 1.7rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.75rem 1.4rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 500;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	transition:
		transform 0.15s ease,
		box-shadow 0.15s ease,
		background 0.15s ease,
		border-color 0.15s ease;
}

.btn i {
	font-size: 0.95rem;
}

.btn-primary {
	background: linear-gradient(135deg, #4f46e5, #6366f1);
	color: #ffffff;
	box-shadow: 0 14px 32px rgba(79, 70, 229, 0.5);
}

.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 18px 42px rgba(79, 70, 229, 0.6);
}

.btn-outline {
	background: transparent;
	color: #e5e7eb;
	border-color: rgba(148, 163, 184, 0.7);
}

.btn-outline:hover {
	background: rgba(15, 23, 42, 0.9);
	transform: translateY(-1px);
}

/* PRAVÁ MÉDIA */
.hero-media {
	position: relative;
	z-index: 1;
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
}

.hero-card {
	border-radius: 18px;
	border: 1px solid rgba(148, 163, 184, 0.5);
	background: rgba(15, 23, 42, 0.92);
	box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
	overflow: hidden;
}

.hero-card-main {
	padding: 1.1rem 1.1rem 1.2rem;
}

.hero-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 0.8rem;
}

.hero-card-label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #9ca3af;
	margin-bottom: 0.2rem;
}

.hero-card-title {
	display: block;
	font-size: 0.98rem;
	font-weight: 600;
	color: #e5e7eb;
}

.hero-card-pill {
	font-size: 0.78rem;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(148, 163, 184, 0.7);
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: #e5e7eb;
}

.hero-card-pill i {
	font-size: 0.85rem;
	color: #f97316;
}

.hero-card-main img {
	width: 100%;
	display: block;
	border-radius: 12px;
	object-fit: cover;
	margin-bottom: 0.9rem;
}

.hero-stats-row {
	display: flex;
	gap: 1rem;
}

.hero-stat {
	flex: 1 1 0;
	padding: 0.6rem 0.7rem;
	border-radius: 10px;
	background: rgba(15, 23, 42, 0.95);
	border: 1px solid rgba(148, 163, 184, 0.55);
}

.hero-stat-number {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
	color: #f9fafb;
	margin-bottom: 0.15rem;
}

.hero-stat-text {
	display: block;
	font-size: 0.84rem;
	color: #cbd5f5;
}

/* SEKUNDÁRNÍ KARTA */
.hero-card-secondary {
	padding: 1rem 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}

.hero-profile {
	display: flex;
	align-items: center;
	gap: 0.8rem;
}

.hero-profile img {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	object-fit: cover;
}

.hero-profile-name {
	display: block;
	font-size: 0.95rem;
	font-weight: 600;
	color: #e5e7eb;
}

.hero-profile-role {
	display: block;
	font-size: 0.82rem;
	color: #9ca3af;
}

.hero-card-secondary p {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #cbd5f5;
	margin: 0;
}

/* RESPONSIVE */
@media (min-width: 900px) {
	.section.hero {
		padding: 4.5rem 0 5rem;
	}

	.hero-inner {
		flex-direction: row;
		align-items: center;
		gap: 3rem;
	}

	.hero-content {
		max-width: 52%;
	}

	.hero-media {
		max-width: 48%;
	}
}

@media (max-width: 768px) {
	.section.hero {
		padding: 3.4rem 0 3.8rem;
	}

	.hero-card-main {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.hero-actions {
		flex-direction: column;
	}
}

.wave-section {
	padding: 4rem 1rem;
	background: #f5f7fa;
	color: #111827;
}

.wave-card {
	max-width: 1160px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
	padding: 2rem;
}

.wave-card-grid {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.wave-text {
	flex: 1 1 0;
}

.wave-text h2 {
	font-size: clamp(1.7rem, 2.5vw, 2.1rem);
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 1rem;
	color: #0f172a;
}

.wave-text p {
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
	margin-bottom: 1rem;
	max-width: 40rem;
}

/* checklist */
.checklist {
	list-style: none;
	padding: 0;
	margin: 1.2rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.checklist li {
	position: relative;
	padding-left: 1.5rem;
	font-size: 0.95rem;
	line-height: 1.6;
	color: #111827;
}

.checklist-dark li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6rem;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: #4f46e5;
}

/* pravý blok */
.wave-media {
	flex: 1 1 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	align-items: center;
}

.wave-photo img {
	width: 100%;
	max-width: 420px;
	border-radius: 18px;
	object-fit: cover;
	border: 1px solid rgba(15, 23, 42, 0.1);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
}

.wave-tag {
	margin-top: 0.4rem;
	background: #0f172a;
	color: #e5e7eb;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.35rem 0.9rem;
	font-size: 0.8rem;
}

.wave-tag-title {
	font-weight: 600;
}

.wave-tag-text {
	color: #cbd5f5;
}

/* desktop */
@media (min-width: 768px) {
	.wave-section {
		padding: 4.5rem 1.5rem;
	}

	.wave-card {
		padding: 2.3rem 2.2rem;
	}

	.wave-card-grid {
		flex-direction: row;
		align-items: center;
		gap: 2.5rem;
	}

	.wave-text {
		max-width: 55%;
	}

	.wave-media {
		max-width: 45%;
		align-items: flex-start;
	}
}

/* mobile */
@media (max-width: 480px) {
	.wave-section {
		padding: 3.2rem 1rem;
	}

	.wave-card {
		padding: 1.7rem 1.4rem;
		border-radius: 16px;
	}

	.wave-tag {
		width: 100%;
		justify-content: center;
		text-align: center;
		flex-wrap: wrap;
	}
}

.section-light {
	padding: 4rem 1rem;
	background: #f5f7fa;
	color: #111827;
}

.section-light .container {
	max-width: 1160px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.4rem;
}

.section-header h2 {
	font-size: clamp(1.8rem, 2.4vw, 2.2rem);
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 0.7rem;
	color: #0f172a;
}

.section-header p {
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
}

/* STEPS GRID */
.steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.6rem;
}

.step {
	background: #ffffff;
	border-radius: 18px;
	padding: 1.7rem 1.6rem;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
	position: relative;
	overflow: hidden;
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.step::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		circle at top left,
		rgba(79, 70, 229, 0.1),
		transparent
	);
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}

.step:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.step:hover::before {
	opacity: 1;
}

.step-number {
	width: 32px;
	height: 32px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
	font-weight: 600;
	color: #ffffff;
	background: linear-gradient(135deg, #4f46e5, #6366f1);
	margin-bottom: 0.8rem;
}

.step h3 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.5rem;
}

.step p {
	font-size: 0.96rem;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

/* DESKTOP */
@media (min-width: 768px) {
	.section-light {
		padding: 4.5rem 1.5rem;
	}

	.steps {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.8rem;
	}

	.step {
		padding: 1.9rem 1.7rem;
	}
}

/* MOBILE */
@media (max-width: 480px) {
	.section-light {
		padding: 3.2rem 1rem;
	}

	.step {
		padding: 1.5rem 1.3rem;
		border-radius: 16px;
	}

	.step h3 {
		font-size: 1.08rem;
	}
}

.section-alt {
	padding: 4rem 1rem;
	background: #ffffff;
	color: #111827;
}

.section-alt .container {
	max-width: 1160px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 2.4rem;
}

.section-header h2 {
	font-size: clamp(1.8rem, 2.5vw, 2.2rem);
	font-weight: 600;
	line-height: 1.25;
	margin-bottom: 0.7rem;
	color: #0f172a;
}

.section-header p {
	font-size: 1rem;
	line-height: 1.7;
	color: #4b5563;
}

/* GRID 3 */
.grid-3 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.6rem;
}

.feature-card {
	background: #f9fafb;
	border-radius: 18px;
	padding: 1.7rem 1.6rem;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease;
}

.feature-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
	border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: #eef2ff;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.9rem;
}

.feature-icon i {
	color: #4f46e5;
	font-size: 1.1rem;
}

.feature-card h3 {
	font-size: 1.15rem;
	font-weight: 600;
	color: #111827;
	margin-bottom: 0.5rem;
}

.feature-card p {
	font-size: 0.96rem;
	line-height: 1.7;
	color: #4b5563;
	margin: 0;
}

/* DESKTOP */
@media (min-width: 768px) {
	.section-alt {
		padding: 4.5rem 1.5rem;
	}

	.grid-3 {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.8rem;
	}

	.feature-card {
		padding: 1.9rem 1.7rem;
	}
}

/* MOBILE */
@media (max-width: 480px) {
	.section-alt {
		padding: 3.2rem 1rem;
	}

	.feature-card {
		padding: 1.5rem 1.3rem;
		border-radius: 16px;
	}

	.feature-card h3 {
		font-size: 1.08rem;
	}
}

.section-light {
	padding: 4rem 1rem;
	/* background: #f5f7fa; */
	color: #111827;
}

/* .section-light .container {
	max-width: 900px;
	margin: 0 auto;
} */

.section-header {
	text-align: left;
	margin-bottom: 2.5rem;
}

.section-header h1 {
	font-size: clamp(2rem, 2.8vw, 2.4rem);
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #0f172a;
}

.section-header p {
	font-size: 1rem;
	line-height: 1.8;
	color: #4b5563;
}

/* .policy-content {
	margin-bottom: 2.2rem;
	background: #ffffff;
	border-radius: 16px;
	padding: 1.6rem 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
} */

.policy-content:last-of-type {
	margin-bottom: 0;
}

.policy-content h2 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #111827;
}

.policy-content h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin-top: 1.1rem;
	margin-bottom: 0.5rem;
	color: #111827;
}

.policy-content p {
	font-size: 0.97rem;
	line-height: 1.8;
	color: #4b5563;
	margin-bottom: 0.9rem;
}

.policy-content ul {
	padding-left: 1.2rem;
	margin: 0.4rem 0 0.9rem;
}

.policy-content ul li {
	font-size: 0.96rem;
	line-height: 1.7;
	color: #374151;
	margin-bottom: 0.3rem;
}

.policy-content a {
	color: #4f46e5;
	text-decoration: underline;
}

.policy-content a:hover {
	color: #3730a3;
}

/* DESKTOP */
@media (min-width: 768px) {
	.section-light {
		padding: 4.5rem 1.5rem;
	}

	.policy-content {
		padding: 1.8rem 1.9rem;
	}
}

/* MOBILE */
@media (max-width: 480px) {
	.section-light {
		padding: 3.2rem 1rem;
	}

	.policy-content {
		padding: 1.4rem 1.2rem;
		border-radius: 14px;
	}

	.section-header h1 {
		font-size: 1.8rem;
	}
}

.section-light {
	padding: 4rem 1rem;
	background: #f5f7fa;
	color: #111827;
}

.section-light .container {
	max-width: 900px;
	margin: 0 auto;
}

.section-header {
	text-align: left;
	margin-bottom: 2.5rem;
}

.section-header h1 {
	font-size: clamp(2rem, 2.8vw, 2.4rem);
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #0f172a;
}

.section-header p {
	font-size: 1rem;
	line-height: 1.8;
	color: #4b5563;
}

/* .policy-content {
	margin-bottom: 2.2rem;
	background: #ffffff;
	border-radius: 16px;
	padding: 1.6rem 1.5rem;
	border: 1px solid rgba(15, 23, 42, 0.06);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
} */

.policy-content:last-of-type {
	margin-bottom: 0;
}

.policy-content h2 {
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 0.8rem;
	color: #111827;
}

.policy-content h3 {
	font-size: 1.05rem;
	font-weight: 600;
	margin-top: 1.1rem;
	margin-bottom: 0.5rem;
	color: #111827;
}

.policy-content p {
	font-size: 0.97rem;
	line-height: 1.8;
	color: #4b5563;
	margin-bottom: 0.9rem;
}

.policy-content ul {
	padding-left: 1.2rem;
	margin: 0.4rem 0 0.9rem;
}

.policy-content ul li {
	font-size: 0.96rem;
	line-height: 1.7;
	color: #374151;
	margin-bottom: 0.3rem;
}

.policy-content a {
	color: #4f46e5;
	text-decoration: underline;
}

.policy-content a:hover {
	color: #3730a3;
}

/* DESKTOP */
@media (min-width: 768px) {
	.section-light {
		padding: 4.5rem 1.5rem;
	}

	.policy-content {
		padding: 1.8rem 1.9rem;
	}
}

/* MOBILE */
@media (max-width: 480px) {
	.section-light {
		padding: 3.2rem 1rem;
	}

	.policy-content {
		padding: 1.4rem 1.2rem;
		border-radius: 14px;
	}

	.section-header h1 {
		font-size: 1.8rem;
	}
}
