:root {
  color-scheme: light;
  --bg: #0f172a;
  --bg-soft: #111827;
  --primary: #38bdf8;
  --primary-dark: #0ea5e9;
  --text: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --border: #e2e8f0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(248, 250, 252, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--bg);
}

.nav {
  display: flex;
  gap: 1.25rem;
  font-weight: 500;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.button.primary {
  background: var(--primary);
  color: #0f172a;
}

.button.primary:hover {
  background: var(--primary-dark);
  color: white;
}

.button.secondary {
  border-color: var(--border);
  color: var(--text);
  background: white;
}

.button.secondary:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.button.ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.button.full {
  width: 100%;
}

.hero {
  background: radial-gradient(circle at top left, #dbeafe, #f8fafc 60%);
  padding: 5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.3rem, 3vw, 3.4rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
  font-weight: 600;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-map {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 20px 35px rgba(15, 23, 42, 0.25);
  margin-top: 0.5rem;
}

.hero-map iframe {
  display: block;
  width: 100%;
  height: 460px;
  border: 0;
}

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-trust div {
  display: grid;
  gap: 0.3rem;
}

.hero-trust strong {
  font-size: 1.4rem;
}

.hero-card {
  background: var(--card);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.hero-graphic {
  background: #0f172a;
  padding: 1.5rem;
}

.hero-graphic svg {
  width: 100%;
  height: auto;
}

.hero-card-body {
  padding: 1.8rem;
  display: grid;
  gap: 1rem;
}

.hero-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 4.5rem 0;
}

.section.light {
  background: #f1f5f9;
}

.section.dark {
  background: var(--bg);
  color: #f8fafc;
}

.section-title {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
}

.section-title h2 {
  font-size: clamp(2rem, 2.5vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--muted);
}

.section.dark .section-title p {
  color: #cbd5f5;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.6rem;
}

.card {
  background: var(--card);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: 1rem;
}

.card .icon {
  font-size: 1.8rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.step {
  background: white;
  padding: 1.8rem;
  border-radius: 18px;
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--border);
}

.step span {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: center;
}

.pricing-copy ul {
  margin-top: 1.5rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.pricing-cards {
  display: grid;
  gap: 1.5rem;
}

.price-card {
  background: white;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--border);
  display: grid;
  gap: 1rem;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 18px 40px rgba(56, 189, 248, 0.2);
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
}

.price-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.form-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.form-copy p {
  color: #cbd5f5;
  margin: 1.5rem 0;
}

.form-highlights {
  display: grid;
  gap: 1.2rem;
}

.form-highlights strong {
  font-size: 1.1rem;
}

.form-card {
  background: #ffffff;
  color: var(--text);
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
}

.form-card h3 {
  margin-bottom: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

input:focus,
select:focus {
  outline: 2px solid rgba(56, 189, 248, 0.4);
  border-color: var(--primary);
}

.field.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.field.checkbox label {
  font-weight: 500;
}

.alert {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.alert.success {
  background: #dcfce7;
  color: #166534;
}

.error {
  color: #b91c1c;
  font-size: 0.85rem;
}

.form-note {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer {
  background: #0b1120;
  color: #cbd5f5;
  padding: 2.5rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-content {
    flex-direction: column;
  }
}
