:root {
  --blue: #004f9f;
  --bright-blue: #009fe3;
  --deep-blue: #00498f;
  --text: #464646;
  --muted: #737373;
  --light: #f7f7f7;
  --line: #d6dce3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: relative;
  z-index: 20;
  background: #fff;
}

.utility-bar {
  height: 21px;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.utility-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  width: min(1140px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
}

.utility-inner a {
  position: relative;
  opacity: .98;
}

.utility-inner a::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 50%;
}

.utility-inner span {
  width: 1px;
  height: 13px;
  background: rgba(255, 255, 255, .45);
}

.main-nav {
  display: grid;
  grid-template-columns: 180px 1fr 140px;
  align-items: center;
  width: min(1260px, calc(100% - 88px));
  height: 169px;
  margin: 0 auto;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 78px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  white-space: nowrap;
}

.social-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
  color: #8b8b8b;
  font-size: 16px;
  font-weight: 600;
}

.menu-button {
  display: none;
  width: 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 15px;
  height: 2px;
  margin: 4px 0;
  background: #777;
}

.hero {
  position: relative;
  overflow: hidden;
  height: 411px;
  background: #011a31;
}

.hero-track,
.hero-slide,
.hero-slide img {
  width: 100%;
  height: 100%;
}

.hero-track {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  object-fit: cover;
  object-position: center center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 0;
  color: rgba(255, 255, 255, .95);
  background: rgba(0, 73, 144, .58);
  font-size: 52px;
  font-weight: 200;
  line-height: 40px;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-prev {
  left: 15px;
}

.hero-next {
  right: 15px;
}

.hero-dots,
.brand-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero-dots {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  z-index: 2;
}

.hero-dots button,
.brand-dots span {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d9d9d9;
}

.hero-dots button.is-active,
.brand-dots .is-active {
  background: var(--bright-blue);
}

.intro-section {
  position: relative;
  display: grid;
  grid-template-columns: 560px 1fr;
  align-items: start;
  width: min(1340px, calc(100% - 96px));
  min-height: 404px;
  margin: 64px auto 0;
}

.intro-copy {
  position: relative;
  z-index: 2;
  width: 557px;
  min-height: 360px;
  padding: 46px 42px 36px;
  color: #fff;
  background: #008dd2;
}

.intro-copy h3 {
  margin: 0 0 30px;
  font-size: 27px;
  font-weight: 600;
  line-height: 1.29;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.pill-button.light {
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
}

.pill-button.outline {
  border: 1px solid #64b8e7;
  color: var(--bright-blue);
}

.pill-button.solid {
  color: #fff;
  background: var(--bright-blue);
}

.pill-button.white {
  color: #6f6f6f;
  background: #fff;
}

.map-image {
  width: 820px;
  max-width: none;
  margin: 0 0 0 -16px;
}

.solutions-section {
  position: relative;
  overflow: hidden;
  min-height: 844px;
  padding: 0;
  background: #fff;
}

.section-bg-a {
  position: absolute;
  top: -68px;
  left: 0;
  width: 372px;
  height: 658px;
  background: url("assets/img/agis-a.svg") left top / contain no-repeat;
  opacity: .52;
}

.solution-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
}

.solution-inner h1 {
  width: 100%;
  margin: 36px auto 52px;
  color: var(--bright-blue);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid #d7e0ea;
}

.tabs button {
  min-height: 42px;
  border: 0;
  color: #777;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.tabs button.is-active {
  color: var(--blue);
  border-bottom: 2px solid var(--blue);
}

.solution-showcase {
  position: relative;
  min-height: 548px;
  padding: 50px 0 0;
  border-bottom: 1px solid #e3e3e3;
}

.solution-illustration img {
  width: 594px;
  margin: 0 auto;
}

.solution-products {
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.solution-products article {
  text-align: center;
}

.solution-products img {
  height: 100px;
  margin: 0 auto 7px;
  object-fit: contain;
}

.solution-products strong,
.solution-products a,
.solution-caption,
.solution-more {
  display: none;
}

.business-units {
  margin: 0 auto;
  padding: 0;
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px 31px;
  width: min(1358px, calc(100% - 80px));
  margin: 0 auto;
}

.unit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 255px;
  background: #f7f7f7;
}

.unit-card img {
  width: 130px;
  height: 130px;
  margin-bottom: 28px;
  object-fit: contain;
}

.unit-card span {
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
}

.ecommerce-section {
  min-height: 573px;
  margin-top: 84px;
  background: url("assets/img/ecommerce-bg.webp") left top / auto 573px no-repeat;
}

.ecommerce-content {
  width: min(600px, calc(100% - 70px));
  margin-left: calc(50% + 3px);
  padding-top: 74px;
  text-align: center;
}

.ecommerce-content h2,
.news-content h2,
.brands-section h2,
.cta-content h2 {
  margin: 0;
  color: var(--blue);
  font-size: 43px;
  font-weight: 700;
  line-height: 1.1;
}

.ecommerce-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin: 54px 0 33px;
}

.ecommerce-cards article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 192px;
  padding: 25px 16px 14px;
  background: #f7f7f7;
}

.ecommerce-cards img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.ecommerce-cards strong {
  color: var(--blue);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
}

.news-section {
  position: relative;
  min-height: 683px;
  overflow: hidden;
}

.news-section::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 56%;
  width: 516px;
  height: 343px;
  background: url("assets/img/blog-bg.svg") center / contain no-repeat;
  opacity: .12;
}

.news-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 45px;
  width: min(1200px, calc(100% - 80px));
  margin: 0 auto;
  padding-top: 113px;
}

.ad-card img {
  width: 300px;
  height: 500px;
  object-fit: cover;
}

.news-content {
  padding-top: 2px;
}

.news-content h2 {
  margin: 0 0 32px;
}

.news-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 0 36px;
}

.news-main img {
  width: 430px;
  height: 190px;
  object-fit: cover;
}

.news-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 190px;
}

.news-text h3 {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 24px;
  font-weight: 800;
  line-height: 1.13;
}

.news-text a {
  color: #1b75bb;
  font-size: 14px;
  font-weight: 700;
}

.brands-section {
  padding: 14px 0 183px;
  text-align: center;
}

.brands-section h2 {
  margin-bottom: 40px;
  font-size: 39px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  width: min(1360px, calc(100% - 80px));
  min-height: 100px;
  margin: 0 auto;
  gap: 42px;
}

.brand-row img {
  width: 150px;
  max-height: 100px;
  margin: 0 auto;
  object-fit: contain;
}

.brand-row-mobile {
  display: none;
}

.brand-dots {
  margin-top: 31px;
}

.cta-section {
  min-height: 539px;
  background: url("assets/img/cta-bg.webp") center top / cover no-repeat;
}

.cta-content {
  width: min(540px, calc(100% - 70px));
  margin-left: calc(50% + 32px);
  padding-top: 103px;
  color: #fff;
}

.cta-content h2 {
  color: #fff;
  font-size: 44px;
}

.cta-content ul {
  margin: 26px 0 25px;
  padding: 0;
  list-style: none;
}

.cta-content li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 30px;
  font-size: 17px;
  font-weight: 800;
}

.cta-content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 2px;
}

.site-footer {
  color: #fff;
  background: var(--blue);
}

.footer-inner {
  display: grid;
  grid-template-columns: 240px 230px 290px 290px;
  gap: 110px;
  width: min(1160px, calc(100% - 92px));
  min-height: 527px;
  margin: 0 auto;
  padding-top: 58px;
}

.footer-logo {
  width: 142px;
  margin-bottom: 68px;
}

.badges {
  display: grid;
  grid-template-columns: 130px 70px;
  align-items: center;
  gap: 36px 28px;
  margin-bottom: 75px;
}

.badges img {
  width: auto;
  max-width: 132px;
  max-height: 90px;
  object-fit: contain;
}

.badges img:nth-child(3) {
  grid-column: 2;
  width: 75px;
  max-height: 106px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 700;
}

.footer-col h3 {
  margin: 0 0 22px;
  color: #9fd7f8;
  font-size: 19px;
  font-weight: 700;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 9px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  width: min(1160px, calc(100% - 92px));
  min-height: 84px;
  margin: 0 auto;
  padding-bottom: 26px;
}

.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  font-weight: 700;
}

.footer-bottom nav {
  display: flex;
  gap: 48px;
}

.superix {
  justify-self: end;
}

.superix img {
  width: 105px;
}

.whatsapp {
  position: fixed;
  right: 31px;
  top: 55%;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  padding: 5px 15px 5px 31px;
  border-radius: 999px;
  color: #fff;
  background: #006b55;
  box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
  font-size: 11px;
  font-weight: 700;
}

.whatsapp::before {
  content: "";
  position: absolute;
  left: 10px;
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
}

.cookie-box {
  position: fixed;
  left: 14px;
  bottom: 230px;
  z-index: 40;
  width: 509px;
  min-height: 260px;
  padding: 27px 30px 25px;
  color: #fff;
  background: rgba(41, 168, 232, .9);
}

.cookie-box h3 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.05;
}

.cookie-box p {
  margin: 0 0 9px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.cookie-box a {
  display: block;
  margin: 0 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-box button {
  width: 100%;
  height: 28px;
  margin-top: 10px;
  border: 0;
  color: #1175b9;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.cookie-box.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .utility-bar,
  .nav-links,
  .social-links,
  .hero-arrow,
  .whatsapp {
    display: none;
  }

  .main-nav {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    width: 100%;
    height: 68px;
    padding: 0 22px;
  }

  .menu-button {
    display: block;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 77px;
  }

  .hero {
    height: 398px;
  }

  .hero-slide img {
    object-position: center top;
  }

  .hero-dots {
    bottom: -24px;
    gap: 6px;
  }

  .hero-dots button,
  .brand-dots span {
    width: 5px;
    height: 5px;
  }

  .intro-section {
    display: block;
    width: calc(100% - 78px);
    min-height: 0;
    margin: 42px auto 0;
  }

  .intro-copy {
    width: 100%;
    min-height: 302px;
    padding: 28px 23px 24px;
  }

  .intro-copy h3 {
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.25;
  }

  .pill-button {
    min-height: 24px;
    padding: 5px 16px;
    font-size: 10px;
  }

  .map-image {
    display: none;
  }

  .solutions-section {
    min-height: 0;
    padding-bottom: 36px;
  }

  .section-bg-a {
    top: 130px;
    left: -30px;
    width: 194px;
    height: 340px;
  }

  .solution-inner {
    width: 100%;
  }

  .solution-inner h1 {
    width: calc(100% - 22px);
    margin: 16px auto 22px;
    font-size: 25px;
    line-height: 1.04;
  }

  .tabs {
    display: none;
  }

  .solution-showcase {
    min-height: 0;
    padding-top: 12px;
    border-bottom: 0;
  }

  .solution-illustration img {
    width: 310px;
  }

  .solution-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 38px);
    margin: 18px auto 0;
    gap: 12px;
  }

  .solution-products article {
    min-width: 0;
    padding: 12px 4px 10px;
    background: #fff;
    box-shadow: 0 0 0 1px #f3f3f3;
  }

  .solution-products img {
    height: 108px;
  }

  .solution-products strong,
  .solution-products a,
  .solution-caption,
  .solution-more {
    display: block;
  }

  .solution-products strong {
    min-height: 27px;
    color: var(--blue);
    font-size: 11px;
    line-height: 1.08;
  }

  .solution-products a {
    margin-top: 4px;
    color: #47a9df;
    font-size: 10px;
    font-weight: 700;
  }

  .solution-caption {
    margin: 12px 0 22px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
  }

  .solution-more {
    width: max-content;
    margin: 0 auto;
  }

  .business-units {
    padding-top: 0;
  }

  .unit-grid {
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 28px);
    gap: 12px;
  }

  .unit-card {
    height: 150px;
  }

  .unit-card img {
    width: 92px;
    height: 92px;
    margin-bottom: 11px;
  }

  .unit-card span {
    font-size: 12px;
  }

  .ecommerce-section {
    min-height: 0;
    margin-top: 40px;
    padding-bottom: 45px;
    background: none;
  }

  .ecommerce-content {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding-top: 0;
  }

  .ecommerce-content h2,
  .news-content h2,
  .brands-section h2,
  .cta-content h2 {
    font-size: 26px;
    text-align: left;
  }

  .ecommerce-cards {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 20px 0 18px;
  }

  .ecommerce-cards article {
    min-height: 161px;
    padding: 14px 14px 18px;
  }

  .ecommerce-cards strong {
    max-width: 190px;
    font-size: 14px;
  }

  .news-section {
    min-height: 0;
  }

  .news-section::before {
    top: 0;
    right: -34px;
    left: auto;
    width: 225px;
    height: 150px;
  }

  .news-inner {
    display: block;
    width: calc(100% - 28px);
    padding-top: 0;
  }

  .ad-card {
    display: none;
  }

  .news-content h2 {
    margin-bottom: 15px;
  }

  .news-grid {
    display: block;
  }

  .news-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
  }

  .news-text {
    min-height: 0;
    padding: 12px 0 18px;
  }

  .news-text h3 {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.05;
  }

  .news-text a {
    font-size: 11px;
  }

  .brands-section {
    padding: 22px 0 48px;
  }

  .brands-section h2 {
    margin-bottom: 23px;
    text-align: center;
  }

  .brand-row {
    display: none;
  }

  .brand-row-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: calc(100% - 54px);
    gap: 18px;
  }

  .brand-row-mobile img {
    width: 130px;
  }

  .brand-dots {
    margin-top: 28px;
  }

  .cta-section {
    min-height: 368px;
    background-position: 35% top;
    background-size: auto 368px;
  }

  .cta-content {
    width: calc(100% - 34px);
    margin: 0 auto;
    padding-top: 52px;
  }

  .cta-content h2 {
    color: #fff;
    font-size: 26px;
  }

  .cta-content ul {
    margin: 16px 0 15px;
  }

  .cta-content li {
    margin-bottom: 8px;
    padding-left: 22px;
    font-size: 12px;
  }

  .cta-content li::before {
    top: 2px;
    width: 13px;
    height: 13px;
  }

  .site-footer {
    margin-top: 0;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    width: calc(100% - 54px);
    min-height: 0;
    padding-top: 38px;
    gap: 28px;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-logo {
    width: 112px;
    margin: 0 auto 38px;
  }

  .badges {
    grid-template-columns: 118px 64px;
    justify-content: center;
    gap: 22px 18px;
    margin-bottom: 35px;
  }

  .badges img:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .footer-social {
    justify-content: center;
    margin-bottom: 12px;
  }

  .footer-col h3 {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 10px;
  }

  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: calc(100% - 54px);
    min-height: 120px;
    padding: 26px 0 22px;
  }

  .footer-bottom p {
    order: 1;
    margin-bottom: 16px;
    font-size: 9px;
  }

  .footer-bottom nav {
    order: 2;
    justify-content: space-between;
    gap: 10px;
  }

  .footer-bottom a {
    font-size: 10px;
  }

  .superix {
    display: none;
  }

  .cookie-box {
    left: 20px;
    right: auto;
    bottom: 286px;
    width: 270px;
    min-height: 158px;
    padding: 16px 18px 14px;
  }

  .cookie-box h3 {
    margin-bottom: 9px;
    font-size: 12px;
  }

  .cookie-box p,
  .cookie-box a {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .cookie-box button {
    height: 22px;
    margin-top: 7px;
    font-size: 8px;
  }
}
