:root {
  --bg: #061a2b;
  --bg-soft: #0b233a;
  --panel: rgba(12, 30, 49, 0.9);
  --panel-strong: #0d2f4f;
  --card: rgba(13, 37, 59, 0.8);
  --card-soft: rgba(16, 52, 79, 0.5);
  --line: rgba(147, 196, 255, 0.24);
  --text: #eaf5ff;
  --muted: #a8c6e6;
  --blue: #4fb0ff;
  --blue-strong: #0f7fe9;
  --blue-glow: rgba(79, 176, 255, 0.36);
  --gold: #f4ae2c;
  --gold-soft: #ffd77a;
  --white: #ffffff;
  --shadow: rgba(1, 12, 22, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 176, 255, 0.18), transparent 24%),
    linear-gradient(180deg, #071b2d 0%, #0a1d2d 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(7, 22, 34, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 1.5rem;
  padding: 0.75rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  display: block;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(43, 118, 197, 0.22));
}

.header-logo {
  width: min(18rem, 40vw);
  min-width: 220px;
}

.footer-logo {
  width: min(16rem, 100%);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  font-weight: 500;
}

.main-nav a {
  transition: color 0.2s ease;
  color: rgba(255, 255, 255, 0.75);
}

.main-nav a:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  border: 1px solid transparent;
  letter-spacing: -0.02em;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #f4c14b, #f0a82f);
  color: #0d1d2d;
  box-shadow: 0 8px 20px rgba(240, 168, 47, 0.3);
  border-radius: 14px;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(146, 201, 255, 0.6);
  color: var(--white);
}

.hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(126, 211, 255, 0.35), transparent 18%),
    linear-gradient(180deg, rgba(216, 236, 250, 0.94) 0%, rgba(206, 230, 247, 0.94) 35%, rgba(193, 224, 247, 0.98) 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  right: -10%;
  bottom: -6%;
  width: 78%;
  height: 74%;
  background: linear-gradient(120deg, rgba(255,255,255,0.76), rgba(125, 202, 255, 0.85) 25%, rgba(17, 120, 204, 0.9) 60%, rgba(8, 62, 123, 0.96));
  clip-path: polygon(4% 42%, 68% 0, 100% 9%, 100% 68%, 32% 100%, 0 90%);
  transform: skewY(-9deg) rotate(-10deg);
  opacity: 0.95;
  box-shadow: inset 0 0 20px rgba(255,255,255,0.5);
}

.hero::after {
  left: -8%;
  bottom: -17%;
  width: 64%;
  height: 56%;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(146, 208, 255, 0.15));
  border-radius: 50% 50% 0 0;
  filter: blur(8px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 2rem;
  min-height: 420px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(13, 83, 162, 0.88);
}

.hero-copy {
  max-width: 820px;
  padding-top: 2rem;
}

.hero-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3rem, 4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  color: rgba(10, 44, 82, 0.96);
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.hero-copy .lead {
  margin-top: 1.4rem;
  max-width: 620px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(11, 65, 101, 0.8);
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-height: 330px;
}

.hero-panel__inner {
  width: min(100%, 460px);
  padding: 1.25rem 1.2rem 1.25rem;
  border: 1px solid rgba(14, 102, 186, 0.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(9, 39, 66, 0.88), rgba(11, 60, 95, 0.9));
  box-shadow: 0 18px 35px rgba(9, 42, 72, 0.18);
}

.hero-panel__top {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.2rem;
  color: var(--white);
}

.mini-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: #8cd1ff;
  font-weight: 700;
}

.hero-panel__top strong {
  font-size: clamp(2.4rem, 3vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-panel__top small,
.hero-panel__metric span {
  font-size: 0.9rem;
  color: rgba(220, 236, 255, 0.8);
}

.hero-panel__metric {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.hero-panel__metric strong {
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero-bars {
  height: 160px;
  display: flex;
  align-items: end;
  gap: 0.7rem;
  padding-top: 0.7rem;
}

.hero-bars span {
  display: block;
  flex: 1;
  height: var(--h);
  min-height: 26px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(112, 201, 255, 0.92), rgba(25, 113, 220, 0.95));
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin: 2.1rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row li {
  position: relative;
  padding-left: 1rem;
}

.trust-row li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--blue), var(--blue-strong));
}

.hero-visual {
  display: none;
}

.visual-glow {
  display: none;
}

.dashboard-panel {
  position: relative;
  width: min(90%, 520px);
  min-height: 300px;
  padding: 1rem 1.2rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(14, 58, 89, 0.9), rgba(9, 21, 37, 0.96));
  box-shadow: 0 30px 60px rgba(1, 10, 18, 0.48);
}

.dashboard-header {
  display: flex;
  gap: 0.45rem;
  padding-bottom: 1rem;
}

.dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
}

.dot.red { background: #ff6f6f; }
.dot.amber { background: #ffcb66; }
.dot.green { background: #67dc9b; }

.chart-bars {
  height: 220px;
  display: flex;
  align-items: end;
  gap: 0.8rem;
  padding-top: 1rem;
}

.chart-bars span {
  display: block;
  flex: 1;
  height: var(--h);
  min-height: 2rem;
  border-radius: 0.8rem 0.8rem 0 0;
  background: linear-gradient(180deg, rgba(127, 218, 255, 0.92), rgba(17, 118, 216, 0.85));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  width: 200px;
  min-height: 110px;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(169, 220, 255, 0.32);
  border-radius: 20px;
  background: rgba(10, 44, 71, 0.7);
  box-shadow: 0 18px 42px rgba(3, 20, 34, 0.42);
}

.floating-card strong {
  font-size: 1.8rem;
  letter-spacing: -0.06em;
  color: var(--white);
}

.floating-card small {
  color: var(--muted);
  font-size: 0.8rem;
}

.mini-label {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-top {
  top: 26px;
  left: 10px;
}

.card-bottom {
  right: 10px;
  bottom: 38px;
}

.clients {
  padding: 2rem 0 0;
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border: 1px solid rgba(157, 205, 255, 0.12);
  border-radius: 18px;
  background: rgba(12, 28, 45, 0.5);
  color: rgba(173, 216, 255, 0.7);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.section {
  padding: 6rem 0;
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--white);
}

.narrow {
  max-width: 760px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1.4rem;
}

.service-card {
  padding: 1.7rem 1.4rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 31, 48, 0.92), rgba(11, 20, 34, 0.8));
  box-shadow: 0 10px 30px rgba(1, 14, 22, 0.28);
}

.service-card.accent {
  background: linear-gradient(180deg, rgba(19, 54, 81, 0.9), rgba(13, 29, 44, 0.9));
  border-color: rgba(255, 202, 113, 0.45);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 1.3rem;
}

.icon-blue {
  background: linear-gradient(180deg, rgba(92, 195, 255, 0.28), rgba(20, 110, 210, 0.16));
  color: var(--blue);
  border: 1px solid rgba(110, 190, 255, 0.35);
}

.icon-gold {
  background: linear-gradient(180deg, rgba(255, 202, 113, 0.18), rgba(255, 166, 0, 0.12));
  color: var(--gold-soft);
  border: 1px solid rgba(244, 174, 44, 0.45);
}

.service-card h3 {
  margin: 0 0 0.85rem;
  min-height: 72px;
  font-size: 1.42rem;
  line-height: 1.28;
  letter-spacing: -0.04em;
  color: var(--white);
}

.service-card p,
.solutions-copy p,
.industry-card p,
.step p,
.footer-copy {
  margin: 0;
  font-size: 1.01rem;
  line-height: 1.8;
  color: var(--muted);
}

.dark-panel {
  background: linear-gradient(180deg, rgba(9, 29, 46, 0.86), rgba(6, 22, 36, 0.96));
  border-top: 1px solid rgba(148, 199, 255, 0.08);
  border-bottom: 1px solid rgba(148, 199, 255, 0.08);
}

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.solutions-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--white);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
  margin: 1.75rem 0 0;
  padding: 0;
  color: var(--text);
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--white);
  font-weight: 500;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-card {
  min-height: 180px;
  padding: 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(13, 39, 61, 0.9), rgba(9, 25, 39, 0.82));
}

.stat-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  color: var(--white);
}

.stat-card span {
  color: var(--muted);
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 1.2rem;
}

.step {
  padding: 1.6rem 1.3rem;
  border: 1px solid rgba(167, 212, 255, 0.12);
  border-radius: 22px;
  background: rgba(10, 25, 38, 0.72);
}

.step-number {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.step h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--white);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1.3rem;
}

.industry-card {
  padding: 1.8rem 1.5rem;
  border: 1px solid rgba(167, 212, 255, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(11, 26, 40, 0.86), rgba(5, 18, 30, 0.9));
}

.industry-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: var(--white);
}

.cta-band {
  padding-top: 2rem;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2.1rem 2rem;
  border: 1px solid rgba(163, 209, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(14, 48, 72, 0.92), rgba(8, 26, 42, 0.98));
  box-shadow: 0 20px 52px rgba(1, 14, 25, 0.36);
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--white);
}

.site-footer {
  padding: 2rem 0 4rem;
  border-top: 1px solid rgba(163, 209, 255, 0.12);
  background: rgba(5, 17, 28, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 500px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--muted);
}

.footer-links h4 {
  margin: 0 0 0.4rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  color: var(--muted);
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-content: center;
  }

  .solutions-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .process-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .brand-subtitle {
    letter-spacing: 0.3rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .clients-row,
  .services-grid,
  .process-grid,
  .industry-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: 2.5rem;
  }

  .floating-card {
    width: 168px;
    min-height: 94px;
  }

  .card-top {
    left: 0;
    top: 18px;
  }

  .card-bottom {
    right: 0;
    bottom: 12px;
  }

  .dashboard-panel {
    min-height: 250px;
  }

  .section {
    padding: 4rem 0;
  }
}
