@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;600;700;800&family=Mulish:wght@300;400;500;600&display=swap');

.kth-wrap {
	--kth-navy: #00314c;
	--kth-blue: #0c486b;
	--kth-light-blue: #306387;
	--kth-accent: #45bbff;
	--kth-soft: #cbe6ff;
	--kth-bg: #f0f6fc;
	--kth-white: #ffffff;
	--kth-text: #111c2d;
	--kth-muted: #4a5a6e;
	--kth-border: #d0e4f5;
	font-family: 'Mulish', sans-serif;
	color: var(--kth-text);
	line-height: 1.6;
	overflow-x: hidden;
}

.kth-wrap *,
.kth-wrap *::before,
.kth-wrap *::after {
	box-sizing: border-box;
}

.kth-wrap .kth-container {
	max-width: 1100px;
	margin: 0 auto;
}

/* HERO */
.kth-wrap .kth-hero {
	position: relative;
	min-height: 460px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 24px;
	background: linear-gradient(135deg, rgba(0, 49, 76, 0.92) 0%, rgba(12, 72, 107, 0.85) 60%, rgba(48, 99, 135, 0.8) 100%),
		var(--kth-hero-bg, #0c486b) center/cover no-repeat;
	overflow: hidden;
}

.kth-wrap .kth-hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 70% 50%, rgba(69, 187, 255, 0.12) 0%, transparent 65%);
	pointer-events: none;
}

.kth-wrap .kth-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.25);
	border-radius: 99px;
	padding: 6px 18px;
	font-family: 'Sora', sans-serif;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--kth-soft);
	margin-bottom: 24px;
	backdrop-filter: blur(8px);
}

.kth-wrap .kth-hero-badge::before {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	background: var(--kth-accent);
	border-radius: 50%;
	box-shadow: 0 0 8px var(--kth-accent);
	animation: kth-pulse 2s ease-in-out infinite;
}

@keyframes kth-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.4); }
}

.kth-wrap .kth-hero h1 {
	font-family: 'Sora', sans-serif;
	font-size: clamp(32px, 5vw, 52px);
	font-weight: 800;
	color: #fff;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0 0 20px;
}

.kth-wrap .kth-hero h1 span {
	color: var(--kth-accent);
}

.kth-wrap .kth-hero p {
	font-size: clamp(15px, 2vw, 18px);
	color: rgba(203, 230, 255, 0.9);
	max-width: 560px;
	margin: 0 auto;
	font-weight: 300;
}

/* STATS */
.kth-wrap .kth-stats {
	background: var(--kth-navy);
	padding: 40px 24px;
}

.kth-wrap .kth-stats-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.kth-wrap .kth-stat-num {
	font-family: 'Sora', sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: var(--kth-accent);
	line-height: 1;
	margin-bottom: 6px;
}

.kth-wrap .kth-stat-lbl {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
}

/* INTRO */
.kth-wrap .kth-intro {
	padding: 80px 24px;
	background: var(--kth-white);
}

.kth-wrap .kth-grid-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.kth-wrap .kth-eyebrow {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.kth-wrap .kth-eyebrow-line {
	width: 36px;
	height: 2px;
	background: var(--kth-accent);
	flex-shrink: 0;
}

.kth-wrap .kth-eyebrow span {
	font-family: 'Sora', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--kth-light-blue);
}

.kth-wrap .kth-intro h2 {
	font-family: 'Sora', sans-serif;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: var(--kth-navy);
	line-height: 1.25;
	margin: 0 0 20px;
}

.kth-wrap .kth-intro p {
	font-size: 15px;
	color: var(--kth-muted);
	margin: 0 0 14px;
	line-height: 1.75;
}

.kth-wrap .kth-intro p strong {
	color: var(--kth-navy);
	font-weight: 600;
}

.kth-wrap .kth-checks {
	margin-top: 28px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kth-wrap .kth-check-item {
	display: flex;
	align-items: center;
	gap: 12px;
	background: var(--kth-bg);
	padding: 12px 16px;
	border-radius: 10px;
	border-left: 3px solid var(--kth-accent);
}

.kth-wrap .kth-check-icon {
	width: 20px;
	height: 20px;
	background: var(--kth-navy);
	border-radius: 50%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kth-wrap .kth-check-icon svg {
	width: 11px;
	height: 11px;
}

.kth-wrap .kth-check-item span {
	font-size: 14px;
	font-weight: 600;
	color: var(--kth-navy);
}

.kth-wrap .kth-img-wrap {
	position: relative;
}

.kth-wrap .kth-img-main {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 16px;
	display: block;
	box-shadow: 0 20px 60px rgba(0, 49, 76, 0.15);
}

.kth-wrap .kth-img-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: var(--kth-navy);
	padding: 18px 24px;
	border-radius: 12px;
	box-shadow: 0 8px 32px rgba(0, 49, 76, 0.3);
	text-align: center;
}

.kth-wrap .kth-img-badge .num {
	font-family: 'Sora', sans-serif;
	font-size: 28px;
	font-weight: 800;
	color: var(--kth-accent);
	line-height: 1;
}

.kth-wrap .kth-img-badge .lbl {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 4px;
}

/* MISSION */
.kth-wrap .kth-mission {
	padding: 80px 24px;
	background: var(--kth-bg);
}

.kth-wrap .kth-section-head {
	text-align: center;
	margin-bottom: 52px;
}

.kth-wrap .kth-section-head h2 {
	font-family: 'Sora', sans-serif;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: var(--kth-navy);
	margin: 0 0 10px;
}

.kth-wrap .kth-section-head p {
	font-size: 15px;
	color: var(--kth-muted);
	margin: 0;
}

.kth-wrap .kth-mission-grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 24px;
}

.kth-wrap .kth-card {
	background: var(--kth-white);
	border-radius: 16px;
	padding: 36px;
	border: 1px solid var(--kth-border);
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.kth-wrap .kth-card:hover {
	box-shadow: 0 12px 40px rgba(0, 49, 76, 0.1);
	transform: translateY(-3px);
}

.kth-wrap .kth-card-icon {
	width: 52px;
	height: 52px;
	background: linear-gradient(135deg, var(--kth-navy), var(--kth-light-blue));
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.kth-wrap .kth-card-icon svg {
	width: 26px;
	height: 26px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kth-wrap .kth-card h3 {
	font-family: 'Sora', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: var(--kth-navy);
	margin: 0 0 12px;
}

.kth-wrap .kth-card p {
	font-size: 14px;
	color: var(--kth-muted);
	line-height: 1.75;
	margin: 0;
}

.kth-wrap .kth-tag-row {
	display: flex;
	gap: 12px;
	margin-top: 28px;
	flex-wrap: wrap;
}

.kth-wrap .kth-tag {
	flex: 1;
	min-width: 120px;
	background: var(--kth-bg);
	border-radius: 10px;
	padding: 14px 16px;
}

.kth-wrap .kth-tag .tag-label {
	font-family: 'Sora', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--kth-light-blue);
	margin-bottom: 4px;
}

.kth-wrap .kth-tag .tag-text {
	font-size: 12px;
	color: var(--kth-muted);
}

.kth-wrap .kth-vision-card {
	background: linear-gradient(160deg, var(--kth-navy) 0%, var(--kth-blue) 100%);
	border-radius: 16px;
	padding: 36px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.kth-wrap .kth-vision-card::before,
.kth-wrap .kth-vision-card::after {
	content: '';
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
}

.kth-wrap .kth-vision-card::before {
	top: -40px;
	right: -40px;
	width: 160px;
	height: 160px;
	background: rgba(69, 187, 255, 0.08);
}

.kth-wrap .kth-vision-card::after {
	bottom: -30px;
	left: -30px;
	width: 110px;
	height: 110px;
	background: rgba(255, 255, 255, 0.04);
}

.kth-wrap .kth-vision-icon {
	width: 64px;
	height: 64px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	position: relative;
	z-index: 1;
}

.kth-wrap .kth-vision-icon svg {
	width: 28px;
	height: 28px;
	fill: none;
	stroke: var(--kth-accent);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kth-wrap .kth-vision-card h3 {
	font-family: 'Sora', sans-serif;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 14px;
	position: relative;
	z-index: 1;
}

.kth-wrap .kth-vision-card p {
	font-size: 14px;
	color: rgba(203, 230, 255, 0.85);
	line-height: 1.7;
	margin: 0;
	position: relative;
	z-index: 1;
}

/* BENEFITS */
.kth-wrap .kth-benefits {
	padding: 80px 24px;
	background: var(--kth-white);
}

.kth-wrap .kth-benefits-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 24px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.kth-wrap .kth-benefits-header h2 {
	font-family: 'Sora', sans-serif;
	font-size: clamp(22px, 3vw, 30px);
	font-weight: 700;
	color: var(--kth-navy);
	margin: 0 0 8px;
}

.kth-wrap .kth-benefits-header p {
	font-size: 15px;
	color: var(--kth-muted);
	margin: 0;
}

.kth-wrap .kth-btn-outline {
	display: inline-block;
	padding: 12px 28px;
	border: 2px solid var(--kth-navy);
	border-radius: 8px;
	font-family: 'Sora', sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--kth-navy);
	text-decoration: none;
	transition: background 0.2s, color 0.2s;
	white-space: nowrap;
	background: transparent;
}

.kth-wrap .kth-btn-outline:hover {
	background: var(--kth-navy);
	color: #fff;
}

.kth-wrap .kth-benefit-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.kth-wrap .kth-benefit-card {
	padding: 28px;
	background: var(--kth-bg);
	border-radius: 14px;
	border: 1px solid transparent;
	transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.kth-wrap .kth-benefit-card:hover {
	border-color: var(--kth-accent);
	box-shadow: 0 8px 32px rgba(0, 49, 76, 0.1);
	transform: translateY(-3px);
}

.kth-wrap .kth-benefit-icon-wrap {
	width: 48px;
	height: 48px;
	background: var(--kth-white);
	border: 1px solid var(--kth-border);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	transition: background 0.2s, border-color 0.2s;
}

.kth-wrap .kth-benefit-card:hover .kth-benefit-icon-wrap {
	background: var(--kth-navy);
	border-color: var(--kth-navy);
}

.kth-wrap .kth-benefit-icon-wrap svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: var(--kth-light-blue);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: stroke 0.2s;
}

.kth-wrap .kth-benefit-card:hover .kth-benefit-icon-wrap svg {
	stroke: #fff;
}

.kth-wrap .kth-benefit-card h4 {
	font-family: 'Sora', sans-serif;
	font-size: 16px;
	font-weight: 700;
	color: var(--kth-navy);
	margin: 0 0 10px;
}

.kth-wrap .kth-benefit-card p {
	font-size: 13px;
	color: var(--kth-muted);
	line-height: 1.7;
	margin: 0;
}

/* CONTACT */
.kth-wrap .kth-contact {
	padding: 80px 24px;
	background: var(--kth-bg);
}

.kth-wrap .kth-contact-box {
	background: linear-gradient(135deg, var(--kth-navy) 0%, var(--kth-blue) 100%);
	border-radius: 24px;
	overflow: hidden;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.kth-wrap .kth-contact-content {
	padding: 56px 48px;
}

.kth-wrap .kth-contact-content h2 {
	font-family: 'Sora', sans-serif;
	font-size: clamp(22px, 3vw, 28px);
	font-weight: 700;
	color: #fff;
	margin: 0 0 12px;
}

.kth-wrap .kth-contact-content > p {
	font-size: 15px;
	color: rgba(203, 230, 255, 0.8);
	margin: 0 0 40px;
	line-height: 1.65;
}

.kth-wrap .kth-contact-items {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.kth-wrap .kth-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.kth-wrap .kth-contact-item-icon {
	width: 44px;
	height: 44px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 10px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.kth-wrap .kth-contact-item-icon svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: var(--kth-accent);
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.kth-wrap .kth-contact-item .ci-label {
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.45);
	font-weight: 600;
	margin-bottom: 4px;
}

.kth-wrap .kth-contact-item .ci-value {
	font-family: 'Sora', sans-serif;
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	line-height: 1.2;
}

.kth-wrap .kth-contact-item .ci-value a {
	color: #fff;
	text-decoration: none;
}

.kth-wrap .kth-contact-item .ci-value a:hover {
	color: var(--kth-accent);
}

.kth-wrap .kth-contact-img {
	position: relative;
	min-height: 360px;
}

.kth-wrap .kth-contact-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.kth-wrap .kth-contact-img::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(0, 49, 76, 0.5), transparent);
	z-index: 1;
	pointer-events: none;
}

@media (max-width: 820px) {
	.kth-wrap .kth-grid-2,
	.kth-wrap .kth-mission-grid,
	.kth-wrap .kth-contact-box {
		grid-template-columns: 1fr;
	}
	.kth-wrap .kth-benefit-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 600px) {
	.kth-wrap .kth-stats-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.kth-wrap .kth-img-badge {
		left: 12px;
		bottom: -16px;
		padding: 12px 16px;
	}
	.kth-wrap .kth-img-main {
		height: 260px;
	}
	.kth-wrap .kth-contact-content {
		padding: 40px 28px;
	}
	.kth-wrap .kth-benefit-grid {
		grid-template-columns: 1fr;
	}
}
