:root {
  --ink: #121714;
  --ink-soft: #37413b;
  --muted: #69746d;
  --paper: #f8faf2;
  --paper-strong: #ffffff;
  --line: rgba(18, 23, 20, 0.12);
  --teal: #00a8a8;
  --teal-dark: #067676;
  --lime: #b9f63a;
  --coral: #ff704d;
  --shadow: 0 22px 70px rgba(18, 23, 20, 0.13);
  --max: 1180px;
  --header: 82px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(18, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 20, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 4px;
  z-index: 100;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--lime), var(--coral));
  transition: width 120ms linear;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 36px), var(--max));
  min-height: 64px;
  padding: 12px 14px 12px 16px;
  transform: translateX(-50%);
  border: 1px solid rgba(18, 23, 20, 0.1);
  border-radius: 8px;
  background: rgba(248, 250, 242, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(18, 23, 20, 0.1);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 242, 0.94);
  box-shadow: 0 18px 48px rgba(18, 23, 20, 0.15);
}

.brand img {
  width: 190px;
  height: auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
  background: rgba(0, 168, 168, 0.12);
}

.nav-toggle {
  display: none;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(18, 23, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.language-switcher button {
  min-width: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible {
  color: var(--ink);
  background: rgba(0, 168, 168, 0.1);
}

.language-switcher button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 8px 18px rgba(18, 23, 20, 0.1);
}

.section-pad {
  padding: 110px 24px;
}

section[id] {
  scroll-margin-top: 116px;
}

.section-intro {
  width: min(720px, 100%);
  margin: 0 auto 46px;
  text-align: center;
}

.section-intro.wide {
  width: min(880px, 100%);
}

.section-intro p,
.market-copy p,
.contact-copy p,
.trust-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 99px;
  background: var(--lime);
}

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

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 76px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: 48px;
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 150px 24px 64px;
  place-items: center;
  overflow: hidden;
}

#routeCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(110deg, rgba(248, 250, 242, 0.9), rgba(248, 250, 242, 0.55) 50%, rgba(255, 255, 255, 0.74)),
    var(--paper);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(248, 250, 242, 0.1), rgba(248, 250, 242, 0.7) 88%),
    linear-gradient(90deg, rgba(248, 250, 242, 0.82), rgba(248, 250, 242, 0.28) 58%, rgba(248, 250, 242, 0.82));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), 100%);
}

.hero-lead {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.55;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: auto auto -80% -25%;
  z-index: -1;
  width: 60%;
  height: 180%;
  transform: rotate(24deg);
  background: rgba(255, 255, 255, 0.25);
  transition: transform 450ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(220%) rotate(24deg);
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 18px 36px rgba(18, 23, 20, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(18, 23, 20, 0.28);
}

.button-ghost {
  border-color: rgba(18, 23, 20, 0.2);
  color: var(--ink);
  background: rgba(248, 250, 242, 0.68);
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(0, 168, 168, 0.45);
  transform: translateY(-2px);
}

.route-panel {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 58px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  width: min(410px, calc(100% - 48px));
  gap: 8px;
  justify-content: flex-end;
}

.route-panel span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(18, 23, 20, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
}

.metric-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric-card {
  min-height: 210px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 38px rgba(18, 23, 20, 0.06);
}

.metric-card strong {
  display: block;
  margin-bottom: 18px;
  font-size: 58px;
  line-height: 1;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.services {
  background: var(--ink);
  color: var(--paper);
}

.services .section-intro p,
.services .eyebrow {
  color: rgba(248, 250, 242, 0.72);
}

.services .eyebrow::before {
  background: var(--teal);
}

.services-grid {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 900px;
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 242, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    #171d19;
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(0, 168, 168, 0.2), rgba(185, 246, 58, 0.12));
  transition: opacity 180ms ease;
}

.service-card:hover {
  border-color: rgba(185, 246, 58, 0.36);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-index {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: rgba(248, 250, 242, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.process {
  background: linear-gradient(180deg, var(--paper), #eef5ef);
}

.timeline {
  position: relative;
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--lime), var(--coral));
}

.timeline-item {
  position: relative;
  padding: 84px 22px 0;
}

.timeline-item span {
  position: absolute;
  top: 0;
  left: 22px;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 8px solid #eef5ef;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(18, 23, 20, 0.16);
}

.timeline-item p {
  color: var(--muted);
  line-height: 1.65;
}

.markets {
  display: grid;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 58px;
  align-items: center;
}

.market-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(rgba(18, 23, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 20, 0.045) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px;
  box-shadow: var(--shadow);
}

.market-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 28%, rgba(0, 168, 168, 0.14), transparent 32%),
    radial-gradient(circle at 74% 64%, rgba(185, 246, 58, 0.16), transparent 34%);
  pointer-events: none;
}

.pulse-map {
  position: absolute;
  inset: 38px;
}

.pulse-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-base {
  opacity: 0.82;
}

.map-route {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
  animation: dash-flow 2.8s linear infinite;
}

.route-soft {
  stroke: var(--teal);
  animation-duration: 3.4s;
  opacity: 1;
}

.route-warm {
  stroke: var(--teal);
  animation-duration: 3.1s;
}

.map-point {
  fill: rgba(18, 23, 20, 0.66);
  stroke: var(--paper-strong);
  stroke-width: 5;
  filter: drop-shadow(0 10px 14px rgba(18, 23, 20, 0.18));
}

.map-point.active {
  fill: var(--teal);
}

.map-point.future {
  fill: var(--lime);
}

.map-point.base {
  fill: var(--ink);
}

.map-point.active,
.map-point.future,
.map-point.base {
  animation: map-point-pulse 2.8s ease-out infinite;
}

.map-point.delay-short {
  animation-delay: 0.45s;
}

.map-point.delay-long {
  animation-delay: 0.85s;
}

.pulse-map text {
  fill: rgba(18, 23, 20, 0.56);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
}

.map-badge {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(18, 23, 20, 0.12);
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 28px rgba(18, 23, 20, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.badge-eu {
  top: 8%;
  left: 52%;
}

.badge-ma {
  left: 7%;
  bottom: 7%;
}

.badge-tr {
  top: 41%;
  right: 5%;
}

.market-copy {
  max-width: 560px;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.5;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--lime);
}

.check-list li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 7px;
  width: 5px;
  height: 9px;
  transform: rotate(45deg);
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
}

.trust {
  padding-top: 0;
}

.trust-band {
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: 1fr 0.85fr;
  gap: 40px;
  align-items: center;
  padding: 54px;
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 168, 168, 0.22), rgba(185, 246, 58, 0.1)),
    var(--ink);
  box-shadow: var(--shadow);
}

.trust-band .eyebrow,
.trust-band p {
  color: rgba(248, 250, 242, 0.78);
}

.trust-band .eyebrow::before {
  background: var(--lime);
}

.trust-band p {
  margin: 0;
}

.contact {
  position: relative;
  overflow: hidden;
  padding-inline: 24px;
  color: var(--paper);
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 168, 168, 0.23), transparent 31%),
    radial-gradient(circle at 82% 72%, rgba(185, 246, 58, 0.16), transparent 34%),
    linear-gradient(135deg, #101612, #182119 58%, #0f1512);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(248, 250, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(248, 250, 242, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--max), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  border: 1px solid rgba(248, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(248, 250, 242, 0.06);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
}

.contact-copy {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 38px;
  padding: 52px 44px;
  overflow: hidden;
  border-right: 1px solid rgba(248, 250, 242, 0.14);
  background:
    linear-gradient(145deg, rgba(0, 168, 168, 0.17), rgba(185, 246, 58, 0.06)),
    rgba(18, 23, 20, 0.55);
}

.contact-copy::after {
  content: "";
  position: absolute;
  right: -96px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border: 1px dashed rgba(185, 246, 58, 0.32);
  border-radius: 50%;
  box-shadow: inset 0 0 0 42px rgba(0, 168, 168, 0.05);
}

.contact-copy > * {
  position: relative;
  z-index: 1;
}

.contact-copy .eyebrow,
.contact-copy p {
  color: rgba(248, 250, 242, 0.76);
}

.contact-copy .eyebrow::before {
  background: var(--lime);
}

.contact-copy h2 {
  color: var(--paper);
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.06;
  overflow-wrap: break-word;
}

.contact-intro {
  max-width: 560px;
}

.contact-direct {
  display: grid;
  gap: 10px;
  width: fit-content;
  padding: 16px;
  border: 1px solid rgba(248, 250, 242, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-direct span {
  color: rgba(248, 250, 242, 0.58);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.contact-mail {
  display: inline-flex;
  color: var(--lime);
  font-size: 20px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(18, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #fbfcf7, #edf4ef);
  background-size: 34px 34px, 34px 34px, auto;
}

.form-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(18, 23, 20, 0.12);
}

.form-topline strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}

.form-kicker,
.form-badge {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.form-badge {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  white-space: nowrap;
  padding: 0 12px;
  border: 1px solid rgba(18, 23, 20, 0.14);
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.68);
}

.route-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.route-field,
.form-grid .field,
.field-full,
.service-options {
  border: 1px solid rgba(18, 23, 20, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 10px 24px rgba(18, 23, 20, 0.06);
}

.route-field,
.form-grid .field,
.field-full {
  padding: 15px;
}

.route-connector {
  position: relative;
  align-self: center;
  height: 44px;
  border: 1px solid rgba(0, 168, 168, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at 13px 50%, var(--ink) 0 5px, transparent 6px),
    radial-gradient(circle at calc(100% - 13px) 50%, var(--lime) 0 5px, transparent 6px),
    rgba(0, 168, 168, 0.08);
}

.route-connector::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  right: 18px;
  height: 4px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--teal);
}

.route-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 1;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 3px solid var(--teal);
  border-right: 3px solid var(--teal);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
}

.field > span {
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.field-full {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(18, 23, 20, 0.045);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.route-field:focus-within,
.form-grid .field:focus-within,
.field-full:focus-within,
.service-options:focus-within {
  border-color: rgba(0, 168, 168, 0.56);
  box-shadow: 0 0 0 4px rgba(0, 168, 168, 0.11), 0 12px 28px rgba(18, 23, 20, 0.08);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: var(--paper-strong);
}

.service-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 15px;
  margin: 0;
}

.service-options legend {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.service-options label {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(18, 23, 20, 0.11);
  border-radius: 8px;
  color: var(--ink-soft);
  background: rgba(18, 23, 20, 0.045);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.service-options label span {
  min-width: 0;
  overflow-wrap: break-word;
}

.service-options input {
  width: 16px;
  height: 16px;
  min-height: 16px;
  padding: 0;
  box-shadow: none;
  accent-color: var(--teal);
}

.form-submit-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 168, 168, 0.28), rgba(185, 246, 58, 0.11)),
    var(--ink);
}

.form-submit-row .button-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 14px 28px rgba(18, 23, 20, 0.2);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: rgba(248, 250, 242, 0.8);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 168px;
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  text-align: center;
}

.js [data-reveal] {
  transform: translateY(26px);
  opacity: 0;
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes dash-flow {
  to {
    stroke-dashoffset: -52;
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 24px rgba(0, 168, 168, 0), 0 16px 30px rgba(18, 23, 20, 0.18);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 168, 168, 0), 0 16px 30px rgba(18, 23, 20, 0.18);
  }
}

@keyframes map-point-pulse {
  0%,
  100% {
    opacity: 1;
  }
  55% {
    opacity: 0.58;
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 38px;
  }

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

  .timeline {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
  }

  .timeline::before {
    display: none;
  }

  .markets,
  .contact-shell,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(248, 250, 242, 0.14);
  }

  .contact-copy h2 {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    min-height: 62px;
  }

  .brand img {
    width: 156px;
  }

  .header-actions {
    margin-left: auto;
    gap: 8px;
  }

  .language-switcher button {
    min-width: 31px;
    min-height: 31px;
    font-size: 11px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(18, 23, 20, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;
    display: grid;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(248, 250, 242, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    justify-content: center;
  }

  .hero {
    min-height: 780px;
    padding: 132px 20px 130px;
    align-items: start;
  }

  .hero-content {
    margin-top: 34px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 21px;
  }

  .hero-lead,
  .section-intro p,
  .market-copy p,
  .contact-copy p,
  .trust-band p {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .route-panel {
    right: 20px;
    left: 20px;
    bottom: 34px;
    width: auto;
    justify-content: flex-start;
  }

  .section-pad {
    padding: 76px 20px;
  }

  .metric-grid,
  .services-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .metric-card {
    padding: 24px;
  }

  .contact-form {
    padding: 18px;
  }

  .form-topline,
  .form-submit-row {
    padding: 16px;
  }

  .form-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-topline strong {
    font-size: 22px;
  }

  .form-grid,
  .service-options,
  .form-submit-row {
    grid-template-columns: 1fr;
  }

  .route-strip {
    grid-template-columns: 1fr;
  }

  .route-connector {
    justify-self: center;
    width: 42px;
    height: 48px;
    background:
      radial-gradient(circle at 50% 10px, var(--ink) 0 5px, transparent 6px),
      radial-gradient(circle at 50% calc(100% - 10px), var(--lime) 0 5px, transparent 6px),
      rgba(0, 168, 168, 0.08);
  }

  .route-connector::before {
    top: 16px;
    bottom: 16px;
    left: 50%;
    right: auto;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
  }

  .route-connector::after {
    top: auto;
    right: auto;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }

  .metric-card strong {
    font-size: 46px;
  }

  .timeline-item {
    padding: 0 0 0 86px;
    min-height: 76px;
  }

  .timeline-item span {
    left: 0;
    border-color: var(--paper);
  }

  .markets {
    width: calc(100% - 40px);
    gap: 34px;
  }

  .contact {
    padding-inline: 20px;
  }

  .contact-shell {
    width: 100%;
  }

  .contact-copy {
    padding: 34px 24px;
  }

  .contact-copy h2 {
    font-size: 36px;
  }

  .market-visual {
    min-height: 330px;
  }

  .trust-band {
    padding: 30px;
  }

  .site-footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 29px;
  }

  .eyebrow {
    letter-spacing: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
