:root {
  --background: #07111d;
  --surface: rgba(10, 20, 34, 0.82);
  --text: #f4f7fb;
  --muted: #afbdd1;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #62c3ff;
  --accent-strong: #2ea6ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(98, 195, 255, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #08111d 0%, #0d1827 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 72px;
}

.hero {
  padding: 24px 0 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 14, 24, 0.72);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 18px;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 28px;
  padding: 72px 0 16px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.9rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.lead,
.section-heading p,
.service-card p,
.hero-card p,
.contact-form label,
.form-feedback {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.lead {
  max-width: 62ch;
  margin: 22px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #04101c;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.highlights li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-card,
.service-card,
.client-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(98, 195, 255, 0.35);
  border-radius: 999px;
  background: rgba(98, 195, 255, 0.08);
  color: #d8efff;
  font-weight: 700;
}

.hero-card-label,
.service-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-weight: 700;
}

.stats {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
}

.stats div {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.stats dt {
  margin-bottom: 6px;
  color: var(--muted);
}

.stats dd {
  margin: 0;
  font-weight: 700;
}

.section {
  padding: 42px 0 0;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid rgba(98, 195, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(98, 195, 255, 0.12), rgba(255, 255, 255, 0.03));
}

.trust-strip p {
  margin: 0;
  color: #dce8f5;
  line-height: 1.6;
}

.trust-strip a {
  white-space: nowrap;
  color: var(--accent);
  font-weight: 700;
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 12px 0 0;
}

.service-grid,
.clients-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  padding: 24px;
}

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

.client-card {
  min-height: 126px;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f6fb 100%);
  border-color: rgba(255, 255, 255, 0.22);
}

.client-card:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 195, 255, 0.45);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.client-card img {
  width: 100%;
  max-width: 180px;
  max-height: 72px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f90a8;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(98, 195, 255, 0.35);
  border-color: rgba(98, 195, 255, 0.55);
}

.contact-form button {
  width: fit-content;
}

.botcheck-field {
  display: none !important;
}

.form-feedback {
  min-height: 24px;
  margin: 0;
}

.form-feedback.is-success {
  color: #8ff0b6;
}

.form-feedback.is-error {
  color: #ff9898;
}

@media (max-width: 920px) {
  .hero-grid,
  .service-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    border-radius: 28px;
    flex-wrap: wrap;
  }

  .trust-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 14px;
    padding-top: 8px;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  .topbar {
    align-items: flex-start;
    padding: 16px;
  }

  .brand img {
    width: 180px;
    height: auto;
  }

  .hero-grid {
    padding-top: 44px;
  }

  .hero-card,
  .service-card,
  .contact-form,
  .client-card {
    border-radius: 20px;
  }
}
