/* =========================================================
   Kanalliste – Premium Channel Directory
   Glassmorphism · Neon Green · Mobile-First
   ========================================================= */

/* ── Page wrapper ───────────────────────────────────────── */
.kl-page {
  background: var(--clr-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Hero ───────────────────────────────────────────────── */
.kl-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 0 0;
  overflow: hidden;
}

/* Multi-layer background */
.kl-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(0,255,136,.13) 0%, transparent 65%),
    radial-gradient(ellipse 45% 35% at 88% 55%,  rgba(0,200,255,.07) 0%, transparent 60%),
    radial-gradient(ellipse 35% 30% at 12% 65%,  rgba(120,80,255,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid lines */
.kl-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,136,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,136,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, black 20%, transparent 100%);
  pointer-events: none;
}

/* Floating dots (world feel) */
.kl-hero-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.kl-hero-dots span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--clr-green);
  opacity: 0;
  animation: kl-dot-float var(--dur,6s) var(--delay,0s) ease-in-out infinite;
}
.kl-hero-dots span:nth-child(1)  { left: 10%; top: 30%; --dur:7s; --delay:0s; }
.kl-hero-dots span:nth-child(2)  { left: 20%; top: 70%; --dur:9s; --delay:1s; }
.kl-hero-dots span:nth-child(3)  { left: 35%; top: 20%; --dur:6s; --delay:2s; }
.kl-hero-dots span:nth-child(4)  { left: 55%; top: 15%; --dur:8s; --delay:.5s; }
.kl-hero-dots span:nth-child(5)  { left: 70%; top: 55%; --dur:7s; --delay:1.5s; }
.kl-hero-dots span:nth-child(6)  { left: 82%; top: 25%; --dur:10s; --delay:3s; }
.kl-hero-dots span:nth-child(7)  { left: 92%; top: 70%; --dur:6s; --delay:.8s; }
.kl-hero-dots span:nth-child(8)  { left: 48%; top: 80%; --dur:9s; --delay:2.5s; }
.kl-hero-dots span:nth-child(9)  { left: 27%; top: 45%; --dur:7s; --delay:4s; }
.kl-hero-dots span:nth-child(10) { left: 65%; top: 38%; --dur:8s; --delay:1.2s; }
.kl-hero-dots span:nth-child(11) { left: 8%;  top: 55%; --dur:6s; --delay:3.5s; }
.kl-hero-dots span:nth-child(12) { left: 75%; top: 75%; --dur:11s;--delay:0.3s; }

@keyframes kl-dot-float {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: .6; }
  80%  { opacity: .4; }
  100% { opacity: 0; transform: translateY(-60px) scale(1.5); }
}

/* Hero text */
.kl-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin-inline: auto;
  padding-inline: 20px;
}

.kl-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--clr-muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.kl-breadcrumb a { color: var(--clr-muted); transition: color .2s; }
.kl-breadcrumb a:hover { color: var(--clr-green); }
.kl-breadcrumb .sep { opacity: .4; }
.kl-breadcrumb .current { color: var(--clr-green); }

.kl-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(0,255,136,.06);
  border: 1px solid rgba(0,255,136,.2);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 28px;
}
.kl-hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-green);
  box-shadow: 0 0 8px var(--clr-green);
  animation: kl-pulse-dot 2s ease-in-out infinite;
}

.kl-hero-h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--clr-white);
  margin-bottom: 8px;
}
.kl-hero-h2 {
  font-size: clamp(1rem, 3vw, 1.35rem);
  font-weight: 500;
  color: var(--clr-green);
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.kl-hero-headline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--clr-white);
  background: linear-gradient(135deg, var(--clr-white) 0%, var(--clr-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.kl-hero-sub {
  font-size: clamp(.95rem, 2vw, 1.15rem);
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  margin-inline: auto;
}

/* Hero CTA */
.kl-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--clr-green) 0%, var(--clr-green-dim) 100%);
  color: #000;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 8px 32px rgba(0,255,136,.25);
  margin-bottom: 48px;
}
.kl-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,255,136,.4);
  color: #000;
}

/* ── Stats Bar ───────────────────────────────────────────── */
.kl-stats-bar {
  position: relative;
  z-index: 2;
  width: 100%;
  border-top: 1px solid rgba(0,255,136,.1);
  background: rgba(8,8,16,.7);
  backdrop-filter: blur(20px);
  padding: 20px 0;
}
.kl-stats-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-inline: 20px;
}
.kl-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(0,255,136,.05);
  border: 1px solid rgba(0,255,136,.12);
  border-radius: 999px;
  font-size: .875rem;
  color: var(--clr-muted);
  white-space: nowrap;
}
.kl-stat-item strong {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--clr-green);
}
.kl-stat-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
}
@media (max-width: 480px) { .kl-stat-sep { display: none; } }

/* ── Search & Filter Bar ─────────────────────────────────── */
.kl-search-section {
  position: sticky;
  top: 66px;
  z-index: 100;
  background: rgba(8,8,16,.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,255,136,.08);
  padding: 16px 0;
  transition: box-shadow .25s;
}
.kl-search-section.elevated {
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
}

.kl-search-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.kl-search-wrap {
  position: relative;
  flex: 1;
  min-width: 240px;
}
.kl-search-ico {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  opacity: .5;
}
.kl-search-input {
  width: 100%;
  padding: 13px 44px 13px 48px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 999px;
  color: var(--clr-white);
  font-size: .9375rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.kl-search-input:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 3px rgba(0,255,136,.1);
  background: rgba(0,255,136,.04);
}
.kl-search-input::placeholder { color: var(--clr-muted-2); }
.kl-search-clear {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
  color: var(--clr-muted);
  font-size: .75rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.kl-search-clear:hover { color: var(--clr-green); border-color: var(--clr-green); }
.kl-search-clear.show { display: flex; }

/* Result count */
.kl-result-count {
  font-size: .8125rem;
  color: var(--clr-muted);
  white-space: nowrap;
  padding: 8px 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 999px;
}
.kl-result-count strong { color: var(--clr-green); }

/* Filter pills */
.kl-filter-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 10px;
}
.kl-filter-btn {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: transparent;
  color: var(--clr-muted);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  letter-spacing: .02em;
}
.kl-filter-btn:hover {
  border-color: var(--clr-green);
  color: var(--clr-green);
  background: rgba(0,255,136,.06);
}
.kl-filter-btn.active {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,255,136,.25);
}

/* ── Section Commons ─────────────────────────────────────── */
.kl-section {
  padding: 90px 0;
  position: relative;
}

/* Dot texture behind glassmorphism cards */
.kl-has-texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,255,136,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .25;
  pointer-events: none;
}

.kl-section-head {
  margin-bottom: 52px;
}
.kl-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(0,255,136,.06);
  border: 1px solid rgba(0,255,136,.18);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-green);
  margin-bottom: 16px;
}
.kl-section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.kl-section-title .hl { color: var(--clr-green); }
.kl-section-sub {
  font-size: 1rem;
  color: var(--clr-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* No results */
.kl-no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  grid-column: 1/-1;
}
.kl-no-results.show { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.kl-no-results-icon { font-size: 2.5rem; }
.kl-no-results h3 { color: var(--clr-white); font-size: 1.1rem; }
.kl-no-results p  { color: var(--clr-muted); font-size: .875rem; }

/* ── Country Grid ────────────────────────────────────────── */
.kl-countries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
}
@media (min-width: 480px)  { .kl-countries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .kl-countries-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .kl-countries-grid { grid-template-columns: repeat(6, 1fr); } }

/* Glassmorphism country card */
.kl-country-card {
  position: relative;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,255,136,.08);
  border-radius: 16px;
  padding: 24px 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  transition: transform .25s cubic-bezier(.22,.68,0,1.2),
              border-color .25s,
              box-shadow .25s;
  overflow: hidden;
}
/* Glow overlay */
.kl-country-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,136,.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .25s;
  border-radius: inherit;
}
/* Bottom bar */
.kl-country-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-green), transparent);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
  border-radius: 999px;
}
.kl-country-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(0,255,136,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 24px rgba(0,255,136,.12);
}
.kl-country-card:hover::before { opacity: 1; }
.kl-country-card:hover::after  { transform: translateX(-50%) scaleX(1); }
.kl-country-card.kl-hidden {
  display: none;
}

.kl-flag {
  font-size: 2.5rem;
  line-height: 1;
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
  position: relative; z-index: 1;
}
.kl-country-card:hover .kl-flag { transform: scale(1.2) translateY(-2px); }

.kl-country-name {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.3;
  position: relative; z-index: 1;
}
.kl-country-count {
  font-size: .7rem;
  font-weight: 700;
  color: var(--clr-green);
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 999px;
  padding: 2px 10px;
  position: relative; z-index: 1;
}

/* ── Category Grid ───────────────────────────────────────── */
.kl-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 640px)  { .kl-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .kl-cat-grid { grid-template-columns: repeat(4, 1fr); } }

.kl-cat-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 16px;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.22,.68,0,1.2),
              border-color .25s,
              box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.kl-cat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--cat-color, rgba(0,255,136,.15)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.kl-cat-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(0,255,136,.25);
  box-shadow: 0 12px 36px rgba(0,0,0,.4), 0 0 20px rgba(0,255,136,.1);
}
.kl-cat-card:hover::before { opacity: 1; }
.kl-cat-card.kl-hidden { display: none; }

/* Category-specific accent colors */
.kl-cat-card[data-type="sport"]   { --cat-color: rgba(0,230,118,.2); }
.kl-cat-card[data-type="movies"]  { --cat-color: rgba(255,82,82,.2); }
.kl-cat-card[data-type="kids"]    { --cat-color: rgba(255,214,0,.2); }
.kl-cat-card[data-type="music"]   { --cat-color: rgba(179,136,255,.2); }
.kl-cat-card[data-type="docs"]    { --cat-color: rgba(78,205,196,.2); }
.kl-cat-card[data-type="arabic"]  { --cat-color: rgba(246,201,14,.2); }
.kl-cat-card[data-type="motor"]   { --cat-color: rgba(255,159,67,.2); }
.kl-cat-card[data-type="general"] { --cat-color: rgba(0,255,136,.15); }

.kl-cat-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.625rem;
  flex-shrink: 0;
  transition: all .25s;
}
.kl-cat-card:hover .kl-cat-icon-wrap {
  background: var(--cat-color, rgba(0,255,136,.1));
  border-color: rgba(0,255,136,.2);
  transform: scale(1.08);
}

.kl-cat-body { flex: 1; min-width: 0; }
.kl-cat-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 4px;
  line-height: 1.3;
}
.kl-cat-desc {
  font-size: .8125rem;
  color: var(--clr-muted);
  line-height: 1.5;
}
.kl-cat-count-badge {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 700;
  color: var(--clr-green);
  background: rgba(0,255,136,.08);
  border: 1px solid rgba(0,255,136,.15);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
  align-self: flex-start;
}

/* ── Arabic Section ──────────────────────────────────────── */
.kl-arabic-section {
  background: linear-gradient(180deg,
    var(--clr-bg) 0%,
    rgba(246,201,14,.025) 50%,
    var(--clr-bg) 100%
  );
  position: relative;
}
.kl-arabic-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(246,201,14,.1) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .18;
  pointer-events: none;
}

.kl-arabic-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  background: rgba(246,201,14,.07);
  border: 1px solid rgba(246,201,14,.2);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #f6c90e;
  margin-bottom: 16px;
}
.kl-arabic-section .kl-section-title .hl { color: #f6c90e; }

/* Arabic grid */
.kl-arabic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}
@media (min-width: 480px)  { .kl-arabic-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px)  { .kl-arabic-grid { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
@media (min-width: 1024px) { .kl-arabic-grid { grid-template-columns: repeat(7, 1fr); } }

.kl-arabic-card {
  position: relative;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(246,201,14,.1);
  border-radius: 16px;
  padding: 22px 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-align: center;
  transition: transform .25s cubic-bezier(.22,.68,0,1.2),
              border-color .25s,
              box-shadow .25s;
  overflow: hidden;
}
.kl-arabic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f6c90e, transparent);
  transition: transform .3s cubic-bezier(.22,.68,0,1.2);
  border-radius: 999px;
}
.kl-arabic-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(246,201,14,.3);
  box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 24px rgba(246,201,14,.1);
}
.kl-arabic-card:hover::after { transform: translateX(-50%) scaleX(1); }
.kl-arabic-card.kl-hidden { display: none; }

.kl-arabic-count {
  font-size: .7rem;
  font-weight: 700;
  color: #f6c90e;
  background: rgba(246,201,14,.08);
  border: 1px solid rgba(246,201,14,.15);
  border-radius: 999px;
  padding: 2px 10px;
}

/* Arabic networks row */
.kl-arabic-networks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
  position: relative; z-index: 1;
}
.kl-network-chip {
  padding: 7px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(246,201,14,.12);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--clr-muted);
  transition: all .2s;
}
.kl-network-chip:hover {
  border-color: rgba(246,201,14,.3);
  color: #f6c90e;
  background: rgba(246,201,14,.05);
}

/* ── CTA Section ─────────────────────────────────────────── */
.kl-cta-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(0,255,136,.08);
}
.kl-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 100%, rgba(0,255,136,.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 50%, rgba(0,200,255,.04) 0%, transparent 60%);
}

.kl-cta-inner { position: relative; z-index: 1; max-width: 640px; margin-inline: auto; }
.kl-cta-icon { font-size: 3rem; margin-bottom: 20px; display: block; }
.kl-cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
.kl-cta-text {
  font-size: 1.0625rem;
  color: var(--clr-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.kl-cta-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.kl-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 800;
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.kl-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,.45);
  color: #fff;
}
.kl-cta-trust {
  margin-top: 24px;
  font-size: .8125rem;
  color: var(--clr-muted-2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.kl-cta-trust span { display: flex; align-items: center; gap: 6px; }

/* ── SEO Text Block ──────────────────────────────────────── */
.kl-seo-block {
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.kl-seo-title {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 20px;
}
.kl-seo-text {
  font-size: .9375rem;
  color: var(--clr-muted);
  line-height: 1.8;
  max-width: 820px;
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 767px) { .kl-seo-text { column-count: 1; } }
.kl-seo-text p { margin-bottom: 16px; }
.kl-seo-text strong { color: var(--clr-white); }

/* ── Scroll animations ───────────────────────────────────── */
.kl-appear {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.kl-appear.in { opacity: 1; transform: none; }

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes kl-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.75); }
}
@keyframes kl-glow-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,.4); }
  50%       { box-shadow: 0 0 0 10px rgba(0,255,136,0); }
}

/* ── Mobile Polish ───────────────────────────────────────── */
@media (max-width: 640px) {
  .kl-hero { padding-top: 100px; }
  .kl-section { padding: 60px 0; }
  .kl-cat-card { padding: 20px 16px; }
  .kl-hero-cta { padding: 14px 28px; font-size: 1rem; }
}

/* ── Accessibility ───────────────────────────────────────── */
.kl-page *:focus-visible {
  outline: 2px solid var(--clr-green);
  outline-offset: 3px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .kl-page *, .kl-page *::before, .kl-page *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .kl-appear { opacity: 1; transform: none; }
}
