@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('/assets/fonts/manrope-800.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/fonts/space-grotesk-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Grotesk';
  src: url('/assets/fonts/space-grotesk-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #edf3fa;
  --text: #112032;
  --muted: #4c6078;
  --line: #d5e0ec;
  --primary: #0f4c81;
  --primary-strong: #0b3d67;
  --accent: #cf6a2f;
  --accent-soft: #fff0e5;
  --ok: #2d6a4f;
  --radius: 14px;
  --shadow: 0 14px 32px rgba(14, 42, 68, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 90% -10%, #dce9f8 0%, transparent 60%),
    radial-gradient(700px 420px at -10% 20%, #e9f1fb 0%, transparent 60%),
    var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 247, 251, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 42px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--primary-strong);
  border-radius: 10px;
  padding: 0.48rem 0.72rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.menu-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
}

.menu-toggle-icon span {
  width: 1rem;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.nav a {
  color: var(--muted);
  padding: 0.42rem 0.68rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a:hover,
.nav a.active {
  background: var(--surface);
  color: var(--primary-strong);
}

main {
  padding: 2rem 0 3.4rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  margin: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin-left: 0.45rem;
  color: #89a0bb;
}

.breadcrumbs a {
  text-decoration: underline;
}

.hero {
  background: linear-gradient(140deg, #0f4c81 0%, #0d3e68 65%, #0f4c81 100%);
  color: #f4f9ff;
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.8rem, 4vw, 3rem);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -140px;
  top: -220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
}

.hero h1 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.hero p {
  margin: 0;
  max-width: 760px;
  color: #d6e7fa;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.3rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1rem;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: #b95d28;
}

.btn-secondary {
  background: transparent;
  color: #e6f3ff;
  border-color: rgba(225, 239, 255, 0.6);
}

.btn-neutral {
  background: var(--surface);
  color: var(--primary-strong);
  border-color: var(--line);
}

.section {
  margin-top: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1rem, 2.2vw, 1.7rem);
  box-shadow: 0 8px 18px rgba(15, 39, 62, 0.04);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: clamp(1.24rem, 2.1vw, 1.62rem);
}

.section .intro {
  margin-top: 0;
  color: var(--muted);
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.04rem;
}

.card p {
  margin-top: 0;
  color: var(--muted);
}

ul {
  padding-left: 1.1rem;
}

li {
  margin-bottom: 0.36rem;
}

.kpi {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.badge {
  background: var(--accent-soft);
  border: 1px solid #f2cfb7;
  color: #7d4017;
  border-radius: 999px;
  padding: 0.33rem 0.72rem;
  font-size: 0.84rem;
  font-weight: 700;
}

.process {
  display: grid;
  gap: 0.72rem;
  margin-top: 1rem;
}

.process-step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 0.86rem;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.step-number {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--primary);
  flex-shrink: 0;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.7rem;
  background: var(--surface);
}

th,
td {
  border: 1px solid var(--line);
  padding: 0.72rem;
  text-align: left;
  vertical-align: top;
}

th {
  background: #eff5fc;
  font-size: 0.92rem;
}

.price {
  font-weight: 800;
  color: var(--primary-strong);
}

.note {
  margin-top: 0.8rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
  margin-top: 0.8rem;
}

.faq-item h3 {
  margin: 0;
  font-size: 1rem;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.image-motif {
  background: linear-gradient(125deg, #f4f8ff 0%, #edf4fc 100%);
  border: 1px dashed #bccde0;
  border-radius: 12px;
  padding: 0.8rem;
  font-size: 0.92rem;
  color: #34506d;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1.7rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  text-decoration: underline;
}

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

@media (max-width: 980px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    gap: 0.3rem;
  }

  .nav a {
    font-size: 0.86rem;
    padding: 0.4rem 0.58rem;
  }
}

@media (max-width: 720px) {
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .nav-wrap {
    align-items: center;
    flex-wrap: wrap;
    position: relative;
  }

  .hero {
    padding: 1.3rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 0.55rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.45rem;
    box-shadow: 0 8px 20px rgba(15, 39, 62, 0.08);
  }

  .site-header.nav-open .nav {
    display: flex;
  }

  .nav a {
    display: block;
    padding: 0.56rem 0.65rem;
    font-size: 0.92rem;
  }

  .footer-grid {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, 94%);
  }

  main {
    padding-top: 1.5rem;
  }

  .brand img {
    height: 38px;
  }

  .hero h1 {
    font-size: clamp(1.45rem, 7vw, 1.9rem);
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .cta-row {
    flex-direction: column;
  }

  .section {
    padding: 1rem;
  }
}

body.menu-open {
  overflow: hidden;
}
