/* =========================================================
   BOOK A DEMO - scoped styles (v183 polished)
   ========================================================= */

:root {
  --bd-navy: #0f1e2e;
  --bd-navy-2: #14273b;
  --bd-accent: #00b7e5;
  --bd-accent-light: #d1fafc;
  --bd-cta: #7ed321;
  --bd-cta-hover: #ffd012;
  --bd-cream: #f7f4ef;
  --bd-ink: #1a2b3c;
  --bd-muted: #5a6670;
  --bd-muted-2: #7a8490;
  --bd-line: #e2e6ec;
}

.bd-page {
  background: #fff;
  color: var(--bd-ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* =========================================================
   HERO
   ========================================================= */
.bd-hero {
  position: relative;
  background: #0f1e2e;
  padding: 88px 0 104px;
  overflow: hidden;
}
.bd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(800px 400px at 15% 30%, rgba(0,0,0,0.7), transparent 75%);
  -webkit-mask-image: radial-gradient(800px 400px at 15% 30%, rgba(0,0,0,0.7), transparent 75%);
  pointer-events: none;
}

.bd-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: start;
}

.bd-hero-left { color: #fff; padding-top: 4px; }

.bd-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #00b7e5;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bd-hero-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
  max-width: 560px;
}

.bd-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  max-width: 540px;
  margin-bottom: 36px;
}

/* Checklist */
.bd-getlist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  max-width: 560px;
}
.bd-getlist-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.bd-getlist-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(0, 183, 229, 0.14);
  border: 1px solid rgba(0, 183, 229, 0.4);
  display: grid; place-items: center;
  margin-top: 2px;
}
.bd-getlist-check svg path { stroke: #4cdbff; }
.bd-getlist-text { display: flex; flex-direction: column; gap: 3px; }
.bd-getlist-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  line-height: 1.35;
}
.bd-getlist-desc {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

/* Proof stats row (replaces avatar stack) */
.bd-hero-proof {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 560px;
}
.bd-proof-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.bd-proof-num {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.4px;
}
.bd-proof-stars {
  display: inline-flex;
  gap: 1px;
  margin-top: 2px;
}
.bd-proof-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.35;
  margin-top: 2px;
}
.bd-proof-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Form card ---------- */
.bd-hero-right { position: relative; }
.bd-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px 32px 26px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.32),
    0 4px 12px rgba(0, 0, 0, 0.2);
  position: relative;
}
.bd-form-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--bd-ink);
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}
.bd-form-sub {
  font-size: 14px;
  color: var(--bd-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}
.bd-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bd-form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.bd-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--bd-muted);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.bd-input, .bd-select, .bd-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--bd-line);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--bd-ink);
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.bd-input::placeholder, .bd-textarea::placeholder { color: #a8b2bc; }
.bd-input:hover, .bd-select:hover, .bd-textarea:hover { border-color: #c7cdd6; }
.bd-input:focus, .bd-select:focus, .bd-textarea:focus {
  border-color: var(--bd-accent);
  box-shadow: 0 0 0 3px rgba(33, 232, 235, 0.14);
}
.bd-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235a6670' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.bd-textarea {
  min-height: 76px;
  resize: vertical;
  line-height: 1.45;
}

.bd-submit {
  margin-top: 6px;
  padding: 14px 24px;
  background: var(--bd-cta);
  color: #001e39;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bd-submit:hover {
  background: var(--bd-cta-hover);
  transform: translateY(-1px);
}
.bd-submit svg { transition: transform 0.2s; }
.bd-submit:hover svg { transform: translateX(2px); }

.bd-disclaimer {
  font-size: 12px;
  color: #8a95a1;
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}
.bd-disclaimer a { color: var(--bd-accent); text-decoration: none; }
.bd-disclaimer a:hover { text-decoration: underline; }

.bd-form-card.success .bd-form,
.bd-form-card.success .bd-form-title,
.bd-form-card.success .bd-form-sub,
.bd-form-card.success .bd-disclaimer { display: none; }
.bd-success {
  display: none;
  text-align: center;
  padding: 16px 6px 6px;
}
.bd-form-card.success .bd-success { display: block; }
.bd-success-icon {
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #3e7f3a;
  display: grid; place-items: center;
}
.bd-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--bd-ink);
  margin-bottom: 8px;
}
.bd-success p {
  font-size: 14px;
  color: var(--bd-muted);
  line-height: 1.55;
}

/* =========================================================
   LOGO BAND - match pricing exactly (slower 90s loop)
   Base styles inherited from field-service/styles.css .logo-band
   ========================================================= */
.bd-hero + .logo-band .logo-band-track {
  animation-duration: 90s;
}

/* =========================================================
   WHAT TO EXPECT
   ========================================================= */
.bd-expect {
  background: var(--bd-cream);
  padding: 96px 0;
}
.bd-section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.bd-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.bd-section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bd-accent);
  margin-bottom: 14px;
}
.bd-section-title {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--bd-ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.bd-section-sub {
  font-size: 16.5px;
  color: var(--bd-muted);
  line-height: 1.6;
}

.bd-expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bd-expect-card {
  background: #fff;
  border: 1px solid #ebe5d9;
  border-radius: 12px;
  padding: 30px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.bd-expect-card:hover {
  border-color: #d8cdb9;
  box-shadow: 0 6px 20px rgba(26, 43, 60, 0.05);
}
.bd-expect-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1ede5;
}
.bd-expect-step {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--bd-accent);
  text-transform: uppercase;
}
.bd-expect-time {
  font-size: 12px;
  font-weight: 600;
  color: var(--bd-muted-2);
  background: #f4efe6;
  padding: 4px 10px;
  border-radius: 999px;
}
.bd-expect-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--bd-ink);
  margin-bottom: 10px;
}
.bd-expect-desc {
  font-size: 14.5px;
  color: var(--bd-muted);
  line-height: 1.6;
}

/* =========================================================
   QUOTE SPOTLIGHT (simplified)
   ========================================================= */
.bd-quote {
  background: #fff;
  padding: 96px 0;
}
.bd-quote-card {
  max-width: 1040px;
  margin: 0 auto;
  background: #0f1e2e;
  border-radius: 16px;
  padding: 56px 60px;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: center;
}
.bd-quote-text {
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.2px;
  margin-bottom: 28px;
}
.bd-quote-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.bd-quote-photo {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.bd-quote-name {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}
.bd-quote-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}
.bd-quote-stats {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 32px;
}
.bd-quote-stat + .bd-quote-stat {
  margin-top: 20px;
}
.bd-quote-stat-value {
  font-size: 28px;
  font-weight: 800;
  color: #4cdbff;
  letter-spacing: -0.6px;
  line-height: 1;
  margin-bottom: 6px;
}
.bd-quote-stat-label {
  font-size: 12.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* =========================================================
   TRUST / SECURITY
   ========================================================= */
.bd-trust {
  background: #f6f8fa;
  padding: 72px 0;
  border-top: 1px solid #ecf0f4;
  border-bottom: 1px solid #ecf0f4;
}
.bd-trust-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.bd-trust-left h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--bd-ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.bd-trust-left p {
  font-size: 14.5px;
  color: var(--bd-muted);
  line-height: 1.6;
}
.bd-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.bd-badge {
  background: #fff;
  border: 1px solid #e3e8ee;
  border-radius: 10px;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s;
}
.bd-badge:hover { border-color: #c8d0d8; }
.bd-badge-icon {
  width: 36px; height: 36px;
  margin: 0 auto 10px;
  display: grid; place-items: center;
  background: #eaf2f6;
  border-radius: 8px;
}
.bd-badge-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bd-ink);
  margin-bottom: 2px;
}
.bd-badge-sub {
  font-size: 11.5px;
  color: var(--bd-muted);
  line-height: 1.4;
}

/* =========================================================
   FAQ
   ========================================================= */
.bd-faq {
  background: #fff;
  padding: 96px 0;
}
.bd-faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.bd-faq-item {
  border-bottom: 1px solid #e9ecf0;
}
.bd-faq-item:first-child { border-top: 1px solid #e9ecf0; }
.bd-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--bd-ink);
  letter-spacing: -0.2px;
  transition: color 0.2s;
}
.bd-faq-q:hover { color: var(--bd-accent); }
.bd-faq-q-icon {
  flex-shrink: 0;
  margin-left: 24px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #f3f5f8;
  display: grid; place-items: center;
  transition: transform 0.25s, background 0.2s;
}
.bd-faq-item.open .bd-faq-q-icon {
  transform: rotate(45deg);
  background: var(--bd-cta);
}
.bd-faq-item.open .bd-faq-q-icon svg { stroke: #fff; }
.bd-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.bd-faq-item.open .bd-faq-a { max-height: 400px; }
.bd-faq-a-inner {
  padding: 0 4px 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--bd-muted);
}

/* =========================================================
   FINAL CTA
   ========================================================= */
.bd-final {
  position: relative;
  background: #0f1e2e;
  padding: 80px 40px;
  text-align: center;
  overflow: hidden;
}
.bd-final::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(600px 300px at 50% 50%, rgba(0,0,0,0.6), transparent 75%);
  -webkit-mask-image: radial-gradient(600px 300px at 50% 50%, rgba(0,0,0,0.6), transparent 75%);
  pointer-events: none;
}
.bd-final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.bd-final h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.7px;
  line-height: 1.15;
  margin-bottom: 14px;
}
.bd-final p {
  font-size: 16.5px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 30px;
}
.bd-final-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--bd-cta);
  color: #001e39;
  border-radius: 8px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.bd-final-btn:hover {
  background: var(--bd-cta-hover);
  transform: translateY(-1px);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .bd-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .bd-hero-title { font-size: 42px; }
  .bd-quote-card { grid-template-columns: 1fr; padding: 44px 36px; gap: 32px; }
  .bd-quote-stats { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 28px; }
  .bd-quote-text { font-size: 20px; }
  .bd-trust-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 820px) {
  .bd-hero { padding: 64px 0 80px; }
  .bd-hero-inner { padding: 0 16px; }
  .bd-hero-title { font-size: 34px; letter-spacing: -0.6px; }
  .bd-hero-sub { font-size: 15.5px; }
  .bd-form-card { padding: 26px 22px 22px; }
  .bd-form-row-2 { grid-template-columns: 1fr; }
  .bd-section-title { font-size: 28px; }
  .bd-section-sub { font-size: 15px; }
  .bd-expect-grid { grid-template-columns: 1fr; }
  .bd-expect, .bd-faq { padding: 64px 0; }
  /* Sections that don't have a *-inner wrapper — pad at the section level */
  .bd-quote, .bd-trust, .bd-final { padding: 64px 16px !important; }
  .bd-trust-grid { padding: 0 !important; }
  .bd-badges { grid-template-columns: repeat(2, 1fr); }
  .bd-quote-text { font-size: 18px; }
  .bd-quote-card { padding: 32px 20px; }
  .bd-final h2 { font-size: 28px; }
  .bd-section-inner { padding: 0 16px; }
  .bd-trust-inner,
  .bd-final-inner,
  .bd-faq-inner,
  .bd-quote-inner,
  .bd-expect-inner { padding: 0; }
  .bd-hero-proof { flex-wrap: wrap; gap: 16px; }
  .bd-proof-divider { display: none; }
}
