:root {
  --ink: #17212b;
  --muted: #5d6873;
  --paper: #fffaf2;
  --white: #ffffff;
  --line: #eadfce;
  --brand: #243b53;
  --brand-2: #6f4e37;
  --accent: #c08a45;
  --soft: #f6eddf;
  --soft-2: #eef3f7;
  --success: #2f6f4e;
  --shadow: 0 16px 40px rgba(23, 33, 43, 0.10);
  --radius: 18px;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

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

.site-header {
  background: rgba(255, 250, 242, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.2rem;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: var(--paper);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.logo-small { display: block; color: var(--muted); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}
.main-nav a { color: var(--ink); }
.main-nav a.active, .main-nav a:hover { color: var(--brand-2); text-decoration: none; }

.nav-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 9px 11px;
  font-weight: 800;
  color: var(--ink);
}

.hero {
  padding: 74px 0 54px;
  background:
    radial-gradient(circle at top left, rgba(192,138,69,0.23), transparent 30%),
    linear-gradient(135deg, var(--paper), #fff);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.75fr);
  gap: 40px;
  align-items: center;
}
.eyebrow {
  color: var(--brand-2);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  margin: 0 0 12px;
}
h1, h2, h3, h4 {
  line-height: 1.12;
  margin: 0 0 16px;
  letter-spacing: -0.035em;
}
h1 { font-size: clamp(2.35rem, 5vw, 4.7rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.65rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.28rem); color: var(--muted); max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--brand); color: var(--white); box-shadow: var(--shadow); }
.btn-secondary { background: var(--white); color: var(--brand); border-color: var(--line); }
.btn-accent { background: var(--accent); color: #22160b; }
.btn-full { width: 100%; }

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.hero-card ul, .check-list { padding: 0; margin: 16px 0 0; list-style: none; }
.hero-card li, .check-list li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
}
.hero-card li::before, .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--success);
  font-weight: 900;
}

.section { padding: 70px 0; }
.section-tight { padding: 46px 0; }
.section-white { background: var(--white); }
.section-soft { background: var(--soft); }
.section-blue { background: var(--soft-2); }
.section-header { max-width: 800px; margin-bottom: 34px; }
.section-header.center { text-align: center; margin-left: auto; margin-right: auto; }
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 28px rgba(23,33,43,0.06);
}
.card.soft { background: var(--soft); }
.card.blue { background: var(--soft-2); }
.card h3 { margin-bottom: 10px; }
.muted { color: var(--muted); }
.kicker { font-size: 0.88rem; font-weight: 800; color: var(--brand-2); text-transform: uppercase; letter-spacing: 0.08em; }

.feature-list { display: grid; gap: 14px; margin: 22px 0 0; }
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.feature-icon {
  flex: 0 0 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: var(--white);
  font-weight: 900;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}
.price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 8px 0 12px;
}
.price small { display: block; color: var(--muted); font-size: 0.95rem; font-weight: 600; letter-spacing: 0; }
.badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--soft);
  color: var(--brand-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.steps { counter-reset: step; }
.step {
  position: relative;
  padding-left: 76px;
  min-height: 58px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--brand);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.quote-box {
  background: var(--brand);
  color: var(--white);
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.quote-box p { color: rgba(255,255,255,0.88); }
.quote-box .eyebrow { color: #f2c891; }

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item h3 { margin-bottom: 8px; }

.form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: 0.94rem; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8cbb8;
  border-radius: 14px;
  background: #fffdf9;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
}
textarea { min-height: 150px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(192,138,69,0.24);
  border-color: var(--accent);
}
.honeypot { position: absolute; left: -9999px; opacity: 0; }

.cta {
  background: linear-gradient(135deg, var(--brand), #142536);
  color: var(--white);
  border-radius: 30px;
  padding: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
}
.cta p { color: rgba(255,255,255,0.86); }
.cta .btn { background: var(--paper); color: var(--brand); }

.site-footer {
  background: #111923;
  color: rgba(255,255,255,0.74);
  padding: 42px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}
.site-footer a { color: rgba(255,255,255,0.9); }
.footer-title { color: var(--white); font-weight: 900; margin-bottom: 10px; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
}

.page-hero {
  padding: 64px 0 38px;
  background: linear-gradient(135deg, var(--paper), var(--soft));
  border-bottom: 1px solid var(--line);
}
.breadcrumb { color: var(--muted); font-size: 0.9rem; margin-bottom: 10px; }
.breadcrumb a { font-weight: 800; }

.notice {
  background: #fff7df;
  border: 1px solid #ead49b;
  border-radius: 16px;
  padding: 16px;
  color: #5a421e;
}

@media (max-width: 860px) {
  .hero-grid, .grid-2, .grid-3, .footer-grid, .cta { grid-template-columns: 1fr; }
  .main-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 18px; border-top: 1px solid var(--line); }
  .nav-toggle { display: inline-flex; }
  .form-grid { grid-template-columns: 1fr; }
  .cta { padding: 30px; }
}

@media (max-width: 560px) {
  .container { width: min(var(--max), calc(100% - 24px)); }
  .hero { padding-top: 50px; }
  .section { padding: 52px 0; }
  .card, .form-wrap, .hero-card { padding: 22px; }
  .step { padding-left: 62px; }
}
