:root {
  --ink: #16212f;
  --muted: #617085;
  --line: #dce4ee;
  --paper: #f5f7fb;
  --white: #ffffff;
  --blue: #2168d5;
  --blue-dark: #163e7a;
  --green: #2f8068;
  --red: #c73f4a;
  --shadow: 0 18px 45px rgba(20, 35, 55, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 8px;
}

.top-strip {
  background: #172131;
  color: rgba(255,255,255,.88);
  font-size: 13px;
}

.top-strip-inner,
.header-inner,
.container,
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 28px;
}

.top-strip-inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.inline-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.inline-item,
.contact-line,
.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inline-item svg,
.mini-link svg,
.btn svg,
.service-icon svg,
.contact-line svg,
.feature svg {
  width: 17px;
  height: 17px;
  stroke-width: 2;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,228,238,.85);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 174px;
  max-width: 44vw;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #eef3f9;
  padding: 5px;
  border-radius: var(--radius);
}

.main-nav a {
  color: var(--muted);
  padding: 10px 13px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--blue-dark);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(20,35,55,.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: var(--radius);
  min-height: 42px;
  padding: 10px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 12px 28px rgba(33,104,213,.22);
}

.btn-primary:hover {
  color: white;
}

.btn-secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--line);
}

.btn-dark {
  background: #172131;
  color: white;
}

.page {
  padding-block: 44px 64px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
  gap: 34px;
  align-items: stretch;
}

.hero-copy {
  padding: 34px 0 18px;
}

.eyebrow {
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .96;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.06;
  margin-bottom: 12px;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  max-width: 680px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions,
.section-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 26px;
}

.trust-item,
.card,
.service-card,
.price-card,
.contact-card,
.quote-panel,
.page-hero,
.legal-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(20,35,55,.07);
}

.trust-item {
  padding: 15px;
}

.trust-value {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.trust-label {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.hero-media {
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: #172131;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: .82;
}

.hero-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background: rgba(255,255,255,.95);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 16px 38px rgba(0,0,0,.16);
}

.hero-card p,
.card p,
.service-card p,
.price-card p,
.contact-card p,
.quote-panel p,
.legal-panel p,
.legal-panel li {
  color: var(--muted);
  line-height: 1.58;
}

.section {
  margin-top: 62px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-head p {
  max-width: 680px;
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 0;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 16px;
}

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

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

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

.service-card,
.price-card,
.card,
.legal-panel {
  padding: 24px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #eaf2ff;
  margin-bottom: 18px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.split,
.contact-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.split-narrow {
  display: grid;
  grid-template-columns: minmax(260px, .62fr) minmax(0, 1.38fr);
  gap: 22px;
  align-items: center;
}

.photo-panel {
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: #c7d6e8;
}

.photo-panel.large {
  min-height: 360px;
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.5;
}

.feature svg {
  color: var(--green);
  flex: 0 0 auto;
  margin-top: 2px;
}

.page-hero {
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 24px;
}

.page-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.58;
  margin-bottom: 0;
}

.side-note {
  background: #eaf2ff;
  color: var(--blue-dark);
  border-radius: var(--radius);
  padding: 18px;
  min-width: 220px;
  font-weight: 700;
  line-height: 1.4;
}

.remote-help {
  margin-top: 20px;
  border: 1px solid #cfe0f7;
  border-radius: var(--radius);
  background: #eef6ff;
  padding: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.remote-help strong {
  display: block;
  margin-bottom: 5px;
}

.remote-help span {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.price-value {
  font-size: 34px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.price-meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
}

.tarif-band {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: #172131;
  color: white;
  border-radius: var(--radius);
  padding: 28px;
}

.tarif-band p {
  color: rgba(255,255,255,.78);
  margin-bottom: 0;
  line-height: 1.45;
}

.tarif-band .btn {
  background: white;
  color: #172131;
}

.service-detail {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.service-detail + .service-detail {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-panel,
.contact-card {
  padding: 28px;
}

.quote-panel {
  align-self: start;
  position: sticky;
  top: 118px;
}

.contact-form,
.quote-panel form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.field input,
.field textarea {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fbfdff;
  color: var(--ink);
  min-width: 0;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.contact-lines {
  display: grid;
  gap: 13px;
  margin: 20px 0 24px;
}

.contact-line {
  align-items: flex-start;
  color: var(--muted);
  line-height: 1.45;
}

.contact-line svg {
  color: var(--blue);
  flex: 0 0 auto;
  margin-top: 2px;
}

.map-placeholder {
  min-height: 330px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, transparent 49%, rgba(22,33,47,.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(22,33,47,.08) 50%, transparent 51%),
    #dfe8f3;
  background-size: 90px 90px;
  position: relative;
  overflow: hidden;
}

.map-card {
  position: absolute;
  left: 22px;
  bottom: 22px;
  right: 22px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--blue-dark);
  font-weight: 700;
}

.legal-panel h2 {
  margin-top: 26px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.footer {
  background: #172131;
  color: white;
}

.footer-inner {
  padding-top: 32px;
  padding-bottom: 32px;
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 28px;
}

.footer p,
.footer a {
  color: rgba(255,255,255,.72);
  line-height: 1.55;
}

.footer h2 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.mobile-contact {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 30;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 14px;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  max-width: 920px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.cookie-banner.show {
  display: grid;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 1060px) {
  .header-inner {
    align-items: flex-start;
    flex-wrap: wrap;
    padding-block: 15px;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero,
  .split,
  .split-narrow,
  .contact-split {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 430px;
  }

  .quote-panel {
    position: static;
  }

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

@media (max-width: 720px) {
  .top-strip-inner,
  .header-inner,
  .container,
  .footer-inner {
    padding-inline: 18px;
  }

  .top-strip-inner,
  .section-head,
  .page-hero,
  .tarif-band,
  .footer-inner,
  .cookie-banner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-actions {
    display: none;
  }

  .brand img {
    width: 150px;
  }

  h1 {
    font-size: 41px;
  }

  .lead {
    font-size: 17px;
  }

  .trust-row,
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .photo-panel,
  .photo-panel.large,
  .map-placeholder {
    min-height: 300px;
  }

  .remote-help {
    grid-template-columns: 1fr;
  }

  .remote-help .btn,
  .cookie-banner .btn {
    width: 100%;
  }

  .mobile-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mobile-contact .btn {
    min-height: 44px;
    padding-inline: 10px;
  }
}
