:root {
  --green: #005820;
  --green-bright: #00a651;
  --ink: #0d1728;
  --muted: #5c6470;
  --border: #e8eaed;
  --soft: #f6f8f7;
  --soft-2: #f9fafb;
  --white: #fff;
  --radius: 24px;
  --container: 1120px;
  --font: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.kbp-container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.kbp-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(13,23,40,.08);
}
.kbp-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.kbp-logo { display: inline-flex; align-items: center; }
.kbp-logo img { width: 156px; height: auto; }
.kbp-header-actions { display: flex; align-items: center; gap: 12px; }
.kbp-header-link { color: var(--muted); font-size: 14px; font-weight: 750; }
.kbp-header-link:hover { color: var(--green); }

.kbp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.kbp-btn:hover { transform: translateY(-1px); }
.kbp-btn-primary { background: var(--green); color: #fff; box-shadow: 0 8px 20px rgba(0,88,32,.18); }
.kbp-btn-secondary { background: #fff; color: var(--ink); border-color: #dfe5e8; }
.kbp-btn-light { background: #fff; color: var(--green); box-shadow: 0 8px 20px rgba(13,23,40,.10); }
.kbp-btn-full { width: 100%; }

.kbp-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 70px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0,166,81,.12), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f8faf9 100%);
}
.kbp-hero-inner { display: flex; align-items: center; gap: 60px; }
.kbp-hero-copy { flex: 1 1 0; max-width: 640px; }
.kbp-eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}
.kbp-eyebrow::before { content:""; width: 24px; height: 2px; background: currentColor; border-radius: 99px; }
h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -2.5px;
}
.kbp-hero-copy > p:not(.kbp-eyebrow) {
  margin: 22px 0 34px;
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.kbp-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.kbp-hero-card {
  flex: 0 0 360px;
  padding: 22px;
  border: 1px solid rgba(13,23,40,.08);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(13,23,40,.10);
}
.kbp-mini-card { padding: 22px; border-radius: 22px; background: var(--soft); margin-bottom: 14px; }
.kbp-mini-card:last-child { margin-bottom: 0; }
.kbp-mini-card strong { display:block; font-size: 18px; margin-bottom: 7px; }
.kbp-mini-card span { color: var(--muted); font-size: 14px; line-height: 1.5; }

.kbp-options { padding: 66px 0 86px; }
.kbp-section-head { max-width: 680px; margin: 0 auto 32px; text-align: center; }
.kbp-section-head h2 { margin: 0; font-size: clamp(32px, 4vw, 44px); line-height: 1.12; letter-spacing: -1.6px; }
.kbp-section-head p { margin: 14px 0 0; color: var(--muted); line-height: 1.7; }
.kbp-card-row { display: flex; align-items: stretch; gap: 22px; }
.kbp-choice-card {
  position: relative;
  flex: 1 1 0;
  min-height: 280px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.kbp-choice-card::after {
  content:"";
  position:absolute;
  right:-70px; bottom:-80px;
  width: 180px; height: 180px;
  border-radius: 999px;
  background: rgba(0,166,81,.08);
}
.kbp-choice-card:hover { transform: translateY(-3px); border-color: rgba(0,88,32,.22); box-shadow: 0 24px 60px rgba(13,23,40,.10); }
.kbp-choice-icon {
  display:flex; align-items:center; justify-content:center;
  width: 58px; height: 58px;
  border-radius: 999px;
  background: rgba(0,88,32,.08);
  color: var(--green);
  margin-bottom: 22px;
}
.kbp-choice-card h3 { margin:0 0 12px; font-size: 25px; letter-spacing: -0.9px; }
.kbp-choice-card p { margin:0 0 24px; color: var(--muted); line-height: 1.65; }

.kbp-page { padding: 52px 0 90px; background: linear-gradient(180deg,#fff 0%,#f8faf9 100%); }
.kbp-page-layout { display: flex; align-items: flex-start; gap: 48px; }
.kbp-page-copy { flex: 0 0 360px; position: sticky; top: 104px; }
.kbp-page-copy h1 { font-size: clamp(36px, 4vw, 52px); }
.kbp-page-copy p { margin: 18px 0 0; color: var(--muted); line-height: 1.7; font-size: 16px; }
.kbp-form-card {
  flex: 1 1 auto;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(13,23,40,.08);
}
.kbp-form-grid { display: flex; flex-wrap: wrap; gap: 18px; }
.kbp-field { flex: 1 1 calc(50% - 9px); min-width: 240px; display: flex; flex-direction: column; gap: 8px; }
.kbp-field-full { flex-basis: 100%; }
.kbp-label { color: var(--ink); font-size: 13px; font-weight: 850; }
.kbp-input, .kbp-select, .kbp-textarea {
  width: 100%;
  border: 1px solid #dfe5e8;
  border-radius: 16px;
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 0 16px;
  min-height: 52px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.kbp-textarea { min-height: 128px; padding: 14px 16px; resize: vertical; }
.kbp-input:focus, .kbp-select:focus, .kbp-textarea:focus {
  border-color: rgba(0,88,32,.55);
  box-shadow: 0 0 0 4px rgba(0,88,32,.08);
}
.kbp-checkbox {
  display:flex;
  align-items:flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.kbp-checkbox input { margin-top: 3px; }
.kbp-honeypot { position:absolute; left:-9999px; top:auto; opacity:0; pointer-events:none; }
.kbp-form-message { display:none; margin-top: 16px; padding: 14px 16px; border-radius: 16px; font-size: 14px; font-weight: 700; }
.kbp-form-message.is-success { display:block; background: rgba(0,88,32,.08); color: var(--green); }
.kbp-form-message.is-error { display:block; background: rgba(220,38,38,.08); color: #b91c1c; }

.kbp-footer { padding: 30px 0; border-top: 1px solid var(--border); color: var(--muted); font-size: 13px; }
.kbp-footer-inner { display:flex; justify-content:space-between; gap: 20px; flex-wrap:wrap; }

.kbp-thankyou { min-height: calc(100vh - 135px); display:flex; align-items:center; padding: 80px 0; }
.kbp-thankyou-card { max-width: 680px; margin: 0 auto; text-align:center; padding: 44px; border: 1px solid var(--border); border-radius: 30px; background:#fff; box-shadow:0 24px 70px rgba(13,23,40,.08); }
.kbp-check { display:flex; align-items:center; justify-content:center; width:72px; height:72px; margin:0 auto 22px; border-radius:999px; background:rgba(0,88,32,.08); color: var(--green); font-size:34px; font-weight:900; }
.kbp-thankyou-card h1 { font-size: clamp(34px, 4vw, 48px); }
.kbp-thankyou-card p { color: var(--muted); line-height:1.7; }

@media (max-width: 880px) {
  .kbp-header-inner { min-height: 68px; }
  .kbp-logo img { width: 146px; }
  .kbp-header-link { display:none; }
  .kbp-hero { padding: 52px 0 50px; }
  .kbp-hero-inner, .kbp-card-row, .kbp-page-layout { flex-direction: column; }
  .kbp-hero-card, .kbp-page-copy { flex: none; width: 100%; position: static; }
  .kbp-field { flex-basis: 100%; min-width: 0; }
  .kbp-form-card { padding: 24px; border-radius: 24px; }
  .kbp-choice-card { min-height: auto; padding: 28px; }
}

@media (max-width: 520px) {
  .kbp-container { width: min(100% - 32px, var(--container)); }
  .kbp-header-actions .kbp-btn { display:none; }
  h1 { letter-spacing: -1.7px; }
  .kbp-hero-actions .kbp-btn { width: 100%; }
}
