:root {
  --navy: #102033;
  --ink: #1b2838;
  --muted: #5b6b7c;
  --line: #d9e2ec;
  --paper: #f6f3ec;
  --white: #fffcf7;
  --blue: #2c72af;
  --blue-d: #1e5a8c;
  --fb: #1877f2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.land-nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.land-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
}
.land-brand img { height: 28px; }
.land-links { gap: 22px; margin-left: auto; }
.land-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; }
.land-links a:hover { color: var(--navy); }
.land-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.land-nav .land-links + .land-actions { margin-left: 0; }

.btn-solid, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  padding: 9px 16px;
  border: 1px solid transparent;
}
.btn-solid { background: var(--blue); color: #fff; }
.btn-solid:hover { background: var(--blue-d); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-solid.lg, .btn-ghost.lg { padding: 12px 22px; font-size: 15px; }

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 72px;
}
.hero-inner { max-width: 720px; }
.eyebrow {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 560;
  color: var(--navy);
  margin: 0 0 16px;
}
.lede { font-size: 18px; color: var(--muted); max-width: 560px; margin-bottom: 24px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; }
.micro { margin-top: 14px; color: var(--muted); font-size: 13px; }

.flow {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.flow-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  min-width: 180px;
  box-shadow: 0 18px 40px rgba(16, 32, 51, .06);
}
.flow-card strong { display: block; margin-top: 8px; }
.flow-card small { color: var(--muted); }
.flow-mid { border-color: #b9d2ea; box-shadow: 0 18px 40px rgba(44, 114, 175, .16); }
.flow-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
}
.flow-icon.fb { background: var(--fb); }
.flow-icon.bf { background: var(--blue); }
.flow-icon.crm { background: var(--navy); }
.flow-line {
  width: 56px;
  height: 2px;
  background: #c5d4e2;
  position: relative;
}
.flow-line span {
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 24px 72px;
}
.section h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 8px;
}
.section-sub { color: var(--muted); margin-bottom: 28px; }
.steps, .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.steps article, .feat-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
}
.step-n {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.steps h3, .feat-grid h3 { font-size: 18px; margin: 0 0 8px; }
.steps p, .feat-grid p { color: var(--muted); margin: 0; font-size: 14px; line-height: 1.55; }
.feat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feat-grid i { font-size: 22px; color: var(--blue); display: block; margin-bottom: 10px; }

.cta-band {
  max-width: 1120px;
  margin: 0 auto 48px;
  padding: 32px 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cta-band h2 { font-family: Fraunces, Georgia, serif; font-size: 28px; margin: 0 0 6px; }
.cta-band p { margin: 0; color: #c5d0dc; }
.cta-band .btn-solid { background: #fff; color: var(--navy); }
.cta-band .btn-solid:hover { background: #e8eef5; color: var(--navy); }

.land-foot {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px 36px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}
.land-foot a { color: var(--muted); }

@media (max-width: 900px) {
  .steps, .feat-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; margin-left: 24px; margin-right: 24px; }
  .flow-line { width: 100%; height: 28px; background: transparent; border-left: 2px solid #c5d4e2; margin: 0 0 0 28px; }
  .flow { flex-direction: column; align-items: stretch; }
  .land-actions .btn-ghost:first-child { display: none; }
}
