:root {
  --bg: #f7f8f4;
  --surface: #fff;
  --surface-2: #eef3e7;
  --text: #172015;
  --muted: #5f6b5b;
  --navy: #07213a;
  --navy-rgb: 7, 33, 58;
  --blue: #8abde8;
  --primary: #07213a;
  --primary-2: #04182b;
  --accent: #aed85c;
  --border: #dfe7d8;
  --danger: #ef4444;
  --shadow: 0 18px 50px rgba(7, 33, 58, 0.14);
  --radius: 22px;
  --max: 1440px;
  --header: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(138, 189, 232, 0.14);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 56px);
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.logo-mark {
  display: block;
  width: 58px;
  height: 58px;
  max-width: 100%;
  object-fit: contain;
  flex: 0 0 auto;
}

.logo-name {
  color: var(--blue);
  font-size: clamp(17px, 1.35vw, 24px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  white-space: nowrap;
}

.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: clamp(24px, 2.7vw, 48px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--blue);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  gap: 22px;
}

.phone {
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.75);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: color 180ms ease;
}

.phone:hover,
.phone:focus-visible {
  color: var(--blue);
}

.lang {
  display: inline-flex;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(138, 189, 232, 0.35);
  border-radius: 8px;
}

.lang a,
.lang span {
  padding: 7px 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.lang .active {
  color: var(--navy);
  background: var(--blue);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(138, 189, 232, 0.35);
  border-radius: 10px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle-icon {
  top: 50%;
  transform: translate(-50%, -50%);
}

.menu-toggle-icon::before,
.menu-toggle-icon::after {
  content: "";
}

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

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

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  top: 0;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-nav {
  display: none;
  padding-block: 10px 22px;
  border-top: 1px solid rgba(138, 189, 232, 0.18);
}

.mobile-nav a {
  display: block;
  padding-block: 11px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  color: var(--blue);
}

.mobile-phone {
  margin-top: 8px;
  color: var(--blue) !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #163f61);
}

.btn-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-header {
  min-height: 44px;
  padding-inline: 18px;
  color: var(--navy);
  background: var(--accent);
  border-radius: 999px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.btn-header:hover,
.btn-header:focus-visible {
  color: var(--navy);
  background: #bce66a;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding:
    calc(var(--header) + clamp(70px, 8vh, 120px))
    0
    clamp(70px, 10vh, 120px);
  color: #fff;
  background: var(--navy);
}

.hero-media,
.hero-media video,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media video,
.hero-media img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(var(--navy-rgb), 0.05) 0%,
      rgba(var(--navy-rgb), 0.18) 34%,
      rgba(var(--navy-rgb), 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(var(--navy-rgb), 0.16),
      rgba(var(--navy-rgb), 0.08)
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  max-width: none;
  margin-inline: auto;
  text-align: center;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto;
  color: #fff;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(52px, 6.1vw, 102px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: #fff;
}

.hero-lead {
  max-width: 900px;
  margin: clamp(28px, 3.5vw, 46px) auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(17px, 1.55vw, 25px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.015em;
  text-wrap: balance;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(18px, 5vw, 96px);
  margin-top: clamp(34px, 4vw, 54px);
}

.hero-cta {
  min-width: min(100%, 346px);
  min-height: 66px;
  padding: 16px 34px;
  color: var(--navy);
  background: var(--accent);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  font-size: clamp(17px, 1.4vw, 23px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  color: var(--navy);
  background: #bce66a;
  transform: translateY(-2px);
}

.hero-cta:active {
  transform: translateY(0);
}

/* Typography and sections */

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

h1 span {
  display: block;
  color: var(--accent);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.lead {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.section {
  padding: 96px 0;
}

.section-muted {
  background: var(--surface-2);
}

.section-dark {
  color: #fff;
  background: var(--text);
}

.section-primary {
  color: #fff;
  background: var(--primary);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 18px;
}

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

/* Grids and cards */

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

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

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

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

.card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(23, 32, 21, 0.04);
}

.service-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-media {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-media img {
  transform: scale(1.04);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.service-media h3 {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  z-index: 1;
  color: #fff;
  font-size: 28px;
}

.card-body {
  padding: 24px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--primary);
  background: var(--surface-2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.benefit {
  padding: 26px;
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #163f61);
  border-radius: 14px;
  font-size: 23px;
}

/* About */

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 48px;
  align-items: start;
}

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

.check-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.check-list span::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}

.stats-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.stats-card strong {
  display: block;
  color: #fff;
  font-size: 46px;
  line-height: 1;
}

.stats-card span {
  color: rgba(255, 255, 255, 0.72);
}

.map-card {
  margin-top: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.problem {
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.problem .icon {
  color: #f87171;
  background: rgba(239, 68, 68, 0.16);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-item .icon {
  flex: 0 0 auto;
  margin: 0;
  color: var(--primary);
  background: var(--surface-2);
}

.form {
  padding: 28px;
}

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

.field {
  margin-bottom: 15px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

/* Footer */

.site-footer {
  padding: 58px 0 28px;
  color: #fff;
  background: var(--navy);
}

.site-footer .logo img {
  border-radius: 8px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer p,
.footer a,
.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.68);
}

.footer a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.site-footer h4 {
  margin: 0 0 14px;
}

.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li {
  margin: 8px 0;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */

@media (max-width: 1180px) {
  :root {
    --header: 92px;
  }

  .desktop-nav {
    gap: 22px;
  }

  .header-actions {
    gap: 14px;
  }

  .btn-header,
  .lang {
    display: none;
  }

  .logo-mark {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 960px) {
  :root {
    --header: 82px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .mobile-nav.is-open {
    display: block;
  }

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

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-top: calc(var(--header) + 72px);
  }

  .hero-content {
    margin-inline: auto;
  }

  .hero h1 {
    max-width: 820px;
  }

  .hero-lead {
    max-width: 700px;
  }

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

@media (max-width: 640px) {
  :root {
    --header: 72px;
  }

  .header-inner {
    gap: 14px;
  }

  .logo {
    gap: 9px;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .logo-name {
    max-width: 180px;
    font-size: 15px;
    white-space: normal;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: 70px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .check-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding:
      calc(var(--header) + 54px)
      0
      54px;
  }

  .hero-media video,
  .hero-media img {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(var(--navy-rgb), 0.24) 0%,
        rgba(var(--navy-rgb), 0.44) 42%,
        rgba(var(--navy-rgb), 0.9) 100%
      );
  }

  .hero h1 {
    font-size: clamp(45px, 14vw, 68px);
    line-height: 0.93;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-buttons {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }

  .hero-cta {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding-inline: 20px;
    font-size: 16px;
  }

  .service-media {
    height: 220px;
  }

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

  .stats-card strong {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .desktop-nav a::after,
  .menu-toggle-icon,
  .menu-toggle-icon::before,
  .menu-toggle-icon::after,
  .hero-cta,
  .service-card,
  .service-media img {
    transition: none;
  }
}


/* Numbers */

.numbers-section {
  padding: clamp(72px, 7vw, 118px) 0;
  background: #edf1f4;
}

.numbers-title {
  max-width: 1620px;
  margin: 0 auto clamp(54px, 5vw, 88px);
  color: #214f75;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(40px, 4.25vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.015em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.5vw, 48px);
}

.number-card {
  min-height: 248px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
  color: #06213c;
  border: 3px solid #c5d1da;
  border-radius: 44px;
  text-align: center;
}

.number-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-weight: 700;
  line-height: 0.9;
  white-space: nowrap;
}

.number-value-inline {
  gap: 14px;
}

.number-main {
  font-size: clamp(64px, 5vw, 96px);
  letter-spacing: -0.025em;
}

.number-unit {
  font-size: clamp(50px, 4vw, 78px);
}

.number-prefix {
  font-size: clamp(26px, 2vw, 42px);
  text-transform: uppercase;
}

.number-label {
  margin: 0;
  color: #0b2743;
  font-size: clamp(16px, 1.15vw, 22px);
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .number-card {
    min-height: 220px;
  }
}

@media (max-width: 640px) {
  .numbers-section {
    padding: 64px 0;
  }

  .numbers-title {
    margin-bottom: 38px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .number-card {
    min-height: 190px;
    padding: 28px 18px;
    border-width: 2px;
    border-radius: 30px;
  }

  .number-main {
    font-size: clamp(60px, 18vw, 82px);
  }

  .number-unit {
    font-size: clamp(46px, 14vw, 64px);
  }

  .number-prefix {
    font-size: clamp(24px, 7vw, 32px);
  }

  .number-label {
    font-size: 16px;
  }
}

/* Industries cards */

.industries-section {
  padding: clamp(76px, 8vw, 128px) 0;
  background: #edf1f4;
}

.industries-title {
  max-width: 1500px;
  margin: 0 0 clamp(52px, 6vw, 96px);
  color: #214f75;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(42px, 4.5vw, 74px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  text-wrap: balance;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px) clamp(24px, 4vw, 64px);
}

.industry-card {
  --card-header-bg: #fff;
  --card-header-color: #214f75;

  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(7, 33, 58, 0.08);
  isolation: isolate;
}

.industry-card--blue {
  --card-header-bg: #214f75;
  --card-header-color: #fff;
}

.industry-card--lime {
  --card-header-bg: #aed85c;
  --card-header-color: #214f75;
}

.industry-card--white {
  --card-header-bg: #fff;
  --card-header-color: #214f75;
}

.industry-card__header {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  color: var(--card-header-color);
  background: var(--card-header-bg);
}

.industry-card__header h3 {
  margin: 0;
  color: inherit;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(27px, 2vw, 38px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.industry-card__icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card__icon path{
  outline-width: 1;
}

article:nth-of-type(3) .industry-card__icon rect,
article:nth-of-type(5) .industry-card__icon rect{
  stroke: none;
}

.industry-card__media {
  height: 310px;
  overflow: hidden;
  transition: height 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 420ms ease;
}

.industry-card__content {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 24px;
  background: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition:
    grid-template-rows 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card__content p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  color: #667482;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

/*
 * Hover behavior is restricted to devices that have a real pointer.
 * This prevents sticky hover states on phones and tablets.
 */
@media (hover: hover) and (pointer: fine) {
  .industry-card:hover .industry-card__media,
  .industry-card:focus-within .industry-card__media {
    height: 176px;
  }

  .industry-card:hover .industry-card__media img,
  .industry-card:focus-within .industry-card__media img {
    transform: scale(1.035);
    filter: saturate(0.92);
  }

  .industry-card:hover .industry-card__content,
  .industry-card:focus-within .industry-card__content {
    grid-template-rows: 1fr;
    padding: 18px 24px 22px;
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Touch devices:
 * description is visible immediately and the image starts in its
 * reduced-height state.
 */
@media (hover: none), (pointer: coarse) {
  .industry-card__media {
    height: 176px;
  }

  .industry-card__content {
    grid-template-rows: 1fr;
    padding: 18px 24px 22px;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .industries-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-card__header {
    min-height: 96px;
  }
}

@media (max-width: 680px) {
  .industries-section {
    padding: 64px 0;
  }

  .industries-title {
    margin-bottom: 40px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .industry-card__header {
    min-height: 92px;
    padding: 18px 20px;
  }

  .industry-card__header h3 {
    font-size: clamp(27px, 8vw, 34px);
  }

  .industry-card__icon {
    width: 52px;
    height: 52px;
  }

  .industry-card__media {
    height: 190px;
  }

  .industry-card__content {
    grid-template-rows: 1fr;
    padding: 18px 20px 22px;
    opacity: 1;
    transform: none;
  }

  .industry-card__content p {
    font-size: 14px;
    line-height: 1.15;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-card__media,
  .industry-card__media img,
  .industry-card__content {
    transition: none;
  }
}

/* Services tabs */

.services-tabs-section {
  padding: clamp(78px, 8vw, 130px) 0;
  color: #fff;
  background: #07213a;
}

.services-tabs-title {
  max-width: 1180px;
  margin: 0 0 clamp(42px, 5vw, 76px);
  color: #fff;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(38px, 3.8vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  text-wrap: balance;
}

.services-tabs-title span {
  color: #8ccc33;
}

.services-tabs-layout {
  display: grid;
  grid-template-columns: minmax(280px, 500px) minmax(0, 1fr);
  gap: clamp(18px, 2vw, 30px);
  align-items: stretch;
}

.services-tabs-nav {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-width: 0;
}

.services-tab {
  position: relative;
  width: 100%;
  min-height: 132px;
  padding: 24px clamp(24px, 3vw, 44px);
  overflow: hidden;
  color: #fff;
  background: #1e496c;
  border: 1px solid transparent;
  border-radius: 10px;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(25px, 2vw, 36px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.services-tab::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: #8ccc33;
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.services-tab:hover,
.services-tab:focus-visible {
  background: #24577f;
}

.services-tab:focus-visible {
  outline: 3px solid rgba(140, 204, 51, 0.45);
  outline-offset: 3px;
}

.services-tab.is-active {
  border-color: #8ccc33;
}

.services-tab.is-active::before {
  transform: scaleY(1);
}

.services-tabs-content {
  min-width: 0;
  height: clamp(500px, 38vw, 610px);
  overflow: hidden;
  color: #102941;
  background: #eef2f5;
  border-radius: 10px;
}

.services-tab-panel {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #8ccc33 #dbe4d2;
}

.services-tab-panel[hidden] {
  display: none;
}

.services-tab-panel.is-active {
  display: block;
}

.services-tab-panel::-webkit-scrollbar {
  width: 10px;
}

.services-tab-panel::-webkit-scrollbar-track {
  background: #dbe4d2;
  border-radius: 999px;
}

.services-tab-panel::-webkit-scrollbar-thumb {
  background: #8ccc33;
  border: 2px solid #dbe4d2;
  border-radius: 999px;
}

.services-tab-panel::-webkit-scrollbar-thumb:hover {
  background: #79b629;
}

.services-tab-panel__inner {
  min-height: 100%;
  padding: clamp(28px, 3vw, 48px);
}

.services-tab-panel h3 {
  max-width: 930px;
  margin: 0 0 clamp(28px, 3vw, 48px);
  color: #102941;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(29px, 2.6vw, 44px);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
  text-wrap: balance;
}

.services-tab-items {
  display: grid;
  gap: clamp(28px, 3vw, 48px);
}

.services-tab-item {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: clamp(22px, 2.5vw, 40px);
  align-items: start;
}

.services-tab-item img {
  width: 100%;
  aspect-ratio: 1.38 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.services-tab-item h4 {
  margin: 0 0 10px;
  color: #102941;
  font-size: clamp(16px, 1.15vw, 19px);
  font-weight: 800;
  line-height: 1.25;
}

.services-tab-item p {
  margin: 0 0 12px;
  color: #23394d;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.42;
}

.services-tab-item p:last-child {
  margin-bottom: 0;
}

.services-tab-item strong {
  color: #1684e8;
  font-weight: 800;
}

.services-tabs-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(38px, 5vw, 72px);
}

.services-tabs-button {
  min-width: min(100%, 360px);
  min-height: 62px;
  padding-inline: 34px;
  color: #07213a;
  background: #aed85c;
  border-radius: 999px;
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.services-tabs-button:hover,
.services-tabs-button:focus-visible {
  color: #07213a;
  background: #bce66a;
}

@media (max-width: 960px) {
  .services-tabs-layout {
    display: block;
  }

  .services-tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    padding: 2px 2px 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #8ccc33 rgba(255, 255, 255, 0.12);
  }

  .services-tabs-nav::-webkit-scrollbar {
    height: 7px;
  }

  .services-tabs-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
  }

  .services-tabs-nav::-webkit-scrollbar-thumb {
    background: #8ccc33;
    border-radius: 999px;
  }

  .services-tab {
    flex: 0 0 min(72vw, 320px);
    min-height: 104px;
    padding: 20px 24px;
    scroll-snap-align: start;
    font-size: 26px;
  }

  .services-tab::before {
    inset: auto 0 0;
    width: auto;
    height: 6px;
    transform: scaleX(0);
  }

  .services-tab.is-active::before {
    transform: scaleX(1);
  }

  .services-tabs-content {
    height: min(620px, 72vh);
  }
}

@media (max-width: 700px) {
  .services-tabs-section {
    padding: 64px 0;
  }

  .services-tabs-title {
    margin-bottom: 36px;
    font-size: clamp(36px, 10vw, 50px);
  }

  .services-tabs-content {
    height: min(620px, 72vh);
  }

  .services-tab-panel__inner {
    padding: 24px 20px;
  }

  .services-tab-panel h3 {
    margin-bottom: 28px;
    font-size: clamp(29px, 8vw, 38px);
  }

  .services-tab-item {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .services-tab-item img {
    max-height: 220px;
  }

  .services-tab-item h4 {
    font-size: 17px;
  }

  .services-tab-item p {
    font-size: 15px;
  }

  .services-tabs-button {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .services-tab,
  .services-tab::before {
    transition: none;
  }
}

/* Outsourcing CTA */

.outsourcing-cta {
  position: relative;
  min-height: clamp(620px, 48vw, 920px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: #07213a;
}

.outsourcing-cta__media,
.outsourcing-cta__media img,
.outsourcing-cta__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.outsourcing-cta__media img {
  object-fit: cover;
  object-position: center;
}

.outsourcing-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 33, 58, 0.98) 0%,
      rgba(7, 33, 58, 0.9) 25%,
      rgba(7, 33, 58, 0.57) 47%,
      rgba(7, 33, 58, 0.1) 72%,
      rgba(7, 33, 58, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 33, 58, 0.05),
      rgba(7, 33, 58, 0.14)
    );
}

.outsourcing-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, var(--max));
  padding-block: clamp(72px, 8vw, 130px);
}

.outsourcing-cta__content {
  position: relative;
  max-width: 690px;
  padding-left: clamp(0px, 1vw, 12px);
}

.outsourcing-cta__quote {
  display: block;
  height: 72px;
  margin-bottom: 10px;
  color: #fff;
  font-family: Georgia, serif;
  font-size: clamp(110px, 9vw, 170px);
  font-weight: 700;
  line-height: 0.78;
}

.outsourcing-cta h2 {
  margin: 0;
  color: #fff;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(54px, 5.2vw, 94px);
  font-weight: 700;
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.outsourcing-cta h2 span {
  display: inline;
  color: #8ccc33;
}

.outsourcing-cta p {
  max-width: 650px;
  margin: clamp(30px, 3.5vw, 52px) 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.45vw, 27px);
  line-height: 1.25;
  text-wrap: balance;
}

.outsourcing-cta__button {
  min-width: 290px;
  min-height: 60px;
  margin-top: 34px;
  padding-inline: 32px;
  color: #07213a;
  background: #aed85c;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.outsourcing-cta__button:hover,
.outsourcing-cta__button:focus-visible {
  color: #07213a;
  background: #bce66a;
}

@media (max-width: 1100px) {
  .outsourcing-cta {
    min-height: 760px;
  }

  .outsourcing-cta__media img {
    object-position: 62% center;
  }

  .outsourcing-cta__overlay {
    background:
      linear-gradient(
        90deg,
        rgba(7, 33, 58, 0.98) 0%,
        rgba(7, 33, 58, 0.92) 40%,
        rgba(7, 33, 58, 0.5) 68%,
        rgba(7, 33, 58, 0.15) 100%
      );
  }

  .outsourcing-cta__content {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .outsourcing-cta {
    min-height: 760px;
    align-items: end;
  }

  .outsourcing-cta__media img {
    object-position: 68% center;
  }

  .outsourcing-cta__overlay {
    background:
      linear-gradient(
        180deg,
        rgba(7, 33, 58, 0.18) 0%,
        rgba(7, 33, 58, 0.48) 34%,
        rgba(7, 33, 58, 0.94) 68%,
        rgba(7, 33, 58, 1) 100%
      );
  }

  .outsourcing-cta__inner {
    padding-block: 220px 58px;
  }

  .outsourcing-cta__content {
    max-width: none;
  }

  .outsourcing-cta__quote {
    height: 50px;
    margin-bottom: 8px;
    font-size: 100px;
  }

  .outsourcing-cta h2 {
    font-size: clamp(44px, 13vw, 64px);
  }

  .outsourcing-cta p {
    margin-top: 26px;
    font-size: 17px;
    line-height: 1.4;
  }

  .outsourcing-cta__button {
    width: 100%;
    min-width: 0;
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .outsourcing-cta {
    min-height: 700px;
  }

  .outsourcing-cta__inner {
    padding-top: 190px;
  }

  .outsourcing-cta h2 {
    font-size: clamp(39px, 12vw, 52px);
  }
}

/* Guarantees columns */

.guarantees-section {
  padding: clamp(80px, 8vw, 132px) 0;
  background: #edf1f4;
}

.guarantees-title {
  max-width: 1280px;
  margin: 0 auto clamp(74px, 8vw, 132px);
  color: #214f75;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(39px, 4vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 72px);
  align-items: stretch;
}

.guarantee-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.guarantee-column__content {
  flex: 1;
}

.guarantee-column svg{
  height: 97px !important;
  margin-bottom: 2rem;
}

.guarantee-column h3 {
  max-width: 320px;
  margin: 0 0 26px;
  color: #0d2942;
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 800;
  line-height: 1.2;
}

.guarantee-column h3 span {
  display: block;
}

.guarantee-column p {
  max-width: 320px;
  margin: 0;
  color: #23394d;
  font-size: clamp(16px, 1.05vw, 20px);
  line-height: 1.42;
}

.guarantee-column__logo {
  min-height: 140px;
  display: flex;
  align-items: center;
  margin-top: clamp(42px, 5vw, 78px);
}

.guarantee-column__logo img {
  width: auto;
  max-width: min(100%, 250px);
  max-height: 108px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 1100px) {
  .guarantees-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px 48px;
  }

  .guarantee-column h3,
  .guarantee-column p {
    max-width: 420px;
  }

  .guarantee-column__logo {
    margin-top: 36px;
  }
}

@media (max-width: 680px) {
  .guarantees-section {
    padding: 64px 0;
  }

  .guarantees-title {
    margin-bottom: 52px;
    font-size: clamp(36px, 10vw, 50px);
    text-align: left;
  }

  .guarantees-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .guarantee-column {
    padding-bottom: 40px;
    border-bottom: 1px solid #cbd6de;
  }

  .guarantee-column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .guarantee-column h3,
  .guarantee-column p {
    max-width: none;
  }

  .guarantee-column__logo {
    min-height: 90px;
    margin-top: 28px;
  }

  .guarantee-column__logo img {
    max-width: 220px;
    max-height: 90px;
  }
}

/* Contact */

.contact-section {
  padding: clamp(80px, 8vw, 132px) 0;
  color: #fff;
  background: #07213a;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(56px, 7vw, 120px);
  align-items: center;
}

.contact-section__content {
  max-width: 650px;
}

.contact-section__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #8ccc33;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section h2 {
  margin: 0;
  color: #fff;
  font-family:
    "Barlow Condensed",
    "Arial Narrow",
    sans-serif;
  font-size: clamp(52px, 5.2vw, 90px);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-wrap: balance;
}

.contact-section h2 span {
  display: block;
  color: #8ccc33;
}

.contact-section__lead {
  max-width: 590px;
  margin: clamp(28px, 3vw, 44px) 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.5;
}

.contact-section__details {
  display: grid;
  gap: 18px;
  margin-top: clamp(34px, 4vw, 58px);
}

.contact-detail {
  display: flex;
  gap: 18px;
  align-items: center;
  width: fit-content;
  color: #fff;
}

.contact-detail__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #07213a;
  background: #8ccc33;
  border-radius: 50%;
}

.contact-detail__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail small,
.contact-detail strong,
.contact-detail em {
  display: block;
}

.contact-detail small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: #fff;
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.2;
}

.contact-detail em {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-style: normal;
}

.contact-detail:hover strong,
.contact-detail:focus-visible strong {
  color: #8ccc33;
}

/* Contact form */

.contact-form {
  padding: clamp(28px, 3.5vw, 54px);
  color: #102941;
  background: #eef2f5;
  border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.contact-form__honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

.contact-form__field {
  margin-bottom: 18px;
}

.contact-form__field label {
  display: block;
  margin-bottom: 7px;
  color: #102941;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: #102941;
  background: #fff;
  border: 1px solid #cad6df;
  border-radius: 8px;
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder {
  color: #8795a1;
}

.contact-form__field input:hover,
.contact-form__field select:hover,
.contact-form__field textarea:hover {
  border-color: #9fb1bf;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  background: #fff;
  border-color: #4d88b5;
  box-shadow: 0 0 0 4px rgba(77, 136, 181, 0.14);
}

.contact-form__field input:invalid:not(:placeholder-shown),
.contact-form__field textarea:invalid:not(:placeholder-shown) {
  border-color: #c94a4a;
}

.contact-form .h-captcha {
  margin-top: 4px;
  overflow: hidden;
}

.contact-form__submit {
  width: 100%;
  min-height: 60px;
  margin-top: 22px;
  color: #07213a;
  background: #aed85c;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  color: #07213a;
  background: #bce66a;
  transform: translateY(-1px);
}

@media (max-width: 1050px) {
  .contact-section__grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .contact-section__content {
    max-width: 760px;
  }

  .contact-form {
    max-width: 760px;
  }
}

@media (max-width: 640px) {
  .contact-section {
    padding: 64px 0;
  }

  .contact-section h2 {
    font-size: clamp(43px, 12vw, 60px);
  }

  .contact-section__lead {
    font-size: 16px;
  }

  .contact-detail {
    width: 100%;
    align-items: flex-start;
  }

  .contact-detail__icon {
    width: 48px;
    height: 48px;
  }

  .contact-form {
    padding: 24px 18px;
    border-radius: 10px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form__field input,
  .contact-form__field select,
  .contact-form__field textarea {
    font-size: 16px;
  }

  .contact-form .h-captcha {
    max-width: 100%;
    overflow-x: auto;
  }
}