/* ==================================================
   BEARPARK DIGITAL — Contractor Gorilla style
   White + charcoal + bright orange accent
   ================================================== */

:root {
  --bp-ink: #18181b;          /* near-black */
  --bp-ink-2: #27272a;
  --bp-text: #3f3f46;
  --bp-mute: #71717a;
  --bp-light: #a1a1aa;

  --bp-bg: #ffffff;
  --bp-bg-soft: #fafafa;
  --bp-bg-alt: #f4f4f5;
  --bp-border: #e4e4e7;
  --bp-border-soft: #f4f4f5;

  --bp-orange: #ff6b35;
  --bp-orange-hover: #e85a25;
  --bp-orange-soft: #fff1eb;

  --bp-shadow-sm: 0 2px 4px rgba(24, 24, 27, 0.04);
  --bp-shadow-md: 0 4px 16px rgba(24, 24, 27, 0.08);
  --bp-shadow-lg: 0 20px 50px -20px rgba(24, 24, 27, 0.25);
}

* { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--bp-text);
  background: var(--bp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button { font: inherit; cursor: pointer; }

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--bp-ink);
  color: white;
  padding: 12px 18px;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; }

.bp-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}
@media (max-width: 720px) {
  .bp-container { padding: 0 24px; }
}

/* ==================================================
   HEADER
   ================================================== */
.bp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bp-border);
}
.bp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 92px;
  gap: 32px;
}

.bp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--bp-ink);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.015em;
}
.bp-brand-mark {
  color: var(--bp-orange);
  display: inline-grid;
  place-items: center;
}
.bp-brand-mark svg { width: 44px; height: 44px; }
.bp-brand-text { display: inline-flex; gap: 5px; }
.bp-brand-text-light { color: var(--bp-orange); font-weight: 700; }

.bp-nav {
  display: flex;
  gap: 30px;
  font-size: 1.15rem;
  color: var(--bp-ink);
}
.bp-nav a {
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}
.bp-nav a:hover { color: var(--bp-orange); }

.bp-header-cta {
  display: inline-flex;
  align-items: center;
  background: var(--bp-orange);
  color: white !important;
  padding: 18px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-align: center;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.18);
}
.bp-header-cta:hover {
  background: var(--bp-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.28);
}

@media (max-width: 880px) {
  .bp-nav { display: none; }
  .bp-header-inner { gap: 12px; }
}

@media (max-width: 560px) {
  .bp-container { padding: 0 20px; }
  .bp-header-inner {
    height: 76px;
    gap: 10px;
    justify-content: flex-start;
  }
  .bp-brand {
    gap: 8px;
    font-size: 1.05rem;
    min-width: 0;
  }
  .bp-brand-mark svg {
    width: 34px;
    height: 34px;
  }
  .bp-brand-text {
    gap: 3px;
    white-space: nowrap;
  }
  .bp-header-cta {
    margin-left: auto;
    flex: 0 0 auto;
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 0.92rem;
    white-space: nowrap;
  }
}

@media (max-width: 370px) {
  .bp-brand-text-light { display: none; }
}

/* ==================================================
   BUTTONS (shared)
   ================================================== */
.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
  text-align: center;
}
.bp-btn-lg { padding: 15px 28px; font-size: 1rem; }
.bp-btn-primary {
  background: var(--bp-orange);
  color: white;
  border-color: var(--bp-orange);
}
.bp-btn-primary:hover { background: var(--bp-orange-hover); border-color: var(--bp-orange-hover); transform: translateY(-1px); }
.bp-btn-ghost {
  background: transparent;
  color: var(--bp-ink);
  border-color: var(--bp-border);
}
.bp-btn-ghost:hover { background: var(--bp-bg-alt); border-color: var(--bp-ink); }

/* ==================================================
   SECTION SCAFFOLDING
   ================================================== */
.bp-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--bp-orange);
  text-transform: uppercase;
  margin-bottom: 16px;
  max-width: 100%;
}
.bp-eyebrow-light { color: #ffb898; }

.bp-h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bp-ink);
  margin: 0 0 18px;
}
.bp-h2-light { color: white; }

.bp-lede {
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--bp-text);
  max-width: 620px;
  margin: 0;
}
.bp-lede-light { color: rgba(255, 255, 255, 0.78); }

.bp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.bp-section-head .bp-lede { margin: 0 auto; }

/* ==================================================
   HERO
   ================================================== */
.bp-hero {
  padding: 80px 0 100px;
  background: #f7f7f5;
  overflow: hidden;
}
.bp-hero .bp-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 50px;
  align-items: center;
}
.bp-hero-text { min-width: 0; }
.bp-hero-h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.75rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--bp-ink);
  margin: 0 0 26px;
  text-transform: uppercase;
}
.bp-hero-h1-accent { color: var(--bp-orange); }
.bp-hero-sub {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--bp-text);
  margin: 0 0 36px;
  max-width: 540px;
}
.bp-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero screenshots — stacked browser cards */
.bp-hero-screenshots {
  position: relative;
  height: 480px;
  min-width: 0;
}
.bp-screenshot {
  position: absolute;
  width: 290px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--bp-border);
  box-shadow: var(--bp-shadow-lg);
  overflow: hidden;
}
.bp-screenshot-1 { top: 0;    right: 100px; transform: rotate(-4deg); z-index: 1; }
.bp-screenshot-2 { top: 60px; right: 0;     transform: rotate(3deg);  z-index: 3; }
.bp-screenshot-3 { top: 180px; right: 140px; transform: rotate(-2deg); z-index: 2; }
.bp-screenshot-4 { top: 280px; right: 30px;  transform: rotate(4deg);  z-index: 4; }

.bp-screenshot-bar {
  display: flex;
  gap: 5px;
  padding: 9px 12px;
  background: #f5f5f7;
  border-bottom: 1px solid var(--bp-border);
}
.bp-screenshot-bar span { width: 9px; height: 9px; border-radius: 50%; }
.bp-screenshot-bar span:nth-child(1) { background: #ff5f57; }
.bp-screenshot-bar span:nth-child(2) { background: #ffbd2e; }
.bp-screenshot-bar span:nth-child(3) { background: #28c840; }

.bp-screenshot-body {
  padding: 18px 18px 20px;
  background: white;
}
.bp-screenshot-hvac    { background: linear-gradient(135deg, #fff 0%, #eff6ff 100%); }
.bp-screenshot-roofing { background: linear-gradient(135deg, #fff 0%, #fef3c7 100%); }
.bp-screenshot-plumbing{ background: linear-gradient(135deg, #fff 0%, #fee2e2 100%); }
.bp-screenshot-tree    { background: linear-gradient(135deg, #fff 0%, #ecfccb 100%); }

.bp-ss-eyebrow {
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: var(--bp-orange);
  font-weight: 800;
  margin-bottom: 6px;
}
.bp-ss-h {
  font-weight: 800;
  font-size: 1rem;
  color: var(--bp-ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.bp-ss-line {
  height: 7px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: 6px;
}
.bp-ss-line.short { width: 60%; }
.bp-ss-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 7px 14px;
  background: var(--bp-orange);
  color: white;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .bp-hero .bp-container { grid-template-columns: 1fr; gap: 40px; }
  .bp-hero-screenshots { height: 400px; }
  .bp-screenshot { width: 240px; }
}

@media (max-width: 560px) {
  .bp-hero {
    padding: 70px 0 56px;
  }
  .bp-hero-h1 {
    font-size: clamp(2.35rem, 13vw, 3.25rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    overflow-wrap: anywhere;
  }
  .bp-hero-sub {
    max-width: 100%;
    font-size: 1.03rem;
  }
  .bp-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
    line-height: 1.4;
  }
  .bp-hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
  }
  .bp-hero-ctas .bp-btn {
    width: 100%;
    min-height: 54px;
  }
  .bp-hero-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .bp-screenshot,
  .bp-screenshot-1,
  .bp-screenshot-2,
  .bp-screenshot-3,
  .bp-screenshot-4 {
    position: static;
    width: 100%;
    min-width: 0;
    transform: none;
  }
  .bp-screenshot-body {
    padding: 14px;
  }
  .bp-ss-eyebrow {
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .bp-ss-h {
    font-size: 0.88rem;
  }
  .bp-ss-btn {
    padding: 7px 10px;
    font-size: 0.66rem;
  }
}

/* ==================================================
   TRUST LINE
   ================================================== */
.bp-trust-line {
  background: var(--bp-bg-soft);
  border-top: 1px solid var(--bp-border);
  border-bottom: 1px solid var(--bp-border);
  padding: 22px 0;
  text-align: center;
}
.bp-trust-line p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--bp-ink);
  letter-spacing: 0.01em;
}
.bp-trust-divider { color: var(--bp-orange); padding: 0 8px; font-weight: 400; }

/* ==================================================
   TRADES GRID
   ================================================== */
.bp-trades { padding: 90px 0; background: var(--bp-bg); }

.bp-trades-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bp-trade-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: white;
  border: 1px solid var(--bp-border);
  border-radius: 10px;
  color: var(--bp-ink);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.bp-trade-card:hover {
  border-color: var(--bp-orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -10px rgba(255, 107, 53, 0.25);
}
.bp-trade-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--bp-orange-soft);
  color: var(--bp-orange);
  flex-shrink: 0;
}
.bp-trade-info { flex: 1; min-width: 0; }
.bp-trade-info h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 2px;
  color: var(--bp-ink);
}
.bp-trade-info p {
  font-size: 0.8rem;
  color: var(--bp-mute);
  margin: 0;
  line-height: 1.35;
}
.bp-trade-arrow {
  color: var(--bp-light);
  font-size: 1.1rem;
  transition: color 0.15s, transform 0.15s;
}
.bp-trade-badge {
  align-self: flex-start;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bp-ink);
  color: white;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.bp-trade-card:hover .bp-trade-arrow {
  color: var(--bp-orange);
  transform: translateX(2px);
}
.bp-trades-note {
  margin: 36px 0 0;
  text-align: center;
  color: var(--bp-mute);
  font-size: 0.95rem;
}
.bp-trades-note a { color: var(--bp-orange); font-weight: 700; }

@media (max-width: 980px) { .bp-trades-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .bp-trades { padding: 68px 0; }
  .bp-section-head { margin-bottom: 38px; }
  .bp-trades-grid { grid-template-columns: 1fr; }
  .bp-trade-card { padding: 18px; }
}

/* ==================================================
   STATS
   ================================================== */
.bp-stats {
  padding: 60px 0;
  background: var(--bp-ink);
  color: white;
}
.bp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.bp-stat { }
.bp-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--bp-orange);
  line-height: 1;
  margin-bottom: 10px;
}
.bp-stat-label {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}
@media (max-width: 720px) { .bp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }

@media (max-width: 520px) {
  .bp-stats { padding: 48px 0; }
  .bp-stat-num { font-size: 2.35rem; }
  .bp-stat-label { font-size: 0.82rem; }
}

/* ==================================================
   WHY US (4 NUMBERED CARDS)
   ================================================== */
.bp-why { padding: 90px 0; background: var(--bp-bg-soft); }
.bp-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.bp-why-card {
  background: white;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 32px 30px;
}
.bp-why-num {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--bp-orange);
  margin-bottom: 14px;
}
.bp-why-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bp-ink);
  margin: 0 0 12px;
}
.bp-why-card p {
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--bp-text);
  margin: 0;
}
@media (max-width: 720px) { .bp-why-grid { grid-template-columns: 1fr; } }

/* ==================================================
   INCLUDED (6 FEATURE CARDS)
   ================================================== */
.bp-included { padding: 90px 0; background: var(--bp-bg); }
.bp-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.bp-included-card {
  background: var(--bp-bg-soft);
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 28px 26px;
  transition: border-color 0.15s, transform 0.15s;
}
.bp-included-card:hover {
  border-color: var(--bp-orange);
  transform: translateY(-2px);
}
.bp-included-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: white;
  color: var(--bp-orange);
  margin-bottom: 16px;
  border: 1px solid var(--bp-border);
}
.bp-included-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--bp-ink);
  margin: 0 0 8px;
}
.bp-included-card p {
  font-size: 0.93rem;
  color: var(--bp-text);
  line-height: 1.55;
  margin: 0;
}
@media (max-width: 880px) { .bp-included-grid { grid-template-columns: 1fr; } }

/* ==================================================
   NICHE PLAYBOOKS
   ================================================== */
.bp-playbooks {
  padding: 90px 0;
  background: var(--bp-bg);
}
.bp-playbook-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.bp-playbook-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px 24px;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  background: white;
  box-shadow: var(--bp-shadow-sm);
}
.bp-playbook-card:nth-child(even) {
  background: var(--bp-bg-soft);
}
.bp-playbook-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}
.bp-playbook-num {
  color: var(--bp-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}
.bp-playbook-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid var(--bp-border);
  border-radius: 999px;
  color: var(--bp-ink);
  background: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bp-playbook-card h3 {
  margin: 0 0 14px;
  color: var(--bp-ink);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.bp-playbook-card p {
  margin: 0 0 26px;
  color: var(--bp-text);
  font-size: 0.95rem;
  line-height: 1.6;
}
.bp-playbook-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.bp-playbook-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--bp-orange-soft);
  color: var(--bp-orange-hover);
  font-size: 0.76rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .bp-playbook-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .bp-playbooks {
    padding: 68px 0;
  }
  .bp-playbook-grid {
    grid-template-columns: 1fr;
  }
  .bp-playbook-card {
    min-height: 0;
  }
}

/* ==================================================
   PRICING
   ================================================== */
.bp-pricing {
  padding: 90px 0;
  background: var(--bp-bg-soft);
}
.bp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}
.bp-pricing-card {
  background: white;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--bp-shadow-sm);
}
.bp-pricing-card-featured {
  border-color: rgba(255, 107, 53, 0.5);
  box-shadow: 0 18px 44px -28px rgba(255, 107, 53, 0.55);
}
.bp-pricing-kicker {
  color: var(--bp-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bp-pricing-card h3 {
  color: var(--bp-ink);
  font-size: 1.5rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.bp-pricing-price {
  color: var(--bp-ink);
  font-size: clamp(2.1rem, 5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 18px;
}
.bp-pricing-copy {
  margin: 0 0 22px;
  color: var(--bp-text);
}
.bp-pricing-card ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.bp-pricing-card li {
  position: relative;
  padding-left: 24px;
  color: var(--bp-text);
  font-size: 0.95rem;
}
.bp-pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bp-orange);
}

@media (max-width: 760px) {
  .bp-pricing {
    padding: 68px 0;
  }
  .bp-pricing-grid {
    grid-template-columns: 1fr;
  }
  .bp-pricing-card {
    padding: 26px 22px;
  }
}

/* ==================================================
   FOUNDER QUOTE BAND
   ================================================== */
.bp-founder {
  padding: 100px 0;
  background: var(--bp-ink);
  color: white;
}
.bp-founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
}
.bp-founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bp-orange-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(255, 255, 255, 0.16);
}
.bp-founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bp-founder-text .bp-h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
  font-style: italic;
  margin-bottom: 20px;
}
.bp-founder-attribution {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 620px;
}
.bp-founder-attribution strong { color: white; }

@media (max-width: 720px) {
  .bp-founder-inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .bp-founder-photo { margin: 0 auto; width: 110px; height: 110px; }
}

@media (max-width: 520px) {
  .bp-founder,
  .bp-faq,
  .bp-included,
  .bp-why {
    padding: 68px 0;
  }
  .bp-founder-text .bp-h2 {
    font-size: 1.45rem;
  }
}

/* ==================================================
   FAQ
   ================================================== */
.bp-faq { padding: 90px 0; background: var(--bp-bg); }
.bp-faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--bp-border);
}
.bp-faq-item {
  border-bottom: 1px solid var(--bp-border);
  padding: 22px 0;
}
.bp-faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--bp-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.15s;
}
.bp-faq-item summary::-webkit-details-marker { display: none; }
.bp-faq-item summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--bp-orange);
  transition: transform 0.2s;
}
.bp-faq-item[open] summary::after { content: "−"; }
.bp-faq-item summary:hover { color: var(--bp-orange); }
.bp-faq-item p {
  margin: 14px 0 0;
  color: var(--bp-text);
  font-size: 0.98rem;
  line-height: 1.65;
  padding-right: 36px;
}

/* ==================================================
   FINAL CTA (form-driven)
   ================================================== */
.bp-cta {
  padding: 100px 0;
  background: var(--bp-ink);
  color: white;
}
.bp-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.bp-cta-text .bp-lede { color: rgba(255, 255, 255, 0.75); max-width: 460px; }

.bp-cta-form {
  background: white;
  color: var(--bp-ink);
  padding: 36px 32px;
  border-radius: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bp-hidden-field {
  display: none;
}
.bp-field { display: flex; flex-direction: column; gap: 6px; }
.bp-field-full { grid-column: 1 / -1; }
.bp-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bp-text);
}
.bp-field input, .bp-field select {
  font: inherit;
  font-size: 0.98rem;
  padding: 11px 14px;
  border: 1px solid var(--bp-border);
  border-radius: 8px;
  background: var(--bp-bg-soft);
  color: var(--bp-ink);
  transition: border-color 0.15s, background 0.15s;
}
.bp-field input:focus, .bp-field select:focus {
  outline: none;
  border-color: var(--bp-orange);
  background: white;
}
.bp-cta-submit { grid-column: 1 / -1; width: 100%; margin-top: 6px; }
.bp-cta-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.82rem;
  color: var(--bp-mute);
  margin: 0;
}

@media (max-width: 880px) {
  .bp-cta-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .bp-cta {
    padding: 70px 0 88px;
  }
  .bp-cta-form {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    border-radius: 12px;
  }
  .bp-field input,
  .bp-field select {
    min-height: 48px;
  }
}

/* ==================================================
   FOOTER
   ================================================== */
.bp-footer {
  background: #0c0c0e;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 24px;
}
.bp-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.bp-footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin: 0 0 16px;
}
.bp-footer-col a {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.15s;
}
.bp-footer-col a:hover { color: var(--bp-orange); }

.bp-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.bp-footer-tagline {
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 320px;
  margin: 0;
}

.bp-footer-bottom {
  padding-top: 24px;
}
.bp-footer-bottom p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 720px) {
  .bp-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ==================================================
   FLOATING CALL
   ================================================== */
.bp-floating-call {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--bp-orange);
  color: white !important;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35), 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: background 0.15s, transform 0.15s;
}
.bp-floating-call:hover { background: var(--bp-orange-hover); transform: translateY(-2px); }
.bp-floating-call-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
}
@media (max-width: 380px) {
  .bp-floating-call span:last-child { display: none; }
}

@media (min-width: 721px) {
  .bp-floating-call {
    display: none;
  }
}

@media (max-width: 560px) {
  .bp-floating-call {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
    padding: 0;
    justify-content: center;
  }
  .bp-floating-call span:last-child {
    display: none;
  }
}

/* ==================================================
   THANK YOU PAGE
   ================================================== */
.bp-thanks {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 48px 0;
  background: var(--bp-bg-soft);
}
.bp-thanks-panel {
  max-width: 720px;
  margin-top: 48px;
  padding: 48px;
  border: 1px solid var(--bp-border);
  border-radius: 12px;
  background: white;
  box-shadow: var(--bp-shadow-md);
}
.bp-thanks-panel .bp-lede {
  margin-bottom: 28px;
}
.bp-thanks-panel .bp-lede a {
  color: var(--bp-orange);
  font-weight: 800;
}

@media (max-width: 560px) {
  .bp-thanks-panel {
    padding: 30px 22px;
  }
}
