* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0a0d18;
  --panel: rgba(255, 255, 255, 0.055);
  --panel-strong: rgba(255, 255, 255, 0.085);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f8fafc;
  --muted: #cbd5e1;
  --accent: #f97316;
  --accent-soft: rgba(249, 115, 22, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(249, 115, 22, 0.16), transparent 34%),
    radial-gradient(circle at 88% 22%, rgba(13, 148, 136, 0.12), transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 13, 24, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.08rem;
}

.brand img {
  width: 46px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 68px 0;
}

.hero {
  padding-top: 86px;
}

.hero-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.eyebrow {
  margin-bottom: 18px;
  color: #fdba74;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 6.1rem);
  line-height: 0.98;
  letter-spacing: 0;
  background: linear-gradient(135deg, #fff7ed 0%, #fb923c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.lead {
  max-width: 720px;
  color: #e2e8f0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.55;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 900;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  color: #fff;
  box-shadow: 0 16px 38px rgba(249, 115, 22, 0.26);
}

.btn-secondary {
  border: 1px solid rgba(249, 115, 22, 0.56);
  color: var(--text);
}

.panel,
.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--panel), rgba(13, 148, 136, 0.08));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.panel {
  padding: clamp(24px, 4vw, 34px);
}

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

.card {
  padding: 22px;
}

.card p,
.panel p,
.service-area {
  color: var(--muted);
  line-height: 1.65;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #e5e7eb;
  line-height: 1.6;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.13);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-strip span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #e2e8f0;
  font-weight: 800;
  font-size: 0.9rem;
}

.cta {
  width: min(920px, calc(100% - 32px));
  text-align: center;
}

.cta p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 760px) {
  .nav {
    min-height: 70px;
  }

  .nav-links a:not(.btn) {
    display: none;
  }

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

  .hero {
    padding-top: 58px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.65rem, 14vw, 4.1rem);
  }

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

  .section {
    padding: 54px 0;
  }

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