:root {
  --blue: #0667f9;
  --blue-2: #0043c7;
  --cyan: #02d9ff;
  --orange: #ff8500;
  --yellow: #ffd426;
  --green: #13c96f;
  --violet: #7657ff;
  --pink: #f43bad;
  --ink: #071a3c;
  --ink-2: #0d2d61;
  --text: #203456;
  --muted: #64728c;
  --surface: #ffffff;
  --surface-2: #f2f8ff;
  --line: rgba(7, 66, 153, 0.14);
  --shadow: 0 22px 60px rgba(15, 71, 145, 0.14);
  --shadow-strong: 0 28px 80px rgba(15, 71, 145, 0.22);
  --radius: 8px;
  --section: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: #ffffff;
  font-family: "Sora", "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  color: #ffffff;
  background: var(--ink);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  position: relative;
  z-index: 80;
  color: #ffffff;
  background: linear-gradient(90deg, var(--ink), #0b397b 58%, var(--blue));
  font-size: 0.78rem;
}

.topbar-inner {
  width: var(--section);
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar p {
  margin: 0;
  font-weight: 700;
}

.topbar i {
  margin-right: 6px;
  color: var(--yellow);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-actions a {
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.topbar-actions a:hover {
  opacity: 1;
}

.site-header {
  position: relative;
  background: #ffffff;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 70;
  width: 100%;
  min-height: 86px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: minmax(230px, 330px) 1fr auto;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(6, 103, 249, 0.12);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 26px rgba(22, 73, 142, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(310px, 100%);
}

.brand img {
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 27px);
}

.nav-links a {
  position: relative;
  padding: 11px 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange));
  transition: right 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  right: 0;
}

.nav-cta,
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--blue), #0f89ff 55%, var(--cyan));
  box-shadow: 0 13px 30px rgba(6, 103, 249, 0.25);
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.nav-cta:hover,
.btn-primary:hover {
  box-shadow: 0 18px 38px rgba(6, 103, 249, 0.34);
}

.btn-secondary {
  color: var(--ink);
  border: 1px solid rgba(6, 103, 249, 0.22);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(7, 49, 110, 0.1);
}

.btn-whatsapp {
  width: 100%;
  color: #ffffff;
  background: linear-gradient(120deg, #0cbf64, #20dc7d);
  box-shadow: 0 16px 36px rgba(19, 201, 111, 0.28);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
  font-size: 1.75rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 124px);
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 20px 0;
  background:
    linear-gradient(118deg, #ffffff 0%, #eef8ff 45%, #ffffff 67%, #fff4e6 100%);
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.hero::before {
  width: 46vw;
  height: 9px;
  left: -6vw;
  top: 21%;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  transform: rotate(-24deg);
  box-shadow: 0 0 30px rgba(2, 217, 255, 0.46);
}

.hero::after {
  width: 38vw;
  height: 7px;
  right: -8vw;
  bottom: 28%;
  background: linear-gradient(90deg, transparent, var(--orange), var(--yellow), transparent);
  transform: rotate(-24deg);
  box-shadow: 0 0 28px rgba(255, 133, 0, 0.36);
}

.circuit-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(6, 103, 249, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 103, 249, 0.13) 1px, transparent 1px),
    linear-gradient(45deg, transparent 48%, rgba(2, 217, 255, 0.14) 49%, rgba(2, 217, 255, 0.14) 51%, transparent 52%);
  background-size: 68px 68px, 68px 68px, 136px 136px;
  mask-image: linear-gradient(90deg, #000, transparent 57%, #000);
}

.energy-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.energy-particle {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  top: var(--top);
  background: var(--color);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  box-shadow: 0 0 16px var(--color);
  opacity: 0.72;
  animation: signalFloat var(--duration) ease-in-out var(--delay) infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--section);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(410px, 0.98fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.live-badge {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(19, 201, 111, 0.3);
  border-radius: 999px;
  color: #087746;
  background: rgba(231, 255, 244, 0.9);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(19, 201, 111, 0.12), 0 0 16px rgba(19, 201, 111, 0.7);
  animation: statusPulse 2s ease-in-out infinite;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow i {
  margin-right: 7px;
  color: var(--orange);
}

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

h1,
h2 {
  color: var(--ink);
  font-family: "Orbitron", "Sora", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(3rem, 6.3vw, 6.4rem);
  line-height: 0.88;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

h1 span:first-child {
  color: var(--ink);
}

h1 span:last-child {
  color: var(--orange);
  text-shadow: 0 10px 28px rgba(255, 133, 0, 0.22);
}

.hero-logo {
  width: min(650px, 100%);
  margin: 2px 0 18px;
}

.hero-logo img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 16px 26px rgba(6, 103, 249, 0.18));
}

.hero-lead {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 800;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-proof > div {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-left: 3px solid var(--cyan);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 12px 30px rgba(22, 73, 142, 0.07);
  font-size: 0.74rem;
}

.hero-proof > div:nth-child(2) {
  border-color: var(--orange);
}

.hero-proof > div:nth-child(3) {
  border-color: var(--green);
}

.hero-proof i {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 1.55rem;
}

.hero-proof strong {
  display: block;
  color: var(--ink);
  font-size: 0.82rem;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portal-rings,
.portal-rings span {
  position: absolute;
  left: 50%;
  top: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.portal-rings {
  width: min(570px, 94%);
}

.portal-rings span:nth-child(1) {
  width: 100%;
  border: 2px solid rgba(6, 103, 249, 0.18);
  background: conic-gradient(from 0deg, transparent 0 15%, rgba(2, 217, 255, 0.5) 17% 20%, transparent 22% 47%, rgba(255, 133, 0, 0.55) 49% 53%, transparent 55% 82%, rgba(6, 103, 249, 0.5) 84% 88%, transparent 90%);
  mask-image: radial-gradient(circle, transparent 74%, #000 75%);
  animation: spin 18s linear infinite;
}

.portal-rings span:nth-child(2) {
  width: 76%;
  border: 1px dashed rgba(6, 103, 249, 0.34);
  box-shadow: inset 0 0 50px rgba(2, 217, 255, 0.09);
  animation: spinReverse 14s linear infinite;
}

.portal-rings span:nth-child(3) {
  width: 57%;
  border: 5px double rgba(255, 133, 0, 0.26);
  animation: innerRingPulse 3.8s ease-in-out infinite;
}

.mascot {
  position: relative;
  z-index: 2;
  width: min(560px, 100%);
  max-height: 650px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 32px 34px rgba(14, 65, 134, 0.24));
  animation: robotFloat 5s ease-in-out infinite;
}

.tech-chip {
  position: absolute;
  z-index: 4;
  min-width: 142px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(6, 103, 249, 0.18);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  font-size: 0.76rem;
  font-weight: 800;
  animation: chipFloat 4s ease-in-out infinite;
}

.tech-chip i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 6px;
  font-size: 1rem;
}

.chip-pc {
  left: 0;
  top: 18%;
}

.chip-wifi {
  right: -3%;
  top: 31%;
  animation-delay: -1.3s;
}

.chip-wifi i {
  background: var(--orange);
}

.chip-iot {
  left: 2%;
  bottom: 25%;
  animation-delay: -2.2s;
}

.chip-iot i {
  background: var(--green);
}

.robot-console {
  position: absolute;
  right: 0;
  bottom: 28px;
  z-index: 5;
  width: min(340px, 78%);
  min-height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid rgba(6, 103, 249, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.console-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  font-size: 1.3rem;
}

.robot-console small,
.robot-console strong {
  display: block;
}

.robot-console small {
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.robot-console strong {
  font-size: 0.82rem;
  line-height: 1.3;
}

.robot-console > a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--orange);
}

.service-ticker {
  position: relative;
  z-index: 6;
  width: calc(100% + 40px);
  margin: clamp(26px, 4vw, 54px) -20px 0;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(90deg, var(--blue-2), var(--blue) 38%, #0087e7 60%, var(--ink));
  border-top: 4px solid var(--orange);
}

.ticker-track {
  width: max-content;
  min-height: 58px;
  display: flex;
  align-items: center;
  animation: ticker 34s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
}

.ticker-track i {
  color: var(--yellow);
  font-size: 1.1rem;
}

.section {
  width: var(--section);
  margin: 0 auto;
  padding: clamp(74px, 8vw, 112px) 0;
}

.brand-banner,
.wide-banner {
  width: min(1440px, calc(100% - 24px));
  margin: 36px auto 0;
}

.banner-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(6, 103, 249, 0.2);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-strong);
}

.banner-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, var(--cyan), transparent, var(--orange)) 1;
  pointer-events: none;
}

.banner-frame img {
  width: 100%;
  height: auto;
  transition: transform 0.65s ease;
}

.banner-frame:hover img {
  transform: scale(1.015);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(28px, 6vw, 90px);
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.1vw, 4rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.14rem;
  line-height: 1.25;
}

.solution-hub {
  padding-top: 92px;
}

.hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 18px;
}

.hub-feature {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 52px);
  color: #ffffff;
  background:
    linear-gradient(130deg, #072552, var(--blue-2) 62%, #087eea 100%);
  box-shadow: var(--shadow-strong);
}

.hub-feature::before,
.hub-feature::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hub-feature::before {
  left: 0;
  right: 0;
  top: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  box-shadow: 0 0 20px rgba(2, 217, 255, 0.8);
}

.hub-feature::after {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 14px;
  background: var(--orange);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.hub-feature-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.hub-feature .number {
  display: block;
  margin-bottom: 54px;
  color: var(--cyan);
  font-family: "Orbitron", sans-serif;
  font-size: 0.84rem;
  font-weight: 900;
}

.hub-feature h3 {
  max-width: 520px;
  color: #ffffff;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
}

.hub-feature p:not(.eyebrow) {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.74);
}

.hub-feature a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--yellow);
  font-weight: 800;
}

.hub-watermark {
  position: absolute;
  right: 4%;
  bottom: -8%;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(10rem, 22vw, 20rem);
  line-height: 1;
}

.hub-stack {
  display: grid;
  gap: 14px;
}

.hub-mini {
  min-height: 130px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.hub-mini:nth-child(2) {
  border-left-color: var(--orange);
}

.hub-mini:nth-child(3) {
  border-left-color: var(--green);
}

.hub-mini:hover {
  transform: translateX(8px);
  border-color: rgba(6, 103, 249, 0.28);
}

.mini-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 1.65rem;
}

.mini-icon.cyan {
  background: linear-gradient(145deg, var(--blue), var(--cyan));
}

.mini-icon.orange {
  background: linear-gradient(145deg, var(--orange), var(--yellow));
}

.mini-icon.green {
  background: linear-gradient(145deg, #079d59, var(--green));
}

.hub-mini h3,
.hub-mini p {
  margin-bottom: 4px;
}

.hub-mini p {
  color: var(--muted);
  font-size: 0.9rem;
}

.services-band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #eff7ff 0%, #ffffff 42%, #f5fbff 100%);
}

.services-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.38;
  background-image:
    linear-gradient(90deg, transparent 97%, rgba(6, 103, 249, 0.16) 98%),
    linear-gradient(transparent 97%, rgba(6, 103, 249, 0.16) 98%);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.services {
  position: relative;
  z-index: 2;
}

.service-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(6, 103, 249, 0.18);
  border-radius: 999px;
  color: var(--ink);
  background: #ffffff;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-btn:hover,
.filter-btn.is-active {
  color: #ffffff;
  border-color: var(--blue);
  background: linear-gradient(110deg, var(--blue), #078fff);
  box-shadow: 0 10px 24px rgba(6, 103, 249, 0.2);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.96));
  box-shadow: 0 15px 40px rgba(18, 72, 143, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.service-card:nth-child(3n + 2) {
  border-top-color: var(--orange);
}

.service-card:nth-child(3n) {
  border-top-color: var(--green);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle 170px at var(--mouse-x) var(--mouse-y), rgba(2, 217, 255, 0.15), transparent 72%);
  transition: opacity 0.25s ease;
  pointer-events: none;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card.is-hidden {
  display: none;
}

.service-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 22px;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(6, 103, 249, 0.2);
  font-size: 2rem;
}

.service-icon.blue {
  background: linear-gradient(145deg, var(--blue-2), var(--blue));
}

.service-icon.cyan {
  color: var(--ink);
  background: linear-gradient(145deg, #02bce0, var(--cyan));
}

.service-icon.orange {
  background: linear-gradient(145deg, var(--orange), #ffb000);
}

.service-icon.green {
  background: linear-gradient(145deg, #079d59, var(--green));
}

.service-icon.violet {
  background: linear-gradient(145deg, #5e43df, var(--violet));
}

.service-code {
  color: rgba(7, 26, 60, 0.38);
  font-family: "Orbitron", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
}

.service-card h3,
.service-card p,
.service-card > a {
  position: relative;
  z-index: 2;
}

.service-card p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-card > a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card > a i {
  transition: transform 0.2s ease;
}

.service-card > a:hover i {
  transform: translateX(5px);
}

.services-banner {
  background: #f6faff;
}

.projects {
  padding-top: 100px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.project-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 28px;
  color: #ffffff;
  box-shadow: var(--shadow-strong);
  transition: transform 0.25s ease;
}

.project-card:hover {
  transform: translateY(-7px);
}

.project-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: var(--cyan);
}

.project-card.education {
  background: linear-gradient(145deg, #0a2f68, var(--blue));
}

.project-card.business {
  background: linear-gradient(145deg, #5f2400, var(--orange));
}

.project-card.innovation {
  background: linear-gradient(145deg, #083d34, #04a663);
}

.project-card.business::before {
  background: var(--yellow);
}

.project-card.innovation::before {
  background: var(--cyan);
}

.project-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  font-size: 2rem;
  backdrop-filter: blur(8px);
}

.project-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card h3 {
  color: #ffffff;
  font-size: 1.42rem;
}

.project-card p,
.project-card ul {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.project-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.project-card li {
  margin-top: 7px;
}

.project-card li i {
  margin-right: 7px;
  color: var(--yellow);
}

.catalogs-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f2f8ff, #ffffff);
}

.catalogs-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--orange), var(--yellow));
}

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

.catalog-card {
  min-height: 370px;
  display: grid;
  grid-template-columns: minmax(180px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-strong);
}

.catalog-visual {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: #ffffff;
  text-align: center;
}

.arduino-visual {
  background: linear-gradient(145deg, #006aa7, #00afd1 60%, #00d8c5);
}

.steam-visual {
  background: linear-gradient(145deg, #8b3700, var(--orange) 58%, var(--yellow));
}

.catalog-visual i {
  margin-bottom: 16px;
  font-size: 5rem;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.18));
}

.catalog-visual span {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-visual small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
}

.catalog-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 28px;
}

.catalog-number {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-copy p {
  color: var(--muted);
  font-size: 0.88rem;
}

.catalog-copy .btn {
  margin-top: auto;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(38px, 8vw, 110px);
}

.about-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 9% 4% 0;
  border: 1px solid rgba(6, 103, 249, 0.2);
  background:
    linear-gradient(145deg, #eaf7ff, #ffffff 48%, #fff1dd);
  clip-path: polygon(12% 0, 100% 0, 100% 88%, 86% 100%, 0 100%, 0 14%);
}

.about-glow {
  position: absolute;
  inset: 20% 10% 8%;
  border: 3px solid rgba(2, 217, 255, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 60px rgba(2, 217, 255, 0.22), inset 0 0 60px rgba(255, 133, 0, 0.12);
  animation: ringPulse 4s ease-in-out infinite;
}

.about-visual img {
  position: relative;
  z-index: 2;
  width: min(450px, 88%);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 26px 28px rgba(12, 63, 130, 0.22));
}

.about-stat {
  position: absolute;
  z-index: 4;
  min-width: 148px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.about-stat strong,
.about-stat span {
  display: block;
}

.about-stat strong {
  color: var(--blue);
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
}

.about-stat span {
  color: var(--muted);
  font-size: 0.7rem;
}

.stat-one {
  left: -3%;
  top: 20%;
}

.stat-two {
  right: -2%;
  bottom: 13%;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.value-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.value-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.value-list i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: linear-gradient(145deg, var(--blue), var(--cyan));
  font-size: 1.2rem;
}

.value-list strong {
  display: block;
  color: var(--ink);
}

.value-list span {
  color: var(--muted);
  font-size: 0.84rem;
}

.quote-band {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(128deg, #061a3c, #093d83 58%, #0369d8);
}

.quote-band::before,
.quote-band::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.quote-band::before {
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(2, 217, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 217, 255, 0.4) 1px, transparent 1px);
  background-size: 72px 72px;
}

.quote-band::after {
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--orange), var(--yellow));
}

.quote-effects {
  position: absolute;
  left: -12%;
  right: -12%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent 42%, var(--orange), transparent);
  transform: rotate(-8deg);
  box-shadow: 0 0 30px rgba(2, 217, 255, 0.58);
}

.quote-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(380px, 1.2fr);
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
}

.quote-copy h2 {
  color: #ffffff;
}

.quote-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.quote-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.quote-contact > span {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(19, 201, 111, 0.12);
  font-size: 1.6rem;
}

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

.quote-contact small {
  color: rgba(255, 255, 255, 0.65);
}

.quote-contact strong {
  font-family: "Orbitron", sans-serif;
  font-size: 1.3rem;
}

.quote-form {
  display: grid;
  gap: 9px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.quote-form label {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.input-wrap {
  position: relative;
}

.input-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  z-index: 2;
  color: var(--blue);
  transform: translateY(-50%);
}

.textarea-wrap > i {
  top: 16px;
  transform: none;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(7, 26, 60, 0.15);
  border-radius: 6px;
  outline: none;
  color: var(--ink);
  background: #f8fbff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(6, 103, 249, 0.1);
}

.quote-form .btn {
  margin-top: 9px;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
}

.social-intro p:not(.eyebrow) {
  color: var(--muted);
}

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

.social-card {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
  box-shadow: 0 14px 36px rgba(18, 72, 143, 0.1);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.social-card > i:first-child {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  font-size: 1.65rem;
}

.social-card.whatsapp > i:first-child {
  background: #18c96d;
}

.social-card.instagram > i:first-child {
  background: linear-gradient(145deg, #6d42dc, #e33b83 55%, #ff9500);
}

.social-card.facebook > i:first-child {
  background: #1877f2;
}

.social-card.youtube > i:first-child {
  background: #ff0033;
}

.social-card small,
.social-card strong,
.social-card b {
  display: block;
}

.social-card small {
  color: var(--muted);
  font-size: 0.68rem;
}

.social-card strong {
  font-size: 0.98rem;
}

.social-card b {
  overflow-wrap: anywhere;
  color: var(--blue);
  font-size: 0.7rem;
}

.social-card .arrow {
  color: var(--blue);
}

.social-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  color: #ffffff;
  background: var(--ink);
  box-shadow: var(--shadow-strong);
}

.social-card:hover small,
.social-card:hover b,
.social-card:hover .arrow {
  color: rgba(255, 255, 255, 0.74);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 92px);
  align-items: center;
  padding-top: 36px;
}

.contact-map {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #ffffff;
  text-align: center;
  background: linear-gradient(145deg, var(--blue-2), var(--blue) 60%, #08a7df);
  box-shadow: var(--shadow-strong);
}

.map-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(30deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%),
    linear-gradient(-30deg, transparent 48%, #ffffff 49%, #ffffff 51%, transparent 52%);
  background-size: 90px 90px;
}

.map-pin,
.contact-map p,
.contact-map strong,
.contact-map a {
  position: relative;
  z-index: 2;
}

.map-pin {
  margin-bottom: 18px;
  color: var(--yellow);
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.2));
  font-size: 4rem;
  animation: pinBounce 3s ease-in-out infinite;
}

.contact-map p {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-map strong {
  max-width: 380px;
  font-family: "Orbitron", sans-serif;
  font-size: 1.35rem;
}

.contact-map a {
  margin-top: 24px;
  color: var(--yellow);
  font-weight: 800;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.contact-links > a > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--blue);
  font-size: 1.1rem;
}

.contact-links a:nth-child(2) > i {
  background: var(--green);
}

.contact-links a:nth-child(3) > i {
  background: var(--orange);
}

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

.contact-links small {
  color: var(--muted);
  font-size: 0.7rem;
}

.contact-links strong {
  color: var(--ink);
}

.social-rail {
  position: fixed;
  left: 14px;
  top: 50%;
  z-index: 40;
  display: grid;
  gap: 7px;
  transform: translateY(-50%);
}

.social-rail a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 26, 60, 0.18);
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-rail a:hover {
  transform: translateX(5px);
  background: var(--blue);
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 17px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(120deg, #0eaf5b, #22d879);
  box-shadow: 0 18px 38px rgba(19, 201, 111, 0.32);
  font-weight: 900;
  animation: whatsappPulse 2.4s ease-in-out infinite;
}

.float-whatsapp i {
  font-size: 1.35rem;
}

.footer {
  padding: 68px max(20px, calc((100vw - 1180px) / 2)) 24px;
  color: rgba(255, 255, 255, 0.68);
  background: linear-gradient(125deg, #030d20, var(--ink) 58%, #0b2e62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(140px, 0.7fr));
  gap: 44px;
  padding-bottom: 46px;
}

.footer-brand img {
  width: min(340px, 100%);
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-brand p {
  max-width: 400px;
}

.footer h3 {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
}

.footer-grid a:hover {
  color: var(--cyan);
}

.footer-socials {
  display: flex;
  gap: 8px;
  margin-top: 9px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes robotFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinReverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.65; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1.02); }
}

@keyframes innerRingPulse {
  0%, 100% { opacity: 0.65; transform: translate(-50%, -50%) scale(0.96); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}

@keyframes signalFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.25; }
  50% { transform: translate(18px, -30px) rotate(180deg); opacity: 0.9; }
}

@keyframes statusPulse {
  0%, 100% { transform: scale(0.88); }
  50% { transform: scale(1.1); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 18px 38px rgba(19, 201, 111, 0.3); }
  50% { box-shadow: 0 18px 38px rgba(19, 201, 111, 0.34), 0 0 0 10px rgba(19, 201, 111, 0.11); }
}

@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@media (max-width: 1120px) {
  .navbar {
    grid-template-columns: minmax(220px, 280px) 1fr auto;
    gap: 18px;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.78rem;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  }

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

  .social-rail {
    display: none;
  }
}

@media (max-width: 920px) {
  .topbar-inner {
    justify-content: center;
  }

  .topbar-actions {
    display: none;
  }

  .navbar {
    grid-template-columns: 1fr auto;
    min-height: 76px;
    padding: 8px 18px;
  }

  .brand {
    width: min(275px, 72vw);
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .navbar.is-open .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .navbar.is-open .nav-links a {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-content,
  .section-heading,
  .hub-grid,
  .about,
  .quote-panel,
  .social-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo img {
    object-position: center;
  }

  .live-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: min(620px, 100%);
    min-height: 530px;
    margin: 0 auto;
  }

  .section-heading {
    gap: 18px;
  }

  .hub-feature {
    min-height: 400px;
  }

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

  .hub-mini {
    grid-template-columns: 1fr;
    align-content: start;
  }

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

  .catalog-card {
    grid-template-columns: 1fr;
  }

  .catalog-visual {
    min-height: 220px;
  }

  .about-visual {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .quote-copy {
    text-align: center;
  }

  .quote-contact {
    justify-content: center;
  }

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

@media (max-width: 680px) {
  :root {
    --section: min(100% - 28px, 1180px);
  }

  body {
    padding-bottom: 72px;
  }

  .topbar {
    font-size: 0.68rem;
  }

  .topbar-inner {
    min-height: 34px;
  }

  .hero {
    min-height: auto;
    padding: 44px 14px 0;
  }

  .hero::before,
  .hero::after,
  .tech-chip {
    display: none;
  }

  .circuit-grid {
    background-size: 46px 46px, 46px 46px, 92px 92px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4.4rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.7rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof > div {
    min-height: 62px;
    text-align: left;
  }

  .hero-visual {
    min-height: 440px;
    margin-top: 18px;
  }

  .mascot {
    max-height: 470px;
  }

  .portal-rings {
    width: 94vw;
  }

  .robot-console {
    left: 50%;
    right: auto;
    bottom: 8px;
    width: min(330px, 94%);
    transform: translateX(-50%);
  }

  .service-ticker {
    width: calc(100% + 28px);
    margin-left: -14px;
    margin-right: -14px;
  }

  .section {
    padding: 68px 0;
  }

  .brand-banner,
  .wide-banner {
    width: calc(100% - 16px);
    margin-top: 20px;
  }

  .solution-hub {
    padding-top: 70px;
  }

  .hub-feature {
    min-height: 430px;
    padding: 26px;
  }

  .hub-feature .number {
    margin-bottom: 72px;
  }

  .hub-stack,
  .service-grid,
  .project-grid,
  .catalog-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .hub-mini {
    grid-template-columns: auto 1fr;
  }

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

  .service-card {
    min-height: 280px;
  }

  .project-card {
    min-height: 360px;
  }

  .catalog-card {
    min-height: 0;
  }

  .catalog-visual {
    min-height: 190px;
  }

  .catalog-copy {
    min-height: 290px;
  }

  .about-visual {
    min-height: 500px;
  }

  .about-stat {
    min-width: 132px;
  }

  .stat-one {
    left: 0;
    top: 14%;
  }

  .stat-two {
    right: 0;
    bottom: 8%;
  }

  .quote-panel {
    gap: 30px;
  }

  .quote-form {
    padding: 20px;
  }

  .social-card {
    min-height: 110px;
  }

  .contact-map {
    min-height: 340px;
    padding: 28px;
  }

  .float-whatsapp {
    left: 12px;
    right: 12px;
    bottom: 10px;
    justify-content: center;
    min-height: 52px;
  }

  .footer {
    padding: 54px 20px 24px;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 400px) {
  .brand {
    width: 210px;
  }

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

  .robot-console {
    grid-template-columns: auto 1fr;
  }

  .robot-console > a {
    display: none;
  }

  .about-stat {
    min-width: 118px;
    padding: 10px;
  }

  .about-stat strong {
    font-size: 1.2rem;
  }

  .service-filters {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
