:root {
  --bg: #07101b;
  --bg-soft: #0d1a29;
  --text: #e7f2ff;
  --muted: #a4bbd3;
  --line: rgba(129, 186, 219, 0.2);
  --brand: #10d3bc;
  --brand-soft: #38f7cf;
  --accent: #8bf976;
  --card: rgba(8, 20, 31, 0.76);
  --radius: 20px;
  --shadow: 0 25px 55px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Bahnschrift, "Segoe UI Variable Display", "Franklin Gothic Medium", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 12%, rgba(34, 225, 183, 0.22), transparent 36%),
    radial-gradient(circle at 18% 66%, rgba(14, 111, 168, 0.3), transparent 42%),
    linear-gradient(120deg, #050b13 0%, var(--bg) 48%, #081524 100%);
  overflow-x: hidden;
  --mx: 50vw;
  --my: 50vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(280px circle at var(--mx) var(--my), rgba(83, 220, 255, 0.13), transparent 70%);
  transition: background-position 0.08s linear;
}

canvas#fx-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: 0.08;
  background-image: radial-gradient(rgba(255, 255, 255, 0.45) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
  pointer-events: none;
}

.container {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  backdrop-filter: blur(12px);
  background: rgba(4, 10, 18, 0.7);
  border-bottom: 1px solid rgba(71, 125, 161, 0.22);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 0 16px rgba(16, 211, 188, 0.42));
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-menu a {
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  transition: 0.25s ease;
  position: relative;
}

.site-menu a:hover {
  color: #ffffff;
  background: rgba(66, 119, 151, 0.25);
}

.site-menu a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #8cffe9, #45dbff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.site-menu a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.8rem 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}

.btn-nav {
  background: linear-gradient(120deg, #34e184, #17b892);
  color: #032218;
}

.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(24, 185, 146, 0.32);
}

.btn-primary {
  background: linear-gradient(120deg, var(--brand-soft), var(--brand));
  color: #03221c;
  box-shadow: 0 12px 24px rgba(56, 247, 207, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(56, 247, 207, 0.34);
}

.btn-ghost {
  border: 1px solid rgba(154, 203, 235, 0.4);
  color: #dff4ff;
  background: rgba(10, 27, 42, 0.35);
}

.btn-ghost:hover {
  background: rgba(50, 109, 146, 0.3);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 7rem 0 4.8rem;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06) brightness(0.45);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(96deg, rgba(1, 9, 17, 0.9) 7%, rgba(1, 13, 25, 0.7) 45%, rgba(2, 20, 34, 0.45) 78%, rgba(4, 16, 28, 0.68) 100%),
    radial-gradient(circle at 18% 40%, rgba(30, 255, 217, 0.18), transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-copy {
  max-width: 840px;
  text-align: center;
}

.hero-pill {
  margin: 0 auto 1.1rem;
  width: fit-content;
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(90, 236, 211, 0.55);
  color: #7bf5dd;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(7, 34, 45, 0.42);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 6.1rem);
  line-height: 1.03;
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 12px 24px rgba(0, 0, 0, 0.36);
}

.hero-copy h1 span {
  background: linear-gradient(120deg, #8dffe8 0%, #3ce4d4 45%, #35b8ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  margin: 0 0 0.85rem;
  color: var(--brand-soft);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.lead {
  margin: 1.15rem 0 0;
  color: #d7e6f3;
  font-size: clamp(1rem, 1.7vw, 1.75rem);
  max-width: 34ch;
  line-height: 1.4;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
  margin-inline: auto;
}

.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

.stats {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

.stats article {
  min-width: 140px;
  padding: 1rem 1.1rem;
  background: rgba(11, 27, 41, 0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.stats article:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 22px rgba(2, 10, 18, 0.35);
}

.stats strong {
  display: block;
  font-size: 1.4rem;
  color: #d8fff6;
}

.stats span {
  font-size: 0.9rem;
  color: #9eb5cb;
}

.hero-card {
  position: relative;
  border-radius: 24px;
  padding: 1.3rem;
  background: linear-gradient(150deg, rgba(5, 28, 43, 0.82), rgba(5, 15, 24, 0.86));
  border: 1px solid rgba(121, 188, 224, 0.45);
  backdrop-filter: blur(3px);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 62px rgba(0, 0, 0, 0.5);
}

.hero-card img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(90, 153, 187, 0.36);
  display: block;
}

.hero-card p {
  margin: 1rem 0 0;
  color: #d7ebfc;
  font-weight: 600;
}

.glow-ring {
  position: absolute;
  inset: -20% -8%;
  background: radial-gradient(circle at 50% 50%, rgba(56, 247, 207, 0.3), transparent 56%);
  filter: blur(30px);
  pointer-events: none;
  z-index: -1;
  animation: pulse 4.2s ease-in-out infinite;
}

.hero-light {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-light-a {
  width: 420px;
  height: 420px;
  left: -8%;
  top: 4%;
  background: radial-gradient(circle, rgba(58, 255, 217, 0.3), transparent 68%);
  filter: blur(14px);
}

.hero-light-b {
  width: 520px;
  height: 520px;
  right: -16%;
  bottom: -22%;
  background: radial-gradient(circle, rgba(33, 198, 255, 0.24), transparent 60%);
  filter: blur(16px);
}

.section {
  padding: 4.2rem 0;
}

.section-infra {
  padding-top: 3.4rem;
}

.section-head h2,
.contact h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  text-wrap: balance;
}

.infra-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.infra-item {
  border-radius: 16px;
  padding: 1.2rem;
  background: linear-gradient(145deg, rgba(10, 31, 49, 0.72), rgba(8, 17, 27, 0.72));
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.infra-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 24px rgba(4, 10, 16, 0.28);
}

.infra-item strong {
  font-size: 1.2rem;
  display: block;
}

.infra-item p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-carousel {
  padding-top: 3rem;
}

.carousel {
  margin-top: 1.6rem;
  position: relative;
}

.carousel-track-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(121, 188, 224, 0.35);
  box-shadow: var(--shadow);
}

.carousel-track {
  position: relative;
  min-height: 460px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 6s ease;
}

.carousel-slide.is-active .slide-media {
  transform: scale(1);
}

.slide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
}

.bg-1 {
  background-image: url("images/01-tecnologia-computo.jpg");
}

.bg-2 {
  background-image: url("images/02-respaldo-proteccion.jpg");
}

.bg-3 {
  background-image: url("images/03-infraestructura-redes.jpg");
}

.bg-4 {
  background-image: url("images/04-Impresion-Digitalizacion.jpg");
}

.bg-5 {
  background-image: url("images/05-Mantenimiento.jpg");
}

.bg-6 {
  background-image: url("images/06-Tecnologias-Avanzadas.jpg");
}

.bg-7 {
  background-image: url("images/07-optimizacion-espacios.jpg");
}

.carousel-slide h3 {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 2rem;
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
  line-height: 1.12;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
  text-wrap: balance;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(188, 225, 248, 0.55);
  background: rgba(7, 24, 39, 0.7);
  color: #e6f8ff;
  font-size: 1.9rem;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  transition: 0.25s ease;
}

.carousel-arrow:hover {
  background: rgba(15, 76, 106, 0.82);
}

.carousel-arrow.prev {
  left: -0.9rem;
}

.carousel-arrow.next {
  right: -0.9rem;
}

.carousel-dots {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.dot {
  width: 26px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(189, 212, 228, 0.38);
  cursor: pointer;
  transition: 0.25s ease;
}

.dot.is-active {
  width: 44px;
  background: linear-gradient(120deg, #93ffd2, #29d2b7);
}

.service-board {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-tile {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(176, 205, 224, 0.45);
  background: rgba(240, 246, 251, 0.95);
  color: #1f2a34;
  box-shadow: 0 14px 32px rgba(2, 8, 14, 0.34);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-tile:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 34px rgba(4, 12, 20, 0.34);
}

.service-tile-wide {
  grid-column: span 2;
}

.service-cover {
  height: 130px;
  border-bottom: 1px solid rgba(159, 181, 197, 0.45);
  background-size: cover;
  background-position: center;
}

.s1 {
  background-image:
    linear-gradient(130deg, rgba(7, 32, 74, 0.55), rgba(36, 128, 190, 0.35)),
    url("images/01-tecnologia-computo.jpg");
}

.s2 {
  background-image:
    linear-gradient(130deg, rgba(24, 94, 31, 0.62), rgba(65, 182, 88, 0.34)),
    url("images/02-respaldo-proteccion.jpg");
}

.s3 {
  background-image:
    linear-gradient(130deg, rgba(18, 66, 107, 0.62), rgba(81, 156, 223, 0.34)),
    url("images/03-infraestructura-redes.jpg");
}

.s4 {
  background-image:
    linear-gradient(130deg, rgba(84, 53, 18, 0.62), rgba(205, 145, 75, 0.3)),
    url("images/04-Impresion-Digitalizacion.jpg");
}

.s5 {
  background-image:
    linear-gradient(130deg, rgba(64, 88, 10, 0.62), rgba(118, 175, 35, 0.34)),
    url("images/05-Mantenimiento.jpg");
}

.s6 {
  background-image:
    linear-gradient(130deg, rgba(48, 36, 111, 0.62), rgba(94, 81, 210, 0.34)),
    url("images/06-Tecnologias-Avanzadas.jpg");
}

.s7 {
  background-image:
    linear-gradient(130deg, rgba(13, 81, 78, 0.62), rgba(52, 177, 166, 0.34)),
    url("images/07-optimizacion-espacios.jpg");
}

.service-body {
  padding: 1rem 1rem 1.1rem;
}

.service-body h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #17222e;
}

.service-body ul {
  margin: 0.7rem 0 0;
  padding-left: 1.1rem;
}

.service-body li {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.36;
  color: #425261;
}

.section-story {
  position: relative;
}

.section-features {
  position: relative;
  padding: 4.8rem 0 4.2rem;
}

.section-features::before {
  content: "";
  position: absolute;
  inset: 2rem 0 1rem;
  background: linear-gradient(180deg, rgba(236, 245, 252, 0.92), rgba(225, 238, 248, 0.85));
  border-top: 1px solid rgba(152, 189, 214, 0.35);
  border-bottom: 1px solid rgba(152, 189, 214, 0.25);
  z-index: -1;
}

.features-head {
  text-align: center;
}

.features-head .kicker {
  color: #2e905a;
}

.features-head h2 {
  margin: 0;
  color: #163245;
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  text-transform: uppercase;
}

.features-cube {
  margin-inline: auto;
}

.feature-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.7rem;
}

.feature-item {
  background: rgba(245, 250, 254, 0.95);
  border: 1px solid rgba(164, 196, 216, 0.5);
  border-radius: 14px;
  padding: 0.9rem 0.8rem 1rem;
  color: #344553;
  box-shadow: 0 8px 18px rgba(29, 56, 74, 0.15);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 26px rgba(18, 44, 62, 0.2);
}

.feature-icon {
  width: 52px;
  height: 52px;
  margin: -1.9rem auto 0.7rem;
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 15px rgba(36, 122, 73, 0.4));
}

.feature-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.section-values {
  position: relative;
  padding: 4.8rem 0 4.4rem;
}

.section-values::before {
  content: "";
  position: absolute;
  inset: 1.4rem 0 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(48, 213, 176, 0.16), transparent 44%),
    linear-gradient(160deg, rgba(7, 24, 38, 0.95), rgba(4, 14, 23, 0.98));
  border-top: 1px solid rgba(86, 152, 190, 0.28);
  border-bottom: 1px solid rgba(86, 152, 190, 0.22);
  z-index: -1;
}

.values-head {
  text-align: center;
}

.values-head .kicker {
  color: #6df4d8;
}

.values-head h2 {
  margin: 0;
  color: #e5f4ff;
  text-transform: uppercase;
  font-size: clamp(1.45rem, 2.5vw, 2.45rem);
}

.values-cube {
  margin-inline: auto;
}

.values-layout {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  grid-template-areas:
    "mission values"
    "vision values";
  gap: 1rem;
  align-items: start;
}

.value-panel {
  border-radius: 18px;
  border: 1px solid rgba(94, 161, 199, 0.45);
  background: linear-gradient(165deg, rgba(10, 28, 44, 0.92), rgba(7, 20, 33, 0.95));
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(2, 10, 18, 0.45);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 34px rgba(2, 10, 18, 0.55);
}

.mission-panel {
  grid-area: mission;
}

.vision-panel {
  grid-area: vision;
}

.value-list-panel {
  grid-area: values;
}

.value-image {
  min-height: 130px;
  position: relative;
  display: grid;
  place-items: center;
  border-bottom: 1px solid rgba(112, 177, 209, 0.35);
}

.value-image h3 {
  margin: 0;
  text-transform: uppercase;
  font-size: clamp(1.95rem, 4vw, 2.85rem);
  color: #f2fffa;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.42);
}

.value-image-mission,
.value-image-vision,
.value-image-values {
  background-size: cover;
  background-position: center;
}

.value-image-mission {
  background-image:
    linear-gradient(120deg, rgba(17, 71, 39, 0.82), rgba(24, 117, 69, 0.74)),
    url("images/mission-visual.svg");
}

.value-image-vision {
  background-image:
    linear-gradient(120deg, rgba(16, 74, 53, 0.82), rgba(20, 120, 88, 0.72)),
    url("images/vision-visual.svg");
}

.value-image-values {
  min-height: 92px;
  border-bottom: 0;
  border-top: 1px solid rgba(112, 177, 209, 0.35);
  background-image:
    linear-gradient(120deg, rgba(10, 83, 56, 0.86), rgba(33, 135, 84, 0.72)),
    url("images/values-visual.svg");
  margin-top: 0.2rem;
}

.value-copy {
  padding: 1rem 1.1rem 1.2rem;
}

.value-copy p {
  margin: 0.65rem 0 0;
  color: #c4d7e8;
  line-height: 1.58;
  font-size: 1rem;
}

.value-copy p:first-child {
  margin-top: 0;
}

.value-list-panel {
  display: block;
  align-self: start;
}

.value-list-panel h3 {
  margin: 1rem 1.1rem 0.45rem;
  color: #eff8ff;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.value-list-panel ul {
  margin: 0 1.1rem 0.9rem;
  padding-left: 1.2rem;
}

.value-list-panel li {
  margin: 0.55rem 0 0;
  color: #bcd2e3;
  line-height: 1.45;
  font-size: 1.03rem;
}

.value-kpis {
  margin: 0 1.1rem 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.value-kpis span {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 195, 220, 0.48);
  background: rgba(16, 50, 74, 0.66);
  color: #d5ecff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-head {
  max-width: 900px;
}

.story-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 3rem);
}

.story-head p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.location-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.location-card {
  background: linear-gradient(150deg, rgba(8, 26, 39, 0.9), rgba(6, 14, 22, 0.92));
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease;
}

.location-card:hover {
  transform: translateY(-6px);
}

.location-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: clamp(1.6rem, 2.3vw, 2.5rem);
}

.location-cube {
  width: 18px;
  height: 18px;
  display: block;
  margin: 1.2rem 0 1rem;
  border-radius: 4px;
  background: linear-gradient(130deg, #9deca4 0%, #1aaa89 72%);
  box-shadow: 8px 5px 0 rgba(201, 239, 255, 0.2);
}

.location-card img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(106, 164, 196, 0.42);
}

.location-card .city {
  margin: 1rem 0 0;
  font-size: 1.7rem;
  color: #f4fbff;
}

.location-card p {
  margin: 0.65rem 0 0;
  color: #b7cde0;
  line-height: 1.5;
}

.location-link {
  display: inline-flex;
  margin-top: 1.2rem;
  color: #8ff8d3;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.location-link::after {
  content: " \2192";
  margin-left: 0.35rem;
}

.map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(97, 203, 144, 0.62);
  min-height: 100%;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
  filter: saturate(0.88) contrast(1.03);
}

.section-clients {
  position: relative;
}

.clients-head {
  text-align: center;
}

.clients-head .kicker {
  color: #2d9159;
}

.clients-head h2 {
  margin: 0;
  color: #163245;
  text-transform: uppercase;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.clients-cube {
  margin-inline: auto;
}

.clients-frame {
  margin-top: 1.35rem;
  border-radius: 22px;
  border: 1px solid rgba(109, 187, 132, 0.68);
  background: rgba(244, 250, 254, 0.94);
  padding: 0.8rem;
  box-shadow: 0 16px 30px rgba(9, 23, 37, 0.2);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.client-card {
  min-height: 160px;
  border-radius: 14px;
  background: #eef5fa;
  border: 1px solid rgba(187, 207, 222, 0.8);
  box-shadow: 0 6px 14px rgba(39, 60, 74, 0.14);
  padding: 0.9rem 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 24px rgba(39, 60, 74, 0.21);
}

.client-logo {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, #fff 0%, #dfeef8 45%, #bdd6e4 100%);
  border: 1px solid rgba(140, 176, 198, 0.8);
  color: #1f5675;
  font-weight: 800;
  letter-spacing: 0.07em;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
}

.client-card p {
  margin: 0;
  color: #2f3f4b;
  font-weight: 600;
  line-height: 1.35;
}

.section-contact {
  position: relative;
  padding: 5rem 0 3.2rem;
  background:
    radial-gradient(circle at 20% 80%, rgba(37, 194, 178, 0.2), transparent 44%),
    radial-gradient(circle at 80% 10%, rgba(42, 134, 255, 0.18), transparent 46%),
    linear-gradient(120deg, #03101d 0%, #061626 46%, #071d2e 100%);
  overflow: clip;
}

.section-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(88, 154, 194, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 154, 194, 0.11) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.75), transparent);
  animation: contactGridMove 20s linear infinite;
  pointer-events: none;
}

.section-contact::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(88, 251, 235, 0.23), transparent 64%);
  filter: blur(24px);
  animation: contactGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}

.contact-shell {
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.contact-head {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.contact-head h2 {
  margin: 0;
  color: #f0f8ff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  text-transform: uppercase;
}

.contact-head p {
  margin: 1rem 0 0;
  color: #b4c6d6;
  line-height: 1.6;
}

.contact-head .kicker {
  color: #5bf2d8;
}

.contact-cube {
  margin-inline: auto;
}

.contact-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(400px, 0.95fr);
  gap: 1.35rem;
  align-items: stretch;
}

.contact-poster {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(93, 173, 213, 0.46);
  box-shadow: 0 20px 30px rgba(4, 15, 25, 0.46);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
  background:
    radial-gradient(circle at 72% 14%, rgba(127, 255, 229, 0.55), transparent 45%),
    linear-gradient(150deg, rgba(21, 93, 136, 0.88), rgba(16, 58, 88, 0.95) 56%, rgba(4, 23, 44, 0.96) 100%);
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 1.6rem;
}

.contact-poster:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 26px 40px rgba(4, 15, 25, 0.55);
}

.poster-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  bottom: -140px;
  left: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 255, 227, 0.52), transparent 65%);
  filter: blur(10px);
  animation: contactGlowPulse 5s ease-in-out infinite;
}

.poster-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.poster-lines span {
  position: absolute;
  left: 1.4rem;
  right: 1.4rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(196, 238, 255, 0), rgba(196, 238, 255, 0.56), rgba(196, 238, 255, 0));
  transform-origin: left center;
  animation: lineWave 7s ease-in-out infinite;
}

.poster-lines span:nth-child(1) {
  top: 30%;
  animation-delay: 0s;
}

.poster-lines span:nth-child(2) {
  top: 52%;
  animation-delay: -1.6s;
}

.poster-lines span:nth-child(3) {
  top: 72%;
  animation-delay: -3.1s;
}

.poster-title {
  position: relative;
  margin: 0;
  color: #f1fbff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-form {
  padding: 1.2rem;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(7, 23, 36, 0.9), rgba(5, 16, 26, 0.88));
  border: 1px solid rgba(88, 154, 194, 0.45);
  box-shadow: 0 20px 30px rgba(4, 15, 25, 0.46);
}

.contact-form label {
  display: block;
  color: #a6bfd2;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.4rem;
  border: 1px solid rgba(151, 184, 205, 0.48);
  background: rgba(238, 248, 255, 0.96);
  border-radius: 4px;
  padding: 0.62rem 0.68rem;
  font-family: inherit;
  color: #14212b;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #70e8d7;
  box-shadow: 0 0 0 3px rgba(80, 221, 205, 0.25);
}

.check-row {
  margin-top: 0.35rem;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.check-row input {
  width: 17px;
  height: 17px;
  margin-top: 0.12rem;
  accent-color: #4de6cf;
}

.check-row span {
  font-size: 0.83rem;
  color: #92acbe;
  line-height: 1.35;
}

.captcha-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr auto;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.7rem;
}

.captcha-code {
  min-height: 38px;
  border: 1px solid rgba(172, 202, 222, 0.62);
  border-radius: 4px;
  background: repeating-linear-gradient(-45deg, #f6fbff, #f6fbff 6px, #e9f1f7 6px, #e9f1f7 12px);
  color: #1a2025;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.captcha-refresh {
  height: 38px;
  width: 40px;
  border: 1px solid rgba(172, 202, 222, 0.62);
  border-radius: 4px;
  background: #f1f6fb;
  color: #355264;
  cursor: pointer;
}

.btn-submit {
  margin-top: 1rem;
  width: 100%;
  border: 0;
  padding: 0.84rem 0.9rem;
  border-radius: 4px;
  background: linear-gradient(120deg, #ecdfbb, #dac896);
  color: #2e2b20;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.form-note {
  min-height: 1.2rem;
  margin: 0.6rem 0 0;
  font-size: 0.82rem;
  color: #91a8ba;
}

@keyframes contactGridMove {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(56px);
  }
}

@keyframes contactGlowPulse {

  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

@keyframes lineWave {

  0%,
  100% {
    transform: translateX(-2%) scaleX(0.86);
    opacity: 0.44;
  }

  50% {
    transform: translateX(3%) scaleX(1);
    opacity: 1;
  }
}

.site-footer {
  background: #23262d;
  color: #dce4ed;
  padding: 3.3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.3rem;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: #d7e0e9;
  line-height: 1.5;
  font-size: 0.92rem;
}

.footer-brand img {
  width: auto;
  max-width: min(210px, 100%);
  max-height: 72px;
  display: block;
  margin-inline: auto;
  object-fit: contain;
  filter: grayscale(0.12) brightness(1.12);
}

.footer-copy {
  margin: 2.4rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: #b6c1cb;
}

.reveal {
  opacity: 0;
  transform: translate3d(var(--reveal-x, 0), var(--reveal-y, 32px), 0) scale(0.985);
  transition: opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.delay-1 {
  transition-delay: 0.13s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 9px 6px;
  background: #d6ebff;
}

.back-to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(129, 186, 219, 0.38);
  border-radius: 999px;
  background: linear-gradient(120deg, #10d3bc, #34e184);
  color: #032218;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 95;
}

.back-to-top:hover {
  transform: translateY(0);
  box-shadow: 0 18px 30px rgba(16, 211, 188, 0.35);
}

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

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-menu {
    position: absolute;
    right: 1.2rem;
    top: 84px;
    width: min(320px, calc(100% - 2.4rem));
    display: grid;
    gap: 0.15rem;
    background: rgba(8, 22, 35, 0.96);
    border: 1px solid rgba(109, 173, 205, 0.35);
    border-radius: 14px;
    padding: 0.6rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: 0.25s ease;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero {
    padding-top: 5.8rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 11vw, 3.7rem);
  }

  .lead {
    font-size: 1.05rem;
    max-width: 32ch;
  }

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

  .service-tile-wide {
    grid-column: auto;
  }

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

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem 0.7rem;
  }

  .values-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mission"
      "values"
      "vision";
  }

  .carousel-track {
    min-height: 340px;
  }

  .carousel-slide h3 {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.1rem;
    font-size: clamp(1.25rem, 6vw, 1.85rem);
  }

  .carousel-arrow {
    width: 40px;
    height: 40px;
  }

  .carousel-arrow.prev {
    left: 0.5rem;
  }

  .carousel-arrow.next {
    right: 0.5rem;
  }

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

  .map-frame iframe {
    min-height: 420px;
  }

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

  .client-card {
    min-height: 150px;
  }

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

  .contact-form {
    padding-top: 0;
  }

  .captcha-row {
    grid-template-columns: 1fr;
  }

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

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}