:root {
  --navy: #08213f;
  --navy-2: #0d2f54;
  --navy-3: #123d68;
  --emerald: #07966b;
  --emerald-2: #0fb783;
  --ink: #102033;
  --muted: #5d6e82;
  --line: #dbe6ec;
  --mist: #eef4f6;
  --mist-2: #f7fafb;
  --white: #ffffff;
  --shadow: 0 20px 48px rgba(8, 33, 63, 0.14);
  --max: 1180px;
  --header-height: 68px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

:focus-visible {
  outline: 3px solid rgba(7, 150, 107, 0.32);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 230, 236, 0.9);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--max));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-main {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-link,
.dropdown-trigger {
  border: 0;
  background: transparent;
  color: var(--navy);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 650;
  padding: 9px 8px;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active,
.dropdown-trigger:hover,
.has-dropdown:focus-within > .nav-link {
  color: var(--emerald);
  background: rgba(7, 150, 107, 0.08);
}

.has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-trigger {
  width: 32px;
  height: 32px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dropdown-trigger svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.has-dropdown:hover .dropdown-trigger svg,
.has-dropdown:focus-within .dropdown-trigger svg,
.has-dropdown.open .dropdown-trigger svg {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 308px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.submenu a {
  display: block;
  padding: 10px 12px;
  color: var(--ink);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 650;
}

.submenu a:hover,
.submenu a.active {
  color: var(--emerald);
  background: var(--mist);
}

.has-dropdown:hover .submenu,
.has-dropdown:focus-within .submenu,
.has-dropdown.open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.9rem;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta:hover {
  background: var(--emerald);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  position: relative;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(90deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  opacity: 0;
}

.hero {
  position: relative;
  min-height: clamp(520px, calc(100svh - 150px), 660px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 33, 63, 0.94) 0%, rgba(8, 33, 63, 0.82) 36%, rgba(8, 33, 63, 0.36) 70%, rgba(8, 33, 63, 0.18) 100%),
    url("/assets/hero-water-technology.jpg") center right / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--emerald), rgba(255, 255, 255, 0));
}

.hero-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 56px 0 52px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald-2);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.12;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: 3.1rem;
  max-width: 990px;
}

h2 {
  font-size: 2.65rem;
}

h3 {
  font-size: 1.12rem;
}

.hero p {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 0.94rem;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border 160ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--emerald);
}

.button.primary:hover {
  background: var(--emerald-2);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button.dark {
  color: var(--white);
  background: var(--navy);
}

.button.light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.link {
  color: var(--emerald);
  padding: 0;
  min-height: auto;
  background: transparent;
}

.section {
  padding: 78px 0;
}

.hero + .section {
  padding-top: 42px;
}

.section.alt {
  background: var(--mist-2);
}

.section.deep {
  color: var(--white);
  background: var(--navy);
}

.wrap {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 1.02rem;
}

.deep .section-head p,
.deep p {
  color: rgba(255, 255, 255, 0.76);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  min-width: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, border 160ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(8, 33, 63, 0.1);
  border-color: rgba(7, 150, 107, 0.36);
}

.card p {
  color: var(--muted);
  margin: 10px 0 0;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--emerald);
  background: rgba(7, 150, 107, 0.1);
  margin-bottom: 18px;
}

.card-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 46px;
  align-items: center;
}

.image-panel {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 33, 63, 0.12), rgba(8, 33, 63, 0.62)),
    url("/assets/hero-water-technology.jpg") center / cover no-repeat;
}

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

.feature-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(7, 150, 107, 0.12);
}

.deep .feature-list li {
  color: rgba(255, 255, 255, 0.82);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 154px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--emerald);
  font-weight: 850;
  margin-bottom: 24px;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -14px;
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.36);
}

.process-step:last-child::after {
  display: none;
}

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

.mini-card {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 74px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 750;
  color: var(--navy);
}

.mini-card span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(7, 150, 107, 0.1);
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.mini-card svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.global-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 30px;
  align-items: stretch;
}

.map-visual {
  min-height: 430px;
  border: 1px solid rgba(219, 230, 236, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(238, 244, 246, 0.96)),
    url("/assets/world-network.svg") center / 92% auto no-repeat;
  position: relative;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(219, 230, 236, 0.95);
  box-shadow: 0 12px 28px rgba(8, 33, 63, 0.12);
  font-size: 0.78rem;
  font-weight: 800;
}

.map-pin::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 5px rgba(7, 150, 107, 0.15);
}

.pin-uk { left: 43%; top: 30%; }
.pin-fr { left: 45%; top: 43%; }
.pin-de { left: 50%; top: 38%; }
.pin-it { left: 51%; top: 52%; }
.pin-es { left: 39%; top: 55%; }
.pin-pk { left: 66%; top: 56%; }
.pin-in { left: 72%; top: 65%; }
.pin-uae { left: 60%; top: 65%; }

.partner-list {
  display: grid;
  gap: 12px;
}

.partner-item {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.partner-item strong {
  color: var(--navy);
}

.partner-item span {
  color: var(--muted);
}

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

.trust-item {
  background: var(--white);
  padding: 22px;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  margin-top: 6px;
}

.cta-band {
  padding: 54px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 33, 63, 0.96), rgba(7, 150, 107, 0.9)),
    url("/assets/hero-water-technology.jpg") center / cover no-repeat;
}

.cta-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.cta-inner h2 {
  max-width: 760px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.82);
  margin-top: 10px;
  max-width: 700px;
}

.page-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 33, 63, 0.96), rgba(8, 33, 63, 0.78), rgba(7, 150, 107, 0.72)),
    url("/assets/hero-water-technology.jpg") center / cover no-repeat;
}

.page-hero .wrap {
  padding: 80px 0 72px;
}

.breadcrumb {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--white);
  font-weight: 750;
}

.page-hero p {
  max-width: 820px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.38fr);
  gap: 34px;
  align-items: start;
}

.content-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.content-panel h2 + p,
.content-panel h3 + p {
  margin-top: 10px;
}

.content-panel + .content-panel {
  margin-top: 18px;
}

.side-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 18px;
}

.side-panel .card {
  box-shadow: none;
}

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

.check-item {
  position: relative;
  padding: 15px 16px 15px 42px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist-2);
  color: var(--navy);
  font-weight: 720;
}

.check-item::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--emerald);
  box-shadow: 0 0 0 4px rgba(7, 150, 107, 0.12);
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.resource-number {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
}

.form {
  display: grid;
  gap: 16px;
}

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

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

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--emerald);
  outline: 3px solid rgba(7, 150, 107, 0.16);
}

.form-note {
  display: none;
  padding: 14px 16px;
  border-radius: 8px;
  color: #07543d;
  background: rgba(7, 150, 107, 0.12);
  border: 1px solid rgba(7, 150, 107, 0.28);
}

.form-note.visible {
  display: block;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details a,
.contact-details span {
  color: var(--muted);
}

.contact-details strong {
  display: block;
  color: var(--navy);
}

.policy-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.policy-list li {
  list-style: disc;
  margin-left: 20px;
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.78);
  background: #061a32;
}

.footer-main {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 58px 0 34px;
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(170px, 0.7fr));
  gap: 34px;
}

.footer-brand .brand-main {
  color: var(--white);
}

.footer-brand .brand-sub {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand p {
  margin-top: 18px;
  max-width: 430px;
}

.footer-col h2 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 9px 0;
}

.footer-col a:hover {
  color: var(--emerald-2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .wrap {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.86rem;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 2000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 12px;
  }

  .nav-link,
  .dropdown-trigger {
    font-size: 0.84rem;
    padding-left: 7px;
    padding-right: 7px;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 1340px) {
  .header-cta {
    display: none;
  }

  .nav-link,
  .dropdown-trigger {
    font-size: 0.84rem;
    padding-left: 7px;
    padding-right: 7px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 66px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    width: 100%;
    max-height: calc(100svh - var(--header-height));
    overflow: auto;
    margin: 0;
    padding: 12px 16px 18px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 42px rgba(8, 33, 63, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 12px 10px;
  }

  .has-dropdown {
    display: grid;
    grid-template-columns: 1fr 42px;
    align-items: center;
  }

  .has-dropdown .nav-link {
    grid-column: 1;
  }

  .dropdown-trigger {
    grid-column: 2;
    justify-self: end;
  }

  .submenu {
    grid-column: 1 / -1;
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--emerald);
    border-radius: 0;
    padding: 0 0 0 10px;
    margin-left: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 180ms ease;
  }

  .has-dropdown.open .submenu {
    max-height: 440px;
    padding-top: 4px;
    padding-bottom: 8px;
  }

  .hero {
    min-height: auto;
    background-position: center right;
  }

  .hero p {
    font-size: 1rem;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .grid.three,
  .grid.four,
  .industry-grid,
  .trust-band,
  .process-track,
  .footer-main,
  .global-layout,
  .split,
  .service-layout {
    grid-template-columns: 1fr 1fr;
  }

  .side-panel {
    position: static;
  }

  .process-step::after {
    display: none;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .map-visual {
    min-height: 370px;
  }
}

@media (max-width: 640px) {
  .header-inner {
    width: min(100% - 24px, var(--max));
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .brand-main {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.63rem;
  }

  .hero-inner,
  .wrap,
  .cta-inner,
  .footer-main,
  .footer-bottom .wrap {
    width: min(100% - 24px, var(--max));
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.65rem;
  }

  .section {
    padding: 58px 0;
  }

  .page-hero .wrap {
    padding: 58px 0 52px;
  }

  .grid.three,
  .grid.two,
  .grid.four,
  .industry-grid,
  .trust-band,
  .process-track,
  .footer-main,
  .global-layout,
  .split,
  .service-layout,
  .check-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .partner-item,
  .resource-item {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 300px;
  }

  .map-visual {
    min-height: 460px;
    background-size: 145% auto;
  }

  .map-pin {
    font-size: 0.73rem;
  }

  .pin-uk { left: 24%; top: 18%; }
  .pin-fr { left: 19%; top: 30%; }
  .pin-de { left: 48%; top: 26%; }
  .pin-it { left: 46%; top: 40%; }
  .pin-es { left: 12%; top: 44%; }
  .pin-pk { left: 38%; top: 58%; }
  .pin-in { left: 57%; top: 70%; }
  .pin-uae { left: 18%; top: 70%; }

  .footer-bottom .wrap {
    display: grid;
  }
}
