:root {
  --ink: #0b1f33;
  --navy: #12324d;
  --navy-2: #1a4568;
  --teal: #0e7c7b;
  --teal-2: #129a98;
  --gold: #d4a017;
  --gold-2: #f5c84b;
  --green: #1fa97a;
  --amber: #e08a2a;
  --red: #c44536;
  --blue: #4c7cff;
  --blue-d: #3b63e0;
  --green-cta: #16c47f;
  --bg: #f3f6fb;
  --paper: #ffffff;
  --card: #ffffff;
  --line: #e2e8f0;
  --muted: #5b6b7a;
  --shadow: 0 14px 40px rgba(11, 31, 51, 0.08);
  --radius: 18px;
  --max: 1180px;
  --font: "Outfit", system-ui, sans-serif;
  --serif: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font-family: inherit; }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

/* Header */
.topbar {
  background: var(--ink);
  color: #d7e2ea;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; }
.topbar strong { color: var(--gold-2); font-weight: 600; }
.nav-toggle, .filter-toggle { display: none; }
.nav-toggle {
  margin-left: 8px; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; width: 42px; height: 42px; font-size: 20px; cursor: pointer;
}
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 20px; letter-spacing: -.03em; }
.logo-img { height: 52px; width: auto; display: block; }
.logo-mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: conic-gradient(from 210deg, var(--gold), var(--teal), var(--navy), var(--gold));
  display: grid; place-items: center; color: #fff; font-size: 13px;
  box-shadow: 0 6px 16px rgba(18,50,77,.25);
}
nav.main { display: flex; align-items: center; gap: 22px; font-size: 15px; color: var(--navy); }
nav.main a:hover { color: var(--teal); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; padding: 11px 18px; cursor: pointer;
  font-weight: 600; font-size: 14px; transition: .18s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-1px); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ink:hover { background: var(--navy-2); }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: var(--teal-2); }
.btn-ghost { background: transparent; border: 1px solid var(--line); color: var(--navy); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-full { width: 100%; }
.header-actions { display: flex; gap: 8px; align-items: center; }
.lang-switch { display: flex; gap: 2px; margin-right: 6px; font-weight: 600; font-size: 13px; }
.lang-switch a { padding: 4px 8px; border-radius: 6px; color: var(--navy); text-decoration: none; }
.lang-switch a.on { background: #0f2744; color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(180deg, #4c7cff 0%, #3b63e0 70%, #3558c9 100%);
  color: #fff;
  padding: 56px 0 48px;
  position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  padding: 6px 12px; border-radius: 999px; font-size: 13px; color: #f0e2b8;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: var(--gold-2); }
.hero p.lead { font-size: 18px; color: #c9d6e0; max-width: 540px; margin-bottom: 28px; }
.search-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 10px;
}
.search-card label { display: block; font-size: 12px; color: var(--muted); margin-bottom: 4px; font-weight: 600; }
.search-card input, .search-card select {
  width: 100%; border: 1px solid var(--line); background: #fff;
  border-radius: 12px; padding: 12px 12px; font-size: 15px;
}
.license-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.pill {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #e8eef3; border-radius: 999px; padding: 7px 12px; font-size: 13px; cursor: pointer;
}
.pill:hover, .pill.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Meter visual */
.meter-hero {
  display: grid; place-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  padding: 28px 20px 22px;
}
.meter {
  --size: 168px;
  width: var(--size); height: var(--size);
  position: relative;
}
.meter svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.meter .score {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.meter .score b { font-family: var(--serif); font-size: 42px; line-height: 1; letter-spacing: -.04em; }
.meter .score span { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.meter.light .score b { color: #fff; }
.meter.light .score span { color: #c9d6e0; }
.meter.sm { --size: 86px; }
.meter.sm .score b { font-size: 22px; }
.meter.md { --size: 118px; }
.meter.md .score b { font-size: 30px; }
.meter-break { width: 100%; margin-top: 16px; display: grid; gap: 7px; }
.mb-row { display: grid; grid-template-columns: 92px 1fr 28px; gap: 8px; align-items: center; font-size: 12px; color: #d7e2ea; }
.mb-row .bar { height: 6px; background: rgba(255,255,255,.1); border-radius: 99px; overflow: hidden; }
.mb-row .bar i { display: block; height: 100%; background: var(--gold-2); border-radius: 99px; }
.card .mb-row { color: var(--muted); }
.card .mb-row .bar { background: #efe8da; }
.card .mb-row .bar i { background: var(--teal); }

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  margin-top: -28px; position: relative; z-index: 2;
}
.stat {
  background: var(--card); border-radius: 16px; padding: 18px 16px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.stat b { display: block; font-size: 26px; letter-spacing: -.03em; }
.stat span { color: var(--muted); font-size: 13px; }

/* Sections */
section { padding: 72px 0; }
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 28px; }
.sec-head h2, h2 {
  font-family: var(--serif); font-weight: 560; font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -.03em;
}
.muted { color: var(--muted); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: 0 8px 24px rgba(11,31,51,.04);
}
.icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  background: #eef6f5; color: var(--teal);
  display: grid; place-items: center; font-weight: 700; margin-bottom: 12px;
}

/* School cards */
.school-card {
  display: grid; grid-template-columns: 118px 1fr auto; gap: 18px; align-items: start;
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 18px; margin-bottom: 14px; box-shadow: var(--shadow);
}
.school-card:hover { border-color: #cfc4ae; }
.school-main h3 { font-size: 20px; letter-spacing: -.02em; margin-bottom: 4px; }
.meta { display: flex; flex-wrap: wrap; gap: 8px 14px; color: var(--muted); font-size: 13px; margin: 6px 0 10px; }
.badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.badge {
  font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  background: #eef6f5; color: var(--teal); border-radius: 999px; padding: 4px 8px;
}
.badge.gold { background: #fff3cc; color: #8a6a08; }
.badge.ink { background: var(--ink); color: #fff; }
.price-row { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; }
.price-row b { font-size: 16px; }
.school-cta { display: flex; flex-direction: column; gap: 8px; min-width: 180px; }
.features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.feat { font-size: 12px; background: var(--bg); border-radius: 8px; padding: 4px 8px; color: var(--navy); }

/* Listing layout */
.listing { padding: 24px 0 72px; background: #f3f6fb; }
.listing-grid { display: grid; grid-template-columns: 300px 1fr; gap: 22px; align-items: start; }
.filters { position: sticky; top: 92px; }
.filter-group { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.filter-group:last-child { border-bottom: 0; margin-bottom: 0; }
.filter-group h4 { font-size: 13px; letter-spacing: .02em; margin-bottom: 8px; color: var(--ink); }
.filter-group label { display: flex; gap: 8px; align-items: center; font-size: 14px; margin: 7px 0; cursor: pointer; color: #334155; }
.filter-group input[type="range"] { width: 100%; accent-color: var(--blue); }
.range-out { font-size: 13px; color: var(--blue); font-weight: 700; }
.range-labels { display: flex; justify-content: space-between; font-size: 12px; color: var(--muted); margin-top: 4px; }

.list-hero {
  background: linear-gradient(180deg, #4c7cff 0%, #5b8aff 100%);
  color: #fff;
  padding: 36px 0 28px;
}
.list-hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.03em;
  line-height: 1.12;
  margin: 8px 0 8px;
}
.list-hero h1 em { font-style: italic; }
.list-hero .crumb { opacity: .95; font-size: 13px; }
.list-hero .crumb a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.profile-page .crumb a, .listing .crumb a { color: var(--blue); font-weight: 600; }
.list-hero .sub { opacity: .92; margin-bottom: 14px; }
.list-hero .sub-label { font-weight: 600; margin: 0 0 10px; font-size: 15px; }
.lic-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; max-width: 720px; }
.opleiding-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin-top: 8px; }
.opl-tile {
  background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 12px;
  padding: 12px 14px; display: flex; gap: 10px; align-items: center; font-weight: 500;
}
.opl-tile input { accent-color: var(--blue); }
.opl-icon { font-size: 22px; line-height: 1; }
.lic-tile {
  background: #fff; color: var(--ink); border-radius: 12px; padding: 12px 14px;
  display: flex; gap: 10px; align-items: center; font-weight: 500; cursor: pointer;
}
.lic-tile input { accent-color: var(--blue); }
.place-row { display: flex; gap: 10px; margin-top: 14px; max-width: 720px; }
.place-field {
  background: #fff; color: var(--ink); border-radius: 12px; padding: 12px 14px; flex: 1;
  font-weight: 600;
}
.place-field input {
  width: 90%; border: 0; background: transparent; font: inherit; font-weight: 700; color: var(--navy);
}
.place-field::before { content: "📍 "; }
.btn-green { background: var(--green-cta); color: #fff; border-radius: 12px; padding: 12px 22px; }
.btn-green:hover { filter: brightness(1.05); }

.list-toolbar {
  display: flex; justify-content: space-between; align-items: end; gap: 16px; margin-bottom: 16px;
}
.list-toolbar select {
  border: 1px solid var(--line); background: #fff; border-radius: 12px; padding: 10px 12px; font-size: 14px;
}
.filter-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 16px 8px;
  position: sticky; top: 88px; box-shadow: 0 8px 24px rgba(15, 23, 42, .04);
}
.filter-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.linkish { background: none; border: 0; color: var(--blue); font-weight: 600; cursor: pointer; font-size: 13px; }

.school-card {
  display: grid; grid-template-columns: 46px 92px 1fr 150px; gap: 16px; align-items: start;
}
.school-rank { font-weight: 800; color: #94a3b8; padding-top: 8px; }
.school-photo {
  width: 92px; height: 92px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; font-weight: 800; color: var(--blue-d);
  overflow: hidden;
}
.school-photo img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.score-block { text-align: right; }
.score-block .big {
  font-family: var(--serif); font-size: 34px; line-height: 1; letter-spacing: -.04em; color: var(--ink);
}
.score-block .revn { color: var(--muted); font-size: 13px; }
.offer-line { color: #0f766e; font-weight: 600; font-size: 13px; margin: 4px 0 6px; }
.feat-list { margin: 0; padding-left: 16px; color: #334155; font-size: 13px; }
.feat-list li { margin: 2px 0; }

/* Profile */
.profile-page { background: #fff; padding: 18px 0 64px; }
.profile-top { display: flex; justify-content: space-between; align-items: center; margin: 8px 0 18px; }
.backlink { color: var(--blue); font-weight: 600; font-size: 14px; }
.ghost-btn { background: none; border: 0; color: #475569; cursor: pointer; font-weight: 600; }
.profile-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; align-items: start; }
.profile-head { display: grid; grid-template-columns: 168px 1fr; gap: 20px; margin-bottom: 8px; }
.profile-photo {
  width: 168px; height: 168px; border-radius: 16px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 36px; font-weight: 800; color: var(--blue-d);
  overflow: hidden;
}
.profile-photo img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.profile-head h1 { font-size: 28px; letter-spacing: -.03em; margin-bottom: 6px; }
.score-line { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.score-line b { font-size: 22px; }
.score-line .dots { color: var(--blue); letter-spacing: 2px; font-size: 14px; }
.fact-list { list-style: none; color: #475569; font-size: 14px; display: grid; gap: 4px; }
.stack { display: grid; gap: 14px; }
.why-list { margin: 8px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 6px 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; color: #334155; }
.meter-row { display: grid; grid-template-columns: 130px 1fr; gap: 16px; align-items: center; }
.quote-card {
  position: sticky; top: 88px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 20px; box-shadow: 0 12px 32px rgba(15,23,42,.08);
}
.quote-card h3 { font-size: 18px; margin-bottom: 14px; line-height: 1.3; }
.center { text-align: center; }
.contact-lines { border-top: 1px solid var(--line); padding-top: 12px; }
.contact-lines p { font-weight: 700; margin-bottom: 8px; }
.contact-lines a, .contact-lines button {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  padding: 10px 0; border-bottom: 1px solid var(--line); cursor: pointer; font-weight: 600; color: var(--blue);
}
.similar { display: grid; gap: 8px; margin-top: 10px; }
.similar a { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--line); }
.profile-hero {
  background: var(--card); border: 1px solid var(--line); border-radius: 24px;
  padding: 28px; display: grid; grid-template-columns: auto 1fr 220px; gap: 24px;
  align-items: center; box-shadow: var(--shadow);
}
.tabs { display: flex; gap: 8px; border-bottom: 1px solid var(--line); margin: 28px 0 18px; }
.tabs a, .tabs button {
  background: none; border: 0; padding: 10px 14px; cursor: pointer;
  font-weight: 600; color: var(--muted); border-bottom: 2px solid transparent;
}
.tabs a.active, .tabs button.active { color: var(--ink); border-color: var(--blue); }
.pkg {
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.pkg:last-child { border-bottom: 0; }
.review {
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.stars { color: var(--gold); letter-spacing: 1px; }

/* Compare */
.compare-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: 16px; overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.compare-table th { background: var(--ink); color: #fff; font-weight: 600; }
.compare-table tr:nth-child(even) td { background: #f8fafc; }
.price-table th { font-size: 13px; }
.price-table td.cheap { background: #ecfdf5 !important; }
.cat-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.cat-tab {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; cursor: pointer; font-size: 13px; font-weight: 600; color: var(--navy);
}
.cat-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Cities */
.city-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.city-tile {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px;
}
.city-tile:hover { border-color: var(--teal); }
.city-tile b { display: block; font-size: 16px; }
.city-tile span { color: var(--muted); font-size: 13px; }

/* Pricing B2B */
.plan { display: flex; flex-direction: column; gap: 10px; }
.plan .price { font-family: var(--serif); font-size: 40px; letter-spacing: -.03em; }
.plan ul { list-style: none; display: grid; gap: 8px; color: var(--navy); margin: 8px 0 14px; }
.plan.featured { border: 2px solid var(--gold); position: relative; }
.ribbon {
  position: absolute; top: -12px; right: 16px; background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

/* Footer */
footer.site {
  background: var(--ink); color: #c9d6e0; padding: 48px 0 24px; margin-top: 20px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 24px; }
footer a { color: #c9d6e0; }
footer a:hover { color: var(--gold-2); }
.foot-copy { border-top: 1px solid rgba(255,255,255,.08); margin-top: 28px; padding-top: 16px; font-size: 13px; color: #8aa0b0; }

/* Forms */
.form { display: grid; gap: 10px; }
.form input, .form select, .form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px; font-size: 15px; background: #fff;
}
.toast {
  position: fixed; bottom: 20px; right: 20px; background: var(--ink); color: #fff;
  padding: 14px 16px; border-radius: 12px; box-shadow: var(--shadow); display: none; z-index: 80;
}
.toast.show { display: block; }
.letter-bar { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:8px; }
.letter-bar a { min-width:32px; text-align:center; padding:6px 8px; border:1px solid var(--line); border-radius:8px; background:#fff; font-weight:700; }
.letter-bar a.active { background:var(--blue); color:#fff; border-color:var(--blue); }
.pager { display:flex; gap:12px; align-items:center; margin:18px 0 8px; }

@media (max-width: 980px) {
  .nav-toggle { display: grid; place-items: center; }
  .site-header .wrap { height: 72px; }
  .filter-toggle { display: inline-flex; }
  nav.main {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; padding: 12px 20px 16px; gap: 12px;
  }
  body.nav-open nav.main { display: flex; }
  body.nav-open .header-actions { display: none; }
  .filter-panel { display: none; }
  body.filters-open .filter-panel { display: block; position: static; }
  .hero-grid, .listing-grid, .profile-hero, .profile-layout, .profile-head, .meter-row, .foot-grid, .stats, .grid-3, .city-grid, .search-card {
    grid-template-columns: 1fr;
  }
  .quote-card { position: static; }
  .school-card, .school-cta { grid-template-columns: 1fr; min-width: 0; }
  .filters, .filter-panel { position: static; }
  .lic-grid, .place-row { grid-template-columns: 1fr; display: grid; }
  .score-block { text-align: left; }
}
.cat-tabs{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 16px}
.place-suggest {
  position: absolute; z-index: 80; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; box-shadow: var(--shadow); max-height: 280px; overflow: auto; padding: 6px;
}
.place-suggest .ps-item {
  display: block; width: 100%; text-align: left; background: none; border: 0;
  padding: 8px 10px; border-radius: 8px; cursor: pointer; font: inherit;
}
.place-suggest .ps-item:hover, .place-suggest .ps-item.on { background: #eef3ff; }
.place-suggest small { color: var(--muted); margin-left: 6px; }
.locked-school{background:#f3f6fb;border:1px solid var(--line);border-radius:12px;padding:14px 16px;margin-bottom:12px;}
.locked-school a{color:var(--blue);font-weight:600;font-size:14px;}
.star-picker { display:flex; gap:6px; margin:6px 0 4px; }
.star-btn {
  width:48px; height:48px; border:0; background:none; cursor:pointer;
  font-size:36px; line-height:1; color:#d6dce4; padding:0;
  transition: transform .12s ease, color .12s ease;
}
.star-btn.on { color:#d4a017; }
.star-btn:hover { transform: scale(1.12); }
.star-label { min-height:1.4em; margin-bottom:12px; font-weight:600; }
.home-reviews { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.home-rev { display:flex; flex-direction:column; gap:8px; color:inherit; min-height:180px; }
.home-rev p { flex:1; }
@media (max-width:980px){ .home-reviews { grid-template-columns:1fr 1fr; } }
@media (max-width:640px){ .home-reviews { grid-template-columns:1fr; } }
.foot-nav { display:flex; flex-wrap:wrap; gap:14px; margin-bottom:8px; }
.foot-nav a { color:#fff; font-weight:600; }
.az { display:flex; flex-wrap:wrap; gap:6px; margin:12px 0 20px; }
.az a { min-width:32px; text-align:center; padding:6px 8px; border:1px solid var(--line); border-radius:8px; background:#fff; font-weight:700; }
.az a.on { background:var(--blue); color:#fff; border-color:var(--blue); }
.place-letter { margin:22px 0 10px; font-size:22px; }
.place-cols { display:grid; grid-template-columns:repeat(4,1fr); gap:6px 16px; }
.place-cols a { color:var(--navy); }
@media (max-width:900px){ .place-cols { grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .place-cols { grid-template-columns:1fr; } }
.seo-cats{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 18px}
.top3 { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.top3-card { position:relative; text-align:center; color:inherit; padding:22px 16px 18px; }
.top3-rank { position:absolute; top:12px; left:12px; width:28px; height:28px; border-radius:50%; background:var(--gold); color:#1b1404; font-weight:800; display:flex; align-items:center; justify-content:center; }
.top3-card .school-logo { margin:8px auto 10px; }
@media (max-width:800px){ .top3 { grid-template-columns:1fr; } }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.gal-item { display: block; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); background: #fff; color: inherit; text-decoration: none; }
.gal-item img { width: 100%; height: 120px; object-fit: cover; display: block; }
.gal-item span { display: flex; gap: 6px; align-items: center; padding: 6px 8px; font-size: 13px; }

.why-list { list-style:none; margin:12px 0 0; padding:0; display:grid; grid-template-columns:1fr 1fr; gap:10px 16px; }
.why-list li { display:flex; gap:10px; align-items:flex-start; font-weight:500; }
@media (max-width:700px){ .why-list { grid-template-columns:1fr; } }
.why-check { width:22px; height:22px; border-radius:50%; background:#1a7f4c; color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:13px; flex:0 0 22px; }

.stat-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); gap:12px; margin-top:12px; }
.stat { background:#f6f3ea; border-radius:12px; padding:14px 10px; text-align:center; }
.stat b { display:block; font-size:22px; }
.stat span { color:var(--muted); font-size:13px; }
.stat-icon { display:block; font-size:18px; margin-bottom:4px; }

.faq-block h2 { margin-bottom:12px; }
.faq-item { border-top:1px solid var(--line); padding:10px 0; }
.faq-item summary { cursor:pointer; font-weight:600; }
.faq-item p { margin:8px 0 0; color:var(--muted); }

.award-row { display:flex; gap:12px; align-items:center; margin-top:12px; }
.award-badge { position:relative; display:inline-flex; flex-direction:column; align-items:center; width:86px; text-align:center; }
.award-badge img { width:86px; height:auto; display:block; }
.award-badge .award-rank { position:absolute; top:34px; left:0; right:0; font-weight:800; font-size:18px; color:#7a4a12; }
.award-badge .award-txt { font-size:11px; line-height:1.2; font-weight:700; margin-top:4px; }
.award-badge.sm { width:44px; }
.award-badge.sm img { width:44px; }
.award-badge.sm .award-rank { top:16px; font-size:11px; }
.award-badge.sm .award-txt { display:none; }

.award-row.aside-award { margin:0 0 12px; }
.award-badge { width:58px; flex:0 0 58px; }
.award-badge img { width:58px; }
.award-badge .award-rank { display:none; }

.dash-nav{display:flex;flex-wrap:wrap;gap:10px 16px;margin:10px 0 0;}
.dash-nav a{font-weight:600;}
.dash-stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(130px,1fr));gap:10px;margin-top:12px;}
.dash-cols{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin:16px 0;}
@media(max-width:800px){.dash-cols{grid-template-columns:1fr;}}
.check-list{list-style:none;margin:8px 0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:6px;}
.dash-rev{border-bottom:1px solid var(--line);padding:8px 0;}
.dash-rev p{margin:4px 0 0;}

main.listing section{padding:0;}
.dash-card{padding:20px 22px !important;}
.kpi-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:12px;margin-top:14px;}
.kpi{background:#f6f3ea;border:1px solid var(--line);border-radius:14px;padding:16px 10px;text-align:center;}
.kpi b{display:block;font-size:22px;line-height:1.15;}
.kpi span{display:block;margin-top:4px;color:var(--muted);font-size:13px;}
@media(max-width:800px){.kpi-grid{grid-template-columns:repeat(2,minmax(0,1fr));}}
.dash-cols section.card{padding:18px 20px !important;}

.account-page .dash-shell{width:min(1320px,calc(100% - 48px));max-width:1320px;}
.account-page .dash-nav{display:flex;flex-wrap:wrap;gap:8px;margin:16px 0 8px;padding:10px 12px;background:#fff;border:1px solid var(--line);border-radius:14px;}
.account-page .dash-nav a{display:inline-block;padding:8px 14px;border-radius:999px;background:#f3f6fb;font-weight:600;}
.account-page .kpi-grid{grid-template-columns:repeat(4,minmax(0,1fr));}
.account-page .dash-cols{grid-template-columns:1fr 1fr;gap:18px;}
.account-page .widget-row{display:grid;grid-template-columns:340px 1fr;gap:24px;align-items:start;margin-top:12px;}
.account-page .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.account-page #pakket .grid-3{grid-template-columns:repeat(3,minmax(0,1fr));}
@media(max-width:980px){.account-page .kpi-grid,.account-page .widget-row,.account-page .form-row,.account-page #pakket .grid-3{grid-template-columns:1fr;}}

.account-page { background:#eef2f7; font-family: Inter, "Segoe UI", system-ui, sans-serif; }
.account-page h1, .account-page h2, .account-page h3 { font-family: Inter, "Segoe UI", system-ui, sans-serif; letter-spacing:-.03em; }
.account-page h1 { font-size:30px; margin:4px 0 6px; }
.account-page h2 { font-size:18px; margin:0 0 14px; }
.account-page h3 { font-size:16px; margin:0 0 12px; }
.account-page .dash-head { display:flex; justify-content:space-between; gap:24px; align-items:flex-end; margin-bottom:8px; }
.account-page .dash-head-actions { display:flex; gap:10px; flex-wrap:wrap; }
.account-page .dash-nav { border:0; background:transparent; padding:0; gap:6px; }
.account-page .dash-nav a { background:#fff; border:1px solid #d7dee8; color:#12324d; padding:8px 14px; border-radius:10px; font-size:14px; }
.account-page .dash-nav a:hover { border-color:#0e7c7b; color:#0e7c7b; }
.account-page .dash-alert { background:#fff; border:1px solid #d7dee8; border-radius:12px; padding:12px 16px; margin:10px 0; }
.account-page .dash-alert.ok { border-color:#b7e4cf; background:#f3fbf7; color:#146c43; }
.account-page .dash-alert.err { border-color:#f0c2bc; background:#fdf4f3; color:#9b2c22; }
.account-page .card { border:1px solid #d7dee8; box-shadow:0 8px 24px rgba(15,35,55,.05); border-radius:16px; }
.account-page .kpi { background:#fff; border:1px solid #e2e8f0; border-radius:14px; padding:18px 14px; text-align:left; }
.account-page .kpi b { font-size:26px; color:#0b1f33; }
.account-page .kpi span { color:#5b6b7a; font-size:12px; text-transform:uppercase; letter-spacing:.04em; }
.account-page .check-list { grid-template-columns:1fr; gap:8px; }
.account-page .check-list li { display:flex; justify-content:space-between; align-items:center; padding:8px 10px; background:#f7f9fc; border-radius:10px; }
.account-page .check-list em { font-style:normal; font-size:12px; font-weight:700; }
.account-page .check-list .is-on em { color:#146c43; }
.account-page .check-list .is-off em { color:#9b2c22; }
.account-page .dash-rev { padding:12px 0; }
.account-page #pakket .plan { border:1px solid #d7dee8; box-shadow:none; padding:20px; border-radius:16px; }
.account-page #pakket .plan.featured { border-color:#0e7c7b; box-shadow:0 0 0 1px #0e7c7b; }
.account-page .form input, .account-page .form select, .account-page .form textarea {
  border:1px solid #d7dee8; border-radius:10px; padding:10px 12px; background:#fff;
}
.account-page .form label { font-size:13px; font-weight:650; color:#12324d; margin-top:8px; }
@media(max-width:800px){ .account-page .dash-head { flex-direction:column; align-items:flex-start; } }

.chart-board{display:grid;grid-template-columns:380px 1fr;gap:28px;align-items:center;}
.chart-gauges{display:flex;gap:12px;align-items:center;justify-content:space-between;}
.gauge{display:flex;flex-direction:column;align-items:center;gap:6px;font-size:13px;color:#5b6b7a;}
.plan-gauge{width:110px;height:110px;border-radius:50%;border:10px solid #e8edf3;display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;}
.plan-gauge b{font-size:18px;color:#0b1f33;}
.chart-bars{display:flex;flex-direction:column;gap:12px;}
.bar-row{display:grid;grid-template-columns:130px 1fr 48px;gap:10px;align-items:center;}
.bar-lab{font-size:13px;color:#12324d;}
.bar-track{height:12px;background:#e8edf3;border-radius:99px;overflow:hidden;}
.bar-track i{display:block;height:100%;border-radius:99px;}
.bar-val{font-weight:700;text-align:right;font-size:14px;}
@media(max-width:900px){
  .chart-board{grid-template-columns:1fr;}
  .chart-gauges{justify-content:center;flex-wrap:wrap;}
  .bar-row{grid-template-columns:1fr 44px;grid-template-areas:"l v" "t t";}
  .bar-lab{grid-area:l;} .bar-val{grid-area:v;} .bar-track{grid-area:t;}
}
.usp-chips{display:flex;flex-wrap:wrap;gap:8px;margin:8px 0 16px;}
.usp-chip{display:inline-flex;align-items:center;padding:8px 12px;border:1px solid #d7dee8;border-radius:999px;background:#fff;cursor:pointer;font-size:13px;font-weight:600;color:#12324d;}
.usp-chip.on{background:#e7f6f2;border-color:#0e7c7b;color:#0b5f5e;}
.usp-chip:hover{border-color:#0e7c7b;}
