:root {
  --bg: #f3f4f6;
  --surface: #ffffff;
  --surface-alt: #f9fafb;
  --border: #dde3ee;
  --primary: #12415c;
  --accent: #f97316;
  --text: #111827;
  --muted: #6b7280;
}

*,
*::before,
*::after {
  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, #eef2ff, #f3f4f6);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: #0b5ebf;
}

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Top header */

.top {
  background: #020617;
  color: #e5e7eb;
  border-bottom: 1px solid #111827;
}

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

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  height: 32px;
  width: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #38bdf8, #0f766e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-weight: 600;
}

.brand-tagline {
  font-size: 0.8rem;
  color: #9ca3af;
}

.top-right {
  text-align: right;
  font-size: 0.86rem;
}

.top-label {
  display: block;
  color: #9ca3af;
}

.top-phone {
  text-decoration: none;
  color: #e5e7eb;
  font-weight: 600;
}

/* Hero */

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

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: stretch;
}

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

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

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

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

.hero-points {
  padding-left: 18px;
  margin: 6px 0 0;
}

.hero-points li {
  margin-bottom: 4px;
}

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

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 0.93rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #1f1300;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
  border: 1px solid #cbd5f0;
  background: #f9fafb;
  color: #111827;
}

.hero-card {
  background: var(--surface);
  border-radius: 18px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  font-size: 0.94rem;
}

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

.contact-list {
  margin: 8px 0 10px;
  padding: 0;
}

.contact-list div {
  margin-bottom: 4px;
}

.contact-list dt {
  font-weight: 600;
  display: inline-block;
  min-width: 105px;
}

.contact-list dd {
  display: inline;
  margin: 0;
}

.hero-note {
  margin-top: 8px;
  font-size: 0.82rem;
  padding: 8px 10px;
  border-radius: 10px;
  background: #ecfdf5;
  color: #166534;
}

/* Sections */

.section {
  padding: 22px 0 26px;
}

.section-alt {
  background: var(--surface-alt);
  border-radius: 20px;
  padding-inline: 18px;
  margin-inline: -18px;
}

.section-alt .shell {
  padding-inline: 18px;
}

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

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

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 20px;
}

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

  .section-alt {
    margin-inline: 0;
    border-radius: 0;
  }
}

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

.card-title {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

/* Check list */

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

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

/* Steps */

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

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

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

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

/* Columns */

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

.columns ul {
  padding-left: 18px;
  margin: 6px 0 0;
}

/* Info banner */

.info-banner {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  font-size: 0.95rem;
}

/* FAQ */

.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

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

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

/* Footer */

.footer {
  background: #020617;
  color: #9ca3af;
  border-top: 1px solid #111827;
  margin-top: 4px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 16px;
  font-size: 0.86rem;
}
