:root {
  --navy: #07142f;
  --blue: #145cff;
  --cyan: #00d4ff;
  --purple: #7c3cff;
  --green: #25d695;
  --orange: #ffb547;
  --red: #ff5b7f;
  --text: #172033;
  --muted: #6b7280;
  --soft: #f5f8ff;
  --white: #ffffff;
  --border: #e6ebf5;
  --shadow: 0 24px 70px rgba(7,20,47,.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; position: relative; min-height: 100%; }

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  margin-bottom: 0;
}

a { text-decoration: none; color: inherit; }

.container {
  width: min(1200px, 92%);
  margin: auto;
}

/* ── Header ──────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.04em;
  font-size: 24px;
}

.logo img { height: 50px; width: auto; display: block; }

.menu {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.menu a:hover { color: var(--blue); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 14px;
  transition: .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  box-shadow: 0 18px 36px rgba(20,92,255,.25);
}

.btn-primary:hover { transform: translateY(-2px); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: var(--border);
}

.btn-light:hover { color: var(--navy); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: #fff;
}

/* ── Hero ────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 25%, rgba(0,212,255,.28), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(124,60,255,.28), transparent 26%),
    linear-gradient(135deg, #07142f 0%, #0b2457 45%, #132f78 100%);
  color: #fff;
  padding: 92px 0 80px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 24px;
}

.badge span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(37,214,149,.15);
  flex-shrink: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.07em;
  font-weight: 900;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(90deg, #00d4ff, #25d695, #ffb547);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: #dbe7ff;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(22px);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.dashboard {
  background: #fff;
  color: var(--text);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.dots { display: flex; gap: 7px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dots i:nth-child(1) { background: var(--red); }
.dots i:nth-child(2) { background: var(--orange); }
.dots i:nth-child(3) { background: var(--green); }

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.metric {
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  border: 1px solid var(--border);
}

.metric b {
  display: block;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -.04em;
}

.metric span { color: var(--muted); font-size: 13px; font-weight: 700; }

/* ── Sections ────────────────────────────────────── */
section { padding: 86px 0; }

.section-head { max-width: 780px; margin-bottom: 42px; }

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.055em;
  color: var(--navy);
  font-weight: 900;
  margin-bottom: 16px;
}

.section-head p { color: var(--muted); font-size: 17px; }

/* ── Services ────────────────────────────────────── */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
  transition: .25s ease;
}

.service:hover { transform: translateY(-7px); box-shadow: var(--shadow); }

.icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 24px;
}

.s1 .icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.s2 .icon { background: linear-gradient(135deg, var(--purple), var(--red)); }
.s3 .icon { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.s4 .icon { background: linear-gradient(135deg, #111827, var(--blue)); }
.s5 .icon { background: linear-gradient(135deg, var(--orange), var(--red)); }
.s6 .icon { background: linear-gradient(135deg, #00a6ff, #25d695); }

.service h3 {
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -.035em;
  margin-bottom: 12px;
}

.service p { color: var(--muted); font-size: 15px; margin-bottom: 18px; }

.service ul { list-style: none; display: grid; gap: 8px; color: #475569; font-size: 14px; font-weight: 600; }
.service li::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: 900; }

/* ── Dark section ────────────────────────────────── */
.dark {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dark h2 { color: #fff; }
.dark .section-head p { color: #c7d2fe; }

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.solution {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  padding: 24px;
}

.solution strong { display: block; font-size: 19px; margin-bottom: 8px; }
.solution span { color: #cbd5e1; font-size: 14px; }

/* ── About ───────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 54px;
  align-items: center;
}

.about-box {
  background: linear-gradient(135deg, #eef6ff, #f7f1ff);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
}

.about-logo {
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}

.about-logo img { max-width: 260px; width: 100%; }

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

.stat {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid var(--border);
}

.stat b { color: var(--blue); font-size: 28px; letter-spacing: -.05em; }
.stat span { display: block; color: var(--muted); font-size: 13px; font-weight: 700; }

/* ── Process ─────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  background: #fff;
}

.step em {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-style: normal;
  font-weight: 900;
  margin-bottom: 18px;
}

.step h3 { color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ── CTA ─────────────────────────────────────────── */
.cta {
  padding: 70px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,212,255,.35), transparent 25%),
    linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.cta h2 { color: #fff; margin-bottom: 12px; }
.cta p { color: #eaf0ff; max-width: 650px; }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: #050b1f;
  color: #94a3b8;
  padding: 48px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

footer strong { color: #fff; font-size: 20px; }

/* ── Dropdown menu ───────────────────────────────── */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: .2s;
}

.dropdown-toggle:hover { color: var(--blue); }

.dropdown-arrow {
  font-size: 11px;
  transition: transform .2s ease;
  display: inline-block;
}

.dropdown:hover .dropdown-arrow,
.dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px 10px 10px;
  box-shadow: 0 24px 60px rgba(7,20,47,.16);
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: flex;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  transition: background .18s;
}

.dropdown-menu a:hover { background: var(--soft); }

.dm-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.s1-icon { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.s2-icon { background: linear-gradient(135deg, var(--purple), var(--red)); }
.s3-icon { background: linear-gradient(135deg, var(--green), var(--cyan)); }
.s4-icon { background: linear-gradient(135deg, #111827, var(--blue)); }
.s5-icon { background: linear-gradient(135deg, var(--orange), var(--red)); }
.s6-icon { background: linear-gradient(135deg, #00a6ff, #25d695); }

.dm-text strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 2px;
}

.dm-text em {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.dm-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 6px;
}

.kamu-icon {
  background: linear-gradient(135deg, #071e3d, #145cff);
  font-size: 20px;
}

/* ── Service link ────────────────────────────────── */
.service-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  transition: .2s ease;
}
.service-link:hover { color: var(--purple); letter-spacing: .01em; }

/* ── Footer links ────────────────────────────────── */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.footer-links a {
  color: #94a3b8;
  font-size: 14px;
  transition: .2s;
}
.footer-links a:hover { color: #fff; }

/* ── Page hero (inner pages) ─────────────────────── */
.page-hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.s1-hero { background: radial-gradient(circle at 15% 25%, rgba(0,212,255,.28), transparent 28%), linear-gradient(135deg, #07142f 0%, #0b2457 45%, #132f78 100%); }
.s2-hero { background: radial-gradient(circle at 15% 25%, rgba(124,60,255,.28), transparent 28%), linear-gradient(135deg, #160a2e 0%, #2d0a4e 45%, #3d1270 100%); }
.s3-hero { background: radial-gradient(circle at 15% 25%, rgba(37,214,149,.28), transparent 28%), linear-gradient(135deg, #051a12 0%, #093d26 45%, #0e5c38 100%); }
.s4-hero { background: radial-gradient(circle at 15% 25%, rgba(20,92,255,.22), transparent 28%), linear-gradient(135deg, #0a0a14 0%, #111827 45%, #1a2540 100%); }
.s5-hero { background: radial-gradient(circle at 15% 25%, rgba(255,181,71,.22), transparent 28%), linear-gradient(135deg, #1a0a00 0%, #3d1800 45%, #5c2800 100%); }
.s6-hero { background: radial-gradient(circle at 15% 25%, rgba(0,166,255,.22), transparent 28%), linear-gradient(135deg, #001a2e 0%, #003d5c 45%, #005c7a 100%); }

.breadcrumb-link {
  display: inline-block;
  color: rgba(255,255,255,.65);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  transition: .2s;
}
.breadcrumb-link:hover { color: #fff; }

.page-hero-icon {
  width: 66px; height: 66px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 22px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
}

.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 18px; color: #dbe7ff; max-width: 640px; margin-bottom: 32px; }

/* ── Inner page layout ───────────────────────────── */
.inner-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 54px;
  align-items: start;
}

.inner-side-box {
  background: linear-gradient(135deg, #eef6ff, #f7f1ff);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 36px;
  position: sticky;
  top: 102px;
}

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

.feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.fi-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.feature-item strong { color: var(--navy); font-size: 16px; display: block; margin-bottom: 4px; }
.feature-item p { color: var(--muted); font-size: 14px; }

.check-list { list-style: none; display: grid; gap: 10px; color: #475569; font-size: 14px; font-weight: 600; }
.check-list li::before { content: "✓"; color: var(--green); margin-right: 8px; font-weight: 900; }

/* ── Inner cards ─────────────────────────────────── */
.inner-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.inner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
  transition: .25s ease;
}

.inner-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.ic-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.inner-card h3 { color: var(--navy); font-size: 20px; letter-spacing: -.03em; margin-bottom: 12px; }
.inner-card > p { color: var(--muted); font-size: 14px; margin-bottom: 18px; }

/* ── Tech grid ───────────────────────────────────── */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.tech-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  padding: 24px;
}

.tech-item strong { display: block; font-size: 17px; margin-bottom: 8px; color: #fff; }
.tech-item span { color: #cbd5e1; font-size: 14px; }

/* ── Kamu Hero ───────────────────────────────────── */
.kamu-hero {
    background:
        radial-gradient(circle at 10% 30%, rgba(37,214,149,.22), transparent 30%),
        radial-gradient(circle at 88% 10%, rgba(20,92,255,.30), transparent 28%),
        linear-gradient(135deg, #03111f 0%, #071e3d 50%, #0b2f5e 100%);
}

.kamu-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.20);
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
}

.kamu-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 0 6px rgba(37,214,149,.20);
    flex-shrink: 0;
}

/* ── Kamu Why grid ───────────────────────────────── */
.kamu-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.kamu-why-item {
    text-align: center;
    padding: 28px 20px;
    border-radius: 24px;
    border: 1px solid var(--border);
    background: #fff;
    transition: .2s;
}

.kamu-why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.kw-icon {
    font-size: 36px;
    margin-bottom: 14px;
    display: block;
}

.kamu-why-item h3 {
    font-size: 16px;
    color: var(--navy);
    letter-spacing: -.02em;
    margin-bottom: 8px;
}

.kamu-why-item p {
    font-size: 13px;
    color: var(--muted);
}

/* ── Kamu Service Block ───────────────────────────── */
.kamu-service-block {
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 8px 30px rgba(15,23,42,.05);
}

.ksb-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px 32px;
    color: #fff;
}

.s1-kamu { background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.s2-kamu { background: linear-gradient(135deg, var(--purple), var(--blue)); }
.s3-kamu { background: linear-gradient(135deg, #111827, #1e3a5f); }
.s4-kamu { background: linear-gradient(135deg, #0f4c75, var(--purple)); }
.s5-kamu { background: linear-gradient(135deg, var(--orange), var(--red)); }
.s6-kamu { background: linear-gradient(135deg, var(--green), var(--cyan)); }

.ksb-num {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: -.05em;
    opacity: .35;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 2px;
}

.ksb-header h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 8px;
    color: #fff;
}

.ksb-header p {
    font-size: 14px;
    color: rgba(255,255,255,.80);
    margin: 0;
}

.ksb-body {
    background: #fff;
    padding: 28px 32px;
}

.ksb-detail {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: start;
}

.ksb-what h4,
.ksb-examples h4 {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.example-tags span {
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

.ksb-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
}

/* ── Kurum grid ───────────────────────────────────── */
.kurum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.kurum-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    transition: .2s;
}

.kurum-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.kurum-icon {
    font-size: 40px;
    margin-bottom: 14px;
    display: block;
}

.kurum-card strong {
    display: block;
    font-size: 17px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 8px;
}

.kurum-card span {
    font-size: 13px;
    color: var(--muted);
}

/* ── Kamu process ────────────────────────────────── */
.kamu-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.kamu-step {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    position: relative;
}

.kp-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -.05em;
    opacity: .18;
    line-height: 1;
    margin-bottom: 12px;
}

.kamu-step h4 {
    font-size: 17px;
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 10px;
}

.kamu-step p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px;
}

.kp-duration {
    display: inline-block;
    background: var(--soft);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 800;
    color: var(--blue);
}

.kp-line { display: none; }

/* ── Akademi istatistikler ───────────────────────── */
.akademi-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ak-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.ak-stat b {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.06em;
  line-height: 1;
  margin-bottom: 6px;
}

.ak-stat span {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* ── Trend banner ────────────────────────────────── */
.trend-banner {
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
  border: 1px solid #fde68a;
  border-radius: 20px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.trend-badge {
  background: #f59e0b;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.trend-banner p {
  color: #92400e;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* ── Program kategorisi ──────────────────────────── */
.prog-category {
  margin-bottom: 72px;
}

.prog-cat-head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.prog-cat-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 28px;
  flex-shrink: 0;
}

.prog-cat-head h2 { margin-bottom: 8px; }
.cat-desc { color: var(--muted); font-size: 15px; margin: 0; }

/* ── Program kartları ────────────────────────────── */
.prog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(15,23,42,.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: .25s ease;
}

.prog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }

.prog-card.hot {
  border-color: var(--blue);
  box-shadow: 0 8px 30px rgba(20,92,255,.10);
}

.prog-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag-hot {
  background: linear-gradient(135deg, var(--blue), var(--purple));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.tag-new {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.tag-level {
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.tag-age {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}

.prog-card h3 {
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1.3;
  margin: 0;
}

.prog-card > p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
  flex: 1;
}

.prog-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--soft);
  border-radius: 16px;
  padding: 14px 16px;
}

.pm-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 80px;
}

.pm-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pm-val {
  font-size: 13px;
  color: var(--navy);
  font-weight: 800;
}

.prog-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.prog-topics span {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 960px) {
  .hero-grid, .about, .inner-grid, .ksb-detail { grid-template-columns: 1fr; }
  .services, .inner-cards, .prog-grid { grid-template-columns: 1fr 1fr; }
  .solution-grid, .process, .tech-grid, .kamu-why-grid, .kurum-grid, .kamu-process { grid-template-columns: 1fr 1fr; }
  .menu { display: none; }
  .cta { flex-direction: column; align-items: flex-start; padding: 42px; }
  .inner-side-box { position: static; }
  .footer-grid { flex-direction: column; gap: 28px; }
  .prog-cat-head { flex-direction: column; }
  .trend-banner { flex-direction: column; }
}

@media (max-width: 640px) {
  .kamu-why-grid, .kurum-grid, .kamu-process { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .services, .solution-grid, .process, .metric-grid, .stats, .inner-cards, .tech-grid, .prog-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0; }
  .nav .btn { display: none; }
  h1 { font-size: 42px; }
  .akademi-stats { justify-content: center; }
}
