﻿:root {
  --bg: #06070f;
  --bg-alt: #0a0f1d;
  --accent-blue: #3aa0ff;
  --accent-red: #ff3c64;
  --accent-violet: #6d54ff;
  --text: #f5f7ff;
  --muted: #a8b3d1;
  --glass: rgba(10, 14, 28, 0.75);
  --stroke: rgba(80, 100, 150, 0.45);
  --glow-blue: 0 0 24px rgba(58, 160, 255, 0.35);
  --glow-red: 0 0 28px rgba(255, 60, 100, 0.35);
  --font-title: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(58, 160, 255, 0.0); }
  50% { box-shadow: 0 0 24px rgba(255, 60, 100, 0.25); }
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}


.hero-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero-video__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05) brightness(0.75);
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(10, 14, 28, 0.4), transparent 55%),
              radial-gradient(circle at 80% 20%, rgba(255, 60, 100, 0.18), transparent 50%),
              linear-gradient(180deg, rgba(4, 6, 18, 0.85), rgba(4, 6, 18, 0.6));
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.nebula {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 80%;
  background: radial-gradient(circle at 20% 30%, rgba(58, 160, 255, 0.45), transparent 55%),
              radial-gradient(circle at 70% 40%, rgba(255, 60, 100, 0.28), transparent 60%),
              radial-gradient(circle at 40% 70%, rgba(109, 84, 255, 0.25), transparent 55%);
  filter: blur(20px);
  opacity: 0.7;
}

.grid {
  position: absolute;
  inset: auto 0 0 0;
  height: 40vh;
  background: linear-gradient(transparent 20%, rgba(8, 16, 40, 0.9)),
    repeating-linear-gradient(90deg, rgba(58, 160, 255, 0.1) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(0deg, rgba(255, 60, 100, 0.1) 0 1px, transparent 1px 60px);
  transform: perspective(600px) rotateX(60deg);
  transform-origin: top;
  opacity: 0.45;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(4, 6, 18, 0.8);
  border-bottom: 1px solid rgba(58, 160, 255, 0.18);
  z-index: 10;
  overflow: visible;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-title);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--glow-blue);
  border: 1px solid rgba(58, 160, 255, 0.35);
}

.brand-name {
  font-size: 1rem;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 0.95rem;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 14px;
}

.nav-item .nav-parent::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.7rem;
  color: var(--muted);
}

.nav-item .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(6, 10, 24, 0.96);
  display: grid;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu a {
  color: var(--text);
  font-size: 0.9rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--text);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(58, 160, 255, 0.4);
  background: rgba(10, 14, 28, 0.8);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  background: rgba(6, 10, 24, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 16px 18px;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 12;
}

.mobile-submenu {
  display: grid;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(58, 160, 255, 0.15);
  border-bottom: 1px solid rgba(58, 160, 255, 0.15);
}

.mobile-submenu-toggle {
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.mobile-submenu-toggle::after {
  content: "▾";
  font-size: 0.7rem;
  color: var(--muted);
  transition: transform 0.2s ease;
}

.mobile-submenu-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.mobile-submenu-links {
  display: none;
  gap: 8px;
}

.mobile-submenu-links.is-open {
  display: grid;
}

.mobile-submenu span {
  font-family: var(--font-title);
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.mobile-menu a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
}

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

.cta,
.ghost {
  font-family: var(--font-title);
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta {
  background: linear-gradient(120deg, #3aa0ff, #6d54ff, #ff3c64);
  color: #0b0f20;
  box-shadow: 0 12px 30px rgba(58, 160, 255, 0.25), 0 10px 30px rgba(255, 60, 100, 0.18);
}

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

.cta::after {
  content: ">";
  margin-left: 8px;
  font-weight: 700;
}

.ghost {
  background: transparent;
  border-color: rgba(58, 160, 255, 0.45);
  color: var(--text);
}

.hero {
  padding: 90px 0 80px;
}

.hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 16px 0 18px;
}

.hero-content h1 span {
  color: var(--accent-blue);
  text-shadow: var(--glow-blue);
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-red);
}

.hero-content p {
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 30px;
}

.meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 18px;
  background: rgba(8, 14, 32, 0.6);
  border: 1px solid var(--stroke);
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: inset 0 0 20px rgba(58, 160, 255, 0.05);
}

.meta .stat {
  font-family: var(--font-title);
  font-size: 1.2rem;
}

.meta .label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-panel .panel {
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(4, 8, 20, 0.6);
  position: relative;
  overflow: hidden;
  animation: float 8s ease-in-out infinite;
}

.hero-media {
  display: grid;
  gap: 22px;
}

.panel::before {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 60, 100, 0.16), transparent 55%),
              radial-gradient(circle at 70% 40%, rgba(58, 160, 255, 0.18), transparent 60%);
  opacity: 0.6;
}

.panel > * {
  position: relative;
  z-index: 1;
}

.panel-title {
  font-family: var(--font-title);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
}

.panel ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.panel li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(58, 160, 255, 0.12);
  padding-bottom: 8px;
}

.panel li span {
  color: var(--muted);
}

.panel li strong {
  font-weight: 600;
  color: var(--accent-blue);
}

.pulse {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.pulse span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-red);
  box-shadow: var(--glow-red);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.5; }
}

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

.section {
  padding: 80px 0;
}

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

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.3s; }

.hero .hero-content {
  animation: fadeUp 0.9s ease both;
}

.hero .panel {
  animation: fadeUp 1.1s ease both;
}

.section-head {
  margin-bottom: 36px;
}

.section-cta {
  margin: 10px 0 24px;
}

.section h2 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.section p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: rgba(9, 14, 30, 0.75);
  border: 1px solid var(--stroke);
  padding: 26px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border 0.3s ease;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(58, 160, 255, 0.6);
}

.card:hover {
  animation: glowPulse 1.8s ease-in-out infinite;
}

.card h3 {
  font-family: var(--font-title);
  margin-bottom: 10px;
}

.card h3::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  background-color: var(--accent-blue);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.service-web h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 5h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 3v8h16V8H4Z'/></svg>");
}

.service-cloud h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M7 18a4 4 0 0 1 0-8 5 5 0 0 1 9.8-1.4A4 4 0 0 1 17 18H7Z'/></svg>");
}

.service-hardware h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 7h16v10H4V7Zm2 2v6h12V9H6Zm-2 10h16v2H4v-2Z'/></svg>");
}

.service-onsite h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2 3 6v6c0 5 4 9 9 10 5-1 9-5 9-10V6l-9-4Z'/></svg>");
}

 .service-m365 h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 4h7v7H4V4Zm9 0h7v7h-7V4ZM4 13h7v7H4v-7Zm9 0h7v7h-7v-7Z'/></svg>");
}

.service-privacy h3::before,
.service-malware h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a7 7 0 0 1 7 7c0 5.3-7 13-7 13S5 14.3 5 9a7 7 0 0 1 7-7Zm0 9.5A2.5 2.5 0 1 0 12 6a2.5 2.5 0 0 0 0 5.5Z'/></svg>");
}

.service-print h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 8V4h12v4H6Zm12 2h2a2 2 0 0 1 2 2v4h-4v4H6v-4H2v-4a2 2 0 0 1 2-2h2v2h12v-2Zm-2 10v-6H8v6h8Z'/></svg>");
}

.service-voip h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.6 10.8a13.5 13.5 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1 .3 2 .4 3.1.4.7 0 1.3.6 1.3 1.3V20c0 .7-.6 1.3-1.3 1.3C10.1 21.3 2.7 13.9 2.7 4.7 2.7 4 3.3 3.4 4 3.4h3.4c.7 0 1.3.6 1.3 1.3 0 1.1.1 2.1.4 3.1.1.4 0 .9-.3 1.2l-2.2 2.2Z'/></svg>");
}

.service-wifi h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 18a2 2 0 1 1 0 4 2 2 0 0 1 0-4Zm-5.6-4.6a8 8 0 0 1 11.2 0l-1.4 1.4a6 6 0 0 0-8.4 0l-1.4-1.4Zm-3.2-3.2a12 12 0 0 1 16.9 0l-1.4 1.4a10 10 0 0 0-14.1 0l-1.4-1.4Z'/></svg>");
}

.service-managed h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2 2 7l10 5 10-5-10-5Zm-8 7v8l8 4 8-4V9l-8 4-8-4Z'/></svg>");
}

.service-disaster h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='m12 2 9 7-9 7-9-7 9-7Zm0 14 9-7v6l-9 7-9-7V9l9 7Z'/></svg>");
}

.service-hr h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm-7 9a7 7 0 0 1 14 0H5Z'/></svg>");
}

.service-payroll h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 2h12v20H6V2Zm2 2v2h8V4H8Zm0 4v2h8V8H8Zm0 4v2h8v-2H8Zm0 4v2h8v-2H8Z'/></svg>");
}

.service-pos h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 6h16v12H4V6Zm2 2v8h12V8H6Zm2 10h8v2H8v-2Z'/></svg>");
}

.service-ai h3::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 2h6v2h2a2 2 0 0 1 2 2v2h2v6h-2v2a2 2 0 0 1-2 2h-2v2H9v-2H7a2 2 0 0 1-2-2v-2H3V8h2V6a2 2 0 0 1 2-2h2V2Zm-2 6v8h10V8H7Zm3 2h4v4h-4v-4Z'/></svg>");
}

.card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: radial-gradient(circle at 30% 30%, rgba(58, 160, 255, 0.12), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(255, 60, 100, 0.12), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before,
.contact-card:hover::before {
  opacity: 1;
}

.card > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.chip {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(58, 160, 255, 0.2);
  color: var(--accent-blue);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.security {
  background: rgba(8, 10, 24, 0.7);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}

.ticks {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.ticks li::before {
  content: "*";
  color: var(--accent-blue);
  margin-right: 10px;
}

.security-panel {
  background: rgba(6, 12, 24, 0.85);
  border-radius: 26px;
  border: 1px solid rgba(58, 160, 255, 0.3);
  padding: 26px;
  box-shadow: inset 0 0 30px rgba(255, 60, 100, 0.08);
}

.scan {
  position: relative;
  height: 220px;
  border-radius: 20px;
  border: 1px dashed rgba(58, 160, 255, 0.45);
  overflow: hidden;
  background: linear-gradient(120deg, rgba(58, 160, 255, 0.1), transparent 60%);
}

.scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(58, 160, 255, 0.7), transparent);
  animation: scan 3s ease-in-out infinite;
}

@keyframes scan {
  0% { transform: translateY(-100%); }
  50% { transform: translateY(0); }
  100% { transform: translateY(100%); }
}

.shield {
  position: absolute;
  width: 90px;
  height: 110px;
  border: 2px solid rgba(58, 160, 255, 0.6);
  border-radius: 0 0 50px 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--glow-blue);
}

.shield::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 60, 100, 0.7);
  border-radius: 50%;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
}

.dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(58, 160, 255, 0.35) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.3;
}

.scan-caption {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--muted);
}

.datacenter {
  background: linear-gradient(180deg, rgba(5, 7, 16, 0.2), rgba(10, 16, 36, 0.6));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.step {
  border: 1px solid rgba(58, 160, 255, 0.15);
  border-radius: 20px;
  padding: 22px;
  background: rgba(6, 12, 26, 0.7);
}

.step span {
  font-family: var(--font-title);
  color: var(--accent-red);
  font-size: 1.2rem;
}

.step h4 {
  margin: 12px 0 8px;
}

.contact {
  padding-bottom: 110px;
}

.ai-highlight {
  background: radial-gradient(circle at top left, rgba(58, 160, 255, 0.12), transparent 60%),
    radial-gradient(circle at 70% 20%, rgba(255, 60, 100, 0.12), transparent 55%),
    rgba(8, 12, 26, 0.6);
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 6px;
}

.ai-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(58, 160, 255, 0.4);
  background: rgba(9, 14, 30, 0.6);
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ai-card {
  padding: 18px 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  background: rgba(6, 10, 24, 0.6);
  box-shadow: 0 18px 36px rgba(10, 16, 40, 0.3);
}

.ai-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-title);
}

.ai-card p {
  margin: 0;
  color: var(--muted);
}

.partners {
  background: rgba(6, 10, 24, 0.6);
}

.partner-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(9, 14, 30, 0.7);
  border: 1px solid var(--stroke);
  color: var(--text);
  font-family: var(--font-title);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.partner-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent-red);
}

.partner-chip {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.partner-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 60, 100, 0.5);
}

.techstack {
  background: rgba(6, 10, 24, 0.45);
}

.testimonials {
  background: rgba(9, 13, 28, 0.7);
}

.testimonial-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--stroke);
  background: rgba(6, 10, 24, 0.7);
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 0.4s ease;
}

.testimonial-card {
  padding: 28px;
  display: grid;
  gap: 18px;
  min-height: 200px;
  text-align: center;
  place-items: center;
}

.testimonial-card p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text);
  max-width: 560px;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.testimonial-meta strong {
  color: var(--text);
  font-family: var(--font-title);
}

.carousel-control {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(58, 160, 255, 0.35);
  background: rgba(9, 14, 30, 0.7);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.carousel-control.prev,
.carousel-control.next {
  justify-self: center;
}

.carousel-control:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(58, 160, 255, 0.2);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.carousel-dots .dot.is-active {
  background: var(--accent-blue);
  box-shadow: 0 0 10px rgba(58, 160, 255, 0.5);
}

@media (max-width: 900px) {
  .testimonial-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    justify-self: center;
  }
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.stack-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(9, 14, 30, 0.7);
  border: 1px solid var(--stroke);
}

.stack-item {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stack-item:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 160, 255, 0.5);
}

.stack-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: #0b0f20;
  background: linear-gradient(120deg, #3aa0ff, #6d54ff, #ff3c64);
}

.stack-name {
  font-size: 0.95rem;
  color: var(--text);
}

.chat-box {
  border: 1px solid var(--stroke);
  border-radius: 20px;
  background: rgba(9, 14, 30, 0.75);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.chat-messages {
  max-height: 320px;
  overflow-y: auto;
  display: grid;
  gap: 10px;
}

.chat-message {
  display: flex;
}

.chat-message.user {
  justify-content: flex-end;
}

.bubble {
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(58, 160, 255, 0.15);
  border: 1px solid rgba(58, 160, 255, 0.35);
  max-width: 80%;
}

.chat-message.user .bubble {
  background: rgba(255, 60, 100, 0.15);
  border-color: rgba(255, 60, 100, 0.35);
}

.chat-link {
  color: #7bd0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chat-link:hover {
  color: #ff8aa6;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.chat-form input {
  border-radius: 12px;
}

.chat-note {
  font-size: 0.8rem;
  color: var(--muted);
}

.chat-widget {
  position: fixed;
  right: 20px;
  bottom: 90px;
  width: min(380px, 92vw);
  z-index: 40;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

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

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-title);
  margin-bottom: 6px;
}

.chat-close {
  border: none;
  background: transparent;
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.chat-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(58, 160, 255, 0.4);
  background: linear-gradient(120deg, #3aa0ff, #6d54ff, #ff3c64);
  color: #0b0f20;
  font-family: var(--font-title);
  font-weight: 700;
  z-index: 41;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(58, 160, 255, 0.25);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: none;
  pointer-events: auto;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(6, 10, 24, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 18px;
  padding: 18px 22px;
  display: grid;
  gap: 10px;
  box-shadow: 0 16px 40px rgba(4, 8, 24, 0.45);
  pointer-events: auto;
}

.cookie-banner__content h3 {
  margin: 0;
  font-family: var(--font-title);
}

.cookie-banner__content p {
  margin: 0;
  color: var(--muted);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-link {
  color: var(--accent-blue);
  text-decoration: none;
}

.cookie-link:hover {
  text-decoration: underline;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__content {
    padding: 16px;
  }
}

.about,
.faq {
  background: rgba(6, 10, 24, 0.45);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.faq-accordion {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: 16px;
  background: rgba(9, 14, 30, 0.6);
  padding: 10px 16px;
}

.faq-item[open] {
  border-color: rgba(58, 160, 255, 0.5);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-title);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--accent-red);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin-top: 8px;
  color: var(--muted);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 70;
}

.modal-dialog {
  position: relative;
  z-index: 71;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 18, 0.75);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  width: min(760px, 92vw);
  max-height: 85vh;
  overflow: auto;
  background: rgba(9, 14, 30, 0.95);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 60px rgba(4, 8, 20, 0.6);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(58, 160, 255, 0.4);
  background: rgba(10, 14, 28, 0.8);
  color: var(--text);
  font-size: 20px;
  cursor: pointer;
}

.modal-content h2 {
  font-family: var(--font-title);
  margin-bottom: 14px;
}

.modal-body {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.contact-card {
  background: rgba(9, 14, 32, 0.85);
  border: 1px solid var(--stroke);
  border-radius: 26px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1.4fr);
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.contact-card form {
  align-self: start;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-red);
  margin-bottom: 4px;
}

.contact-label::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background-color: var(--accent-blue);
  vertical-align: middle;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.contact-label.email::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 5h16a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2Zm0 2 8 5 8-5H4Z'/></svg>");
}

.contact-label.phone::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6.6 10.8a13.5 13.5 0 0 0 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1 .3 2 .4 3.1.4.7 0 1.3.6 1.3 1.3V20c0 .7-.6 1.3-1.3 1.3C10.1 21.3 2.7 13.9 2.7 4.7 2.7 4 3.3 3.4 4 3.4h3.4c.7 0 1.3.6 1.3 1.3 0 1.1.1 2.1.4 3.1.1.4 0 .9-.3 1.2l-2.2 2.2Z'/></svg>");
}

.contact-label.address::before,
.contact-label.service-area::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a7 7 0 0 1 7 7c0 5.3-7 13-7 13S5 14.3 5 9a7 7 0 0 1 7-7Zm0 9.5A2.5 2.5 0 1 0 12 6a2.5 2.5 0 0 0 0 5.5Z'/></svg>");
}

.contact-label.hours::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm1 5h-2v6l5 3 1-1.7-4-2.3V7Z'/></svg>");
}

.contact-details a {
  color: var(--text);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--accent-blue);
}

.form-status {
  margin: 12px 0;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.form-status.success {
  background: rgba(58, 160, 255, 0.15);
  border: 1px solid rgba(58, 160, 255, 0.4);
  color: var(--text);
}

.form-status.error {
  background: rgba(255, 60, 100, 0.15);
  border: 1px solid rgba(255, 60, 100, 0.4);
  color: var(--text);
}
form {
  display: grid;
  gap: 12px;
}

.service-options {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(58, 160, 255, 0.2);
  border-radius: 14px;
  background: rgba(7, 10, 24, 0.6);
  font-size: 0.85rem;
  color: var(--muted);
}

.service-options__title {
  font-family: var(--font-title);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.service-options label {
  display: flex;
  gap: 8px;
  align-items: center;
}

.service-options input {
  accent-color: var(--accent-blue);
}

.service-options__other {
  display: none;
  margin-top: 6px;
}

.service-options__other.is-visible {
  display: block;
}

@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .contact-card {
    padding: 20px;
  }

  .service-options {
    max-height: 240px;
    overflow-y: auto;
  }

  .contact-card .cta,
  .contact-card button.cta {
    width: 100%;
    justify-content: center;
  }
}

input,
textarea {
  background: rgba(7, 10, 24, 0.9);
  border: 1px solid rgba(58, 160, 255, 0.25);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-body);
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 2px rgba(58, 160, 255, 0.2);
}

.site-footer {
  border-top: 1px solid rgba(58, 160, 255, 0.15);
  padding: 40px 0;
  background: rgba(4, 6, 18, 0.8);
}

.site-footer .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.foot-links {
  display: grid;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.footer-col h4::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background-color: var(--accent-red);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.footer-col h4.company::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M4 3h10v6h6v12H4V3Zm2 2v14h12v-8h-4V5H6Z'/></svg>");
}

.footer-col h4.services::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2 2 7l10 5 10-5-10-5Zm0 9 10-5v6l-10 5-10-5V6l10 5Z'/></svg>");
}

.footer-col h4.legal::before {
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M6 2h9l5 5v15H6V2Zm2 2v16h10V8h-4V4H8Z'/></svg>");
}

.foot-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .site-header .container {
    gap: 12px;
  }

  .site-header .cta {
    padding: 8px 16px;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
  }

  .nav-toggle {
    display: flex;
  }

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

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

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

.service-hero {
  padding: 90px 0 60px;
}

.service-hero .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.service-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.service-hero p {
  color: var(--muted);
}

.service-image {
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--stroke);
  box-shadow: 0 20px 40px rgba(4, 8, 20, 0.5);
  background: rgba(9, 14, 30, 0.7);
  padding: 12px;
}

.service-list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
  list-style: none;
}

.service-list li::before {
  content: "*";
  color: var(--accent-red);
  margin-right: 8px;
}

