@font-face {
  font-family: "Space Grotesk";
  src: url("assets/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

:root {
  --blue: #0967e8;
  --blue-dark: #0752b8;
  --ink: #10233f;
  --muted: #56667c;
  --pale: #f3f7fc;
  --line: #dbe5f0;
  --white: #fff;
  --shadow: 0 24px 60px rgba(20, 55, 95, 0.13);
  --header-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Space Grotesk", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg,
canvas {
  max-width: 100%;
}

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

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

:focus-visible {
  outline: 3px solid rgba(9, 103, 232, 0.35);
  outline-offset: 3px;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding-block: 104px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 8px;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  transform: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(219, 229, 240, 0.85);
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 44px;
}

.brand-logo {
  width: 190px;
  height: auto;
  display: block;
  object-fit: contain;
}

.desktop-nav {
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: #40516a;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 14px;
}

.mobile-menu {
  position: relative;
  display: none;
  margin-left: auto;
}

.mobile-menu summary {
  width: 46px;
  height: 42px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  width: 24px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu nav {
  position: absolute;
  top: 54px;
  right: 0;
  width: min(310px, calc(100vw - 28px));
  display: grid;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 13px 14px;
  border-radius: 8px;
  color: #40516a;
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible {
  background: var(--pale);
  color: var(--blue);
}

.mobile-menu nav .mobile-whatsapp {
  margin-top: 6px;
  background: var(--blue);
  color: var(--white);
}

.mobile-menu nav .mobile-whatsapp:hover,
.mobile-menu nav .mobile-whatsapp:focus-visible {
  background: var(--blue-dark);
  color: var(--white);
}

/* Shared headings */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 19px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 27px;
  height: 2px;
  display: inline-block;
  flex: 0 0 auto;
  background: currentColor;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 46px;
}

.section-heading h2,
.about-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -2.5px;
}

.section-heading > p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: 86px 70px;
  background: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 49%;
  background: radial-gradient(circle at 55% 48%, rgba(9, 103, 232, 0.12), transparent 66%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(460px, 1.06fr);
  align-items: center;
  gap: 56px;
}

.hero-copy,
.hero-image-visual {
  min-width: 0;
}

.hero-copy {
  padding-block: 20px;
}

.hero h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(56px, 6.3vw, 88px);
  font-weight: 820;
  line-height: 0.97;
  letter-spacing: -5px;
}

.hero h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.lead {
  max-width: 590px;
  margin: 28px 0 34px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
}

.text-link {
  padding-block: 8px;
  color: #34455d;
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
}

.hero-image-visual {
  --network-size: min(43vw, 510px);
  --sphere-size: min(29vw, 340px);
  --node-radius: 46%;
  --node-x: 39.84%;
  --node-y: 23%;
  --node-size: 72px;
  --endpoint-size: 10px;

  position: relative;
  width: 100%;
  max-width: 620px;
  min-height: 540px;
  margin-inline: auto;
  isolation: isolate;
}

.sphere-ambient {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  pointer-events: none;
}

.sphere-ambient::before {
  content: "";
  position: absolute;
  width: min(44vw, 530px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 151, 255, 0.18), rgba(86, 164, 255, 0.07) 42%, transparent 70%);
  filter: blur(8px);
}

.sphere-halo {
  position: absolute;
  border: 1px solid rgba(9, 103, 232, 0.12);
  border-radius: 50%;
}

.sphere-halo-one {
  width: min(43vw, 510px);
  aspect-ratio: 1;
  transform: rotateX(67deg);
  box-shadow: 0 0 45px rgba(9, 103, 232, 0.08);
}

.sphere-halo-two {
  width: min(36vw, 430px);
  aspect-ratio: 1;
  transform: rotateY(72deg);
  border-style: dashed;
}

.sphere-scene,
.business-network {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sphere-scene {
  z-index: 3;
  width: var(--sphere-size);
  height: var(--sphere-size);
  opacity: 0.84;
  filter: drop-shadow(0 26px 34px rgba(9, 63, 130, 0.2));
}

.network-sphere {
  width: 100%;
  height: 100%;
  display: block;
}

.business-network {
  z-index: 5;
  width: var(--network-size);
  height: var(--network-size);
}

.business-core {
  position: absolute;
  z-index: 10;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 78px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(9, 103, 232, 0.48);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 30px rgba(16, 35, 63, 0.12), 0 0 0 7px rgba(9, 103, 232, 0.055), inset 0 0 18px rgba(9, 103, 232, 0.07);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  animation: core-pulse 4.5s ease-in-out infinite;
}

.business-core::before,
.business-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.business-core::before {
  inset: 7px;
  border: 1px dashed rgba(9, 103, 232, 0.28);
  animation: spin 12s linear infinite;
}

.business-core::after {
  inset: -8px;
  background: conic-gradient(from 0deg, transparent 0 22%, rgba(9, 103, 232, 0.6) 23% 25%, transparent 26% 58%, rgba(9, 103, 232, 0.35) 59% 61%, transparent 62%);
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 66%);
  mask: radial-gradient(circle, transparent 64%, #000 66%);
  animation: spin 9s linear infinite reverse;
}

.business-core strong {
  position: relative;
  z-index: 1;
  max-width: 58px;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.05;
  letter-spacing: 0.7px;
  text-align: center;
}

.solution-node {
  position: absolute;
  z-index: 9;
  width: var(--node-size);
  height: var(--node-size);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 132, 246, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.98), rgba(239, 247, 255, 0.94) 58%, rgba(217, 234, 255, 0.92));
  box-shadow: 0 13px 30px rgba(12, 63, 126, 0.14), 0 0 0 6px rgba(36, 139, 255, 0.055), inset 0 0 22px rgba(64, 157, 255, 0.09);
}

.solution-node::before {
  content: "";
  position: absolute;
  inset: -3px;
  border: 1px dashed rgba(41, 141, 255, 0.3);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}

.node-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f8fbff, #e7f1ff);
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(9, 103, 232, 0.1), 0 5px 14px rgba(9, 103, 232, 0.1);
}

.node-icon svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-node > div {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  width: max-content;
  max-width: 150px;
  padding: 6px 11px;
  transform: translateX(-50%);
  border: 1px solid rgba(42, 143, 255, 0.34);
  border-radius: 999px;
  background: rgba(10, 25, 48, 0.92);
  box-shadow: 0 8px 20px rgba(6, 28, 58, 0.22);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  text-align: center;
}

.solution-node strong {
  display: block;
  color: #f4f9ff;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: 0.12px;
  white-space: nowrap;
}

.node-systems {
  left: 50%;
  top: calc(50% - var(--node-radius));
}

.node-security {
  left: calc(50% + var(--node-x));
  top: calc(50% - var(--node-y));
}

.node-automation {
  left: calc(50% + var(--node-x));
  top: calc(50% + var(--node-y));
}

.node-support {
  left: 50%;
  top: calc(50% + var(--node-radius));
}

.node-consulting {
  left: calc(50% - var(--node-x));
  top: calc(50% + var(--node-y));
}

.node-training {
  left: calc(50% - var(--node-x));
  top: calc(50% - var(--node-y));
}

.network-line {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  width: var(--node-radius);
  height: 2px;
  transform-origin: 0 50%;
  background: linear-gradient(90deg, rgba(72, 166, 255, 0.92), rgba(72, 166, 255, 0.72) 62%, rgba(72, 166, 255, 0.28));
  box-shadow: 0 0 10px rgba(37, 132, 240, 0.28);
}

.network-line::before,
.network-line::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 50%;
}

.network-line::before {
  left: 0;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%);
  background: #a8d5ff;
  box-shadow: 0 0 0 4px rgba(54, 151, 255, 0.14), 0 0 12px rgba(54, 151, 255, 0.8);
}

.network-line::after {
  right: 0;
  width: var(--endpoint-size);
  height: var(--endpoint-size);
  border: 2px solid rgba(232, 247, 255, 0.98);
  transform: translate(50%, -50%);
  background: #1681ff;
  box-shadow: 0 0 0 5px rgba(22, 129, 255, 0.17), 0 0 15px rgba(76, 184, 255, 0.9);
}

.network-line i {
  position: absolute;
  left: 8%;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--blue), 0 0 8px rgba(9, 103, 232, 0.55);
  animation: network-signal 2.7s linear infinite;
}

.line-systems { transform: rotate(-90deg); }
.line-security { transform: rotate(-30deg); }
.line-automation { transform: rotate(30deg); }
.line-support { transform: rotate(90deg); }
.line-consulting { transform: rotate(150deg); }
.line-training { transform: rotate(210deg); }
.line-security i { animation-delay: -0.45s; }
.line-automation i { animation-delay: -0.9s; }
.line-support i { animation-delay: -1.35s; }
.line-consulting i { animation-delay: -1.8s; }
.line-training i { animation-delay: -2.25s; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes core-pulse {
  50% { transform: translate(-50%, -50%) scale(1.045); }
}

@keyframes network-signal {
  0% { left: 8%; opacity: 0; }
  12%, 86% { opacity: 1; }
  100% { left: 96%; opacity: 0; }
}

.hero-image-visual.is-paused *,
.hero-image-visual.is-paused *::before,
.hero-image-visual.is-paused *::after {
  animation-play-state: paused !important;
}

/* Services */
.services {
  background: #f7f9fc;
}

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

.service-card {
  min-width: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  border-color: #bdd6f5;
  transform: translateY(-5px);
  box-shadow: 0 18px 35px rgba(26, 55, 89, 0.09);
}

.service-image {
  width: 100%;
  height: 155px;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  background: #eef6ff;
  transition: transform 300ms ease;
}

.service-card:hover .service-image {
  transform: scale(1.025);
}

.service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 27px 23px;
}

.service-content h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.service-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.service-detail {
  margin-top: auto;
  padding-top: 19px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

/* About */
.about {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about::before {
  content: "";
  position: absolute;
  right: -14rem;
  bottom: -18rem;
  width: 34rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(9, 103, 232, 0.08), transparent 68%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.about-showcase {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 56px 42px;
  isolation: isolate;
  border: 1px solid rgba(15, 92, 170, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(54, 154, 255, 0.1), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(7, 88, 200, 0.08), transparent 34%),
    linear-gradient(145deg, #fff 0%, #f8fbff 52%, #f2f7fd 100%);
  box-shadow:
    0 24px 60px rgba(15, 49, 86, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-showcase::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 360px;
  right: -165px;
  top: -185px;
  border: 1px solid rgba(15, 118, 238, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(15, 118, 238, 0.025),
    0 0 0 92px rgba(15, 118, 238, 0.018);
  pointer-events: none;
}

.about-showcase::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 260px;
  height: 260px;
  left: -130px;
  bottom: -155px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 141, 238, 0.1), transparent 70%);
  pointer-events: none;
}

.about-showcase__content {
  position: relative;
  width: min(100%, 430px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  text-align: center;
}

.about-showcase__logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin-inline: auto;
  mix-blend-mode: multiply;
}

.about-showcase__message {
  position: relative;
  z-index: 2;
}

.about-showcase__message p {
  margin: 0;
  color: #102a43;
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -1.5px;
  text-shadow: 0 2px 18px rgba(0, 29, 65, 0.08);
}

.about-showcase__message strong {
  color: #0f76ee;
}

.about-showcase__message small {
  max-width: 330px;
  display: block;
  margin: 22px auto 0;
  color: #5f7186;
  font-size: 14px;
  line-height: 1.55;
}

.about-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.04;
}

.about-copy > p:not(.eyebrow) {
  max-width: 670px;
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.company-values {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.values-title {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.values-grid > div {
  min-width: 0;
  padding: 4px 18px 4px 20px;
  border-left: 1px solid var(--line);
}

.values-grid > div:nth-child(odd) {
  padding-left: 0;
  border-left: 0;
}

.values-grid strong,
.values-grid small {
  display: block;
}

.values-grid strong {
  margin-bottom: 6px;
  font-size: 15px;
}

.values-grid small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Contact */
.contact {
  padding-top: 35px;
}

.contact-box {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  padding: 72px;
  border: 1px solid rgba(120, 179, 248, 0.25);
  border-radius: 22px;
  background: linear-gradient(135deg, #071a34, #0b315f 58%, #0758c8);
  color: var(--white);
  box-shadow: 0 30px 70px rgba(9, 42, 82, 0.2);
}

.contact-box::before,
.contact-box::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.contact-box::before {
  top: -190px;
  right: -150px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(130, 190, 255, 0.3);
  box-shadow: 0 0 0 45px rgba(87, 158, 241, 0.05), 0 0 0 95px rgba(87, 158, 241, 0.035);
}

.contact-box::after {
  left: 43%;
  bottom: -170px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(15, 118, 238, 0.5), transparent 70%);
}

.eyebrow.light {
  color: #cce3ff;
}

.contact-copy h2 {
  max-width: 620px;
  font-size: clamp(38px, 4.3vw, 58px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 0;
  color: #dbeaff;
  font-size: 16px;
  line-height: 1.75;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 29px;
}

.contact-highlights span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #dcecff;
  font-size: 14px;
  font-weight: 700;
}

.contact-highlights i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(60, 148, 255, 0.2);
  color: #77b7ff;
  font-size: 9px;
  font-style: normal;
}

.contact-actions {
  width: min(100%, 350px);
  display: grid;
  justify-self: end;
  gap: 12px;
}

.contact-button {
  width: 100%;
  min-height: 62px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 13px;
  padding: 11px 16px 11px 12px;
  font-size: 17px;
  font-weight: 750;
  text-align: left;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--blue);
}

.button-light:hover,
.button-light:focus-visible {
  border-color: var(--white);
  background: #eff6ff;
  color: var(--blue-dark);
}

.button-whatsapp {
  border-color: #1676ea;
  background: linear-gradient(135deg, #1678e8, var(--blue));
}

.button-whatsapp:hover,
.button-whatsapp:focus-visible {
  border-color: #0758c8;
  background: linear-gradient(135deg, #126fd8, #0758c8);
}

.contact-button__text {
  min-width: 0;
}

.contact-button__icon,
.contact-button__arrow {
  display: grid;
  place-items: center;
}

.contact-button__icon {
  width: 32px;
  height: 32px;
}

.contact-button__icon svg {
  width: 17px;
  height: 17px;
}

.contact-button__arrow {
  width: 24px;
  height: 24px;
  justify-self: end;
  opacity: 0.78;
  transition: transform 180ms ease, opacity 180ms ease;
}

.contact-button__arrow svg {
  width: 20px;
  height: 20px;
}

.contact-button__icon svg,
.contact-button__arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-button:hover .contact-button__arrow,
.contact-button:focus-visible .contact-button__arrow {
  opacity: 1;
  transform: translateX(3px);
}

/* Footer */
footer {
  padding-block: 35px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted);
  font-size: 12px;
}

.footer-wrap p {
  margin: 0;
}

.footer-wrap a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-left: auto;
  white-space: nowrap;
  color: var(--ink);
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1100px) {
  .container {
    width: min(100% - 36px, 1040px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(440px, 0.95fr);
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(52px, 6vw, 74px);
    letter-spacing: -4px;
  }

  .lead {
    font-size: 17px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 32px, 760px);
  }

  .desktop-nav,
  .desktop-contact {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    padding-block: 56px 62px;
  }

  .hero::after {
    inset: 40% 0 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-copy {
    max-width: 680px;
    padding-bottom: 0;
  }

  .hero h1 {
    font-size: clamp(50px, 9vw, 72px);
  }

  .hero-image-visual {
    --network-size: 440px;
    --sphere-size: 300px;
    --node-radius: 45%;
    --node-x: 38.97%;
    --node-y: 22.5%;
    --node-size: 64px;
    --endpoint-size: 9px;

    min-height: 530px;
  }

  .solution-node > div {
    top: calc(100% + 8px);
    padding: 5px 9px;
  }

  .section {
    padding-block: 82px;
  }

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

  .about-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 42px;
  }

  .about-showcase {
    min-height: 500px;
    padding: 52px 36px;
  }

  .about-copy {
    max-width: 760px;
  }

  .contact-box {
    gap: 34px;
    padding: 48px;
  }

  .contact-actions {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 600px);
  }

  .hero {
    padding-block: 42px 48px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 58px);
    letter-spacing: -3px;
  }

  .lead {
    margin-block: 22px 25px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

  .text-link {
    text-align: center;
  }

  .hero-image-visual {
    min-height: 480px;
  }

  .section {
    padding-block: 68px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-heading h2,
  .about-copy h2,
  .contact h2 {
    font-size: clamp(34px, 10vw, 44px);
    letter-spacing: -2px;
  }

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

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

  .service-image {
    height: auto;
    aspect-ratio: 16 / 7;
  }

  .contact-box {
    padding: 36px 22px;
    border-radius: 18px;
  }

  .contact.section {
    padding-bottom: 32px;
  }

  footer {
    padding: 0 0 max(24px, env(safe-area-inset-bottom));
  }

  .footer-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
  }

  .footer-brand,
  .footer-rights {
    display: block;
  }

  .footer-brand {
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
  }

  .footer-rights {
    margin-top: 4px;
  }

  .footer-wrap a {
    justify-self: end;
    margin-left: 0;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .brand-logo {
    width: 164px;
  }

  .hero-image-visual {
    --network-size: min(330px, calc(100vw - 18px));
    --sphere-size: 220px;
    --node-radius: 44%;
    --node-x: 38.1%;
    --node-y: 22%;
    --node-size: 54px;
    --endpoint-size: 8px;

    min-height: 430px;
  }

  .sphere-ambient::before {
    width: 360px;
  }

  .sphere-halo-one {
    width: 340px;
  }

  .sphere-halo-two {
    width: 285px;
  }

  .business-core {
    width: 64px;
    height: 64px;
  }

  .business-core strong {
    max-width: 48px;
    font-size: 8px;
  }

  .node-icon {
    width: 22px;
    height: 22px;
  }

  .node-icon svg {
    width: 13px;
    height: 13px;
  }

  .solution-node > div {
    top: calc(100% + 6px);
    max-width: 115px;
    padding: 4px 7px;
  }

  .solution-node strong {
    white-space: normal;
  }

  .network-line {
    height: 1px;
  }

  .about-showcase {
    min-height: 440px;
    padding: 42px 24px;
    border-radius: 20px;
    background:
      radial-gradient(circle at 18% 18%, rgba(54, 154, 255, 0.09), transparent 34%),
      linear-gradient(145deg, #fff 0%, #f7faff 100%);
  }

  .about-showcase__content {
    gap: 28px;
  }

  .about-showcase__logo {
    width: min(92%, 270px);
  }

  .about-showcase__message p {
    font-size: 32px;
  }

  .about-showcase__message small {
    margin-top: 18px;
  }

  .contact-highlights {
    display: grid;
    gap: 9px;
  }

  .contact-actions {
    width: min(100%, 320px);
    gap: 10px;
  }

  .contact-button {
    grid-template-columns: 30px minmax(0, 1fr) 22px;
    min-height: 58px;
    gap: 11px;
    padding: 10px 14px 10px 11px;
    font-size: 16px;
  }

  .contact-button__icon {
    width: 30px;
    height: 30px;
  }

  .contact-button__icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-button__arrow,
  .contact-button__arrow svg {
    width: 19px;
    height: 19px;
  }

}

@media (max-width: 430px) {
  .container {
    width: min(100% - 22px, 410px);
  }

  .brand-logo {
    width: 152px;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
  }

  .eyebrow {
    letter-spacing: 1.35px;
  }

  .hero h1 {
    font-size: clamp(39px, 13.5vw, 50px);
    letter-spacing: -2.5px;
  }

  .hero-image-visual {
    --network-size: min(280px, calc(100vw - 100px));
    --sphere-size: 195px;
    --node-size: 50px;

    min-height: 400px;
  }

  .solution-node > div {
    padding-inline: 5px;
  }

  .about-copy h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .values-grid > div {
    padding: 0 0 16px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-copy h2 {
    font-size: 33px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
