/*
 * SICAG — Sistemas Informáticos Canarios
 * Sitio estático, responsive y sin dependencias externas.
 */

:root {
  --ink-950: #05131d;
  --ink-900: #071824;
  --ink-850: #0a202f;
  --ink-800: #102b3d;
  --ink-700: #244357;
  --ink-600: #4b6575;
  --ink-500: #687f8c;
  --ink-300: #b8c7cf;
  --ink-200: #d7e1e6;
  --ink-100: #eaf0f3;
  --ink-50: #f5f8fa;
  --white: #ffffff;
  --cyan: #16c6dc;
  --cyan-dark: #0a9fb7;
  --cyan-soft: #dffbff;
  --blue: #1677e8;
  --blue-dark: #0c55b2;
  --blue-soft: #e7f2ff;
  --yellow: #ffd64a;
  --green: #37d995;
  --danger: #d9425f;
  --shadow-sm: 0 8px 24px rgb(9 38 55 / 8%);
  --shadow-md: 0 18px 50px rgb(9 38 55 / 12%);
  --shadow-lg: 0 28px 80px rgb(0 14 24 / 28%);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --shell: 1180px;
  --header-height: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-800);
  background: var(--white);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  color: var(--ink-950);
  background: var(--cyan);
}

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

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

.logo-heartbeat {
  transform-origin: center center;
  animation: heartbeat 1.5s ease-in-out infinite both;
  will-change: transform;
}

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

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  color: var(--ink-950);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6rem);
}

h2 {
  font-size: clamp(2.3rem, 4.7vw, 4.2rem);
}

h3 {
  font-size: 1.35rem;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-tint {
  background: var(--ink-50);
}

.section-dark {
  color: var(--ink-200);
  background: var(--ink-950);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--ink-950);
  background: var(--yellow);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button .icon {
  transition: transform 0.25s var(--ease);
}

.button:hover .icon-arrow,
.button:hover .icon:last-child:not(:first-child) {
  transform: translateX(3px);
}

.button-small {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.87rem;
}

.button-large {
  min-height: 56px;
  padding-inline: 28px;
}

.button-primary {
  color: var(--ink-950);
  background: var(--cyan);
  box-shadow: 0 12px 34px rgb(22 198 220 / 20%);
}

.button-primary:hover {
  background: #35d9eb;
  box-shadow: 0 16px 40px rgb(22 198 220 / 28%);
}

.button-ghost {
  color: var(--white);
  background: rgb(255 255 255 / 6%);
  border-color: rgb(255 255 255 / 18%);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgb(255 255 255 / 12%);
  border-color: rgb(255 255 255 / 34%);
}

.button-light {
  color: var(--ink-950);
  background: var(--white);
}

.button-light:hover {
  background: var(--yellow);
}

.button-quiet {
  background: transparent;
  border-color: var(--ink-200);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--cyan);
}

.eyebrow-light {
  color: var(--cyan);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-heading > p,
.heading-split > p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--ink-600);
  font-size: 1.08rem;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
}

.section-heading-centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading-centered .eyebrow {
  justify-content: center;
}

.section-heading-centered h2 {
  margin-bottom: 22px;
}

.section-heading-centered > p {
  margin-inline: auto;
}

.heading-light h2 {
  color: var(--white);
}

.heading-light > p {
  color: var(--ink-300);
}

.section-lead {
  color: var(--ink-700);
  font-size: 1.16rem;
  line-height: 1.75;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible,
.no-js [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.site-header.is-scrolled {
  background: rgb(5 19 29 / 94%);
  box-shadow: 0 12px 34px rgb(0 0 0 / 20%);
  backdrop-filter: blur(18px);
}

.utility-bar {
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.77rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: var(--ink-300);
}

.status-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgb(55 217 149 / 14%);
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.utility-links a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-200);
  transition: color 0.2s ease;
}

.utility-links a:hover {
  color: var(--cyan);
}

.main-nav {
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 42px;
  overflow: hidden;
  color: var(--ink-950);
  background: var(--cyan);
  border-radius: 9px 16px 9px 9px;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  width: 4px;
  height: 4px;
  background: var(--ink-950);
  border-radius: 1px;
  opacity: 0.58;
}

.brand-mark::before {
  top: 6px;
}

.brand-mark::after {
  top: 12px;
}

.brand-signal {
  position: absolute;
  left: -9px;
  bottom: -17px;
  width: 39px;
  height: 39px;
  border: 7px solid rgb(5 19 29 / 18%);
  border-radius: 50%;
}

.brand-mark strong {
  position: relative;
  z-index: 1;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  max-width: 185px;
  color: var(--white);
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--ink-300);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 27px;
}

.nav-link {
  position: relative;
  padding: 28px 0;
  color: var(--ink-200);
  font-size: 0.86rem;
  font-weight: 750;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 19px;
  left: 50%;
  height: 2px;
  background: var(--cyan);
  transition:
    right 0.25s var(--ease),
    left 0.25s var(--ease);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  right: 0;
  left: 0;
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle .icon-close {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-menu {
  display: none;
}

.menu-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--ink-200);
  background:
    linear-gradient(100deg, rgb(5 19 29 / 100%) 0%, rgb(7 24 36 / 98%) 45%, rgb(8 30 44 / 94%) 100%),
    var(--ink-950);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to right, black, transparent 75%);
}

#network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.48;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-one {
  top: 15%;
  right: -8%;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgb(22 198 220 / 17%), transparent 68%);
}

.hero-glow-two {
  bottom: -26%;
  left: 25%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgb(22 119 232 / 12%), transparent 65%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(410px, 0.82fr);
  align-items: center;
  gap: 70px;
  min-height: 760px;
  padding-top: 154px;
  padding-bottom: 78px;
}

.hero-copy {
  max-width: 720px;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.3rem, 6.3vw, 6.3rem);
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  color: var(--cyan);
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 36px;
  color: var(--ink-200);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 0;
  padding: 0;
  color: var(--ink-300);
  font-size: 0.82rem;
  list-style: none;
}

.hero-assurances li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-assurances .icon {
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 480px;
  perspective: 1200px;
}

.orbit {
  position: absolute;
  border: 1px solid rgb(22 198 220 / 22%);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 16px var(--cyan);
}

.orbit::before {
  top: 10%;
  left: 18%;
}

.orbit::after {
  right: 7%;
  bottom: 22%;
}

.orbit-one {
  inset: -15px 30px 25px -26px;
}

.orbit-two {
  inset: 20px -36px -12px 16px;
  border-color: rgb(22 119 232 / 18%);
  animation-duration: 34s;
  animation-direction: reverse;
}

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

.dashboard-card {
  position: absolute;
  inset: 36px 12px auto 28px;
  z-index: 2;
  min-height: 382px;
  padding: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgb(18 48 66 / 92%), rgb(8 27 40 / 92%));
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
  transform: rotateY(-6deg) rotateX(2deg);
}

.dashboard-card::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -110px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgb(22 198 220 / 14%), transparent 68%);
}

.dashboard-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.dashboard-top > div {
  display: grid;
  gap: 6px;
}

.dashboard-kicker {
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.dashboard-top strong {
  color: var(--white);
  font-size: 1.32rem;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  color: var(--green);
  background: rgb(55 217 149 / 10%);
  border: 1px solid rgb(55 217 149 / 22%);
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 800;
}

.live-pill i {
  width: 6px;
  height: 6px;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 10px currentColor;
}

.signal-chart {
  position: relative;
  display: flex;
  align-items: end;
  gap: 9px;
  height: 92px;
  padding: 13px 16px 0;
  overflow: hidden;
  background:
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px),
    rgb(2 15 24 / 38%);
  background-size: 100% 25%, 12.5% 100%, auto;
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 12px;
}

.signal-chart span {
  flex: 1;
  height: var(--h);
  min-height: 12%;
  background: linear-gradient(to top, var(--blue), var(--cyan));
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 18px rgb(22 198 220 / 20%);
  transform-origin: bottom;
  animation: bars 1.3s var(--ease) both;
}

.signal-chart span:nth-child(2n) {
  animation-delay: 0.08s;
}

.signal-chart span:nth-child(3n) {
  animation-delay: 0.16s;
}

@keyframes bars {
  from {
    transform: scaleY(0.1);
  }
}

.dashboard-services {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.dashboard-services > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 54px;
  padding: 8px 11px;
  background: rgb(255 255 255 / 4%);
  border: 1px solid rgb(255 255 255 / 7%);
  border-radius: 11px;
}

.dashboard-services > div > span:nth-child(2) {
  display: grid;
  line-height: 1.22;
}

.dashboard-services strong {
  color: var(--white);
  font-size: 0.76rem;
}

.dashboard-services small {
  margin-top: 3px;
  color: var(--ink-300);
  font-size: 0.61rem;
}

.dashboard-services b {
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 800;
}

.service-indicator {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.service-indicator.cyan {
  color: var(--cyan);
  background: rgb(22 198 220 / 10%);
}

.service-indicator.blue {
  color: #61a9ff;
  background: rgb(22 119 232 / 12%);
}

.service-indicator.yellow {
  color: var(--yellow);
  background: rgb(255 214 74 / 10%);
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 176px;
  padding: 13px 16px;
  color: var(--white);
  background: rgb(9 34 48 / 91%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgb(0 0 0 / 24%);
  backdrop-filter: blur(16px);
  animation: float 5.2s ease-in-out infinite;
}

.floating-card > .icon {
  width: 25px;
  height: 25px;
  padding: 5px;
  color: var(--cyan);
  background: rgb(22 198 220 / 12%);
  border-radius: 7px;
}

.floating-card > span {
  display: grid;
  line-height: 1.25;
}

.floating-card strong {
  font-size: 0.73rem;
}

.floating-card small {
  margin-top: 3px;
  color: var(--ink-300);
  font-size: 0.6rem;
}

.floating-card-code {
  top: 1px;
  left: -16px;
}

.floating-card-location {
  right: -7px;
  bottom: 17px;
  animation-delay: -2.6s;
}

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

.hero-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 60px;
  color: var(--ink-500);
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-bottom i {
  width: 4px;
  height: 4px;
  background: var(--cyan-dark);
  border-radius: 50%;
}

/* Company */
.company-grid {
  display: grid;
  grid-template-columns: minmax(350px, 0.85fr) minmax(0, 1fr);
  align-items: center;
  gap: 105px;
}

.company-visual {
  position: relative;
  min-height: 520px;
}

.year-card {
  position: absolute;
  inset: 0 36px 44px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 24%, rgb(22 198 220 / 18%), transparent 32%),
    linear-gradient(145deg, var(--ink-800), var(--ink-950));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.year-card::before {
  content: "";
  position: absolute;
  top: 40px;
  right: 35px;
  width: 140px;
  height: 140px;
  border: 1px solid rgb(22 198 220 / 22%);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgb(22 198 220 / 4%),
    0 0 0 57px rgb(22 198 220 / 2%);
}

.year-card::after {
  content: "SICAG";
  position: absolute;
  top: 56px;
  left: 52px;
  color: rgb(255 255 255 / 4%);
  font-size: 6.5rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.year-card span,
.year-card strong,
.year-card p {
  position: relative;
  z-index: 1;
}

.year-card span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.year-card strong {
  margin: 4px 0 8px;
  font-size: clamp(4.6rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.year-card p {
  max-width: 250px;
  margin-bottom: 0;
  color: var(--ink-300);
  font-size: 0.93rem;
}

.values-panel {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 260px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.values-panel span {
  padding: 7px 11px;
  color: var(--blue-dark);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 850;
}

.values-panel span:nth-child(2n) {
  color: #087e8c;
  background: var(--cyan-soft);
}

.visual-cross {
  position: absolute;
  color: var(--cyan);
  font-size: 2rem;
  font-weight: 300;
}

.cross-one {
  top: 18px;
  left: -22px;
}

.cross-two {
  right: 3px;
  bottom: 152px;
}

.company-copy h2 {
  margin-bottom: 30px;
}

.company-copy > p:not(.eyebrow) {
  margin-bottom: 20px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 32px;
}

.feature-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 14px 16px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 14px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
}

.feature-list > div > span:last-child {
  display: grid;
  line-height: 1.35;
}

.feature-list strong {
  color: var(--ink-900);
  font-size: 0.9rem;
}

.feature-list small {
  margin-top: 3px;
  color: var(--ink-600);
  font-size: 0.77rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-weight: 850;
}

.text-link .icon {
  transition: transform 0.25s var(--ease);
}

.text-link:hover .icon {
  transform: translateX(4px);
}

/* Solutions */
.solutions {
  overflow: hidden;
}

.solutions::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -160px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgb(22 198 220 / 12%), transparent 66%);
  border-radius: 50%;
}

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

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 510px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgb(22 198 220 / 10%), transparent 66%);
  border-radius: 50%;
}

.solution-card:hover {
  z-index: 2;
  border-color: rgb(22 198 220 / 35%);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.solution-card-featured {
  color: var(--ink-200);
  background: linear-gradient(150deg, var(--ink-800), var(--ink-950));
  border-color: var(--ink-800);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 24px;
  color: var(--ink-300);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.solution-card-featured .card-number {
  color: var(--ink-500);
}

.solution-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 16px;
}

.solution-icon .icon {
  width: 25px;
  height: 25px;
}

.solution-card-featured .solution-icon {
  color: var(--cyan);
  background: rgb(22 198 220 / 11%);
}

.solution-card h3 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
  font-size: 1.55rem;
}

.solution-card h3 small {
  color: var(--ink-500);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solution-card-featured h3 {
  color: var(--white);
}

.solution-card > p {
  min-height: 78px;
  margin-bottom: 24px;
  color: var(--ink-600);
  font-size: 0.88rem;
  line-height: 1.65;
}

.solution-card-featured > p {
  color: var(--ink-300);
}

.solution-card ul {
  display: grid;
  gap: 9px;
  margin: 0 0 28px;
  padding: 0;
  color: var(--ink-700);
  font-size: 0.78rem;
  list-style: none;
}

.solution-card li {
  position: relative;
  padding-left: 18px;
}

.solution-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  transform: translateY(-50%);
}

.solution-card-featured ul {
  color: var(--ink-300);
}

.solution-card > a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 850;
}

.solution-card-featured > a {
  color: var(--cyan);
}

.solution-card > a .icon {
  transition: transform 0.25s var(--ease);
}

.solution-card > a:hover .icon {
  transform: translateX(4px);
}

/* Services */
.service-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: -12px 0 42px;
}

.filter-button {
  min-height: 42px;
  padding: 0 17px;
  color: var(--ink-600);
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.filter-button:hover {
  color: var(--blue-dark);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.filter-button.is-active {
  color: var(--white);
  background: var(--ink-900);
  border-color: var(--ink-900);
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgb(9 38 55 / 6%);
  transition:
    opacity 0.25s ease,
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.service-card:hover {
  border-color: rgb(22 119 232 / 26%);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card[hidden] {
  display: none;
}

.service-card.is-filtering {
  opacity: 0;
  transform: scale(0.96);
}

.service-card-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 14px;
}

.service-card:nth-child(2n) .service-card-icon {
  color: #078898;
  background: var(--cyan-soft);
}

.service-tag {
  position: absolute;
  top: 29px;
  right: 27px;
  color: var(--ink-500);
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.14rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--ink-600);
  font-size: 0.82rem;
  line-height: 1.72;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 850;
}

.service-card a .icon {
  transition: transform 0.25s var(--ease);
}

.service-card a:hover .icon {
  transform: translateX(4px);
}

.services-empty {
  padding: 50px;
  color: var(--ink-600);
  background: var(--ink-50);
  border: 1px dashed var(--ink-200);
  border-radius: var(--radius-md);
  text-align: center;
}

.services-empty p {
  margin: 0;
}

/* Process */
.process {
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  top: -280px;
  left: 55%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgb(22 198 220 / 11%), transparent 66%);
  border-radius: 50%;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgb(22 198 220 / 45%), transparent);
}

.process-grid li {
  position: relative;
  padding: 0 30px;
  text-align: center;
}

.process-grid li > span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 26px;
  color: var(--cyan);
  background: var(--ink-900);
  border: 1px solid rgb(22 198 220 / 32%);
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--ink-950);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-grid h3 {
  margin-bottom: 13px;
  color: var(--white);
  font-size: 1.12rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--ink-300);
  font-size: 0.81rem;
  line-height: 1.7;
}

/* Contact */
.contact {
  background:
    radial-gradient(circle at 8% 92%, rgb(22 198 220 / 8%), transparent 25%),
    var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1fr);
  align-items: start;
  gap: 85px;
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-method {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 15px;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease);
}

.contact-method:hover {
  background: var(--white);
  border-color: rgb(22 119 232 / 25%);
  transform: translateX(5px);
}

.contact-method > span:first-child {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
}

.contact-method > span:nth-child(2) {
  display: grid;
  line-height: 1.28;
}

.contact-method small {
  color: var(--ink-500);
  font-size: 0.67rem;
}

.contact-method strong {
  margin-top: 4px;
  color: var(--ink-900);
  font-size: 0.85rem;
}

.method-arrow {
  margin-right: 5px;
  color: var(--ink-500);
  transition: transform 0.25s var(--ease);
}

.contact-method:hover .method-arrow {
  color: var(--blue);
  transform: translateX(4px);
}

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 21px;
  padding: 16px 18px;
  color: var(--ink-600);
  background: var(--cyan-soft);
  border: 1px solid rgb(22 198 220 / 18%);
  border-radius: 13px;
  font-size: 0.75rem;
}

.contact-note .icon {
  width: 20px;
  height: 20px;
  color: #078898;
}

.contact-note p {
  margin: 0;
}

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

.contact-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 28px;
}

.form-top p {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.67rem;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-badge i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(55 217 149 / 12%);
}

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

.field {
  display: grid;
  margin-bottom: 18px;
}

.field label {
  margin-bottom: 7px;
  color: var(--ink-800);
  font-size: 0.74rem;
  font-weight: 800;
}

.field label span {
  color: var(--danger);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  color: var(--ink-900);
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: 11px;
  outline: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input,
.field select {
  height: 50px;
  padding: 0 14px;
}

.field textarea {
  min-height: 132px;
  padding: 13px 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8ca0ab;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgb(22 119 232 / 10%);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  padding-right: 40px;
  appearance: none;
}

.select-wrap > .icon {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 17px;
  height: 17px;
  color: var(--ink-500);
  pointer-events: none;
  transform: translateY(-50%);
}

.field-error {
  display: none;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.66rem;
}

.field.is-invalid input,
.field.is-invalid textarea,
.field.is-invalid select {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgb(217 66 95 / 8%);
}

.field.is-invalid .field-error {
  display: block;
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 1px 0 24px;
  color: var(--ink-600);
  font-size: 0.7rem;
  cursor: pointer;
}

.check-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-field > span:first-of-type {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  color: transparent;
  background: var(--white);
  border: 1px solid var(--ink-300);
  border-radius: 5px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.check-field > span:first-of-type .icon {
  width: 13px;
  height: 13px;
  stroke-width: 2.5;
}

.check-field input:checked + span {
  color: var(--ink-950);
  background: var(--cyan);
  border-color: var(--cyan);
}

.check-field input:focus-visible + span {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.check-field.is-invalid > span:first-of-type {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgb(217 66 95 / 8%);
}

.check-field em {
  color: var(--danger);
  font-style: normal;
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 1.35em;
  margin: 12px 0 0;
  color: var(--ink-600);
  font-size: 0.72rem;
  text-align: center;
}

.form-status.is-success {
  color: #087847;
}

.form-status.is-error {
  color: var(--danger);
}

/* CTA and footer */
.cta-strip {
  color: var(--white);
  background: linear-gradient(105deg, var(--blue-dark), var(--blue) 58%, #1090d5);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 170px;
}

.cta-inner > div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cta-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  color: var(--ink-950);
  background: var(--cyan);
  border-radius: 18px;
  font-size: 1.7rem;
  font-weight: 950;
  box-shadow: 0 14px 30px rgb(0 31 80 / 22%);
}

.cta-inner > div > span:last-child {
  display: grid;
  line-height: 1.2;
}

.cta-inner small {
  margin-bottom: 8px;
  color: rgb(255 255 255 / 72%);
  font-size: 0.75rem;
  font-weight: 700;
}

.cta-inner strong {
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
}

.site-footer {
  color: var(--ink-300);
  background: var(--ink-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.7fr);
  gap: 65px;
  padding-top: 78px;
  padding-bottom: 62px;
}

.brand-footer {
  margin-bottom: 23px;
}

.footer-brand > p {
  max-width: 350px;
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.82rem;
}

.footer-grid h2 {
  margin: 4px 0 20px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink-500);
  font-size: 0.77rem;
  list-style: none;
}

.footer-grid a {
  transition: color 0.2s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact .icon {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  color: var(--cyan-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  color: var(--ink-600);
  border-top: 1px solid rgb(255 255 255 / 7%);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 18px;
}

.footer-bottom button {
  padding: 0;
  color: var(--ink-500);
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease;
}

.footer-bottom button:hover {
  color: var(--cyan);
}

/* Floating UI */
.floating-phone {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  color: var(--ink-950);
  background: var(--cyan);
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 999px;
  box-shadow: 0 14px 38px rgb(4 72 90 / 26%);
  font-size: 0.78rem;
  font-weight: 850;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s ease;
}

.floating-phone:hover {
  box-shadow: 0 18px 44px rgb(4 72 90 / 34%);
  transform: translateY(-4px);
}

.back-to-top {
  position: fixed;
  right: 27px;
  bottom: 88px;
  z-index: 590;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: var(--ink-900);
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease);
}

.back-to-top .icon {
  transform: rotate(-90deg);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 86px;
  left: 24px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(calc(100% - 48px), 960px);
  margin-inline: auto;
  padding: 18px 20px;
  color: var(--ink-700);
  background: rgb(255 255 255 / 96%);
  border: 1px solid var(--ink-100);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgb(0 20 32 / 22%);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cookie-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 12px;
  font-size: 1.3rem;
}

.cookie-banner p {
  max-width: 600px;
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.55;
}

.cookie-banner strong {
  display: block;
  color: var(--ink-900);
  font-size: 0.84rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-actions .button {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.7rem;
}

/* Dialog */
.site-dialog {
  width: min(calc(100% - 32px), 620px);
  padding: 0;
  color: var(--ink-800);
  background: var(--white);
  border: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.site-dialog::backdrop {
  background: rgb(1 12 20 / 74%);
  backdrop-filter: blur(8px);
}

.site-dialog[open] {
  animation: dialog-in 0.35s var(--ease) both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
}

.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 27px 29px 22px;
  border-bottom: 1px solid var(--ink-100);
}

.dialog-header span {
  color: var(--blue);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dialog-header h2 {
  margin: 4px 0 0;
  font-size: 1.65rem;
}

.dialog-close {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  padding: 0;
  color: var(--ink-600);
  background: var(--ink-50);
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  cursor: pointer;
}

.dialog-content {
  padding: 27px 29px 8px;
  color: var(--ink-600);
  font-size: 0.87rem;
}

.dialog-content strong {
  color: var(--ink-900);
}

.dialog-footer {
  display: flex;
  justify-content: flex-end;
  padding: 18px 29px 27px;
}

.noscript-message {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  padding: 14px;
  color: var(--ink-950);
  background: var(--yellow);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

/* Responsive */
@media (max-width: 1120px) {
  .nav-menu {
    gap: 18px;
  }

  .nav-link {
    font-size: 0.8rem;
  }

  .brand-copy {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
    gap: 40px;
  }

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

  .solution-card {
    min-height: 470px;
  }

  .company-grid {
    gap: 65px;
  }

  .contact-grid {
    gap: 55px;
  }

  .footer-grid {
    gap: 40px;
  }
}

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

  .section {
    padding: 90px 0;
  }

  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-copy {
    display: grid;
  }

  .nav-menu {
    position: fixed;
    top: 107px;
    right: 0;
    bottom: 0;
    width: min(86vw, 390px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 28px;
    overflow-y: auto;
    background: rgb(5 19 29 / 98%);
    border-left: 1px solid rgb(255 255 255 / 10%);
    box-shadow: -20px 0 60px rgb(0 0 0 / 25%);
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition:
      visibility 0.35s,
      opacity 0.35s ease,
      transform 0.35s var(--ease);
  }

  .site-header.is-scrolled .nav-menu {
    top: 107px;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  .nav-link {
    padding: 17px 4px;
    border-bottom: 1px solid rgb(255 255 255 / 8%);
    font-size: 1rem;
  }

  .nav-link::after {
    display: none;
  }

  .nav-cta {
    margin-top: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 190px;
    padding-bottom: 80px;
  }

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

  .hero h1 {
    max-width: 780px;
  }

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

  .hero-bottom {
    flex-wrap: wrap;
    padding: 18px 0;
  }

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

  .company-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .company-copy {
    max-width: 720px;
  }

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

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

  .process-grid::before {
    display: none;
  }

  .contact-copy {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(2, 0.7fr);
  }

  .footer-grid > div:last-child {
    grid-column: 2 / -1;
  }
}

@media (max-width: 650px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding: 76px 0;
  }

  .utility-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .utility-links a {
    font-size: 0.7rem;
  }

  .brand-copy strong {
    max-width: 142px;
    font-size: 0.68rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  .brand-mark {
    width: 54px;
    height: 39px;
  }

  .nav-menu {
    top: 107px;
    width: 100%;
  }

  .hero-grid {
    padding-top: 176px;
    padding-bottom: 60px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-assurances {
    display: grid;
  }

  .hero-visual {
    min-height: 392px;
    margin-top: 10px;
  }

  .dashboard-card {
    inset: 28px 0 auto;
    min-height: 348px;
    padding: 22px;
    transform: none;
  }

  .floating-card-code {
    top: -3px;
    left: -4px;
  }

  .floating-card-location {
    right: -4px;
    bottom: -8px;
  }

  .floating-card {
    min-width: 150px;
    padding: 10px 12px;
  }

  .signal-chart {
    height: 76px;
  }

  .dashboard-services > div {
    min-height: 49px;
  }

  .hero-bottom {
    gap: 12px;
  }

  .hero-bottom span:nth-of-type(4),
  .hero-bottom i:nth-of-type(4),
  .hero-bottom span:nth-of-type(5) {
    display: none;
  }

  .company-visual {
    min-height: 440px;
  }

  .year-card {
    inset: 0 18px 58px 0;
    padding: 34px;
  }

  .year-card::after {
    top: 62px;
    left: 30px;
    font-size: 4.6rem;
  }

  .values-panel {
    width: 240px;
    padding: 15px;
  }

  .solution-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: auto;
  }

  .solution-card > p {
    min-height: auto;
  }

  .service-filters {
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin-right: -16px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .service-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .process-grid {
    gap: 36px;
  }

  .process-grid li {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 17px;
    padding: 0;
    text-align: left;
  }

  .process-grid li > span {
    grid-row: 1 / 3;
    width: 49px;
    height: 49px;
    margin: 0;
    box-shadow: none;
  }

  .process-grid h3 {
    margin: 3px 0 7px;
  }

  .process-grid p {
    grid-column: 2;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .form-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    justify-content: center;
    min-height: 240px;
    padding: 40px 0;
  }

  .cta-inner .button {
    width: 100%;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 92px;
  }

  .floating-phone {
    right: 14px;
    bottom: 14px;
    width: 50px;
    padding: 0;
    justify-content: center;
  }

  .floating-phone span {
    display: none;
  }

  .back-to-top {
    right: 18px;
    bottom: 75px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    align-items: stretch;
    flex-direction: column;
    width: auto;
    gap: 16px;
  }

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

@media (max-width: 400px) {
  .utility-links a:first-child {
    display: none;
  }

  .utility-links {
    justify-content: center;
  }

  .brand-copy {
    display: none;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .dashboard-top strong {
    font-size: 1.05rem;
  }

  .floating-card {
    min-width: 132px;
  }

  .floating-card > .icon {
    display: none;
  }

  .year-card strong {
    font-size: 4.4rem;
  }

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

  .footer-grid > div,
  .footer-grid > div:last-child {
    grid-column: 1;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .hero-visual,
  .floating-phone,
  .back-to-top,
  .cookie-banner,
  .cta-strip,
  .contact-form,
  .service-filters {
    display: none !important;
  }

  .hero {
    min-height: auto;
    color: #000;
    background: #fff;
  }

  .hero-grid {
    display: block;
    min-height: auto;
    padding: 40px 0;
  }

  .hero h1,
  .hero h1 span {
    color: #000;
  }

  .section {
    padding: 40px 0;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
