/* ═══════════════════════════════════════════════════════
   KLIMA24 PAGES — frontend layout
   Predpokladá premenné z klima24-design.
   ═══════════════════════════════════════════════════════ */

.k24p-container { max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.k24p-container-narrow { max-width: 880px; }

/* ═══ HERO ═══ */
.k24p-hero {
	background: linear-gradient(135deg, #001A3D 0%, #002855 50%, #003875 100%);
	color: white;
	padding: 100px 0 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.k24p-hero::before {
	content: ''; position: absolute; inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
	background-size: 24px 24px;
	pointer-events: none;
}
.k24p-hero-deco {
	position: absolute;
	top: -150px; right: -100px;
	width: 500px; height: 500px;
	background: rgba(0,229,216,0.35);
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
	opacity: 0.4;
}
.k24p-hero .k24p-container {
	position: relative; z-index: 2;
}
.k24p-hero-icon {
	font-size: 3.5rem;
	margin-bottom: 20px;
	display: inline-block;
	animation: k24pFloat 4s ease-in-out infinite;
}
@keyframes k24pFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}
.k24p-hero-title {
	font-family: 'Inter', sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.1;
	margin: 0 0 18px;
	color: white;
	background: linear-gradient(135deg, #FFFFFF 0%, #00E5D8 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.k24p-hero-subtitle {
	font-size: 1.2rem;
	color: rgba(255,255,255,0.85);
	max-width: 640px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ═══ BODY ═══ */
.k24p-body {
	padding: 80px 0 100px;
	background: var(--k-bg-soft, #F8FAFC);
}
.k24p-content {
	background: white;
	border-radius: 18px;
	padding: 48px 56px;
	box-shadow: 0 8px 32px rgba(0,40,85,0.06);
	font-size: 1.05rem;
	line-height: 1.75;
	color: var(--k-text, #1F2937);
}
.k24p-content h2 {
	font-size: 1.8rem;
	font-weight: 800;
	margin: 32px 0 16px;
	color: var(--k-navy, #002855);
	letter-spacing: -0.025em;
}
.k24p-content h2:first-child { margin-top: 0; }
.k24p-content h3 {
	font-size: 1.3rem;
	font-weight: 800;
	margin: 24px 0 12px;
	color: var(--k-navy, #002855);
}
.k24p-content ul, .k24p-content ol {
	margin: 16px 0 16px 24px;
	padding-left: 6px;
}
.k24p-content li { margin-bottom: 8px; }
.k24p-content p { margin: 0 0 16px; }
.k24p-content a {
	color: var(--k-navy, #002855);
	text-decoration: underline;
	text-decoration-color: var(--k-mint, #00E5D8);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}
.k24p-content a:hover { color: var(--k-orange, #FF6B00); text-decoration-color: var(--k-orange, #FF6B00); }
.k24p-content blockquote {
	margin: 18px 0;
	padding: 16px 24px;
	background: var(--k-mint-soft, #E0FBF9);
	border-left: 4px solid var(--k-mint, #00E5D8);
	border-radius: 0 8px 8px 0;
}
.k24p-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 18px 0;
}
.k24p-content table th, .k24p-content table td {
	padding: 12px;
	border-bottom: 1px solid #E2E8F0;
	text-align: left;
}
.k24p-content table th {
	background: var(--k-bg-soft, #F8FAFC);
	font-weight: 700;
	color: var(--k-navy, #002855);
}

.k24p-tool {
	margin-top: 32px;
}

/* ═══ CTA blok ═══ */
.k24p-cta {
	margin-top: 32px;
	background: linear-gradient(135deg, #001A3D, #002855);
	color: white;
	border-radius: 18px;
	padding: 48px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.k24p-cta::before {
	content: ''; position: absolute;
	top: -100px; right: -100px;
	width: 300px; height: 300px;
	background: radial-gradient(circle, rgba(0,229,216,0.2), transparent 70%);
	border-radius: 50%; filter: blur(60px);
}
.k24p-cta h3 {
	color: white;
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0 0 8px;
	letter-spacing: -0.025em;
	position: relative;
}
.k24p-cta p {
	color: rgba(255,255,255,0.78);
	margin: 0 0 24px;
	font-size: 1.05rem;
	position: relative;
}
.k24p-cta-btns {
	display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
	position: relative;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 760px) {
	.k24p-hero { padding: 70px 0 56px; }
	.k24p-content { padding: 32px 24px; }
	.k24p-cta { padding: 36px 24px; }
}
