:root {
  --bg: #f5f5f7;
  --surface: #ffffff;
  --primary: #18435a;
  --primary-soft: #e3f2ff;
  --accent: #f97316;
  --accent-soft: #fff3e5;
  --border: #dde3ec;
  --text: #1f2933;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #f9fbff, #f3f4f6);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: #0b5ebf;
}

/* Top bar */

.site-header {
  background: #020617;
  color: #e5e7eb;
  padding: 10px 18px;
  font-size: 0.88rem;
  border-bottom: 1px solid #111827;
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.header-right a {
  color: #bfdbfe;
  text-decoration: none;
}

/* Hero */

.hero {
  padding: 26px 18px 32px;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.4fr);
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

.hero-main {
  padding: 4px 2px;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #4b5563;
  margin-bottom: 7px;
}

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(2.05rem, 3vw, 2.5rem);
  color: var(--primary);
}

.hero-lead {
  margin: 0 0 12px;
  font-size: 1.02rem;
  max-width: 40rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
}

.pill {
  font-size: 0.8rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: #0b3750;
  border: 1px solid #c6ddf5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.btn-primary {
  background: var(--accent);
  color: #1f1300;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.96rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2);
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid #cbd5f0;
  padding: 8px 15px;
  font-size: 0.9rem;
  background: #f9fafb;
  text-decoration: none;
  color: #111827;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-side {
  background: var(--surface);
  border-radius: 20px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-side h2 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--primary);
}

.hero-side p {
  margin: 0 0 12px;
  font-size: 0.94rem;
  color: var(--muted);
}

.hero-details {
  margin: 6px 0 10px;
  font-size: 0.9rem;
}

.hero-details div {
  margin-bottom: 4px;
}

.hero-details strong {
  display: inline-block;
  width: 105px;
}

.hero-links {
  font-size: 0.88rem;
  margin-top: 6px;
}

.hero-links a {
  display: block;
  text-decoration: none;
  margin-bottom: 4px;
}

.hero-note {
  margin-top: 8px;
  font-size: 0.8rem;
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: #7c2d12;
}

/* Main layout */

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px 40px;
}

section {
  margin-bottom: 30px;
}

h2.section-title {
  font-size: 1.4rem;
  margin: 0 0 10px;
  color: var(--primary);
}

.muted {
  color: var(--muted);
  font-size: 0.94rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.5fr);
  gap: 20px;
}

@media (max-width: 880px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
  font-size: 0.95rem;
}

.list-basic {
  padding-left: 18px;
  margin: 8px 0 0;
}

.list-basic li {
  margin-bottom: 4px;
}

.striped-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  counter-reset: step;
}

.step {
  background: var(--surface);
  border-radius: 14px;
  padding: 15px 15px 13px;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -10px;
  left: 14px;
  height: 24px;
  width: 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.35);
}

.step h3 {
  margin: 4px 0 6px;
  font-size: 1rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.highlight {
  background: var(--accent-soft);
  border-radius: 14px;
  border: 1px solid #fed7aa;
  padding: 14px 16px;
  font-size: 0.95rem;
}

.highlight strong {
  display: block;
  margin-bottom: 4px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 8px;
}

.tag {
  font-size: 0.78rem;
  padding: 4px 9px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #312e81;
}

.cols-lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.faq-item + .faq-item {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.4fr);
  gap: 18px;
}

@media (max-width: 880px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Footer */

footer {
  background: #020617;
  color: #9ca3af;
  padding: 14px 18px 16px;
  font-size: 0.86rem;
  border-top: 1px solid #111827;
  margin-top: 6px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

.nowrap {
  white-space: nowrap;
}
