﻿:root {
  --blue: #0b69ff;
  --blue-2: #0095ff;
  --navy: #050b16;
  --navy-2: #071b37;
  --ink: #050d2a;
  --muted: #42506e;
  --line: rgba(0, 149, 255, 0.34);
  --card-line: #d8e2f1;
  --surface: #ffffff;
  --shadow: 0 20px 58px rgba(6, 17, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(0, 112, 255, 0.14), transparent 28rem),
    linear-gradient(#05080f 0 50px, #f4f8ff 50px);
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 3vw, 48px);
  min-height: 94px;
  padding: 12px clamp(46px, 4.3vw, 68px);
  color: #fff;
  background: rgba(3, 7, 14, 0.97);
  box-shadow: 0 1px 0 rgba(0, 149, 255, 0.18);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.34);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 420px;
}

.brand-symbol {
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 149, 255, 0.2));
}

.brand-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.brand-text strong {
  color: #fff;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  white-space: nowrap;
}

.brand-text strong span {
  color: var(--blue);
}

.brand-text strong::first-letter {
  letter-spacing: -0.06em;
}

.brand-text small {
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.1;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 36px);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  color: #fff;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: #00a2ff;
  outline: none;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  min-height: 52px;
  color: #fff;
  background: #0759f7;
  box-shadow: 0 16px 34px rgba(0, 88, 255, 0.32);
  padding: 14px 24px;
  white-space: nowrap;
}

.header-cta svg,
.button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  flex: 0 0 auto;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 418px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 33% 30%, rgba(0, 112, 255, 0.18), transparent 24rem),
    #050b16;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 149, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 149, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 48%);
  opacity: 0.8;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("../assets/hero-access-control.png") right center / auto 100% no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 8, 15, 1) 0%, rgba(5, 8, 15, 0.96) 34%, rgba(5, 8, 15, 0.62) 50%, rgba(5, 8, 15, 0.05) 100%),
    linear-gradient(180deg, rgba(5, 8, 15, 0.05), rgba(5, 8, 15, 0.24));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1408px, calc(100% - 72px));
  min-height: 418px;
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(280px, 1fr);
  align-items: center;
  gap: 42px;
  margin: 0 auto;
  padding: 24px 0 48px;
}

.tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 14px;
  color: #00a2ff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag {
  position: relative;
  border: 1px solid rgba(0, 149, 255, 0.72);
  border-radius: 0;
  padding: 8px 16px;
  background: rgba(0, 75, 150, 0.12);
  box-shadow: 0 0 24px rgba(0, 149, 255, 0.18);
}

.tag::before,
.tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 1px;
  background: var(--blue-2);
}

.tag::before {
  right: 100%;
}

.tag::after {
  left: 100%;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 13px;
  color: #fff;
  font-size: clamp(2.6rem, 4vw, 3.45rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h1 span {
  color: #126fff;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 19px;
  color: #f2f7ff;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.5;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 18px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 0 22px;
}

.hero-points span:first-child {
  padding-left: 0;
}

.hero-points span:last-child {
  border-right: 0;
}

.hero-points svg {
  width: 29px;
  height: 29px;
  fill: var(--blue-2);
  filter: drop-shadow(0 0 8px rgba(0, 149, 255, 0.72));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  min-height: 48px;
  min-width: 216px;
  border: 1px solid transparent;
  padding: 13px 22px;
}

.button-primary {
  color: #fff;
  background: #0759f7;
  box-shadow: 0 16px 32px rgba(0, 88, 255, 0.32);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
}

.whatsapp-button {
  color: #fff;
  background: #13b95f;
  box-shadow: 0 16px 32px rgba(19, 185, 95, 0.28);
}

.feature-band {
  position: relative;
  z-index: 5;
  width: min(1430px, calc(100% - 110px));
  margin: -54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 12px 12px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 13, 27, 0.98), rgba(4, 22, 49, 0.98)),
    linear-gradient(rgba(0, 149, 255, 0.08) 1px, transparent 1px);
  box-shadow: 0 18px 46px rgba(0, 27, 75, 0.32);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.feature-band article {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  min-height: 80px;
  border-right: 1px solid rgba(0, 149, 255, 0.28);
  padding: 0 26px;
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: #05a8ff;
  background: radial-gradient(circle, rgba(0, 149, 255, 0.18), rgba(0, 29, 70, 0.12));
  filter: drop-shadow(0 0 18px rgba(0, 149, 255, 0.35));
}

.feature-icon svg {
  width: 62px;
  height: 62px;
  fill: currentColor;
}

.feature-band h2 {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.12;
}

.feature-band p {
  margin: 0;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 500;
  line-height: 1.42;
}

.solutions {
  width: min(1408px, calc(100% - 72px));
  margin: 0 auto;
  padding: 26px 0 18px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.86fr);
  align-items: end;
  gap: clamp(32px, 8vw, 120px);
  margin-bottom: 24px;
}

.section-heading h2 {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.section-heading > p {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
}

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

.solution-card {
  position: relative;
  min-width: 0;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 14px 34px rgba(6, 17, 51, 0.12);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.88 / 1;
  object-fit: cover;
}

.card-icon {
  position: absolute;
  top: 79px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: #104caa;
  box-shadow: 0 8px 22px rgba(6, 17, 51, 0.22);
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.solution-card h3 {
  margin: 20px 14px 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.2;
}

.solution-card p {
  min-height: 52px;
  margin: 0 14px 12px;
  color: #17213f;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.42;
}

.solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 14px 16px;
  color: #0759f7;
  font-size: 0.82rem;
  font-weight: 900;
}

.media-showcase {
  width: min(1408px, calc(100% - 72px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.media-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  align-items: end;
  gap: clamp(30px, 7vw, 110px);
  margin-bottom: 22px;
}

.media-heading h2 {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.media-heading > p {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.45;
}

.media-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 18px;
  border: 1px solid var(--line);
  padding: 14px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(3, 8, 16, 0.98), rgba(4, 25, 59, 0.98)),
    linear-gradient(rgba(0, 149, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px;
  box-shadow: 0 18px 46px rgba(0, 27, 75, 0.24);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}

.media-screen {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(0, 149, 255, 0.26);
  background: #030812;
}

.media-screen img,
.media-screen video {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-screen video {
  background: #000;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 560px;
  border: 1px solid rgba(0, 149, 255, 0.28);
  padding: 16px 18px;
  background: rgba(3, 8, 16, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.media-caption span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--blue-2);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-caption h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 900;
  line-height: 1.05;
}

.media-caption p {
  margin: 0;
  color: #e9f3ff;
  font-size: 0.95rem;
  line-height: 1.45;
}

.media-side {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-width: 0;
}

.media-actions {
  display: grid;
  grid-template-columns: 48px 48px;
  gap: 10px;
}

.media-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(0, 149, 255, 0.32);
  border-radius: 8px;
  color: #fff;
  background: rgba(0, 149, 255, 0.1);
  cursor: pointer;
}

.media-button:hover,
.media-button:focus-visible {
  background: rgba(0, 149, 255, 0.2);
  outline: none;
}

.media-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.media-track {
  display: grid;
  gap: 10px;
  align-content: start;
}

.media-thumb {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 1px solid rgba(0, 149, 255, 0.2);
  border-radius: 8px;
  padding: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  text-align: left;
}

.media-thumb.is-active,
.media-thumb:hover,
.media-thumb:focus-visible {
  border-color: rgba(0, 149, 255, 0.74);
  background: rgba(0, 149, 255, 0.14);
  outline: none;
}

.media-thumb img {
  width: 92px;
  height: 58px;
  border-radius: 6px;
  object-fit: cover;
}

.media-thumb strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
}

.media-thumb span {
  color: #b7d6ff;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.45fr auto auto;
  align-items: center;
  gap: 24px;
  margin-top: 0;
  padding: 16px clamp(42px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 8, 16, 0.99), rgba(2, 19, 45, 0.99) 62%, rgba(0, 38, 102, 0.98)),
    linear-gradient(rgba(0, 149, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 44px 44px;
}

.about-strip > div:not(.strip-copy) {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 74px;
  border-right: 1px solid rgba(0, 149, 255, 0.28);
  padding-right: 24px;
}

.strip-icon {
  color: #00a2ff;
  filter: drop-shadow(0 0 12px rgba(0, 149, 255, 0.55));
}

.strip-icon svg {
  width: 48px;
  height: 48px;
  fill: currentColor;
}

.about-strip strong {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.08;
}

.strip-copy h2 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 900;
  line-height: 1.12;
}

.strip-copy p {
  margin: 0;
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.35;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  max-height: 58px !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  background: #13b95f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34), 0 0 28px rgba(19, 185, 95, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px);
  outline: none;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38), 0 0 34px rgba(19, 185, 95, 0.42);
}

.whatsapp-float svg {
  display: block;
  width: 30px !important;
  min-width: 30px !important;
  max-width: 30px !important;
  height: 30px !important;
  min-height: 30px !important;
  max-height: 30px !important;
  fill: currentColor !important;
  flex: 0 0 auto;
}

section,
.strip-copy {
  scroll-margin-top: 106px;
}

@media (max-width: 1280px) {
  .site-header {
    grid-template-columns: auto auto auto;
    gap: 14px;
  }

  .main-nav {
    order: 4;
    grid-column: 1 / -1;
  }

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

  .feature-band article:nth-child(3) {
    border-right: 0;
  }

  .feature-band article:nth-child(n + 4) {
    margin-top: 10px;
  }

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

  .strip-copy,
  .about-strip > .button {
    grid-column: span 3;
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    min-height: 78px;
  }

  .brand {
    min-width: 0;
  }

  .brand-symbol {
    width: 56px;
    height: 56px;
  }

  .brand-text strong {
    font-size: 1.8rem;
  }

  .brand-text small {
    display: none;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .main-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 2px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: rgba(3, 7, 14, 0.98);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    min-height: 44px;
    border-radius: 8px;
    padding: 0 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a.is-active,
  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--blue-2);
    background: rgba(0, 149, 255, 0.1);
    outline: none;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1408px);
  }

  .hero-media {
    opacity: 0.62;
    background-size: cover;
    background-position: center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(5, 8, 15, 0.99), rgba(5, 8, 15, 0.76));
  }

  .hero-points span {
    width: 50%;
    border-right: 0;
    padding: 6px 14px 6px 0;
  }

  .feature-band {
    width: min(100% - 32px, 1430px);
    grid-template-columns: 1fr 1fr;
    margin-top: -36px;
  }

  .feature-band article {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 149, 255, 0.28);
    padding: 12px;
  }

  .feature-band article:nth-child(n + 4) {
    margin-top: 0;
  }

  .feature-band article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .solutions {
    width: min(100% - 32px, 1408px);
  }

  .section-heading,
  .media-heading {
    grid-template-columns: 1fr;
  }

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

  .media-showcase {
    width: min(100% - 32px, 1408px);
  }

  .media-shell {
    grid-template-columns: 1fr;
  }

  .media-actions {
    grid-template-columns: 48px 48px;
  }

  .about-strip {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

  .about-strip > div:not(.strip-copy) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 149, 255, 0.28);
    padding-bottom: 14px;
  }

  .strip-copy,
  .about-strip > .button {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-symbol {
    width: 46px;
    height: 46px;
  }

  .brand-text strong {
    font-size: 1.42rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 34px 0 58px;
  }

  h1 {
    font-size: clamp(2.3rem, 12vw, 3.45rem);
  }

  .tag {
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-points span {
    width: auto;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .whatsapp-float {
    width: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
  }

  .whatsapp-float svg {
    width: 28px !important;
    min-width: 28px !important;
    max-width: 28px !important;
    height: 28px !important;
    min-height: 28px !important;
    max-height: 28px !important;
  }

  .feature-band,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .media-screen,
  .media-screen img,
  .media-screen video {
    min-height: 280px;
  }

  .media-caption {
    position: static;
    max-width: none;
    border-inline: 0;
    border-bottom: 0;
  }

  .media-actions {
    grid-template-columns: 1fr 1fr;
  }

  .media-thumb {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .media-thumb img {
    width: 82px;
    height: 54px;
  }

  .feature-band article,
  .feature-band article:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(0, 149, 255, 0.28);
  }

  .feature-band article:last-child {
    border-bottom: 0;
  }

  .card-icon {
    top: clamp(76px, 29vw, 150px);
  }
}
