:root {
  --bg: #020b1b;
  --bg2: #07162d;
  --panel: rgba(10, 24, 48, 0.84);
  --panel2: #0b1730;
  --text: #ffffff;
  --muted: #b9c2d1;
  --blue: #28a8ff;
  --purple: #7a5cff;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 10%, rgba(45, 168, 255, .18), transparent 28%),
    radial-gradient(circle at 10% 5%, rgba(122, 92, 255, .14), transparent 30%),
    linear-gradient(180deg, #020817 0%, #041022 42%, #020817 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(2, 8, 23, .76);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: -.02em;
}

.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong { color: var(--blue); }

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.nav-cta {
  color: white;
  padding: 11px 18px;
  border: 1px solid rgba(122, 92, 255, .55);
  border-radius: 999px;
  box-shadow: inset 0 0 24px rgba(122, 92, 255, .14);
}

.hero { padding: 96px 0 56px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 740px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 22px;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  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 .2s ease, opacity .2s ease;
}

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

.primary {
  background: linear-gradient(90deg, var(--blue), var(--purple));
  box-shadow: 0 14px 34px rgba(45, 168, 255, .22);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--muted);
}

.hero-card {
  min-height: 380px;
  display: grid;
  place-items: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at center, rgba(45, 168, 255, .2), transparent 45%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-card img { width: min(360px, 72%); }

.problem { padding: 32px 0 56px; }

.panel {
  padding: 44px;
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 27, 55, .92), rgba(8, 18, 38, .92));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.highlight {
  background: linear-gradient(135deg, #18b8ff, #9b35ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}

.question-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.question-grid div {
  min-height: 104px;
  display: grid;
  place-items: center;
  padding: 20px;
  border-left: 1px solid var(--line);
  color: #e8eefc;
}

.section { padding: 86px 0; }

.light {
  color: #0b1220;
  background: #f7f9ff;
}

.light .eyebrow { color: #2267ff; }
.light p { color: #263247; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

blockquote {
  margin: 30px 0 0;
  padding: 24px;
  border-left: 4px solid var(--purple);
  border-radius: 18px;
  background: rgba(122, 92, 255, .08);
  color: #243049;
}

.tech-law-card {
  min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background: linear-gradient(90deg, #071a39, #311061);
  box-shadow: var(--shadow);
}

.tech-law-card div {
  display: grid;
  place-items: center;
  gap: 18px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.tech-law-card span {
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #8fcfff;
  font-weight: 800;
  font-size: 13px;
}

.tech-law-card code {
  font-size: 72px;
  color: rgba(255,255,255,.82);
}

.centered { text-align: center; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.service-card {
  padding: 32px;
  background: linear-gradient(180deg, rgba(12, 27, 55, .96), rgba(7, 17, 36, .96));
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.service-card h3 {
  font-size: 22px;
  color: #ffffff;
}

.service-card ul {
  padding-left: 20px;
  color: var(--muted);
}

.service-card li { margin: 12px 0; }
.service-card li::marker { color: var(--purple); }

.readiness {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 52px;
  align-items: center;
}

.mini-assessment {
  padding: 30px;
  border-radius: 24px;
  background: white;
  color: #111827;
  box-shadow: 0 24px 70px rgba(0,0,0,.18);
}

.mini-assessment p { color: #586174; }

.fake-row {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f0f2f7;
  color: #3a4356;
  font-size: 14px;
}

.fake-row.active {
  background: #dcf8ea;
  color: #11623d;
}

.target-section { padding-top: 24px; }

.target-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.target-grid span {
  min-height: 88px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(10, 24, 48, .86);
  color: #e9efff;
}

.contact {
  padding-top: 48px;
  background: linear-gradient(180deg, transparent, rgba(5, 14, 31, .9));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr .86fr;
  gap: 52px;
  align-items: start;
}

.contact-card {
  padding: 34px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.contact-card a:not(.btn) { color: #dce8ff; }
.contact-card .btn { margin-top: 14px; }

footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

  .hero-grid,
  .split,
  .readiness,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero {
    padding-top: 64px;
  }

  .panel {
    padding: 30px 20px;
  }

  .question-grid div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

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

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

  .hero-card {
    min-height: 240px;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .footer-grid {
    flex-direction: column;
  }
}

.service-card-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.service-card-title img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.service-card-title h3 {
  margin: 0;
}
