:root {
  --bg: #0b1220;
  --bg2: #0f1a33;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.56);
  --accent: #5eead4;
  --accent2: #60a5fa;
  --warning: #fbbf24;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius2: 22px;
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(1200px 700px at 20% -10%, rgba(96, 165, 250, 0.23), transparent 60%),
    radial-gradient(800px 500px at 85% 10%, rgba(94, 234, 212, 0.18), transparent 55%),
    linear-gradient(180deg, var(--bg), #070c16 60%, #070c16);
  color: var(--text);
  line-height: 1.55;
}

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

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

a:hover {
  text-decoration: underline;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--line);
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 10000;
}
.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(7, 12, 22, 0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}
.site-header.is-elevated {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.28);
  background: rgba(7, 12, 22, 0.82);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}
.brand-text {
  display: grid;
  line-height: 1.1;
}
.brand-name {
  font-weight: 760;
  letter-spacing: 0.2px;
}
.brand-sub {
  font-size: 12px;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.site-nav a {
  color: var(--muted);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 140ms ease, color 140ms ease;
}
.site-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  text-decoration: none;
}
.site-nav a.is-active {
  background: rgba(94, 234, 212, 0.13);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(94, 234, 212, 0.22);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text);
}
.nav-toggle-lines {
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines span {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 2px;
}
.nav-toggle-lines::before {
  top: 0;
}
.nav-toggle-lines::after {
  bottom: 0;
}
.nav-toggle-lines span {
  top: 5px;
}

.hero {
  position: relative;
  padding: 74px 0 44px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -40px 0 auto 0;
  height: 420px;
  pointer-events: none;
  opacity: 0.9;
}
.hero-illustration {
  width: min(920px, 90vw);
  margin: 0 auto;
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.55));
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
}

.eyebrow {
  color: var(--muted);
  font-weight: 620;
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 680;
  font-size: 13px;
  margin: 0 0 14px;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.7px;
}

.lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 64ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 680;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  user-select: none;
}
.btn:hover {
  text-decoration: none;
}
.btn:focus-visible {
  outline: 2px solid rgba(94, 234, 212, 0.6);
  outline-offset: 2px;
}
.btn-primary {
  background: linear-gradient(135deg, rgba(94, 234, 212, 1), rgba(96, 165, 250, 1));
  color: rgba(4, 7, 14, 1);
  box-shadow: 0 12px 28px rgba(96, 165, 250, 0.22);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
}
.badge img {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}
.badge span {
  font-size: 13px;
  font-weight: 620;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius2);
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card-top .h3 {
  margin: 0 0 4px;
}
.muted {
  color: var(--muted);
}
.hero-card-actions {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}
.hero-card-meta {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}
.meta-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  font-size: 13px;
}
.meta-label {
  color: var(--soft);
}
.meta-value {
  color: rgba(255, 255, 255, 0.86);
}

.section {
  padding: 56px 0;
}
.section-alt {
  background: radial-gradient(1100px 600px at 30% 10%, rgba(96, 165, 250, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 55%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.section-cta {
  background: radial-gradient(1200px 700px at 70% 40%, rgba(94, 234, 212, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 65%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-head {
  margin-bottom: 20px;
}
.section-head h2 {
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.35px;
}
.section-head p {
  margin: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}
.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  opacity: 0.95;
}
.card h3 {
  margin: 0 0 6px;
  letter-spacing: -0.2px;
}
.card p {
  margin: 0 0 10px;
  color: var(--muted);
}
.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.84);
}
.list li {
  margin: 4px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
}
.panel h3 {
  margin: 0 0 10px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  position: relative;
  padding-left: 26px;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.86);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: rgba(94, 234, 212, 0.18);
  border: 1px solid rgba(94, 234, 212, 0.32);
  box-shadow: 0 6px 16px rgba(94, 234, 212, 0.08);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 2px solid rgba(94, 234, 212, 0.95);
  border-bottom: 2px solid rgba(94, 234, 212, 0.95);
  transform: rotate(-45deg);
}
.note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.feature {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 14px;
}
.feature img {
  width: 64px;
  height: 64px;
  opacity: 0.95;
}

.h3 {
  font-size: 18px;
  letter-spacing: -0.2px;
}
.h4 {
  font-size: 16px;
  margin: 0 0 4px;
  letter-spacing: -0.15px;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.steps li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.25);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 780;
  box-shadow: 0 10px 26px rgba(96, 165, 250, 0.08);
}

.quote-wrap {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 14px;
  align-items: start;
}

.quote-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}
.field label {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 650;
  font-size: 13px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 12, 22, 0.65);
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(94, 234, 212, 0.45);
  outline-offset: 2px;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.form-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}
.form-status.is-error {
  color: rgba(251, 191, 36, 0.95);
}
.form-status.is-ok {
  color: rgba(94, 234, 212, 0.95);
}

.quote-side {
  display: grid;
  gap: 12px;
}
.quote-side-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 16px;
}

.site-footer {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  align-items: center;
}
.footer-brand {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-name {
  font-weight: 740;
}
.footer-muted {
  color: var(--muted);
  font-size: 12px;
}
.footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
}
.footer-copy {
  justify-self: end;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-bg {
    height: 330px;
    opacity: 0.85;
  }
  .quote-wrap {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .feature-row {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .footer-copy {
    justify-self: center;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 60px;
    right: 16px;
    left: 16px;
    background: rgba(7, 12, 22, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    padding: 12px 12px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
