:root {
  --text: #f8fafc;
  --bg: #0a1122;
  --header-height: 0px;
  --app-height: 100dvh;
  --screen-section-height: max(0px, calc(var(--app-height) - var(--header-height)));
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, 94%);
  margin: 0 auto;
}

.hero,
.service-hero {
  position: relative;
  min-height: var(--screen-section-height);
  display: flex;
  align-items: center;
}

.hero-inner,
.service-hero-inner {
  position: relative;
  z-index: 1;
  padding: 44px 0 24px;
}

.hero-content,
.service-hero-content {
  max-width: 860px;
}

.hero-title {
  margin: 0 0 14px;
  font-family: "Sora", "Manrope", sans-serif;
  line-height: 1.1;
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero-sub {
  margin: 0;
  color: #dbe7ff;
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 16px;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(198, 219, 255, 0.3);
}

@media (max-width: 900px) {
  .hero,
  .service-hero {
    min-height: var(--screen-section-height);
  }

  .hero-inner,
  .service-hero-inner {
    padding-top: 92px;
    padding-bottom: 28px;
  }

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