:root {
  --blue: #034ea2;
  --blue2: #0067d8;
  --dark: #061320;
  --nav: #04101b;
  --white: #fff;
  --text: #101820;
  --line: #e6edf5;
  --shadow: 0 10px 28px rgba(7, 24, 46, 0.16);
  --font: "Arial Narrow", "Roboto Condensed", "Segoe UI", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font);
  background: #fff;
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.topbar {
  height: 40px;
  background: linear-gradient(90deg, #04387f, #075ebc, #033675);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
}
.topbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  padding: 0 30px;
}
.socials {
  display: flex;
  gap: 13px;
  align-items: center;
}
.socials a {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  border-radius: 4px;
  transition: 0.25s;
}
.socials a:hover {
  background: #fff;
  color: var(--blue);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  position: fixed;
  top: 48px;
  left: 15px;
  z-index: 120;
  background: var(--blue);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 10px 13px;
  font-size: 22px;
}
.sidebar {
  position: fixed;
  top: 40px;
  left: 0;
  bottom: 0;
  width: 230px;
  background: linear-gradient(180deg, #071520, #020a11);
  z-index: 70;
  box-shadow: 7px 0 20px rgba(0, 0, 0, 0.25);
  overflow: auto;
}
.brand {
  height: 210px;
  display: grid;
  place-items: center;
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: radial-gradient(circle at top, #0e2a43, #03101b 62%);
}
.brand img {
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.35));
}
.menu {
  display: flex;
  flex-direction: column;
}
.menu a {
  height: 44px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  font-weight: 800;
  font-size: 14px;
  border-left: 5px solid transparent;
  transition: 0.25s;
}
.menu a b {
  font-size: 20px;
  width: 22px;
}
.menu a span {
  margin-left: auto;
}
.menu a:hover,
.menu a.active {
  background: linear-gradient(90deg, #075dc0, #06428b);
  border-left-color: #fff;
}
.quote-btn {
  margin: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  text-align: center;
  background: linear-gradient(135deg, #0068d8, #00387e);
  color: #fff;
  border: 1px solid #1180ff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(0, 85, 180, 0.35);
  transition: 0.25s;
}
.quote-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.12);
}
.site-main {
  margin-left: 230px;
  padding-top: 40px;
}
.hero {
  height: 520px;
  position: relative;
  background: #07111b;
  overflow: hidden;
}
.slider,
.slide {
  position: absolute;
  inset: 0;
}
.slide {
  opacity: 0;
  transition:
    opacity 1.05s ease,
    transform 1.2s ease;
  background-image: linear-gradient(
      90deg,
      rgba(0, 10, 20, 0.95) 0%,
      rgba(0, 10, 20, 0.78) 24%,
      rgba(0, 0, 0, 0.3) 55%,
      rgba(0, 0, 0, 0.08)
    ),
    var(--bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-copy {
  position: absolute;
  left: 7%;
  top: 17%;
  color: #fff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.55);
}
.hero-copy h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 22px;
  font-weight: 1000;
  letter-spacing: -1px;
}
.hero-copy h1 span {
  color: #1685ff;
}
.hero-copy i {
  display: block;
  width: 270px;
  height: 4px;
  background: #1188ff;
  margin-bottom: 22px;
}
.hero-copy p {
  font-size: 24px;
  line-height: 1.22;
  font-weight: 900;
  margin: 0 0 28px;
}
.benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.benefits em {
  width: 112px;
  height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 4px;
  background: rgba(3, 14, 25, 0.5);
  display: grid;
  place-items: center;
  text-align: center;
  font-style: normal;
  font-size: 26px;
}
.benefits small {
  display: block;
  font-size: 10px;
  font-weight: 900;
  margin-top: 3px;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 58px;
  font-weight: 200;
  cursor: pointer;
  transition: 0.25s;
}
.arrow:hover {
  color: #1c8dff;
  transform: translateY(-50%) scale(1.18);
}
.prev {
  left: 20px;
}
.next {
  right: 25px;
}
.dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}
.dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  opacity: 0.9;
  cursor: pointer;
}
.dots button.active {
  background: #0b8cff;
  transform: scale(1.2);
}
.about-card {
  margin: 18px;
  display: grid;
  grid-template-columns: 31% 1fr 25%;
  align-items: stretch;
  gap: 22px;
  padding: 16px;
  border-radius: 4px;
  background: #fff;
  box-shadow: var(--shadow);
}
.about-card img {
  height: 190px;
  width: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.about-card h2 {
  margin: 10px 0 12px;
  color: #004aa3;
  font-size: 28px;
}
.about-card p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 22px;
  color: #01499c;
}
.stats span {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  font-weight: 900;
  font-size: 22px;
}
.stats b {
  font-size: 12px;
}
.stats small {
  grid-column: 2;
  font-size: 10px;
  color: #111;
}
.products-section {
  padding: 18px 28px;
}
.products-section h2 {
  font-size: 25px;
  margin: 0 0 18px;
  font-weight: 1000;
}
.products-section h2 i {
  display: inline-block;
  width: 130px;
  height: 4px;
  background: #087ff5;
  vertical-align: middle;
  margin-right: 15px;
}
.products-section span {
  color: var(--blue);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 17px;
}
.product-grid article {
  border: 1px solid #d8e0ea;
  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
}
.product-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-grid img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.product-grid h3 {
  color: #003884;
  font-size: 16px;
  line-height: 1.18;
  margin: 15px 16px 7px;
}
.product-grid p {
  font-size: 13px;
  line-height: 1.35;
  margin: 0 16px 15px;
}
.product-grid a {
  display: inline-block;
  margin: 0 16px 16px;
  padding: 7px 18px;
  border: 2px solid #0065cf;
  color: #0055b5;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 1000;
}
.product-grid a:hover {
  background: #0065cf;
  color: #fff;
}
.info-grid {
  padding: 0 28px 18px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1.3fr 1fr;
  gap: 16px;
}
.info-grid > div {
  border-radius: 7px;
  padding: 20px 23px;
  min-height: 205px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.08);
}
.why {
  background: #fff;
}
.why h3,
.testimonial h3 {
  color: #00499d;
  margin-top: 0;
}
.why p {
  margin: 9px 0;
}
.why p::first-letter {
  color: #0479e9;
}
.sectors,
.recommend {
  background: linear-gradient(135deg, #00459b, #00244d);
  color: #fff;
}
.sectors h3,
.recommend h3 {
  margin-top: 0;
}
.sectors p {
  font-size: 16px;
  font-weight: 800;
}
.testimonial {
  background: #fff;
}
.testimonial p {
  font-size: 15px;
  line-height: 1.5;
}
.testimonial small {
  display: block;
  color: #ff9c00;
  font-size: 20px;
  margin-top: 12px;
}
.recommend a {
  display: inline-block;
  background: #0584ff;
  color: #fff;
  padding: 12px 18px;
  border-radius: 4px;
  font-weight: 1000;
  margin-top: 10px;
}
.recommend em {
  display: block;
  text-align: center;
  font-size: 34px;
  margin-top: 16px;
}
.clients {
  padding: 16px 38px;
  border-top: 1px solid #eef2f7;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  align-items: center;
  gap: 30px;
}
.clients h3 {
  color: #00499d;
  margin: 0;
  font-size: 22px;
}
.clients div {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 18px;
  color: #444;
  filter: grayscale(1);
  font-size: 17px;
}
.clients a {
  border: 2px solid #0575de;
  color: #0055ad;
  border-radius: 4px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 1000;
}
.contact-area {
  display: grid;
  grid-template-columns: 29% 36% 35%;
  border-bottom: 1px solid #dfebf8;
}
.contact-box {
  background: linear-gradient(135deg, #072238, #001529);
  color: #fff;
  padding: 28px 34px;
}
.contact-box h3,
.advisers h3,
.location h3 {
  margin-top: 0;
}
.advisers,
.location {
  padding: 22px 28px;
  background: #fff;
}
.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.people article {
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 13px;
  align-items: center;
}
.people img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  grid-row: span 4;
}
.people b {
  font-size: 14px;
}
.people small,
.people p {
  font-size: 12px;
  margin: 2px 0;
}
.location img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border: 1px solid #e1e7ee;
  border-radius: 8px;
}
.footer {
  background: #020b13;
  color: #fff;
  display: grid;
  grid-template-columns: 250px 1fr 330px;
  gap: 35px;
  padding: 25px 42px 28px;
  align-items: center;
}
.footer img {
  max-height: 90px;
}
.footer h4 {
  margin: 0 0 18px;
}
.footer a {
  margin-right: 35px;
  font-size: 13px;
}
.footer p {
  margin-top: 26px;
  font-size: 12px;
  color: #d5dce4;
}
.dev {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-top: 22px !important;
  width: max-content;
}
.dev img {
  height: 38px;
  transition: 0.25s;
}
.dev:hover img {
  transform: scale(1.18);
}
.floating {
  position: fixed;
  z-index: 100;
}
.whatsapp {
  right: 24px;
  bottom: 96px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 0;
  background: #27c463;
  color: #fff;
  font-size: 34px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  cursor: grab;
}
.chat {
  right: 28px;
  bottom: 20px;
  width: 270px;
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 18px 18px 16px;
  border: 1px solid #e4e8ef;
}
.chat h4 {
  margin: 0 0 8px;
  color: #002b63;
}
.chat p {
  font-size: 14px;
  margin: 0 0 12px;
}
.chat a {
  display: block;
  background: #005fc8;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 9px;
  font-weight: 800;
  font-size: 13px;
}
.chat button {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: 0;
  font-size: 22px;
  cursor: pointer;
}
#preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle, #09264a, #02080d 70%);
  z-index: 999;
  display: grid;
  place-items: center;
  transition: 0.5s;
}
.loader-card {
  text-align: center;
  color: #fff;
}
.loader-card img {
  width: 280px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.5));
  animation: pulse 1.6s infinite;
}
.loader-card span {
  display: block;
  width: 210px;
  height: 5px;
  margin: 28px auto;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  border-radius: 10px;
  animation: load 1.2s infinite;
}
.loader-card p {
  font-weight: 800;
  letter-spacing: 1px;
}
@keyframes pulse {
  50% {
    transform: scale(1.04);
    opacity: 0.88;
  }
}
@keyframes load {
  from {
    transform: translateX(-55px);
  }
  to {
    transform: translateX(55px);
  }
}
.page-hero {
  min-height: 300px;
  background:
    linear-gradient(90deg, rgba(0, 15, 35, 0.9), rgba(0, 15, 35, 0.25)),
    url("../img/hero-ref-1.jpg") center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 50px;
}
.page-hero h1 {
  font-size: 48px;
}
.page-content {
  padding: 40px;
}
.page-content .card {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 35px;
  border-radius: 10px;
}
@media (max-width: 1050px) {
  .topbar {
    height: auto;
  }
  .topbar-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 8px;
  }
  .sidebar {
    transform: translateX(-105%);
    top: 0;
    z-index: 110;
    transition: 0.3s;
  }
  .sidebar.open {
    transform: translateX(0);
  }
  .hamburger {
    display: block;
  }
  .site-main {
    margin-left: 0;
    padding-top: 68px;
  }
  .hero {
    height: 560px;
  }
  .about-card {
    grid-template-columns: 1fr;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .info-grid,
  .contact-area,
  .footer {
    grid-template-columns: 1fr;
  }
  .clients {
    flex-direction: column;
  }
  .clients div {
    flex-wrap: wrap;
  }
  .top-item {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .site-main {
    padding-top: 92px;
  }
  .hero {
    height: 620px;
  }
  .hero-copy {
    left: 8%;
    top: 12%;
  }
  .hero-copy h1 {
    font-size: 38px;
  }
  .hero-copy p {
    font-size: 18px;
  }
  .benefits em {
    width: 46%;
    height: 70px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .footer {
    padding: 25px;
  }
  .chat {
    width: 245px;
  }
  .whatsapp {
    width: 60px;
    height: 60px;
  }
  .topbar-inner {
    gap: 6px;
  }
  .about-card {
    margin: 8px;
  }
  .products-section {
    padding: 18px 14px;
  }
}

/* ===== AJUSTE PROFESIONAL V3: menú solo hasta bloque Nova Controls + cuerpo full width ===== */
:root {
  --nc-blue: #005dbb;
  --nc-blue-2: #087bff;
  --nc-dark: #03101a;
  --nc-darker: #020912;
  --nc-text: #08111f;
  --nc-muted: #536171;
  --nc-line: #dce6f1;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif !important;
  color: var(--nc-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
img {
  max-width: 100%;
  display: block;
}
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  z-index: 150;
  background: linear-gradient(90deg, #063b83 0%, #075bb1 45%, #064993 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 3px 12px rgba(0, 28, 68, 0.18);
}
.topbar-inner {
  width: min(1680px, 100%);
  height: 100%;
  margin: auto;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.15fr auto;
  align-items: center;
  gap: 18px;
}
.top-item {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.1px;
  white-space: nowrap;
}
.socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}
.socials a {
  font-size: 13px;
  text-decoration: none;
}
.hamburger {
  display: none;
}
.intro-shell {
  padding-top: 40px;
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  align-items: stretch;
  background: #fff;
  border-bottom: 1px solid #eef2f6;
}
.intro-shell .sidebar {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  bottom: auto !important;
  width: 230px !important;
  height: auto !important;
  min-height: 100%;
  z-index: 70;
  background: linear-gradient(180deg, #061724 0%, #020911 100%);
  overflow: visible !important;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.22);
}
.brand {
  height: 235px !important;
  background: #041626 !important; 
  padding: 24px 20px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14) !important;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none !important;
}
.menu a {
  height: 46px !important;
  padding: 0 23px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: -0.15px;
  border-left: 5px solid transparent !important;
  text-transform: uppercase;
}
.menu a b {
  font-size: 18px !important;
  width: 22px;
  text-align: center;
  opacity: 0.96;
}
.menu a:hover,
.menu a.active {
  background: linear-gradient(90deg, #0867c9, #07478f) !important;
  border-left-color: #fff !important;
}
.quote-btn {
  margin: 22px 24px 0 !important;
  border-radius: 6px !important;
  font-weight: 900 !important;
  letter-spacing: 0.15px;
}
.intro-main {
  min-width: 0;
  background: #fff;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.08);
}
.site-main {
  margin-left: 0 !important;
  padding-top: 0 !important;
  width: 100%;
  background: #fff;
  overflow: hidden;
}
.hero {
  height: 520px !important;
  border-bottom: 0 !important;
}
.hero-copy {
  left: 8.5% !important;
  top: 16% !important;
}
.hero-copy h1 {
  font-weight: 900 !important;
  font-size: 54px !important;
  line-height: 1.05 !important;
  letter-spacing: -1.4px !important;
}
.hero-copy p {
  font-size: 23px !important;
  line-height: 1.25 !important;
  font-weight: 800 !important;
}
.hero-copy i {
  height: 4px !important;
  border-radius: 10px;
  background: linear-gradient(90deg, #118eff, #0e63c3) !important;
}
.benefits em {
  backdrop-filter: blur(5px);
  transition: 0.25s;
}
.benefits em:hover {
  transform: translateY(-5px);
  border-color: #1b92ff;
  background: rgba(4, 39, 78, 0.72);
}
.about-card {
  margin: 0 !important;
  padding: 18px 20px !important;
  min-height: 215px;
  border-radius: 0 !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13) !important;
  grid-template-columns: 31% 1fr 27% !important;
  gap: 24px !important;
  align-items: center !important;
}
.about-card h2 {
  font-size: 27px !important;
  line-height: 1.05 !important;
  font-weight: 900 !important;
  letter-spacing: -0.7px;
  color: #004da7 !important;
}
.about-card p {
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #111827 !important;
  font-weight: 500;
}
.about-card img {
  height: 180px !important;
  border-radius: 5px !important;
}
.stats b {
  font-weight: 900 !important;
  color: #004da7;
}
.stats small {
  font-weight: 900 !important;
  color: #0e1726 !important;
}
.products-section,
.info-grid,
.clients,
.contact-area,
.footer {
  width: 100%;
  max-width: none;
  margin-left: 0 !important;
}
.products-section {
  padding: 32px 42px 20px !important;
  background: #fff;
}
.products-section h2 {
  font-size: 27px !important;
  letter-spacing: -0.6px;
}
.products-section h2 i {
  width: 150px !important;
  border-radius: 8px;
}
.product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 19px !important;
}
.product-grid article {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #d7e0eb !important;
  box-shadow: 0 5px 16px rgba(2, 27, 63, 0.08) !important;
}
.product-grid img {
  height: 150px !important;
}
.product-grid h3 {
  font-size: 15px !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  letter-spacing: -0.2px;
}
.product-grid p {
  font-size: 13px !important;
  color: #202938;
  font-weight: 500;
}
.product-grid a {
  font-weight: 900 !important;
  transition: 0.22s;
}
.product-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 83, 177, 0.22);
}
.info-grid {
  padding: 0 42px 20px !important;
  grid-template-columns: 1.25fr 1.05fr 1.35fr 1fr !important;
}
.info-grid h3 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.35px;
}
.info-grid > div {
  border-radius: 7px !important;
}
.sectors,
.recommend {
  background: linear-gradient(135deg, #064b9c 0%, #002e67 58%, #001d42 100%) !important;
}
.clients {
  padding: 18px 48px !important;
  background: #fff;
}
.clients h3 {
  font-weight: 900;
  letter-spacing: -0.45px;
}
.clients div b {
  font-weight: 900;
  letter-spacing: -0.35px;
}
.contact-area {
  grid-template-columns: 29% 36% 35% !important;
}
.footer {
  grid-template-columns: 250px 1fr 330px !important;
  background: linear-gradient(90deg, #020b13, #031425) !important;
}
.footer a {
  text-decoration: none;
}
.dev img {
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.35));
}
.whatsapp {
  background: #28c764 !important;
}
.chat {
  z-index: 120;
}
.chat a {
  background: linear-gradient(90deg, #0067d5, #0050ad) !important;
}
@media (max-width: 1180px) {
  .topbar-inner {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    height: auto;
    row-gap: 4px;
    padding: 6px 14px;
  }
  .topbar {
    height: auto;
  }
  .intro-shell {
    padding-top: 54px;
  }
  .hero-copy h1 {
    font-size: 46px !important;
  }
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  .info-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .contact-area {
    grid-template-columns: 1fr !important;
  }
  .footer {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .footer .socials {
    justify-content: center;
  }
  .dev {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
@media (max-width: 900px) {
  .hamburger {
    display: flex !important;
    position: fixed !important;
    top: 58px !important;
    left: 16px !important;
    z-index: 190 !important;
    width: 46px;
    height: 42px;
    align-items: center;
    justify-content: center;
    background: #075fbd !important;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  }
  .intro-shell {
    display: block;
    padding-top: 64px;
  }
  .intro-shell .sidebar {
    position: fixed !important;
    top: 52px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 52px);
    transform: translateY(-120%);
    transition: 0.34s ease;
    overflow: auto !important;
    z-index: 180;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.34);
  }
  .intro-shell .sidebar.open {
    transform: translateY(0);
  }
  .brand {
    height: 150px !important;
  }
  .brand img {
    max-width: 190px;
    margin: auto;
  }
  .menu a {
    height: 42px !important;
    justify-content: center;
  }
  .quote-btn {
    max-width: 280px;
    margin: 18px auto 22px !important;
  }
  .hero {
    height: 560px !important;
  }
  .hero-copy {
    left: 7% !important;
    right: 6%;
    top: 14% !important;
  }
  .hero-copy h1 {
    font-size: 42px !important;
  }
  .about-card {
    grid-template-columns: 1fr !important;
  }
  .about-card img {
    height: 190px !important;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .products-section {
    padding: 28px 22px !important;
  }
  .info-grid {
    padding: 0 22px 20px !important;
  }
  .clients {
    padding: 18px 22px !important;
    flex-direction: column;
  }
  .clients div {
    flex-wrap: wrap;
  }
  .people {
    grid-template-columns: 1fr !important;
  }
  .top-item {
    font-size: 12px;
  }
}
@media (max-width: 620px) {
  .topbar-inner {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 6px 10px;
  }
  .topbar .socials {
    display: none;
  }
  .intro-shell {
    padding-top: 86px;
  }
  .hamburger {
    top: 92px !important;
    left: 12px !important;
  }
  .intro-shell .sidebar {
    top: 86px !important;
    max-height: calc(100vh - 86px);
  }
  .hero {
    height: 625px !important;
  }
  .hero-copy {
    top: 13% !important;
  }
  .hero-copy h1 {
    font-size: 34px !important;
    letter-spacing: -0.9px !important;
  }
  .hero-copy p {
    font-size: 17px !important;
  }
  .hero-copy i {
    width: 205px !important;
  }
  .benefits {
    gap: 9px;
  }
  .benefits em {
    width: calc(50% - 6px) !important;
    height: 70px !important;
    font-size: 22px !important;
  }
  .arrow {
    font-size: 44px !important;
  }
  .prev {
    left: 8px !important;
  }
  .next {
    right: 10px !important;
  }
  .about-card {
    padding: 14px !important;
  }
  .about-card h2 {
    font-size: 23px !important;
  }
  .stats {
    grid-template-columns: 1fr !important;
  }
  .product-grid {
    grid-template-columns: 1fr !important;
  }
  .products-section h2 {
    font-size: 21px !important;
  }
  .products-section h2 i {
    width: 82px !important;
  }
  .info-grid {
    grid-template-columns: 1fr !important;
  }
  .clients div {
    gap: 14px;
  }
  .contact-box,
  .advisers,
  .location {
    padding: 22px !important;
  }
  .footer {
    padding: 26px 18px !important;
  }
  .footer a {
    margin-right: 12px;
  }
  .chat {
    right: 14px !important;
    width: 250px !important;
  }
  .whatsapp {
    right: 18px !important;
    width: 60px !important;
    height: 60px !important;
  }
}

