* {
  box-sizing: border-box;
}

:root {
  --red: #ed1c24;
  --dark-red: #c90000;
  --black: #0c0c0c;
  --text: #171717;
  --muted: #666;
  --light: #f7f7f7;
  --border: #ececec;
  --shadow: 0 24px 70px rgba(0,0,0,.10);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: white;
  color: var(--text);
}

a {
  color: inherit;
}

.hero {
  min-height: 100vh;
  background: white;
  overflow: hidden;
}

.navbar {
  width: min(1320px, 92%);
  margin: auto;
  padding: 26px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.menu a {
  text-decoration: none;
}

.burger {
  display: none;
  border: 0;
  background: var(--red);
  color: white;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  background: var(--red);
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .02em;
  box-shadow: 0 12px 25px rgba(237,28,36,.18);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
}

.btn-outline {
  color: var(--red);
  background: white;
  border: 1.5px solid var(--red);
  box-shadow: none;
}

.btn-outline-red {
  color: var(--red);
  background: white;
  border: 1.5px solid var(--red);
  box-shadow: none;
}

.hero-content {
  width: min(1320px, 92%);
  margin: 36px auto 0;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  padding: 40px 0 60px;
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 18px;
  color: #777;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .18em;
}

.red {
  color: var(--red);
}

h1 {
  margin: 0;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -0.06em;
}

h1 span,
.section-title span {
  color: var(--red);
}

.lead {
  margin: 32px 0 0;
  max-width: 560px;
  color: #222;
  font-size: 20px;
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 42px;
}

.hero-visual {
  min-height: 620px;
  border-radius: 0 0 0 80px;
  overflow: hidden;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 34%;
  background: linear-gradient(90deg, white 0%, rgba(255,255,255,.82) 42%, rgba(255,255,255,0) 100%);
}

.hero-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.stats-panel {
  width: min(1220px, 92%);
  margin: -30px auto 60px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats-panel article {
  padding: 34px 34px;
  border-right: 1px solid var(--border);
}

.stats-panel article:last-child {
  border-right: 0;
}

.icon {
  color: var(--red);
  font-size: 36px;
  line-height: 1;
  margin-bottom: 14px;
}

.stats-panel strong {
  display: block;
  color: var(--red);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.stats-panel span {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.35;
  text-transform: uppercase;
  font-weight: 900;
}

.section {
  width: min(1220px, 92%);
  margin: auto;
  padding: 70px 0;
}

.benefits {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: start;
}

.section-title h2,
.network h2,
.trust h2,
.campaigns h2,
.audience h2,
.cta-section h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

.benefit-grid article {
  min-width: 0;
}

.line-icon {
  color: var(--red);
  font-size: 38px;
  margin-bottom: 14px;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.benefit-grid p,
.network p,
.audience p,
.cta-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 16px;
}

.network {
  display: grid;
  grid-template-columns: .38fr .62fr;
  gap: 52px;
  align-items: center;
  border-top: 1px solid var(--border);
}

.network-copy p {
  margin: 22px 0 34px;
  font-size: 18px;
}

.map-card {
  position: relative;
}

.map {
  height: 350px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 60% 55%, rgba(237,28,36,.10), transparent 28%),
    linear-gradient(135deg, #e8f2ff 0 33%, #efe3c7 33% 45%, #e7edd9 45% 75%, #d8eef7 75%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.map:before {
  content: "";
  position: absolute;
  inset: 48px 70px 50px 120px;
  border-radius: 58% 42% 55% 45% / 45% 52% 48% 55%;
  background: #fff7e5;
  border: 1px solid #d9c89d;
  transform: rotate(-7deg);
}

.map:after {
  content: "FRANCE & SUISSE";
  position: absolute;
  right: 24px;
  top: 24px;
  font-weight: 900;
  color: rgba(0,0,0,.20);
  letter-spacing: .12em;
}

.map span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 2;
  width: 14px;
  height: 14px;
  background: var(--red);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(0,0,0,.24);
}

.map span:nth-child(5n) {
  background: var(--black);
}

.map.map-image {
  height: 390px;
  padding: 0;
  background: none;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-radius: 18px;
}

.map.map-image::before,
.map.map-image::after {
  content: none;
  display: none;
}

.map.map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.legend {
  position: absolute;
  right: -20px;
  bottom: 28px;
  width: 230px;
  background: white;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.legend p {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 12px;
  font-size: 13px;
  color: #222;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  display: inline-block;
}

.red-dot {
  background: var(--red);
}

.grey-dot {
  background: var(--grey);
}

.legend strong {
  display: block;
  color: var(--red);
  text-transform: uppercase;
  font-size: 13px;
}

.legend span {
  display: block;
  margin-top: 5px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}

.trust {
  width: min(1220px, 92%);
  margin: 0 auto 35px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 24px 28px 28px;
}

.trust h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: 18px;
}

.logo-item {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}

.logo-item img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.campaigns {
  padding-top: 35px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.campaign-grid article {
  min-height: 92px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--red);
  font-size: 23px;
  padding: 11px;
  background: white;
}

.campaign-grid span {
  color: #111;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.15;
}

.audience {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 40px;
  align-items: center;
}

.audience p {
  font-size: 18px;
  margin-top: 24px;
}

.audience-card {
  background: #111;
  color: white;
  border-radius: 28px;
  padding: 36px;
}

.audience-card strong {
  font-size: 26px;
  display: block;
  margin-bottom: 18px;
}

.audience-card li {
  margin-bottom: 12px;
  color: rgba(255,255,255,.82);
}

.cta-section {
  width: min(1260px, 94%);
  margin: 40px auto 0;
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  color: white;
  border-radius: 18px 18px 0 0;
  padding: 46px 70px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-section p {
  color: rgba(255,255,255,.9);
  font-size: 18px;
  margin-top: 12px;
}

.white-btn {
  background: transparent;
  border: 1.5px solid white;
  color: white;
  box-shadow: none;
}

footer {
  background: #111;
  color: white;
  padding: 36px 6vw;
  text-align: center;
}

footer img {
  width: 280px;
  filter: none;
  background: white;
  border-radius: 12px;
  padding: 8px;
}

footer p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
}

@media (max-width: 1100px) {
  .menu {
    display: none;
  }

  .menu.open {
    position: absolute;
    top: 88px;
    left: 4%;
    right: 4%;
    z-index: 20;
    display: grid;
    gap: 16px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 22px;
    border-radius: 18px;
  }

  .burger {
    display: block;
  }

  .hero-content,
  .benefits,
  .network,
  .audience,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 450px;
  }

  .hero-visual img {
    height: 450px;
  }

  .stats-panel,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .campaign-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .legend {
    position: static;
    width: auto;
    margin-top: 18px;
  }
}

@media (max-width: 640px) {
  .brand img {
    max-width: 72vw;
  }

  .hero-content {
    margin-top: 0;
  }

  .hero-copy {
    padding-bottom: 35px;
  }

  .actions {
    display: grid;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 330px;
    height: 330px;
    border-radius: 24px;
  }

  .stats-panel,
  .benefit-grid,
  .campaign-grid,
  .logos {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    margin-top: 20px;
  }

  .stats-panel article {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .cta-section {
    padding: 34px 24px;
  }
}
