/*
Theme Name: Bass Pro Designs
Theme URI: https://bassprodesigns.com
Author: BrandCircuit
Author URI: https://brandcircuit.net
Description: Client delivery WordPress theme for Bass Pro Drafting & Designs, built by BrandCircuit with PHP templates, site setup, lead capture, SEO, performance, and security support.
Version: 1.1.3-client
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: basspro-designs
*/

/* =============================================
   BASE RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', 'Archivo', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1f2937;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', 'Inter', system-ui, sans-serif;
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; }

.igd-main { display: block; }

/* =============================================
   BPDX DESIGN SYSTEM — CSS VARIABLES
============================================= */
.bpdx-section {
  --bpdx-primary:      #1f8b3e;
  --bpdx-primary-dark: #14652c;
  --bpdx-accent:       #233b78;
  --bpdx-text:         #1f2937;
  --bpdx-muted:        #6b7280;
  --bpdx-light:        #f7f8fa;
  --bpdx-white:        #ffffff;
  --bpdx-border:       #e5e7eb;
  --bpdx-shadow:       0 12px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  font-family: inherit;
  color: var(--bpdx-text);
}

.bpdx-section,
.bpdx-section * { box-sizing: border-box; }

/* =============================================
   LAYOUT UTILITIES
============================================= */
.bpdx-container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* =============================================
   BUTTONS
============================================= */
.bpdx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.25s ease;
  cursor: pointer;
  border: 0;
  white-space: normal;
}

.bpdx-btn-primary { background: var(--bpdx-primary); color: #fff; }
.bpdx-btn-primary:hover { background: var(--bpdx-primary-dark); color: #fff; }
.bpdx-btn-secondary { background: var(--bpdx-accent); color: #fff; }
.bpdx-btn-secondary:hover { opacity: 0.9; color: #fff; }

/* =============================================
   TYPOGRAPHY HELPERS
============================================= */
.bpdx-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bpdx-primary);
}

.bpdx-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  color: #111827;
}

.bpdx-subtitle {
  margin: 0;
  color: var(--bpdx-muted);
  font-size: 16px;
  line-height: 1.75;
}

/* =============================================
   HEADER
============================================= */
.bpdx-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.bpdx-header__top {
  background: var(--bpdx-primary);
  color: #fff;
  font-size: 14px;
}

.bpdx-header__top-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bpdx-header__top a { color: #fff; text-decoration: none; }
.bpdx-header__bar { background: #fff; }

.bpdx-header__inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.bpdx-header__logo { display: inline-flex; align-items: center; text-decoration: none; }
.bpdx-header__logo img,
.bpdx-header__logo .custom-logo { width: auto !important; height: 44px !important; max-width: none !important; display: block !important; }
.bpdx-header__logo .custom-logo-link { display: inline-flex; align-items: center; text-decoration: none; }

.bpdx-header__nav { display: flex; align-items: center; justify-content: center; }

.bpdx-header__menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bpdx-header__menu a {
  text-decoration: none;
  color: #111827;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.25s ease;
}

.bpdx-header__menu a:hover { color: var(--bpdx-primary); }

.bpdx-header__actions { display: flex; align-items: center; gap: 12px; }

.bpdx-header__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--bpdx-border);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.bpdx-header__toggle-lines,
.bpdx-header__toggle-lines::before,
.bpdx-header__toggle-lines::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 2px;
  position: relative;
  transition: 0.25s ease;
}

.bpdx-header__toggle-lines::before { position: absolute; top: -6px; left: 0; }
.bpdx-header__toggle-lines::after  { position: absolute; top:  6px; left: 0; }

.bpdx-header.is-open .bpdx-header__toggle-lines { background: transparent; }
.bpdx-header.is-open .bpdx-header__toggle-lines::before { top: 0; transform: rotate(45deg); }
.bpdx-header.is-open .bpdx-header__toggle-lines::after  { top: 0; transform: rotate(-45deg); }

/* =============================================
   HERO SLIDER
============================================= */
.bpdx-hero { position: relative; overflow: hidden; background: #111827; }
.bpdx-hero__slider { position: relative; min-height: 78vh; width: 100%; }

.bpdx-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  pointer-events: none;
}

.bpdx-hero__slide.is-active { opacity: 1; visibility: visible; pointer-events: auto; z-index: 2; }
.bpdx-hero__bg { position: absolute; inset: 0; }
.bpdx-hero__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }

.bpdx-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,24,39,0.72) 0%, rgba(17,24,39,0.52) 42%, rgba(17,24,39,0.28) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.28) 100%);
}

.bpdx-hero__inner {
  position: relative;
  z-index: 3;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.bpdx-hero__content { max-width: 760px; color: #fff; }

.bpdx-hero__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bpdx-hero__title { margin: 0 0 16px; font-size: clamp(36px, 6vw, 70px); line-height: 1.02; font-weight: 800; color: #fff; }
.bpdx-hero__text  { margin: 0; max-width: 640px; font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.92); }
.bpdx-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.bpdx-hero__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; }

.bpdx-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
}

.bpdx-hero .bpdx-btn-primary { background: var(--bpdx-primary); color: #fff; }
.bpdx-hero .bpdx-btn-primary:hover { background: var(--bpdx-primary-dark); color: #fff; }
.bpdx-hero .bpdx-btn-secondary { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.bpdx-hero .bpdx-btn-secondary:hover { background: rgba(255,255,255,0.22); color: #fff; }

.bpdx-hero__nav {
  position: absolute;
  inset: 50% 18px auto 18px;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.bpdx-hero__arrow {
  pointer-events: auto;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s ease;
}

.bpdx-hero__arrow:hover { background: rgba(255,255,255,0.26); }

.bpdx-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.bpdx-hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
  transition: 0.25s ease;
}

.bpdx-hero__dot.is-active { width: 34px; background: #fff; }

/* =============================================
   WHY CHOOSE US
============================================= */
.bpdx-why { padding: 80px 0; background: #fff; }

.bpdx-why__wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.bpdx-why__media { position: relative; min-height: 540px; }

.bpdx-why__img-main,
.bpdx-why__img-small {
  position: absolute;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--bpdx-shadow);
}

.bpdx-why__img-main { inset: 0 70px 0 0; }
.bpdx-why__img-small { right: 0; bottom: 35px; width: 48%; height: 54%; border: 6px solid #fff; }
.bpdx-why__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bpdx-why__content { padding: 10px 0; }

.bpdx-why__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0 0;
}

.bpdx-why__feature { padding: 20px; border: 1px solid var(--bpdx-border); border-radius: 18px; background: #fff; }
.bpdx-why__feature h4 { margin: 0 0 8px; font-size: 18px; }
.bpdx-why__feature p  { margin: 0; color: var(--bpdx-muted); line-height: 1.7; font-size: 15px; }

.bpdx-why__checks { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }

.bpdx-why__checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--bpdx-text);
  line-height: 1.6;
}

.bpdx-why__checks li::before {
  content: "✓";
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(31,139,62,0.12);
  color: var(--bpdx-primary);
  font-weight: 700;
  margin-top: 1px;
}

/* =============================================
   STATS
============================================= */
.bpdx-stats { padding: 20px 0 80px; background: #fff; }

.bpdx-stats__bar {
  background: linear-gradient(135deg, var(--bpdx-primary), #2da44e);
  border-radius: 24px;
  padding: 26px;
  color: #fff;
  box-shadow: var(--bpdx-shadow);
}

.bpdx-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.bpdx-stats__item { text-align: center; padding: 10px; }
.bpdx-stats__number { display: block; font-size: clamp(30px, 4vw, 44px); font-weight: 800; line-height: 1; margin-bottom: 10px; }
.bpdx-stats__label  { display: block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.95; }

/* =============================================
   SERVICES
============================================= */
.bpdx-services { padding: 85px 0; background: var(--bpdx-light); }
.bpdx-services__head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.bpdx-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.bpdx-services__card {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--bpdx-border);
  box-shadow: var(--bpdx-shadow);
  transition: transform 0.25s ease;
}

.bpdx-services__card:hover { transform: translateY(-4px); }

.bpdx-services__card-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 18px;
}
.bpdx-services__card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.bpdx-services__card:hover .bpdx-services__card-img img { transform: scale(1.04); }

.bpdx-services__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(31,139,62,0.1);
  color: var(--bpdx-primary);
  font-size: 26px;
  margin-bottom: 18px;
}

.bpdx-services__card h3 { margin: 0 0 10px; font-size: 22px; }
.bpdx-services__card p  { margin: 0 0 16px; color: var(--bpdx-muted); line-height: 1.75; }
.bpdx-services__link { color: var(--bpdx-accent); font-weight: 700; text-decoration: none; }

/* =============================================
   TESTIMONIALS (MARQUEE)
============================================= */
.bpdx-testimonials { padding: 85px 0; background: #fff; overflow: hidden; }
.bpdx-testimonials__head { text-align: center; max-width: 760px; margin: 0 auto 34px; }
.bpdx-testimonials__viewport { overflow: hidden; position: relative; width: 100%; padding: 14px 0; margin: -14px 0; }
.bpdx-testimonials__track { display: flex; gap: 20px; width: max-content; will-change: transform; }

.bpdx-testimonials__item {
  width: 360px;
  padding: 26px;
  border-radius: 22px;
  border: 1px solid var(--bpdx-border);
  background: #fff;
  box-shadow: var(--bpdx-shadow);
  flex: 0 0 auto;
}

.bpdx-testimonials__stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 14px; font-size: 18px; }
.bpdx-testimonials__quote { margin: 0 0 18px; color: var(--bpdx-text); line-height: 1.8; font-size: 15px; }
.bpdx-testimonials__name  { font-weight: 800; color: #111827; margin-bottom: 4px; }
.bpdx-testimonials__meta  { font-size: 14px; color: var(--bpdx-muted); }

/* =============================================
   PROCESS
============================================= */
.bpdx-process { padding: 85px 0; background: var(--bpdx-light); }
.bpdx-process__head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.bpdx-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.bpdx-process__step {
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--bpdx-border);
  border-radius: 22px;
  box-shadow: var(--bpdx-shadow);
}

.bpdx-process__num {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--bpdx-accent);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}

.bpdx-process__step h3 { margin: 0 0 10px; font-size: 21px; }
.bpdx-process__step p  { margin: 0; color: var(--bpdx-muted); line-height: 1.75; }

/* =============================================
   CTA BAND
============================================= */
.bpdx-cta { padding: 85px 0; background: #fff; }

.bpdx-cta__box {
  padding: 42px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f172a, #233b78);
  color: #fff;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: center;
  box-shadow: var(--bpdx-shadow);
}

.bpdx-cta__box h2 { margin: 0 0 12px; font-size: clamp(26px, 4vw, 42px); line-height: 1.12; color: #fff; }
.bpdx-cta__box p  { margin: 0; color: rgba(255,255,255,0.88); line-height: 1.8; }

.bpdx-cta__actions { display: flex; justify-content: flex-end; align-items: center; gap: 14px; flex-wrap: wrap; }

.bpdx-cta .bpdx-btn-primary { background: #fff; color: #111827; }
.bpdx-cta .bpdx-btn-primary:hover { background: #f3f4f6; color: #111827; }
.bpdx-cta .bpdx-btn-secondary { background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.bpdx-cta .bpdx-btn-secondary:hover { background: rgba(255,255,255,0.2); }

.bpdx-contact-form-section { padding-top: 88px; }
.bpdx-contact-form-section form { margin-top: 28px; }
.bpdx-cta,
.bpdx-cta h2,
.bpdx-cta h3,
.bpdx-cta__box h2 { color: #fff; }
.bpdx-cta p,
.bpdx-cta__box p { color: rgba(255,255,255,0.88); }

/* =============================================
   FOOTER
============================================= */
.bpdx-footer { background: #1f3368; color: #fff; }
.bpdx-footer__main { padding: 70px 0 26px; }
.bpdx-footer__grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr; gap: 30px; }

.bpdx-footer__brand img {
  width: auto;
  max-width: 180px;
  height: auto;
  display: block;
  margin-bottom: 18px;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}

.bpdx-footer__text { margin: 0 0 18px; color: rgba(255,255,255,0.86); line-height: 1.8; font-size: 15px; }
.bpdx-footer__contact { display: grid; gap: 10px; }
.bpdx-footer__contact a,
.bpdx-footer__contact span { color: rgba(255,255,255,0.92); text-decoration: none; font-size: 15px; line-height: 1.7; }
.bpdx-footer__title { margin: 0 0 16px; font-size: 20px; color: #fff; }
.bpdx-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.bpdx-footer__links a { color: rgba(255,255,255,0.88); text-decoration: none; transition: color 0.25s ease; }
.bpdx-footer__links a:hover { color: #fff; }
.bpdx-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding: 18px 0; }
.bpdx-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.bpdx-footer__copyright,
.bpdx-footer__mini-links { font-size: 14px; color: rgba(255,255,255,0.8); }
.bpdx-footer__mini-links { display: flex; gap: 16px; flex-wrap: wrap; }
.bpdx-footer__mini-links a { color: rgba(255,255,255,0.8); text-decoration: none; }
.bpdx-footer__mini-links a:hover { color: #fff; }

/* =============================================
   INNER PAGE COMPONENTS
============================================= */
.bpdx-page-hero {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(135deg, #0f172a, #233b78);
  color: #fff;
  overflow: hidden;
}

.bpdx-page-hero__content { position: relative; z-index: 2; max-width: 760px; }
.bpdx-page-hero__title { margin: 0 0 14px; font-size: clamp(32px, 5vw, 62px); line-height: 1.05; color: #fff; }
.bpdx-page-hero__text  { margin: 0; font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.9); }

.bpdx-split { padding: 85px 0; background: #fff; }
.bpdx-split__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center; }
.bpdx-split__media img { width: 100%; display: block; border-radius: 24px; box-shadow: var(--bpdx-shadow); object-fit: cover; }

.bpdx-value-grid,
.bpdx-proposal-grid,
.bpdx-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.bpdx-info-card { padding: 28px; border-radius: 22px; border: 1px solid var(--bpdx-border); background: #fff; box-shadow: var(--bpdx-shadow); }
.bpdx-info-card h3 { margin: 0 0 12px; font-size: 22px; }
.bpdx-info-card p  { margin: 0; color: var(--bpdx-muted); line-height: 1.75; }

.bpdx-checklist { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 12px; }

.bpdx-checklist li {
  display: flex;
  gap: 12px;
  line-height: 1.7;
  color: var(--bpdx-text);
}

.bpdx-checklist li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(31,139,62,0.12);
  color: var(--bpdx-primary);
  font-weight: 700;
  margin-top: 1px;
}

.bpdx-band { padding: 80px 0; background: var(--bpdx-light); }
.bpdx-band__head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.bpdx-page-band { padding: 80px 0; background: var(--bpdx-light); }
.bpdx-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bpdx-content { max-width: 900px; }
.bpdx-content > * + * { margin-top: 1.2em; }

.bpdx-cta-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.bpdx-cta-card { padding: 32px; border-radius: 24px; background: #fff; border: 1px solid var(--bpdx-border); box-shadow: var(--bpdx-shadow); }
.bpdx-cta-card h3 { margin: 0 0 12px; font-size: 26px; }
.bpdx-cta-card p  { margin: 0 0 22px; color: var(--bpdx-muted); line-height: 1.8; }

.bpdx-contact-strip { padding: 85px 0; background: #fff; }

/* =============================================
   RESPONSIVE — TABLET (≤1024px)
============================================= */
@media (max-width: 1024px) {
  /* Header */
  .bpdx-header__inner { grid-template-columns: auto auto; justify-content: space-between; }

  .bpdx-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 14px 16px 20px;
    display: none;
    justify-content: flex-start;
  }

  .bpdx-header.is-open .bpdx-header__nav { display: flex; }
  .bpdx-header__menu { width: 100%; flex-direction: column; align-items: flex-start; gap: 16px; }
  .bpdx-header__actions .bpdx-btn { display: none; }
  .bpdx-header__toggle { display: inline-flex; }

  /* Layouts */
  .bpdx-why__wrap,
  .bpdx-split__grid,
  .bpdx-cta__box { grid-template-columns: 1fr; }

  .bpdx-services__grid,
  .bpdx-process__grid,
  .bpdx-cta-cards { grid-template-columns: repeat(2, 1fr); }

  .bpdx-stats__grid { grid-template-columns: repeat(2, 1fr); }

  .bpdx-footer__grid,
  .bpdx-value-grid,
  .bpdx-proposal-grid,
  .bpdx-info-grid,
  .bpdx-contact-grid { grid-template-columns: repeat(2, 1fr); }

  .bpdx-why__media { min-height: 440px; }
  .bpdx-cta__actions { justify-content: flex-start; }
}

/* =============================================
   RESPONSIVE — MOBILE (≤767px)
============================================= */
@media (max-width: 767px) {
  /* Header */
  .bpdx-header__top { display: none; }
  .bpdx-header__inner { min-height: 60px; }
  .bpdx-header__logo img,
  .bpdx-header__logo .custom-logo { height: 36px !important; }

  /* Hero */
  .bpdx-hero__slider,
  .bpdx-hero__inner { min-height: 65vh; }
  .bpdx-hero__title { font-size: clamp(28px, 9vw, 42px); }
  .bpdx-hero__text  { font-size: 16px; line-height: 1.7; }
  .bpdx-hero__nav   { inset: 50% 14px auto 14px; transform: translateY(-50%); }
  .bpdx-hero__arrow { width: 44px; height: 44px; font-size: 20px; }
  .bpdx-hero__inner { padding: 60px 0; }
  .bpdx-hero__meta  { gap: 10px; }
  .bpdx-hero__pill  { font-size: 13px; padding: 8px 12px; }

  /* Section padding */
  .bpdx-why,
  .bpdx-services,
  .bpdx-testimonials,
  .bpdx-process,
  .bpdx-cta,
  .bpdx-split,
  .bpdx-band,
  .bpdx-page-band,
  .bpdx-contact-strip { padding: 56px 0; }

  .bpdx-stats { padding: 12px 0 56px; }

  /* All grids collapse to 1 column */
  .bpdx-services__grid,
  .bpdx-process__grid,
  .bpdx-stats__grid,
  .bpdx-why__features,
  .bpdx-footer__grid,
  .bpdx-value-grid,
  .bpdx-proposal-grid,
  .bpdx-info-grid,
  .bpdx-contact-grid,
  .bpdx-cta-cards { grid-template-columns: 1fr; }

  /* Why section */
  .bpdx-why__media { min-height: 300px; }
  .bpdx-why__img-main { inset: 0 40px 0 0; }

  /* Testimonials */
  .bpdx-testimonials__item { width: 290px; }

  /* CTA */
  .bpdx-cta__box { padding: 28px 20px; }
  .bpdx-cta__actions { justify-content: flex-start; }

  /* Footer */
  .bpdx-footer__main { padding: 52px 0 24px; }

  /* Inner pages */
  .bpdx-page-hero { padding: 80px 0 64px; }
  .bpdx-page-hero__text { font-size: 16px; }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (≤480px)
============================================= */
@media (max-width: 480px) {
  .bpdx-hero__actions { flex-direction: column; align-items: flex-start; }
  .bpdx-hero .bpdx-btn { width: 100%; justify-content: center; }
  .bpdx-cta__actions { flex-direction: column; align-items: flex-start; }
  .bpdx-cta .bpdx-btn { width: 100%; justify-content: center; }
  .bpdx-cta-card .bpdx-btn { width: 100%; justify-content: center; }
  .bpdx-hero__meta { flex-direction: column; gap: 8px; }

  /* Why section: hide the overlay small image on tiny screens */
  .bpdx-why__img-small { display: none; }
  .bpdx-why__img-main { inset: 0; }
  .bpdx-why__media { min-height: 220px; }
}

/* =============================================
   SCROLL TO TOP BUTTON
============================================= */
.bpdx-scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 0;
  background: var(--bpdx-primary);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.bpdx-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.bpdx-scroll-top:hover { background: var(--bpdx-primary-dark); }

@media (max-width: 767px) {
  .bpdx-scroll-top { bottom: 20px; right: 20px; width: 42px; height: 42px; font-size: 18px; }
}

/* =============================================
   NATIVE LEAD FORMS
============================================= */
.bpdx-lead-form-card {
  padding: 30px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--bpdx-border);
  box-shadow: var(--bpdx-shadow);
}

.bpdx-lead-form {
  display: grid;
  gap: 18px;
}

.bpdx-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bpdx-lead-form label {
  display: grid;
  gap: 8px;
  color: var(--bpdx-text);
  font-size: 14px;
  font-weight: 700;
}

.bpdx-lead-form input,
.bpdx-lead-form select,
.bpdx-lead-form textarea {
  width: 100%;
  border: 1px solid var(--bpdx-border);
  border-radius: 14px;
  background: #fff;
  color: var(--bpdx-text);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.bpdx-lead-form textarea {
  resize: vertical;
}

.bpdx-lead-form input:focus,
.bpdx-lead-form select:focus,
.bpdx-lead-form textarea:focus {
  border-color: var(--bpdx-primary);
  box-shadow: 0 0 0 4px rgba(31, 139, 62, 0.14);
}

.bpdx-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.bpdx-form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 700;
}

.bpdx-form-notice--success {
  background: rgba(31, 139, 62, 0.12);
  color: var(--bpdx-primary-dark);
}

.bpdx-form-notice--error {
  background: rgba(185, 28, 28, 0.12);
  color: #991b1b;
}

.bpdx-search-form {
  display: flex;
  gap: 12px;
  max-width: 680px;
}

.bpdx-search-form__input {
  flex: 1;
  border: 1px solid var(--bpdx-border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
}

.bpdx-search-form__button {
  border: 0;
  border-radius: 14px;
  background: var(--bpdx-primary);
  color: #fff;
  font-weight: 800;
  padding: 0 22px;
}

@media (max-width: 767px) {
  .bpdx-form-grid,
  .bpdx-search-form {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .bpdx-search-form__button {
    min-height: 50px;
  }
}
