:root {
  --slate: #24313f;
  --slate-2: #172231;
  --green: #3f7d57;
  --green-2: #e6f1e9;
  --light: #f7f4ed;
  --paper: #fff;
  --orange: #d9852f;
  --orange-2: #fff0df;
  --text: #2d3742;
  --muted: #667386;
  --line: #dfe7df;
  --shadow: 0 20px 50px rgba(23, 34, 49, 0.12);
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: linear-gradient(180deg, #fbf8f0 0%, #edf5ef 100%);
  color: var(--text);
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
.bph-wrap {
  width: min(1160px, 92vw);
  margin: 0 auto;
}
.bph-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.bph-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.bph-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--slate-2);
  font-weight: 900;
  letter-spacing: -0.03em;
}
.bph-brand span {
  font-size: 1.25rem;
}
.bph-brand small {
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.bph-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 750;
  color: var(--slate);
}
.bph-links a {
  padding: 0.35rem 0.1rem;
  border-bottom: 2px solid transparent;
}
.bph-links a:hover {
  color: var(--green);
  border-color: var(--orange);
}
.bph-link-cta {
  background: var(--orange);
  color: #241506 !important;
  border: 0 !important;
  border-radius: 999px;
  padding: 0.7rem 1rem !important;
}
.bph-menu {
  display: none;
  width: 46px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: var(--slate);
  padding: 0.55rem;
}
.bph-menu span {
  display: block;
  height: 2px;
  background: white;
  margin: 0.33rem 0;
  border-radius: 10px;
}
.bph-hero,
.bph-page-hero {
  padding: 5rem 0 3.5rem;
}
.bph-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3rem;
  align-items: center;
}
.bph-eyebrow {
  display: inline-flex;
  background: var(--green-2);
  border: 1px solid #cfe4d3;
  color: var(--green);
  font-weight: 850;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.88rem;
}
h1,
h2,
h3 {
  color: var(--slate-2);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.45rem, 5vw, 4.7rem);
  margin: 1rem 0;
}
h2 {
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  margin: 0.4rem 0 0.8rem;
}
h3 {
  font-size: 1.32rem;
  margin: 0.2rem 0 0.55rem;
}
p {
  margin: 0.45rem 0;
}
.bph-hero-copy > p:not(.bph-eyebrow),
.bph-section-head > p,
.bph-muted {
  color: var(--muted);
  font-size: 1.05rem;
}
.bph-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.7rem 0;
}
.bph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 850;
  border: 2px solid transparent;
  cursor: pointer;
}
.bph-btn-main {
  background: var(--orange);
  color: #201306;
  box-shadow: 0 12px 28px rgba(217, 133, 47, 0.24);
}
.bph-btn-soft {
  background: white;
  border-color: var(--green);
  color: var(--green);
}
.bph-btn-white {
  background: white;
  color: var(--slate-2);
}
.bph-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.bph-proof span,
.bph-chip {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  color: var(--muted);
  font-weight: 750;
}
.bph-hero-card,
.bph-panel,
.bph-tile,
.bph-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.bph-hero-card {
  padding: 1.45rem;
  background: linear-gradient(145deg, #fff, #f1f8f0);
}
.bph-card-top {
  display: grid;
  gap: 0.2rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
.bph-card-top span {
  color: var(--green);
  font-weight: 850;
}
.bph-card-top strong {
  font-size: 1.7rem;
  color: var(--slate-2);
}
.bph-hero-card ul,
.bph-checks {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.7rem;
}
.bph-hero-card li,
.bph-checks li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}
.bph-hero-card li:before,
.bph-checks li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--green);
}
.bph-section {
  padding: 4rem 0;
}
.bph-section-light {
  background: rgba(255, 255, 255, 0.56);
  border-block: 1px solid var(--line);
}
.bph-section-green {
  background: linear-gradient(135deg, var(--slate-2), #304a5d);
  color: white;
}
.bph-section-green h2,
.bph-section-green p,
.bph-section-green .bph-eyebrow {
  color: white;
}
.bph-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
.bph-section-head p {
  max-width: 580px;
}
.bph-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.bph-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.bph-tile,
.bph-card {
  padding: 1.35rem;
}
.bph-tile a,
.bph-hero-card a,
.bph-text-link {
  color: var(--green);
  font-weight: 850;
}
.bph-tile-mark {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: var(--orange-2);
  color: #8b4c12;
  font-weight: 900;
}
.bph-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: start;
}
.bph-panel {
  padding: 1.5rem;
}
.bph-steps {
  counter-reset: steps;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}
.bph-steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.75rem;
  align-items: center;
}
.bph-steps li:before {
  content: counter(steps);
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--slate);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
}
.bph-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.bph-page-hero {
  background: linear-gradient(135deg, #f9f4e9, #eaf5ed);
  border-bottom: 1px solid var(--line);
}
.bph-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bph-price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--slate-2);
}
.bph-label {
  display: grid;
  gap: 0.35rem;
  font-weight: 750;
  color: var(--slate);
}
.bph-input,
.bph-select,
.bph-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
}
.bph-textarea {
  min-height: 135px;
  resize: vertical;
}
.bph-form {
  display: grid;
  gap: 1rem;
}
.bph-footer {
  background: var(--slate-2);
  color: #dce6e0;
  padding: 3rem 0 1.2rem;
}
.bph-footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
}
.bph-footer h4,
.bph-footer-brand {
  color: white;
  font-weight: 900;
  margin-top: 0;
}
.bph-footer a {
  display: block;
  color: #dce6e0;
  margin: 0.35rem 0;
}
.bph-footer a:hover {
  color: white;
}
.bph-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1rem;
  color: #aebcb6;
  font-size: 0.92rem;
}
.bph-cookie {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  width: min(940px, 94vw);
  display: none;
  align-items: center;
  gap: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1rem;
  z-index: 50;
}
.bph-cookie.show {
  display: flex;
}
.bph-cookie p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.bph-cookie-btn {
  border: 0;
  border-radius: 999px;
  background: var(--slate);
  color: white;
  font-weight: 850;
  padding: 0.75rem 1rem;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 920px) {
  .bph-links {
    display: none;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: 74px;
    flex-direction: column;
    align-items: flex-start;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 1rem;
    box-shadow: var(--shadow);
  }
  .bph-links.open {
    display: flex;
  }
  .bph-menu {
    display: block;
  }
  .bph-hero-grid,
  .bph-three,
  .bph-two,
  .bph-split,
  .bph-cta-row,
  .bph-page-grid,
  .bph-footer-grid {
    grid-template-columns: 1fr;
  }
  .bph-section-head {
    display: block;
  }
  .bph-hero,
  .bph-page-hero {
    padding: 3.5rem 0 2.5rem;
  }
  .bph-cookie {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 560px) {
  .bph-actions {
    display: grid;
  }
  .bph-btn {
    width: 100%;
  }
  h1 {
    font-size: 2.35rem;
  }
  .bph-section {
    padding: 3rem 0;
  }
}
