:root {
  --bg: #071a33;
  --bg-2: #0b2447;
  --card: #ffffff;
  --muted: #f3f7ff;
  --text: #0e1b2e;
  --text-soft: #516079;
  --blue: #1479ff;
  --blue-2: #56c8ff;
  --line: rgba(8, 28, 60, 0.12);
  --shadow: 0 24px 70px rgba(7, 26, 51, 0.16);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 26, 51, 0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bg);
  font-size: 24px;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(20, 121, 255, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #34425a;
  font-size: 15px;
}

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

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 22%, rgba(20, 121, 255, 0.25), transparent 32%),
    linear-gradient(135deg, #06172d 0%, #09264e 52%, #06172d 100%);
  color: #ffffff;
  padding: 92px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  bottom: -240px;
  background: radial-gradient(circle, rgba(86, 200, 255, 0.22), transparent 70%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 60px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  max-width: 820px;
}

.hero-text {
  margin: 28px 0 0;
  max-width: 690px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #42b8ff);
  box-shadow: 0 18px 44px rgba(20, 121, 255, 0.35);
  color: #ffffff;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-points span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.hero-card {
  justify-self: end;
  width: min(520px, 100%);
  border-radius: 34px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  transform: none;
}

.hero-card img {
  border-radius: 24px;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

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

.section-head p:last-child,
.lead-block p {
  color: var(--text-soft);
  font-size: 18px;
}

.lead-block {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lead-block p:first-child {
  margin-top: 0;
}

.lead-block p:last-child {
  margin-bottom: 0;
}

.cards {
  display: grid;
  gap: 20px;
}

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

.card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 44px rgba(7, 26, 51, 0.08);
}

.card-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.card h3,
.solution-item h3,
.step h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.card p,
.solution-item p,
.step p {
  margin: 0;
  color: var(--text-soft);
}

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

.solution-item {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.solution-item h3 {
  margin-top: 0;
}

.card-accent {
  min-height: 260px;
  background:
    linear-gradient(180deg, rgba(20, 121, 255, 0.06), transparent 42%),
    #ffffff;
}

.industries .card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--blue-2));
}

.approach {
  background: #ffffff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.step {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.step span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e9f3ff;
  color: var(--blue);
  font-weight: 900;
}

.cta {
  padding: 78px 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(86, 200, 255, 0.16), transparent 30%),
    linear-gradient(135deg, #06172d, #09264e);
  color: #ffffff;
}

.cta-box {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.cta p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-card p {
  margin: 0 0 14px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: #ffffff;
  font-weight: 800;
}

.footer {
  background: #041124;
  color: rgba(255, 255, 255, 0.72);
  padding: 26px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

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

  .hero {
    padding: 72px 0;
  }

  .hero-grid,
  .split,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-self: start;
    max-width: 420px;
  }

  .grid-3,
  .solution-list,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .brand span {
    font-size: 18px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-text,
  .section-head p:last-child,
  .lead-block p {
    font-size: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .grid-3,
  .solution-list,
  .steps {
    grid-template-columns: 1fr;
  }

  .card,
  .lead-block,
  .solution-item,
  .contact-card {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
