
:root {
  --bg: #02070b;
  --panel: #061019;
  --cyan: #36b2c8;
  --cyan-2: #6fe8ff;
  --text: #eefaff;
  --muted: #8da7b3;
  --border: rgba(111,232,255,.18);
  --glass: rgba(255,255,255,.055);
  --radius: 30px;
  --shadow: 0 36px 120px rgba(54,178,200,.22);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(54,178,200,.22), transparent 30%),
    radial-gradient(circle at 85% 8%, rgba(111,232,255,.12), transparent 32%),
    linear-gradient(180deg, #02070b 0%, #030b12 45%, #02070b 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111,232,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,232,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent 88%);
  z-index: -2;
}

.orb {
  position: fixed;
  width: 440px;
  height: 440px;
  border-radius: 999px;
  background: rgba(54,178,200,.15);
  filter: blur(78px);
  right: -140px;
  top: 140px;
  z-index: -1;
  animation: floatOrb 10s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(70px) scale(1.16); }
}

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

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(2,7,11,.72);
  border-bottom: 1px solid rgba(111,232,255,.10);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -.03em;
  font-size: 1.55rem;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 0 34px rgba(54,178,200,.48);
  display: grid;
  place-items: center;
  color: #021014;
  font-weight: 950;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(111,232,255,.24));
}

.logo strong { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .95rem; transition: .25s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--cyan-2); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.language-selector {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(111,232,255,.18);
  color: #eefaff;
  padding: 10px 14px;
  border-radius: 14px;
  outline: none;
}

.language-selector option { background: #061019; color: #eefaff; }

.mobile-menu {
  display: none;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(111,232,255,.16);
  color: var(--text);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #011014;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 16px 55px rgba(54,178,200,.25);
  transition: .25s ease;
  border: 0;
  cursor: pointer;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 22px 70px rgba(54,178,200,.36); }
.btn.secondary { color: var(--text); background: rgba(255,255,255,.06); border: 1px solid var(--border); box-shadow: none; }

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: clamp(34px, 4vw, 58px);
  padding: clamp(44px, 6vw, 76px) 0 clamp(64px, 8vw, 100px);
}

.page-hero { padding: 96px 0 48px; }

.page-visual-strip,
.editorial-visual {
  position: relative;
  min-height: 330px;
  margin-top: 38px;
  border: 1px solid rgba(111,232,255,.16);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.page-visual-strip.compact {
  min-height: 250px;
}

.services-hero-visual {
  height: clamp(330px, 36vw, 470px);
  min-height: 0;
}

.page-visual-strip img,
.editorial-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(.9) contrast(1.06) brightness(.64);
}

.page-visual-strip::after,
.editorial-visual::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 22%, rgba(2,7,11,.82));
  pointer-events: none;
}

.visual-caption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 620px;
}

.visual-caption strong {
  display: block;
  color: #eaffff;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

.visual-caption span {
  display: block;
  color: rgba(238,250,255,.76);
  line-height: 1.55;
}

.identity-list {
  display: grid;
  gap: 12px;
  margin: -16px 0 24px;
}

.identity-list article {
  border: 1px solid rgba(111,232,255,.14);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}

.identity-list strong,
.identity-list span {
  display: block;
}

.identity-list strong {
  color: #eaffff;
  margin-bottom: 7px;
}

.identity-list span {
  color: var(--muted);
  line-height: 1.55;
  font-size: .94rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.045);
  border-radius: 999px;
  color: var(--cyan-2);
  font-size: .88rem;
  margin-bottom: 24px;
}

.pulse, .live-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan-2);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan-2);
  animation: pulseLive 1.6s infinite;
}

@keyframes pulseLive {
  0% { opacity: .55; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.16); }
  100% { opacity: .55; transform: scale(.9); }
}

h1 {
  font-size: clamp(3.1rem, 7vw, 7.4rem);
  line-height: .89;
  letter-spacing: -.075em;
  max-width: 900px;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.gradient-text {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyan-2) 42%, var(--cyan) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

.lead, .hero p, .section-title p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  margin-top: 24px;
  max-width: 760px;
}

.hero p { margin: 28px 0 34px; max-width: 680px; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; }

.visual-strip {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  margin-top: 24px;
}

.image-card {
  position: relative;
  min-height: 205px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(111,232,255,.16);
  background: rgba(255,255,255,.045);
}

.image-card img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.92) contrast(1.08) brightness(.72); }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent, rgba(2,7,11,.72)); }
.image-card span { position: absolute; left: 18px; bottom: 18px; z-index: 2; color: #eaffff; font-weight: 850; letter-spacing: -.02em; }

.hero-card {
  position: relative;
  width: 100%;
  border: 1px solid rgba(111,232,255,.24);
  background:
    radial-gradient(circle at 20% 0%, rgba(111,232,255,.18), transparent 32%),
    radial-gradient(circle at 90% 100%, rgba(54,178,200,.16), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  border-radius: clamp(28px, 3vw, 44px);
  overflow: hidden;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.10);
  backdrop-filter: blur(22px);
  padding: clamp(14px, 1.6vw, 18px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 160deg, transparent, rgba(111,232,255,.36), transparent 34%);
  animation: rotate 9s linear infinite;
  opacity: .45;
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: #031018;
  pointer-events: none;
}

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

.live-system {
  position: relative;
  z-index: 2;
  border-radius: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  padding: clamp(16px, 1.8vw, 22px);
  background:
    radial-gradient(circle at 50% 0%, rgba(54,178,200,.25), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.025));
  min-height: 0;
}

.live-system::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(111,232,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,232,255,.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .22;
  pointer-events: none;
}

.browser-bar {
  position: relative;
  z-index: 2;
  min-height: 50px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 20px;
  border: 1px solid rgba(111,232,255,.12);
  background: rgba(0,0,0,.24);
  margin-bottom: 14px;
}

.dots { display: flex; gap: 8px; }
.dots i { width: 11px; height: 11px; border-radius: 50%; background: rgba(111,232,255,.45); }
.system-title { color: var(--cyan-2); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 850; }

.live-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: 14px;
  align-items: stretch;
}

.console-main,
.console-side {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.console-main {
  grid-template-rows: auto auto minmax(250px, 1fr);
}

.console-side {
  grid-template-rows: repeat(4, minmax(0, auto));
}

.panel, .service-card, .proof-card, .price-card, .step, .form-card {
  border: 1px solid rgba(111,232,255,.14);
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border-radius: 24px;
  padding: 18px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

.panel::after, .service-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -50px;
  top: -50px;
  background: rgba(111,232,255,.10);
  filter: blur(18px);
  border-radius: 999px;
  pointer-events: none;
}

.live-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background:
    radial-gradient(circle at 20% 0%, rgba(111,232,255,.16), transparent 38%),
    linear-gradient(180deg, rgba(7,18,25,.96), rgba(3,11,18,.94));
}

.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(54,178,200,.12);
  border: 1px solid rgba(111,232,255,.16);
  color: var(--cyan-2);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.online-pill {
  color: #6fe8ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(111,232,255,.14);
  background: rgba(111,232,255,.06);
  white-space: nowrap;
}

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

.metric {
  min-width: 0;
  border-radius: 20px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(111,232,255,.10);
  padding: 16px;
}

.metric small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.metric strong { display: block; font-size: clamp(1.35rem, 2vw, 1.8rem); letter-spacing: -.04em; white-space: nowrap; }

.chart-panel {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 280px;
}

.chart-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: #dffaff;
  font-size: .85rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.chart-top small { color: var(--cyan-2); font-weight: 900; }

.chart-area {
  position: relative;
  min-height: 190px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(111,232,255,.08);
  background:
    linear-gradient(rgba(111,232,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,232,255,.035) 1px, transparent 1px),
    rgba(0,0,0,.16);
  background-size: 34px 34px;
}

.chart-area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=1200&q=80') center/cover;
  opacity: .14;
  mix-blend-mode: screen;
}

.live-bars {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 128px;
  display: flex;
  align-items: end;
  gap: 10px;
}

.live-bars span {
  flex: 1;
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #6fe8ff, rgba(54,178,200,.12));
  min-height: 20%;
  animation: liveBars 3s ease-in-out infinite;
  box-shadow: 0 0 22px rgba(111,232,255,.16);
}

.live-bars span:nth-child(1){height:42%;animation-delay:.2s}
.live-bars span:nth-child(2){height:76%;animation-delay:.4s}
.live-bars span:nth-child(3){height:55%;animation-delay:.6s}
.live-bars span:nth-child(4){height:92%;animation-delay:.8s}
.live-bars span:nth-child(5){height:68%;animation-delay:1s}
.live-bars span:nth-child(6){height:84%;animation-delay:1.2s}

@keyframes liveBars {
  0%,100% { transform: scaleY(.92); opacity:.74; }
  50% { transform: scaleY(1.08); opacity:1; }
}

.intelligence-panel {
  min-height: 300px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(circle at 50% 42%, rgba(111,232,255,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
}

.ai-map {
  position: relative;
  min-height: 190px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(111,232,255,.10);
  background:
    linear-gradient(rgba(111,232,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,232,255,.04) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(111,232,255,.16), transparent 44%),
    rgba(0,0,0,.18);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.ai-map::before,
.ai-map::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111,232,255,.45), transparent);
  transform-origin: left center;
  animation: scanLine 5s linear infinite;
}

.ai-map::after {
  width: 58%;
  animation-duration: 7s;
  animation-direction: reverse;
  opacity: .7;
}

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

.ai-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 64px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(111,232,255,.22);
  background: rgba(2,14,20,.82);
  color: #eaffff;
  font-size: .75rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(111,232,255,.16), inset 0 1px 0 rgba(255,255,255,.08);
  animation: nodeFloat 4.8s ease-in-out infinite;
}

.node-core {
  left: 50%;
  top: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #021014;
  font-size: 1.15rem;
  box-shadow: 0 0 48px rgba(111,232,255,.42);
  animation: corePulse 2.8s ease-in-out infinite;
}

.node-web { left: 9%; top: 18%; animation-delay: .2s; }
.node-ads { right: 10%; top: 16%; animation-delay: .8s; }
.node-crm { left: 12%; bottom: 16%; animation-delay: 1.2s; }
.node-voice { right: 8%; bottom: 18%; animation-delay: 1.6s; }

@keyframes nodeFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

@keyframes corePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.07); }
}

.pulse-ring {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(111,232,255,.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3.4s ease-out infinite;
}

.ring-two { animation-delay: 1.3s; }

@keyframes ringPulse {
  0% { opacity: .8; transform: translate(-50%, -50%) scale(.82); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(2.35); }
}

.signal-wave {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 34px;
  margin-top: 14px;
}

.signal-wave span {
  flex: 1;
  min-height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #6fe8ff, rgba(54,178,200,.18));
  animation: liveBars 2.2s ease-in-out infinite;
}

.signal-wave span:nth-child(1){height:38%;animation-delay:.1s}
.signal-wave span:nth-child(2){height:82%;animation-delay:.25s}
.signal-wave span:nth-child(3){height:52%;animation-delay:.4s}
.signal-wave span:nth-child(4){height:100%;animation-delay:.55s}
.signal-wave span:nth-child(5){height:62%;animation-delay:.7s}
.signal-wave span:nth-child(6){height:76%;animation-delay:.85s}
.signal-wave span:nth-child(7){height:46%;animation-delay:1s}

.mini-title { font-size: .96rem; margin-bottom: 12px; color: #eaffff; }
.signal-list, .flow-list { display: grid; gap: 10px; color: var(--muted); font-size: .84rem; }
.signal-list span, .flow-list span { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.signal-list strong, .flow-list strong { color: #eaffff; white-space: nowrap; }

.progress-line {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  margin-top: 12px;
}

.progress-line i {
  display: block;
  height: 100%;
  width: 86%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-2));
  box-shadow: 0 0 22px rgba(111,232,255,.30);
}

.ai-card {
  background:
    radial-gradient(circle at 0% 0%, rgba(111,232,255,.16), transparent 34%),
    linear-gradient(145deg, rgba(111,232,255,.08), rgba(255,255,255,.025));
}

.ai-card strong { display: block; margin-bottom: 8px; }
.ai-card p, .panel p { color: var(--muted); line-height: 1.55; font-size: .84rem; margin: 0; }

.activity-feed {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: .84rem;
}

.activity-feed span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.activity-feed i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan-2);
  box-shadow: 0 0 18px rgba(111,232,255,.55);
  animation: pulseLive 1.6s infinite;
}

.activity-feed span:nth-child(2) i { animation-delay: .45s; }
.activity-feed span:nth-child(3) i { animation-delay: .9s; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3, .service-grid, .proof-grid, .pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4, .process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
section { padding: 95px 0; }
.section-title { max-width: 790px; margin-bottom: 44px; }
.eyebrow { color: var(--cyan-2); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800; margin-bottom: 14px; }

.service-card, .proof-card, .price-card, .step, .form-card { border-radius: var(--radius); padding: 28px; transition: .25s ease; }
.service-card:hover, .proof-card:hover, .price-card:hover { transform: translateY(-6px); border-color: rgba(111,232,255,.34); }
.icon { width: 54px; height: 54px; border-radius: 18px; display: grid; place-items: center; background: rgba(54,178,200,.14); color: var(--cyan-2); font-size: 1.35rem; margin-bottom: 24px; border: 1px solid rgba(111,232,255,.16); }
.service-card h3 { font-size: 1.32rem; margin-bottom: 12px; }
.service-card p, .step p, .price-card p, .proof-card p { color: var(--muted); line-height: 1.65; }

.service-card.service-visual {
  padding: 0;
}

.service-image {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  filter: saturate(.98) contrast(1.08) brightness(.76);
}

.service-body {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.service-body::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -64px;
  height: 64px;
  background: linear-gradient(180deg, transparent, rgba(4,14,21,.96));
  pointer-events: none;
}

.service-body .icon {
  margin-top: -52px;
  background: rgba(3,16,24,.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 36px rgba(0,0,0,.26);
}

.service-visual:hover .service-image {
  filter: saturate(1.08) contrast(1.08) brightness(.86);
  transform: scale(1.025);
}

.service-visual .service-image {
  transition: .35s ease;
}

.service-visual {
  cursor: pointer;
}

.service-visual:focus-visible {
  outline: 2px solid var(--cyan-2);
  outline-offset: 4px;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.56);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.service-modal.show {
  display: grid;
}

.service-modal-card {
  position: relative;
  width: min(680px, 100%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 32px;
  padding: clamp(26px, 4vw, 38px);
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.20), transparent 32%),
    radial-gradient(circle at 92% 14%, rgba(111,232,255,.22), transparent 36%),
    linear-gradient(145deg, rgba(7,19,28,.92), rgba(2,7,11,.78));
  box-shadow: 0 34px 120px rgba(0,0,0,.62), inset 0 1px 0 rgba(255,255,255,.18);
  overflow: hidden;
}

.service-modal-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -82px;
  top: -110px;
  border-radius: 50%;
  background: rgba(111,232,255,.16);
  filter: blur(10px);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: var(--text);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.modal-kicker {
  color: var(--cyan-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .76rem;
  font-weight: 850;
  margin-bottom: 12px;
}

.service-modal-card h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -.055em;
  max-width: 560px;
}

.service-modal-card p {
  color: rgba(238,250,255,.76);
  line-height: 1.72;
  font-size: 1.02rem;
  margin-top: 20px;
  max-width: 600px;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-card { padding: 0; }
.proof-card img { width: 100%; height: 210px; object-fit: cover; display: block; filter: saturate(.9) contrast(1.05) brightness(.76); }
.proof-card div { padding: 22px; }
.proof-card h3 { margin-bottom: 8px; }

.process { counter-reset: step; }
.step::before { counter-increment: step; content: "0" counter(step); display: block; color: var(--cyan-2); font-weight: 900; margin-bottom: 34px; font-size: 1.4rem; }
.step h3 { margin-bottom: 10px; }

.price-card.featured { background: linear-gradient(145deg, rgba(54,178,200,.18), rgba(255,255,255,.05)); box-shadow: var(--shadow); }
.price-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.price { font-size: 2.5rem; font-weight: 950; letter-spacing: -.05em; margin: 18px 0; }
.price small { font-size: .9rem; color: var(--muted); font-weight: 500; }
.price-card ul { list-style: none; display: grid; gap: 12px; color: var(--muted); margin: 22px 0 28px; }
.price-card li::before { content: "✦"; color: var(--cyan-2); margin-right: 10px; }

.urgency-note { margin-top: 28px; padding: 22px 24px; border-radius: 24px; border: 1px solid rgba(111,232,255,.18); background: linear-gradient(135deg, rgba(54,178,200,.14), rgba(255,255,255,.04)); color: #dffaff; line-height: 1.65; }
.cta { border: 1px solid rgba(111,232,255,.18); background: radial-gradient(circle at 20% 0%, rgba(54,178,200,.28), transparent 35%), linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025)); border-radius: 40px; padding: 58px; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 26px; box-shadow: var(--shadow); }
.cta p { color: var(--muted); margin-top: 18px; line-height: 1.7; max-width: 660px; }

.form { display: grid; gap: 14px; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid rgba(111,232,255,.16);
  background: rgba(255,255,255,.045);
  color: var(--text);
  border-radius: 18px;
  padding: 16px;
  outline: none;
}
.form option { background: #061019; color: var(--text); }
.form textarea { min-height: 150px; resize: vertical; }

.form-status {
  display: block;
  margin-bottom: 20px;
  border-radius: 22px;
  border: 1px solid rgba(111,232,255,.18);
  padding: 18px;
  color: #dffaff;
  background: rgba(111,232,255,.08);
}

.contact-card {
  padding: 0;
}

.contact-image {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  filter: saturate(.9) contrast(1.08) brightness(.66);
}

.contact-card > :not(img) {
  margin-left: 28px;
  margin-right: 28px;
}

.contact-card .icon {
  position: relative;
  z-index: 2;
  margin-top: -28px;
  background: rgba(3,16,24,.86);
  backdrop-filter: blur(14px);
}

.contact-card p:last-child {
  padding-bottom: 28px;
}

footer { border-top: 1px solid rgba(111,232,255,.10); padding: 38px 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
.footer-inner a { color: var(--muted); text-decoration: none; margin-left: 16px; }
.footer-inner a:hover { color: var(--cyan-2); }

.site-footer {
  border-top: 1px solid rgba(111,232,255,.10);
  padding: 64px 0 28px;
  color: var(--muted);
  background:
    radial-gradient(circle at 18% 0%, rgba(111,232,255,.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(2,7,11,.72));
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .65fr));
  gap: 26px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.12), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(111,232,255,.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10), 0 24px 80px rgba(0,0,0,.28);
}

.footer-brand .logo {
  display: inline-flex;
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 430px;
  color: rgba(238,250,255,.70);
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong,
.footer-contact strong {
  color: #eaffff;
  font-size: .9rem;
  margin-bottom: 5px;
}

.footer-links a,
.footer-contact a {
  color: var(--muted);
  text-decoration: none;
  transition: .22s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cyan-2);
}

.footer-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  width: fit-content;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(111,232,255,.10);
  border: 1px solid rgba(111,232,255,.18);
  color: #eaffff !important;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 20px;
  font-size: .9rem;
}

[data-info],
[data-service] {
  cursor: pointer;
}

[data-info]:focus-visible,
[data-service]:focus-visible {
  outline: 2px solid var(--cyan-2);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; }
  .hero-card { max-width: 920px; margin: 0 auto; }
  .visual-strip { max-width: 760px; }
  .grid-4, .process { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .mobile-menu { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .nav-links { display: none; width: 100%; order: 3; grid-template-columns: 1fr 1fr; gap: 10px; padding-bottom: 16px; }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 12px; border: 1px solid rgba(111,232,255,.10); border-radius: 14px; }
  .hero { padding-top: 48px; }
  .service-grid, .proof-grid, .pricing, .grid-3, .grid-2 { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .cta { grid-template-columns: 1fr; padding: 38px; }
  .footer-panel { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .live-layout { grid-template-columns: 1fr; }
  .console-side { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1180px); }
  .nav { min-height: 72px; padding: 12px 0; gap: 12px; }
  .logo { font-size: 1.12rem; }
  .logo-mark, .logo img { width: 38px; height: 38px; border-radius: 12px; }
  .nav-actions .btn { display: none; }
  .nav-links { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2.85rem, 15vw, 4.1rem); }
  .hero-card { border-radius: 28px; padding: 10px; }
  .live-system { border-radius: 24px; padding: 14px; }
  .browser-bar { flex-wrap: wrap; }
  .system-title { font-size: .7rem; }
  .live-layout, .console-side, .metrics, .service-grid, .proof-grid, .pricing, .process, .visual-strip, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .live-header { align-items: flex-start; flex-direction: column; }
  .metric strong { font-size: 1.28rem; }
  .chart-top { align-items: flex-start; flex-direction: column; }
  .chart-panel { min-height: 270px; }
  .chart-area { min-height: 180px; }
  .live-bars { left: 14px; right: 14px; bottom: 14px; gap: 7px; height: 120px; }
  section { padding: 70px 0; }
  .page-hero { padding: 70px 0 28px; }
  .actions .btn { width: 100%; }
  .cta { border-radius: 28px; padding: 30px; }
  .image-card { min-height: 180px; }
  .page-visual-strip, .editorial-visual { min-height: 240px; border-radius: 24px; }
  .page-visual-strip.compact { min-height: 210px; }
  .visual-caption { left: 18px; right: 18px; bottom: 18px; }
  .proof-card img { height: 180px; }
  .footer-panel { grid-template-columns: 1fr; padding: 24px; border-radius: 24px; }
  .footer-bottom { display: grid; }
  .modal-actions .btn { width: 100%; }
}


/* Cookie / GDPR banner */
.cookie-banner {
  position: fixed;
  left: max(18px, env(safe-area-inset-left));
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 9999;
  display: none;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255,255,255,.24), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(111,232,255,.26), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  box-shadow:
    0 34px 110px rgba(0,0,0,.56),
    inset 0 1px 0 rgba(255,255,255,.28),
    inset 0 -1px 0 rgba(111,232,255,.10);
  overflow: hidden;
  isolation: isolate;
}

.cookie-banner.show { display: flex; }

.cookie-banner::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(5,18,27,.86), rgba(3,10,16,.70)),
    radial-gradient(circle at 28% 18%, rgba(111,232,255,.12), transparent 34%);
}

.cookie-banner::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -96px;
  top: -122px;
  border-radius: 50%;
  background: rgba(111,232,255,.16);
  filter: blur(8px);
  pointer-events: none;
}

.cookie-content {
  display: grid;
  gap: 8px;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.cookie-content strong {
  color: #eaffff;
  font-size: 1.04rem;
  letter-spacing: -.015em;
}

.cookie-content p {
  color: rgba(238,250,255,.72);
  line-height: 1.58;
  font-size: .92rem;
}

.cookie-content a {
  color: var(--cyan-2);
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.cookie-btn {
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  transition: .22s ease;
}

.cookie-btn.primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-2));
  color: #011014;
  border: 0;
  box-shadow: 0 14px 44px rgba(54,178,200,.25), inset 0 1px 0 rgba(255,255,255,.38);
}

.cookie-btn:hover { transform: translateY(-1px); }

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.54);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
}

.cookie-modal.show { display: grid; }

.cookie-modal-card {
  width: min(620px, 100%);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 32px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,.18), transparent 34%),
    radial-gradient(circle at 100% 0%, rgba(111,232,255,.20), transparent 38%),
    linear-gradient(145deg, rgba(6,16,25,.90), rgba(2,7,11,.76));
  backdrop-filter: blur(26px) saturate(1.25);
  -webkit-backdrop-filter: blur(26px) saturate(1.25);
  box-shadow: 0 34px 110px rgba(0,0,0,.58), inset 0 1px 0 rgba(255,255,255,.18);
  padding: 28px;
}

.cookie-modal-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}

.cookie-modal-card p {
  color: var(--muted);
  line-height: 1.65;
}

.cookie-options {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(111,232,255,.14);
  background: rgba(255,255,255,.04);
}

.cookie-option span {
  display: block;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
  margin-top: 4px;
}

.cookie-option input {
  width: 22px;
  height: 22px;
  accent-color: #6fe8ff;
}

@media (max-width: 760px) {
  .cookie-banner {
    flex-direction: column;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    flex: 1;
  }

  .cookie-option {
    align-items: flex-start;
  }
}


/* EMERGENCY SAFE PATCH */
html {
  background: #02070b;
  min-height: 100%;
}

body {
  min-height: 100dvh;
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
}

.logo img {
  display: none !important;
}

.logo,
.logo:visited,
.logo:hover,
.logo:active {
  text-decoration: none !important;
  color: var(--text) !important;
}

.logo span {
  text-decoration: none !important;
  color: var(--text) !important;
}

.logo strong {
  color: var(--cyan) !important;
  text-decoration: none !important;
}
