@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
:root {
  --navy: #09283d;
  --navy2: #0d354d;
  --ink: #102d41;
  --teal: #0b8797;
  --mint: #23bfa8;
  --orange: #f58216;
  --ice: #eef5f7;
  --line: #b9cbd2;
  --muted: #627784;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: white;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
nav {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 58, 77, 0.1);
}
.logo img {
  display: block;
  width: 164px;
}
.navlinks {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.navlinks a:hover {
  color: var(--teal);
}
.navright {
  display: flex;
  align-items: center;
  gap: 22px;
}
.langs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 19px;
  line-height: 1;
}
.langs a,
.langs b {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-weight: 400;
}
.langs a {
  opacity: 0.62;
  transition: opacity 0.2s, transform 0.2s;
}
.langs a:hover,
.langs a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
}
.langs b {
  background: #eef3f5;
  box-shadow: 0 0 0 1px #cad7dc;
}

.langs img {
  display: block;
  width: 23px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(9, 40, 61, 0.16);
}
.langs b img {
  width: 24px;
  height: 17px;
}
.footerFlags {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.footerFlags img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
}

.navcta {
  background: var(--orange);
  color: #fff;
  padding: 13px 17px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}
.hero {
  min-height: calc(100vh - 82px);
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 80px 5vw 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
  mask-image: linear-gradient(to bottom, black, transparent);
}
.heroGlow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.heroGlow.one {
  width: 550px;
  height: 550px;
  background: radial-gradient(
    circle,
    rgba(12, 142, 160, 0.23),
    transparent 68%
  );
  right: 4%;
  top: 2%;
}
.heroGlow.two {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(245, 130, 22, 0.12),
    transparent 70%
  );
  left: -10%;
  bottom: -20%;
}
.heroGrid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 6vw;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: auto;
}
.heroGrid > * {
  min-width: 0;
}
.heroCopy {
  max-width: 770px;
}
.kicker,
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.17em;
  font-weight: 800;
  color: var(--teal);
}
.kicker {
  color: #8fd2db;
  display: flex;
  align-items: center;
  gap: 10px;
}
.kicker i {
  width: 22px;
  height: 2px;
  background: var(--orange);
}
h1 {
  font-size: clamp(48px, 5.5vw, 84px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  margin: 23px 0 28px;
}
h1 em,
h2 em {
  font-style: normal;
  color: #73d0d9;
}
.heroCopy > p {
  font-size: 18px;
  line-height: 1.7;
  color: #b9cad4;
  max-width: 680px;
}
.heroActions {
  display: flex;
  gap: 12px;
  margin-top: 38px;
}
.button {
  padding: 16px 21px;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
}
.orange {
  background: var(--orange);
  color: white;
}
.ghost {
  border: 1px solid #537083;
  color: white;
}
.orchestra {
  height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}
.orbit {
  position: absolute;
  border: 1px solid rgba(113, 210, 219, 0.28);
  border-radius: 50%;
}
.orbit1 {
  width: 330px;
  height: 330px;
  animation: spin 34s linear infinite;
}
.orbit2 {
  width: 510px;
  height: 510px;
  animation: spin 48s linear infinite reverse;
}
.orbit:before,
.orbit:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 18px var(--orange);
}
.orbit:before {
  left: 50%;
  top: -4px;
}
.orbit:after {
  left: 50%;
  bottom: -4px;
}
.orbit span {
  position: absolute;
  background: var(--navy2);
  border: 1px solid #376078;
  padding: 9px 13px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.orbit1 span:first-child {
  left: -32px;
  top: 50%;
}
.orbit1 span:last-child {
  right: -26px;
  top: 32%;
}
.orbit2 span:first-child {
  right: -22px;
  top: 54%;
}
.orbit2 span:last-child {
  left: -42px;
  top: 28%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.orbit span {
  animation: counter 34s linear infinite;
}
@keyframes counter {
  to {
    transform: rotate(-360deg);
  }
}
.core {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(145deg, #114a61, #092a3f);
  box-shadow:
    0 0 0 18px rgba(20, 132, 150, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.turbina {
  display: flex;
  align-items: center;
}
.turbina img {
  width: 190px;
  height: auto;
  object-fit: contain;
}
.core .turbina {
  width: 74px;
}
.core .turbina img {
  width: 100%;
  max-height: 74px;
}
.core > b {
  font-size: 12px;
  line-height: 1.4;
  color: #9db5c1;
  margin-top: 12px;
}
.heroFoot {
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #88a3b1;
}
.trust,
.evolution,
.capabilities,
.solutions,
.about {
  padding: 115px max(5vw, 28px);
  max-width: 1500px;
  margin: auto;
}
.sectionHead {
  max-width: 1030px;
}
.sectionHead.row {
  max-width: none;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
}
.sectionHead h2,
.platform h2,
.method h2,
.footerTop h2,
.about h2 {
  font-size: clamp(37px, 4vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  margin: 15px 0 20px;
}
.sectionHead > p:not(.eyebrow),
.sectionHead.row > p,
.platformCopy > p,
.methodIntro > p,
.aboutCopy > p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.brandGrid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-top: 55px;
}
.brandGrid div {
  height: 118px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 27px;
  background: #f1f5f6;
}
.brandGrid img {
  max-width: 125px;
  max-height: 58px;
  filter: grayscale(1);
  opacity: 0.65;
  transition: 0.25s;
}
.brandGrid img[alt="Neoenergia"] {
  max-width: 155px;
  max-height: 72px;
  transform: scale(1.18);
}
.brandGrid img[alt="Teleperformance"] {
  max-width: 170px;
  max-height: 75px;
  transform: scale(1.24);
}
.brandGrid div:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.05);
}
.numbers {
  background: var(--teal);
  color: white;
  padding: 100px 5vw;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 80px;
}
.numIntro h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 15px 0;
}
.eyebrow.light {
  color: #a9e6e6;
}
.numberGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.numberGrid article {
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.numberGrid strong {
  font-size: 38px;
  letter-spacing: -0.05em;
}
.numberGrid span {
  font-size: 12px;
  line-height: 1.45;
  color: #ccebec;
}
.evolution .sectionHead {
  max-width: 1050px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}
.timeline article {
  padding: 35px 34px;
  border: 1px solid var(--line);
  min-height: 270px;
  background: #e7eef1;
}
.timeline article + article {
  border-left: 0;
}
.timeline span {
  color: var(--orange);
  font-size: 15px;
  font-weight: 800;
}
.timeline b {
  display: block;
  font-size: 22px;
  margin: 48px 0 13px;
}
.timeline p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}
.timeline .active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.timeline .active p {
  color: #afc4d0;
}
.statement {
  margin-top: 45px;
  font-size: 27px;
  line-height: 1.35;
  max-width: 950px;
}
.statement strong {
  color: var(--teal);
}
.platform {
  background: var(--navy);
  color: white;
  padding: 120px 6vw;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7vw;
  align-items: center;
}
.platformCopy > .turbina {
  margin: 30px 0 12px;
}
.platformCopy > .turbina img {
  width: 230px;
  height: auto;
}
.platformCopy h2 {
  font-size: clamp(43px, 4.5vw, 68px);
}
.platformCopy > p {
  color: #b7c9d3;
}
.textlink {
  display: inline-flex;
  gap: 20px;
  color: #78d2da;
  font-weight: 800;
  font-size: 13px;
  margin-top: 20px;
}
.platformVisual {
  position: relative;
  padding: 55px 0;
}
.platformVisual > img {
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  width: 100%;
}
.floatCard {
  position: absolute;
  background: white;
  color: var(--ink);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  padding: 16px 18px;
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.floatCard.top {
  top: 15px;
  right: 20px;
}
.floatCard.top i {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  margin-right: 7px;
}
.floatCard.bottom {
  left: -35px;
  bottom: 5px;
  display: flex;
  flex-direction: column;
  letter-spacing: 0;
  font-size: 13px;
}
.floatCard.bottom span {
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 5px;
}
.capGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 60px;
}
.capGrid article {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  margin: -1px 0 0 -1px;
  background: #e7eef1;
}
.capGrid span {
  font-size: 15px;
  color: var(--orange);
  font-weight: 800;
}
.capGrid h3 {
  font-size: 23px;
  margin: 48px 0 12px;
}
.capGrid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.equation {
  background: linear-gradient(135deg, #0b3047, #0b8797);
  color: white;
  padding: 110px 6vw;
}
.equationTitle {
  max-width: 870px;
}
.equationTitle h2 {
  font-size: clamp(40px, 4.5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  margin: 15px 0 50px;
}
.equationFlow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
}
.equationFlow article {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px;
}
.equationFlow b {
  font-size: 15px;
  color: #fbb16e;
}
.equationFlow h3 {
  font-size: 22px;
  margin: 38px 0 12px;
}
.equationFlow p {
  font-size: 16px;
  line-height: 1.55;
  color: #c8dfe5;
}
.equationFlow i {
  align-self: center;
  font-size: 30px;
  color: var(--orange);
  font-style: normal;
}
.equationResult {
  margin-top: 18px;
  border: 1px solid var(--orange);
  padding: 18px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.caseList {
  margin-top: 60px;
  display: grid;
  gap: 12px;
}
.caseList article {
  display: grid;
  grid-template-columns: 80px 1fr 60px;
  gap: 35px;
  padding: 38px 10px;
  border: 1px solid #d2dee2;
  background: #e7eef1;
  border-radius: 4px;
  align-items: center;
}
.caseNo {
  font-size: 16px;
  color: var(--orange);
  font-weight: 800;
}
.caseBody {
  display: grid;
  grid-template-columns: 0.35fr 1fr 1fr;
  gap: 38px;
  align-items: center;
}
.caseTag {
  font-size: 14px !important;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--teal) !important;
  font-weight: 800;
}
.caseBody h3 {
  font-size: 25px;
  letter-spacing: -0.025em;
  margin: 0;
}
.caseBody > p {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.caseBody > div {
  grid-column: 2/-1;
  display: flex;
  gap: 8px;
}
.caseBody span {
  font-size: 13px;
  background: #dce6e9;
  padding: 7px 10px;
  border-radius: 15px;
}
.caseList article > a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.moreCases {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
  background: #e3ebee;
  border: 1px solid #cbd9de;
  padding: 18px 20px;
  border-radius: 4px;
}
.moreCases span {
  font-size: 13px;
  color: var(--navy);
  margin-right: 12px;
  font-weight: 800;
}
.moreCases b {
  font-size: 13px;
  color: var(--navy);
  background: white;
  border: 1px solid #b8cbd2;
  padding: 10px 13px;
  border-radius: 20px;
}
.method {
  background: #f0f5f6;
  padding: 115px 6vw;
}
.methodIntro {
  max-width: 950px;
}
.methodIntro > p {
  max-width: 700px;
}
.method ol {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: steps;
}
.method li {
  counter-increment: steps;
  padding: 28px;
  border-top: 1px solid #bfd0d6;
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 155px;
  background: #e2eaed;
  border: 6px solid #f0f5f6;
}
.method li:before {
  content: "0" counter(steps);
  font-size: 16px;
  color: var(--orange);
  font-weight: 800;
}
.method li b {
  font-size: 22px;
  color: var(--navy);
}
.method li span {
  font-size: 16px;
  color: var(--navy);
  color: var(--muted);
  line-height: 1.5;
}
.methodClaim {
  font-size: 32px;
  letter-spacing: -0.03em;
  margin-top: 55px;
}
.methodClaim em {
  font-style: normal;
  color: var(--teal);
}
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 7vw;
  align-items: center;
}
.aboutPhoto {
  position: relative;
}
.aboutPhoto img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 5px;
}
.aboutPhoto div {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: white;
  padding: 11px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.aboutCopy h2 em {
  color: var(--teal);
}
.aboutTags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.aboutTags span {
  border: 1px solid var(--line);
  padding: 10px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
}
footer {
  background: var(--navy);
  color: white;
  padding: 110px 6vw 30px;
}
.footerTop {
  max-width: 980px;
}
.orangeText {
  color: var(--orange);
}
.footerTop > p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.65;
  color: #b3c7d1;
  max-width: 750px;
}
.footerTop .button {
  margin-top: 24px;
}
.footerBottom {
  border-top: 1px solid #2b4d61;
  margin-top: 95px;
  padding-top: 48px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
}
.footerBrands{display:flex;flex-direction:column;align-items:flex-start;gap:26px}.footerBrands>img{width:220px;background:transparent;padding:0;border-radius:0}.footerBrands .turbina{background:transparent}.footerBrands .turbina img{width:190px;height:auto}
.footerBottom > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #91a9b6;
}
.footerBottom b {
  color: white;
  margin-bottom: 6px;
}
.socials{display:flex!important;flex-direction:row!important;flex-wrap:wrap;gap:8px!important;margin-top:8px}.socials a{border:1px solid #3a5b6d;padding:7px 9px;border-radius:16px;color:#c6d5dc}
.legal {
  border-top: 1px solid #2b4d61;
  margin-top: 45px;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: 0.12em;
  color: #7893a2;
}
@media (min-width: 701px) {
  .eyebrow,
  .kicker {
    font-size: 13px;
  }
  .numberGrid span {
    font-size: 14px;
  }
  .moreCases span,
  .moreCases b {
    font-size: 13px;
  }
}
@media (max-width: 1100px) {
  .navlinks {
    display: none;
  }
  .heroGrid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .orchestra {
    display: grid;
    height: 420px;
    margin: -20px auto -35px;
    width: 100%;
  }
  .orbit1 {
    width: 255px;
    height: 255px;
  }
  .orbit2 {
    width: 390px;
    height: 390px;
  }
  .core {
    width: 165px;
    height: 165px;
  }
  .core .turbina {
    width: 62px;
  }
  .heroCopy {
    max-width: 900px;
  }
  .hero {
    min-height: 1050px;
  }
  .brandGrid {
    grid-template-columns: repeat(4, 1fr);
  }
  .sectionHead.row,
  .numbers,
  .platform,
  .about {
    grid-template-columns: 1fr;
  }
  .platformVisual {
    max-width: 800px;
  }
  .caseBody {
    grid-template-columns: 1fr;
  }
  .caseBody > div {
    grid-column: auto;
  }
  .footerBottom {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  .footerBottom > div:last-child {
    grid-column: 2/4;
  }
}
@media (max-width: 700px) {
  nav {
    height: 70px;
    padding: 0 20px;
  }
  .logo img {
    width: 122px;
  }
  .langs {
    display: flex;
    gap: 4px;
    font-size: 16px;
  }
  .langs a,
  .langs b {
    width: 23px;
    height: 23px;
  }
  .navright {
    gap: 8px;
  }
  .navcta {
    font-size: 10px;
    padding: 11px;
  }
  .hero {
    padding: 58px 24px 20px;
    min-height: 980px;
  }
  .heroCopy > p {
    font-size: 16px;
  }
  .heroActions {
    flex-direction: column;
    align-items: flex-start;
  }
  .orchestra {
    height: 320px;
    margin: -5px auto -5px;
  }
  .orbit1 {
    width: 190px;
    height: 190px;
  }
  .orbit2 {
    width: 285px;
    height: 285px;
  }
  .orbit span {
    padding: 7px 9px;
    font-size: 9px;
  }
  .orbit1 span:first-child {
    left: -25px;
  }
  .orbit1 span:last-child {
    right: -20px;
  }
  .orbit2 span:first-child {
    right: -15px;
  }
  .orbit2 span:last-child {
    left: -28px;
  }
  .core {
    width: 128px;
    height: 128px;
  }
  .core .turbina {
    width: 50px;
  }
  .core > b {
    font-size: 10px;
    margin-top: 7px;
  }
  .heroFoot span {
    display: none;
  }
  .trust,
  .evolution,
  .capabilities,
  .solutions,
  .about {
    padding: 80px 24px;
  }
  .sectionHead.row {
    gap: 10px;
  }
  .brandGrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brandGrid div {
    height: 95px;
  }
  .numbers {
    padding: 75px 24px;
    gap: 35px;
  }
  .numberGrid {
    grid-template-columns: 1fr 1fr;
  }
  .numberGrid article {
    padding: 20px;
  }
  .numberGrid strong {
    font-size: 28px;
  }
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline article + article {
    border-left: 1px solid var(--line);
    border-top: 0;
  }
  .timeline span,
  .capGrid span,
  .equationFlow b,
  .caseNo,
  .method li:before {
    font-size: 13px;
  }
  .timeline p,
  .capGrid p,
  .equationFlow p,
  .caseBody > p,
  .method li span {
    font-size: 14px;
  }
  .caseTag {
    font-size: 12px !important;
  }
  .caseBody span {
    font-size: 11px;
  }
  .moreCases {
    gap: 9px;
    padding: 16px;
  }
  .moreCases span {
    width: 100%;
    font-size: 13px;
    margin: 0 0 3px;
  }
  .moreCases b {
    font-size: 12px;
  }
  .platform {
    padding: 80px 24px;
  }
  .floatCard {
    display: none;
  }
  .capGrid {
    grid-template-columns: 1fr;
  }
  .equation {
    padding: 80px 24px;
  }
  .equationFlow {
    grid-template-columns: 1fr;
  }
  .equationFlow i {
    transform: none;
    display: block;
    width: 100%;
    text-align: center;
    line-height: 1;
    padding: 2px 0;
  }
  .caseList article {
    grid-template-columns: 35px 1fr;
  }
  .caseList article > a {
    display: none;
  }
  .caseBody {
    gap: 14px;
  }
  .method {
    padding: 80px 24px;
  }
  .method ol {
    grid-template-columns: 1fr 1fr;
  }
  .aboutPhoto img {
    height: 400px;
  }
  .footerBottom {
    grid-template-columns: 1fr 1fr;
  }
  .footerBrands {
    grid-column: 1/-1;
  }
  .footerBottom > div:last-child {
    grid-column: 1/-1;
  }
  footer {
    padding: 80px 24px 25px;
  }
}

@media (max-width: 420px) {
  nav {
    padding: 0 14px;
  }
  .logo img {
    width: 108px;
  }
  .navcta {
    padding: 10px 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .orbit,
  .orbit span {
    animation: none;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
