:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --ink: #1f2a37;
  --muted: #5d6b7a;
  --line: #dde3ea;
  --blue: #1f5ea8;
  --blue-soft: #e8f0fb;
  --warm: #f8f4ee;
  --shadow: 0 14px 35px rgba(20, 42, 73, 0.08);
  --shadow-soft: 0 8px 20px rgba(20, 42, 73, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; border-radius: 14px; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.topbar {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1rem; }
.brand { display: flex; flex-direction: column; }
.brand-mark { font-weight: 700; letter-spacing: 0.2px; }
.brand-sub { color: var(--muted); font-size: 0.82rem; }
.nav-list { display: flex; flex-wrap: wrap; gap: 0.4rem; list-style: none; padding: 0; margin: 0; }
.nav-list a {
  display: inline-block; padding: 0.55rem 0.9rem; border-radius: 999px;
  color: var(--muted); transition: all 0.25s ease;
}
.nav-list a:hover, .nav-list a.active { background: var(--blue-soft); color: var(--blue); }

.hero, .page-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid var(--line);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr 1fr; gap: 2.7rem; padding: 5.1rem 0; align-items: center; }
.page-hero .container { padding: 3.7rem 0 2.8rem; }
.hero h1, .page-hero h1 { line-height: 1.18; font-size: clamp(2rem, 3.8vw, 3.3rem); margin: 0 0 0.8rem; }
.hero p { color: var(--muted); }
.hero p, .page-hero p { max-width: 68ch; }
.eyebrow { color: var(--blue); font-weight: 600; text-transform: uppercase; font-size: 0.78rem; letter-spacing: 1.2px; }
.hero-media img { box-shadow: var(--shadow); }
.hero-meta {
  margin-top: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-meta span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #d4dfec;
  color: #3e5168;
  font-size: 0.86rem;
}

.section { padding: 4.7rem 0; }
.section.soft { background: var(--warm); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-title { font-size: clamp(1.6rem, 2.4vw, 2.2rem); margin-top: 0; margin-bottom: 1.4rem; }
.section-intro { color: var(--muted); max-width: 78ch; margin-bottom: 1.1rem; }

.card-grid { display: grid; gap: 1.2rem; }
.card-grid.two { grid-template-columns: repeat(2, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card, .mini-card, .quote, .article-preview, .thank-card, .contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 20px 42px rgba(20, 42, 73, 0.09);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.card:hover, .mini-card:hover, .article-preview:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(20, 42, 73, 0.13);
  border-color: #cfdae8;
}
.card { padding: 1.3rem; }
.card h3, .mini-card h3 { margin-top: 0; }
.mini-card { padding: 1.1rem; }
.quote { padding: 1.2rem; color: #304055; }
.quote cite { display: block; margin-top: 0.8rem; font-style: normal; color: var(--muted); font-size: 0.95rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; }
.media-card img { transition: transform 0.35s ease; }
.media-card:hover img, .article-preview:hover img { transform: scale(1.03); }
.feature-list { padding-left: 1.1rem; }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.timeline > div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 1rem; }
.timeline p { color: #4d5f74; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stats article { background: #fff; border: 1px solid var(--line); border-radius: 12px; text-align: center; padding: 1rem; }
.stats h3 { font-size: 1.9rem; margin: 0; color: var(--blue); }
.kicker-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.kicker {
  background: #ffffff;
  border: 1px solid #d9e3f0;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  color: #4b5f77;
  text-align: center;
}

.credibility-band {
  background: linear-gradient(180deg, #f0f5fb 0%, #f6f9fd 100%);
  border-top: 1px solid #d8e2ef;
  border-bottom: 1px solid #d8e2ef;
}
.credibility-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.2rem;
  align-items: center;
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.7rem;
}
.partner-chip {
  background: #fff;
  border: 1px solid #d3dfee;
  border-radius: 10px;
  padding: 0.6rem 0.75rem;
  text-align: center;
  font-weight: 600;
  color: #445873;
}

.faq-preview details, .faq-list details {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.9rem 1rem; margin-bottom: 0.8rem;
}
summary { cursor: pointer; font-weight: 600; }

.article-preview { overflow: hidden; }
.article-preview div { padding: 1rem; }
.article-preview img { width: 100%; height: 220px; object-fit: cover; border-radius: 14px 14px 0 0; }

.btn {
  display: inline-block; border-radius: 999px; border: 1px solid transparent;
  padding: 0.7rem 1.2rem; font-weight: 600; transition: all 0.25s ease;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: #174d89; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(31, 94, 168, 0.25); }
.btn-secondary { background: #fff; color: var(--blue); border-color: #b7c6db; }
.btn-secondary:hover { background: var(--blue-soft); transform: translateY(-2px); }
.cta-row { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1rem; }
.text-link { color: var(--blue); font-weight: 600; }

.cta-band { background: #eef4fb; border-top: 1px solid #cdd9e9; border-bottom: 1px solid #cdd9e9; }
.cta-layout { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.prose { max-width: 880px; }
.prose h2 { margin-top: 1.4rem; }
.prose h3 { margin-top: 1.1rem; color: #30445d; }
.prose p, .prose li { color: #465a71; }

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.editorial-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem;
  box-shadow: var(--shadow-soft);
}
.trust-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.trust-matrix article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
}

.contact-form { padding: 1.2rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 0.65rem 0.75rem; border-radius: 9px;
  border: 1px solid #cbd5e0; margin-bottom: 0.8rem; background: #fff;
}
.map-embed iframe { width: 100%; min-height: 270px; border: 0; border-radius: 12px; }

.site-footer { background: #0f1f33; color: #ecf2fa; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 1.4rem; padding: 2.3rem 0; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid a { color: #d4e1f2; }
.footer-base { border-top: 1px solid rgba(255, 255, 255, 0.15); padding: 0.9rem 0 1.1rem; color: #c6d7ef; }

.cookie-banner {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(1080px, calc(100% - 26px));
  z-index: 70;
  background: rgba(247, 250, 255, 0.98);
  color: #1f2a37;
  border: 1px solid #cfdcf0;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem 0.9rem 1.2rem;
  box-shadow: 0 14px 34px rgba(27, 56, 90, 0.18);
  animation: cookieLiftAkti .45s ease;
}
.cookie-banner a { color: #1f5ea8; text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 0.55rem; }
.cookie-banner.is-hidden { display: none; }

@keyframes cookieLiftAkti {
  from { opacity: 0; transform: translate(-50%, 18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.centered-screen { min-height: 100vh; display: grid; place-items: center; background: #f2f6fb; }
.thank-card { max-width: 620px; padding: 2rem; text-align: center; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .hero-grid, .split, .footer-grid, .card-grid.two, .card-grid.three, .card-grid.four, .timeline, .stats, .kicker-grid, .partner-list, .credibility-strip, .editorial-split, .trust-matrix { grid-template-columns: 1fr; }
  .cta-layout { flex-direction: column; align-items: flex-start; }
  .cookie-banner { left: 12px; right: 12px; transform: none; width: auto; bottom: 12px; flex-direction: column; align-items: flex-start; }
}
