:root {
  --ink: #152024;
  --muted: #5c686c;
  --paper: #f7f4ee;
  --white: #ffffff;
  --teal: #0d766e;
  --teal-dark: #064b48;
  --lime: #d8fb6b;
  --coral: #ef6a4d;
  --line: rgba(21, 32, 36, 0.13);
  --shadow: 0 22px 60px rgba(12, 39, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(11, 28, 31, 0.82), rgba(11, 28, 31, 0));
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.nav-links {
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.86;
}

.nav-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  padding: 126px clamp(18px, 6vw, 80px) 74px;
  overflow: hidden;
  color: var(--white);
}

.hero-map,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 29, 31, 0.98) 0%, rgba(8, 29, 31, 0.88) 43%, rgba(8, 29, 31, 0.48) 100%),
    linear-gradient(180deg, rgba(8, 29, 31, 0.18), rgba(8, 29, 31, 0.46));
}

.hero-map {
  background:
    radial-gradient(circle at 78% 24%, rgba(216, 251, 107, 0.38), transparent 17%),
    radial-gradient(circle at 66% 72%, rgba(239, 106, 77, 0.34), transparent 18%),
    linear-gradient(135deg, #082327 0%, #0d766e 48%, #e9f3ef 100%);
}

.hero-map::before {
  content: "";
  position: absolute;
  inset: 12% 4% 8% 52%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42% 58% 48% 52% / 34% 44% 56% 66%;
  transform: rotate(-9deg);
}

.map-line {
  position: absolute;
  right: 7%;
  width: 42%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  transform-origin: right center;
}

.line-one {
  top: 32%;
  transform: rotate(-12deg);
}

.line-two {
  top: 52%;
  transform: rotate(9deg);
}

.line-three {
  top: 68%;
  width: 34%;
  transform: rotate(-4deg);
}

.pin,
.call-card,
.rank-card {
  position: absolute;
  z-index: 1;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(4, 29, 31, 0.24);
  font-size: 0.84rem;
  font-weight: 950;
}

.pin::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.pin-paris {
  top: 24%;
  right: 24%;
}

.pin-lyon {
  top: 51%;
  right: 17%;
}

.pin-marseille {
  right: 30%;
  bottom: 22%;
}

.call-card {
  top: 38%;
  right: 7%;
  color: var(--teal-dark);
  background: var(--lime);
}

.rank-card {
  right: 11%;
  bottom: 35%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--teal);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 6.9rem);
  font-weight: 920;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  font-weight: 900;
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 14px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--teal-dark);
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 5vw, 72px);
  bottom: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 1px;
  width: min(520px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(13, 34, 36, 0.55);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 2.35rem;
  line-height: 1;
  font-weight: 920;
}

.hero-panel span:last-child {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
}

.signal-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 22px clamp(18px, 4vw, 54px);
  color: var(--white);
  background: var(--teal-dark);
}

.signal-band span,
.city-list span {
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.signal-band span {
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(62px, 9vw, 116px) clamp(18px, 6vw, 80px);
}

.intro,
.cities {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: start;
}

.intro p:last-child,
.cities p {
  margin: 36px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.24rem);
}

.outcomes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.outcomes article,
.service-grid article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.outcomes article {
  min-height: 260px;
  padding: 28px;
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
}

.outcomes p,
.service-grid p,
.timeline p {
  color: var(--muted);
}

.services {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: end;
  gap: 26px;
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-grid article {
  min-height: 226px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.process {
  background: #e9f3ef;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline article {
  padding: 30px;
}

.timeline span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 950;
}

.cities {
  background: var(--paper);
}

.city-list {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-list span {
  color: var(--teal-dark);
  background: rgba(13, 118, 110, 0.12);
}

.plans {
  background: var(--white);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.plan-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.plan-card.featured {
  color: var(--ink);
  border: 2px solid rgba(13, 118, 110, 0.24);
  background: var(--white);
}

.plan-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.plan-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
}

.basic .plan-dot {
  background: #24a35a;
}

.growth .plan-dot {
  background: #f2bd2f;
}

.domination .plan-dot {
  background: var(--coral);
}

.sea .plan-dot {
  background: #4d8dff;
}

.plan-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.featured .plan-label,
.featured .sales-line,
.featured li,
.featured .price span {
  color: var(--muted);
}

.price {
  margin: 18px 0 22px;
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1;
  font-weight: 950;
}

.price span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 850;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.plan-card li::before {
  content: "";
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.featured li::before {
  background: var(--lime);
}

.sales-line {
  margin: 24px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.plan-button {
  width: 100%;
  margin-top: auto;
}

.sales-line + .plan-button {
  margin-top: 26px;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  padding: clamp(62px, 9vw, 116px) clamp(18px, 6vw, 80px);
  color: var(--white);
  background: var(--teal-dark);
}

.cta-copy p:last-child {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.contact-card {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-link {
  display: flex;
  min-height: 88px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 18px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  font-size: clamp(1.04rem, 2vw, 1.3rem);
  font-weight: 900;
}

.contact-link span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-link:hover {
  border-color: rgba(216, 251, 107, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.faq-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-grid p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, 0.76);
  background: #071d1f;
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-bottom: 250px;
  }

  .hero-panel,
  .intro,
  .cities,
  .section-heading,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .outcomes,
  .service-grid,
  .timeline,
  .plan-grid,
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 102px;
    padding-bottom: 310px;
  }

  h1 {
    max-width: 9ch;
  }

  .hero-panel,
  .outcomes,
  .service-grid,
  .timeline,
  .plan-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    bottom: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .outcomes article,
  .service-grid article,
  .timeline article {
    min-height: auto;
  }

  .contact-card {
    padding: 18px;
  }
}
