﻿:root {
  --blue-900: #12356f;
  --blue-800: #154a9b;
  --blue-700: #075fb5;
  --cyan: #23d4ea;
  --cyan-soft: #d8fbff;
  --ink: #10213f;
  --muted: #5e6d82;
  --line: #d8e5ee;
  --surface: #f7fbfd;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(12, 42, 81, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 72px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 229, 238, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-900);
  font-size: 1.48rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 4px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--blue-900);
}

.nav a,
.header-action,
.button {
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav a:hover,
.header-action:hover,
.button:hover {
  transform: translateY(-1px);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}

.header-action,
.primary {
  color: var(--white);
  background: var(--blue-800);
  box-shadow: 0 12px 26px rgba(21, 74, 155, 0.24);
}

.secondary {
  color: var(--blue-900);
  background: var(--white);
  border-color: rgba(18, 53, 111, 0.22);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100svh - 72px);
  overflow: hidden;
  background: linear-gradient(130deg, #f9fcfe 0%, #eef8fb 46%, #e2f9fc 100%);
}

.hero-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  background: radial-gradient(circle at 50% 45%, rgba(35, 212, 234, 0.22), transparent 34%), linear-gradient(160deg, #eef8fb, #dff6fb);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 -20%;
  background: repeating-linear-gradient(90deg, rgba(21, 74, 155, 0.09) 0 1px, transparent 1px 42px);
  transform: skewX(-14deg);
}

.hero-media img {
  position: relative;
  width: min(88%, 560px);
  max-height: 76%;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(16, 33, 63, 0.18));
}

.hero-lines {
  position: absolute;
  inset: auto 10% 13% 10%;
  height: 16px;
  border-top: 4px solid var(--cyan);
  border-bottom: 4px solid var(--cyan);
  opacity: 0.75;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 0.83rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--blue-900);
  font-size: clamp(2.45rem, 5.25vw, 4.85rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 22px;
  color: var(--blue-900);
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--blue-900);
  font-size: 1.4rem;
  line-height: 1.15;
}

.hero-copy,
.section p,
.copy-block p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.statement {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.statement-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1fr;
  gap: 32px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px clamp(20px, 5vw, 48px);
  align-items: center;
}

.statement p {
  margin: 0;
  color: var(--cyan);
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1;
}

.statement span {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(70px, 9vw, 116px) clamp(20px, 5vw, 48px);
}

.split,
.service,
.coverage,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.copy-block {
  display: grid;
  gap: 18px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pillars article {
  padding: clamp(34px, 5vw, 58px);
  background: var(--surface);
}

.pillars span {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 900;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.process {
  max-width: none;
  padding-inline: clamp(20px, 7vw, 90px);
  background: #f4fbfd;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(128px, 1fr));
  gap: 18px;
  padding: 40px 0 0;
  margin: 0;
  list-style: none;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 66px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan));
  border-radius: 999px;
  opacity: 0.78;
}

.roadmap li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 8px;
  min-height: 150px;
  color: var(--blue-900);
  text-align: center;
}

.roadmap-marker {
  position: relative;
  z-index: 1;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--cyan));
  border: 6px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 14px 30px rgba(21, 74, 155, 0.22);
  font-size: 0.95rem;
  font-weight: 900;
}

.roadmap strong {
  display: block;
  margin-top: 14px;
  font-size: 1.04rem;
  line-height: 1.15;
}

.roadmap li > span:last-child {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
}

.service {
  max-width: none;
  color: var(--white);
  background: linear-gradient(140deg, var(--blue-900) 0%, var(--blue-700) 62%, #087fb9 100%);
}

.service .eyebrow,
.service h2,
.service h3 {
  color: var(--white);
}

.service p {
  color: rgba(255, 255, 255, 0.84);
}

.service-panel {
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.check-list li {
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-left: 4px solid var(--cyan);
  border-radius: 6px;
  font-weight: 700;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.brand-logo {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 24px;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-logo img {
  width: auto;
  max-width: 190px;
  max-height: 74px;
  object-fit: contain;
}

.brand-logo.mecano img {
  max-width: 230px;
  max-height: 82px;
}

.brand-logo.gea img {
  max-width: 185px;
  max-height: 62px;
}

.coverage {
  align-items: center;
  border-top: 1px solid var(--line);
}

.locations {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 26px 0;
}

.locations span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-900);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
}

.locations span::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--cyan), var(--blue-700));
  box-shadow: 0 0 0 5px rgba(35, 212, 234, 0.16);
  transform: rotate(-45deg);
}

.locations span::after {
  content: "";
  position: absolute;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.contact {
  max-width: none;
  margin: 0;
  padding-inline: clamp(20px, 7vw, 90px);
  align-items: center;
  background: var(--surface);
}

.contact-copy img {
  width: 220px;
  margin-bottom: 34px;
}

.address {
  color: var(--blue-900) !important;
  font-weight: 900;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 56px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--blue-900);
}

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

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

  .nav {
    display: none;
  }

  .hero,
  .split,
  .service,
  .coverage,
  .contact,
  .statement-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: 2;
    min-height: 360px;
  }

  .hero-content {
    order: 1;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

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

  .roadmap {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 560px;
    padding: 8px 0 0 34px;
  }

  .roadmap::before {
    top: 20px;
    bottom: 20px;
    left: 29px;
    right: auto;
    width: 4px;
    height: auto;
  }

  .roadmap li {
    min-height: auto;
    justify-items: start;
    align-content: center;
    padding: 0 0 28px 34px;
    text-align: left;
  }

  .roadmap-marker {
    position: absolute;
    left: -34px;
    top: 0;
    width: 50px;
    height: 50px;
    border-width: 5px;
  }

  .roadmap strong {
    margin-top: 2px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: auto;
    padding: 12px 16px;
  }

  .brand {
    font-size: 1.16rem;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.82rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content,
  .section,
  .process,
  .service,
  .contact {
    padding: 54px 18px;
  }

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

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }



  .footer {
    flex-direction: column;
  }
}





@media (max-width: 620px) {
  .brand-logo {
    min-height: 104px;
    padding: 16px;
  }

  .brand-logo img {
    max-width: 132px;
    max-height: 54px;
  }

  .brand-logo.mecano img {
    max-width: 145px;
    max-height: 58px;
  }
}


