:root {
  --ob-bg: #f4f7f5;
  --ob-card: #ffffff;
  --ob-ink: #13231d;
  --ob-muted: #5d6b65;
  --ob-line: #dce6e1;
  --ob-green: #087a55;
  --ob-green-dark: #055c40;
  --ob-soft: #e8f4ef;
  --ob-accent: #f0b44d;
  --ob-shadow: 0 20px 55px rgba(22, 54, 42, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ob-ink);
  background: var(--ob-bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; }
.ob-container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.ob-skip { position: fixed; left: 12px; top: -80px; z-index: 50; padding: 10px 14px; border-radius: 10px; background: #fff; }
.ob-skip:focus { top: 12px; }

.ob-header { position: sticky; top: 0; z-index: 20; border-bottom: 1px solid rgba(220, 230, 225, .9); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.ob-header-row { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.ob-brand { display: flex; align-items: center; gap: 11px; text-decoration: none; font-size: 20px; font-weight: 850; letter-spacing: -.02em; }
.ob-brand-mark { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 13px; color: #fff; background: var(--ob-green); font-weight: 900; }
.ob-nav { display: flex; align-items: center; gap: 20px; }
.ob-nav a { color: #394a43; text-decoration: none; font-size: 14px; font-weight: 700; }
.ob-nav a:hover, .ob-nav a:focus-visible { color: var(--ob-green); }
.ob-nav .ob-nav-cta { padding: 10px 15px; border-radius: 12px; color: #fff; background: var(--ob-green); }
.ob-menu-button { display: none; width: 44px; height: 44px; border: 1px solid var(--ob-line); border-radius: 12px; background: #fff; cursor: pointer; }

.ob-hero { padding: 76px 0 48px; overflow: hidden; background:
  radial-gradient(circle at 85% 10%, rgba(47, 168, 122, .18), transparent 31%),
  linear-gradient(180deg, #f8fbf9 0%, var(--ob-bg) 100%); }
.ob-hero-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 48px; align-items: center; }
.ob-eyebrow { display: inline-flex; align-items: center; min-height: 30px; padding: 5px 11px; border-radius: 999px; color: var(--ob-green-dark); background: var(--ob-soft); font-size: 13px; font-weight: 850; letter-spacing: .03em; text-transform: uppercase; }
.ob-hero h1, .ob-page-hero h1 { margin: 18px 0; max-width: 790px; font-size: clamp(39px, 5.7vw, 70px); line-height: .99; letter-spacing: -.055em; }
.ob-page-hero h1 { font-size: clamp(36px, 5vw, 58px); }
.ob-lead { max-width: 720px; margin: 0; color: var(--ob-muted); font-size: clamp(18px, 2vw, 22px); }
.ob-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.ob-button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 21px; border: 0; border-radius: 14px; text-decoration: none; cursor: pointer; font-weight: 850; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.ob-button:hover, .ob-button:focus-visible { transform: translateY(-2px); }
.ob-button-primary { color: #fff; background: var(--ob-green); box-shadow: 0 14px 26px rgba(8, 122, 85, .22); }
.ob-button-primary:hover { background: var(--ob-green-dark); }
.ob-button-secondary { color: var(--ob-green-dark); background: #fff; border: 1px solid var(--ob-line); }
.ob-button-small { min-height: 42px; padding: 0 15px; font-size: 14px; }
.ob-note { margin: 12px 0 0; color: var(--ob-muted); font-size: 14px; }
.ob-hero-card { padding: 27px; border: 1px solid #d9e8e1; border-radius: 26px; background: rgba(255,255,255,.88); box-shadow: var(--ob-shadow); }
.ob-hero-card h2 { margin: 0 0 16px; font-size: 21px; }
.ob-check-list { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.ob-check-list li { position: relative; padding-left: 31px; color: #3e4d47; }
.ob-check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #fff; background: var(--ob-green); font-size: 13px; font-weight: 900; }

.ob-section { padding: 70px 0; }
.ob-section-white { background: #fff; }
.ob-section-soft { background: #eaf3ef; }
.ob-section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.ob-section-head h2 { margin: 0; max-width: 790px; font-size: clamp(30px, 4vw, 46px); line-height: 1.06; letter-spacing: -.035em; }
.ob-section-head p { max-width: 540px; margin: 0; color: var(--ob-muted); }
.ob-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ob-card { padding: 25px; border: 1px solid var(--ob-line); border-radius: 21px; background: var(--ob-card); box-shadow: 0 10px 30px rgba(28, 60, 48, .05); }
.ob-card h2, .ob-card h3 { margin: 0 0 10px; line-height: 1.18; }
.ob-card p { margin: 0; color: var(--ob-muted); }
.ob-step-number { display: grid; width: 39px; height: 39px; margin-bottom: 18px; place-items: center; border-radius: 13px; color: var(--ob-green-dark); background: var(--ob-soft); font-weight: 900; }

.ob-plan { position: relative; display: flex; min-height: 100%; flex-direction: column; }
.ob-plan-featured { border: 2px solid var(--ob-green); transform: translateY(-8px); }
.ob-plan-badge { position: absolute; right: 18px; top: 18px; padding: 5px 9px; border-radius: 999px; color: var(--ob-green-dark); background: var(--ob-soft); font-size: 12px; font-weight: 850; }
.ob-price { margin: 9px 0 16px; font-size: 34px; font-weight: 900; letter-spacing: -.04em; }
.ob-plan ul { display: grid; gap: 10px; margin: 0 0 24px; padding: 0; list-style: none; color: #425149; }
.ob-plan li { padding-left: 23px; position: relative; }
.ob-plan li::before { content: "•"; position: absolute; left: 4px; color: var(--ob-green); font-weight: 900; }
.ob-plan .ob-button { margin-top: auto; }
.ob-downloads { display: grid; gap: 9px; margin-top: 20px; }
.ob-downloads a { color: var(--ob-green-dark); font-weight: 850; }
.ob-subhead { margin: 26px 0 0 !important; }

.ob-cost-box { display: grid; grid-template-columns: 1fr auto; gap: 10px 20px; margin-top: 22px; padding: 20px; border-radius: 18px; background: #f6f9f7; }
.ob-cost-box strong { font-size: 18px; }
.ob-total { padding-top: 12px; border-top: 1px solid var(--ob-line); font-size: 21px; font-weight: 900; }

.ob-form { display: grid; gap: 15px; }
.ob-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.ob-field { display: grid; gap: 7px; }
.ob-field label, .ob-field > span { color: #33443d; font-size: 14px; font-weight: 800; }
.ob-field input, .ob-field select, .ob-field textarea { width: 100%; border: 1px solid #cbd9d2; border-radius: 13px; background: #fff; padding: 13px 14px; color: var(--ob-ink); }
.ob-field textarea { min-height: 110px; resize: vertical; }
.ob-field input:focus, .ob-field select:focus, .ob-field textarea:focus { outline: 3px solid rgba(8,122,85,.13); border-color: var(--ob-green); }
.ob-consent { display: grid; grid-template-columns: 20px 1fr; gap: 9px; align-items: start; color: var(--ob-muted); font-size: 13px; }
.ob-consent input { margin-top: 4px; }
.ob-form-status { min-height: 24px; color: var(--ob-muted); font-size: 14px; }
.ob-form-status.error { color: #a32020; }
.ob-form-status.success { color: var(--ob-green-dark); font-weight: 800; }
.ob-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.ob-page-hero { padding: 58px 0 34px; background: linear-gradient(180deg, #f8fbf9, var(--ob-bg)); }
.ob-page-hero p { max-width: 760px; color: var(--ob-muted); font-size: 19px; }
.ob-rich { max-width: 900px; }
.ob-rich h2, .ob-rich h3 { margin: 34px 0 10px; line-height: 1.2; }
.ob-rich p, .ob-rich li { color: #425149; }
.ob-rich li + li { margin-top: 7px; }
.ob-rich a { color: var(--ob-green-dark); font-weight: 750; }
.ob-prose { max-width: 900px; }
.ob-prose > h1 { margin: 12px 0 8px; font-size: clamp(36px, 5vw, 58px); line-height: 1.05; letter-spacing: -.04em; }
.ob-prose h2 { margin: 36px 0 12px; font-size: clamp(24px, 3vw, 31px); line-height: 1.18; }
.ob-prose p, .ob-prose li { color: #425149; }
.ob-prose li + li { margin-top: 7px; }
.ob-prose a { color: var(--ob-green-dark); font-weight: 750; }
.ob-kicker { display: inline-flex; margin: 0; padding: 5px 11px; border-radius: 999px; color: var(--ob-green-dark) !important; background: var(--ob-soft); font-size: 13px; font-weight: 850; letter-spacing: .03em; text-transform: uppercase; }
.ob-result-card a { display: inline-block; margin-top: 14px; color: var(--ob-green-dark); font-weight: 800; }

.ob-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.ob-map { width: 100%; min-height: 310px; margin-top: 18px; border: 0; border-radius: 16px; background: #e4ebe7; }
.ob-contact-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.ob-contact-links a { color: var(--ob-green-dark); font-weight: 800; }
.ob-payment-frame { width: 100%; min-height: 820px; border: 0; border-radius: 18px; background: #fff; box-shadow: var(--ob-shadow); }

.ob-faq { display: grid; gap: 11px; }
.ob-faq details { border: 1px solid var(--ob-line); border-radius: 15px; background: #fff; padding: 0 18px; }
.ob-faq summary { padding: 17px 0; cursor: pointer; font-weight: 850; }
.ob-faq details p { margin: 0 0 18px; color: var(--ob-muted); }

.ob-footer { padding: 38px 0; color: #dbe8e2; background: #123b2e; }
.ob-footer-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 28px; }
.ob-footer .ob-brand { color: #fff; }
.ob-footer p { color: #bfd0c8; }
.ob-footer-links { display: grid; align-content: start; gap: 9px; }
.ob-footer-links a { text-decoration: none; }
.ob-footer-links a:hover { color: #fff; }

@media (max-width: 900px) {
  .ob-nav { position: fixed; inset: 74px 0 auto; display: none; max-height: calc(100vh - 74px); overflow-y: auto; padding: 18px 20px 24px; flex-direction: column; align-items: stretch; gap: 8px; border-bottom: 1px solid var(--ob-line); background: #fff; box-shadow: var(--ob-shadow); }
  .ob-nav.open { display: flex; }
  .ob-nav a { padding: 11px 10px; border-radius: 10px; }
  .ob-menu-button { display: inline-grid; place-items: center; }
  .ob-hero-grid { grid-template-columns: 1fr; }
  .ob-grid-3 { grid-template-columns: 1fr; }
  .ob-plan-featured { transform: none; }
  .ob-section-head { display: block; }
  .ob-section-head p { margin-top: 12px; }
  .ob-contact-grid, .ob-footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .ob-container { width: min(100% - 28px, 1160px); }
  .ob-header-row { min-height: 66px; }
  .ob-nav { top: 66px; }
  .ob-brand { font-size: 18px; }
  .ob-brand-mark { width: 36px; height: 36px; }
  .ob-hero { padding: 46px 0 34px; }
  .ob-hero-grid { gap: 28px; }
  .ob-hero h1, .ob-page-hero h1 { letter-spacing: -.045em; }
  .ob-actions { display: grid; }
  .ob-button { width: 100%; }
  .ob-section { padding: 50px 0; }
  .ob-card { padding: 20px; }
  .ob-form-grid { grid-template-columns: 1fr; }
  .ob-cost-box { grid-template-columns: 1fr auto; font-size: 14px; }
  .ob-payment-frame { min-height: 940px; }
}
