/* ============================================================
   BRANDADOC HOMEPAGE v3
   Scope: .bd-page  (full CSS isolation from main.css)
   Font:  Inter (Google Fonts) — clean, corporate, premium
   Ref:   o360.com design language
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
.bd-page {
  /* Brand */
  --c-green:      #45e0a7;
  --c-green-d:    #075e41;
  --c-green-lt:   #e8f7f1;
  --c-green-xlт:  #f3fdf9;
  --c-emerald:    #10b981;

  /* Darks */
  --c-hero:       #05101f;
  --c-dark:       #0d1b2a;
  --c-dark2:      #1b2a3b;

  /* Text */
  --c-head:       #111827;
  --c-body:       #374151;
  --c-muted:      #6b7280;
  --c-subtle:     #9ca3af;

  /* Surfaces */
  --c-white:      #ffffff;
  --c-grey:       #f9fafb;
  --c-border:     #e5e7eb;
  --c-border-lt:  #f3f4f6;

  /* Font */
  --f:            'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  18px;
  --r-xl:  28px;

  /* Shadow */
  --sh-sm:  0 1px 4px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.04);
  --sh-md:  0 4px 16px rgba(0,0,0,.08), 0 8px 24px rgba(0,0,0,.05);
  --sh-lg:  0 12px 40px rgba(0,0,0,.12), 0 24px 60px rgba(0,0,0,.07);
  --sh-grn: 0 8px 28px rgba(10,107,76,.28);
}

/* ─── ISOLATION RESET ─────────────────────────────────── */
.bd-page *,
.bd-page *::before,
.bd-page *::after {
  box-sizing: border-box;
}

.bd-page {
  font-family: var(--f) !important;
  color: var(--c-body) !important;
  -webkit-font-smoothing: antialiased;
}

.bd-page h1,
.bd-page h2,
.bd-page h3,
.bd-page h4,
.bd-page h5,
.bd-page h6 {
  font-family: var(--f) !important;
  color: var(--c-head) !important;
  margin: 0;
  padding: 0;
}

.bd-page p {
  font-family: var(--f) !important;
  color: var(--c-body) !important;
  margin: 0;
  padding: 0;
  line-height: 1.7 !important;
}

.bd-page a {
  font-family: var(--f) !important;
  text-decoration: none;
}

.bd-page ul, .bd-page ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bd-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ─── SECTION WRAPPERS ────────────────────────────────── */
.bd-section {
  padding: clamp(72px, 8vw, 116px) 0;
}

.bd-section--white { background: var(--c-white); }
.bd-section--grey  { background: var(--c-grey); }

.bd-section--dark {
  background: var(--c-dark);
}

/* ─── SECTION HEADER (centered) ──────────────────────── */
.bd-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.bd-head-center--dark .bd-h2 { color: #fff !important; }

/* ─── TAG / EYEBROW ───────────────────────────────────── */
.bd-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--c-green-lt);
  color: var(--c-green) !important;
  font-family: var(--f) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(10,107,76,.15);
  margin-bottom: 18px;
}

.bd-tag--light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9) !important;
  border-color: rgba(255,255,255,.2);
}

.bd-tag--dark {
  background: rgba(16,185,129,.15);
  color: #10b981 !important;
  border-color: rgba(16,185,129,.25);
}

/* ─── HEADINGS ────────────────────────────────────────── */
.bd-h2 {
  font-size: clamp(28px, 3vw, 46px) !important;
  font-weight: 800 !important;
  line-height: 1.14 !important;
  letter-spacing: -.03em !important;
  color: var(--c-head) !important;
  margin-bottom: 16px !important;
}

.bd-h2--left  { text-align: left; }
.bd-h2--white { color: #fff !important; }

.bd-lead-center {
  font-size: clamp(15px, 1.1vw, 17px) !important;
  color: var(--c-muted) !important;
  line-height: 1.7 !important;
  max-width: 560px;
  margin: 0 auto !important;
}

.bd-body-text {
  font-size: clamp(14px, 1vw, 16px) !important;
  color: var(--c-body) !important;
  line-height: 1.7 !important;
  margin-bottom: 24px !important;
}

/* ─── BUTTONS ─────────────────────────────────────────── */
.bd-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: var(--c-green);
  color: #fff !important;
  font-family: var(--f) !important;
  font-size: 15px !important;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid var(--c-green);
  transition: all .22s ease;
  box-shadow: var(--sh-grn);
  white-space: nowrap;
}

.bd-cta-btn:hover {
  background: var(--c-green-d);
  border-color: var(--c-green-d);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(10,107,76,.36);
}

.bd-cta-btn--mt { margin-top: 32px; }

.bd-cta-btn--white {
  background: #fff;
  color: var(--c-green) !important;
  border-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}

.bd-cta-btn--white:hover {
  background: var(--c-green-lt);
  border-color: var(--c-green-lt);
  color: var(--c-green) !important;
}

.bd-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--c-head) !important;
  font-family: var(--f) !important;
  font-size: 15px !important;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid var(--c-border);
  transition: all .22s ease;
  white-space: nowrap;
}

.bd-ghost-btn:hover {
  background: var(--c-grey);
  border-color: #ccc;
  color: var(--c-head) !important;
  transform: translateY(-2px);
}

.bd-ghost-btn--dark {
  color: var(--c-head) !important;
  border-color: var(--c-head);
}

.bd-ghost-btn--dark:hover {
  background: var(--c-head);
  color: #fff !important;
}

.bd-ghost-btn--white {
  color: rgba(255,255,255,.85) !important;
  border-color: rgba(255,255,255,.35);
}

.bd-ghost-btn--white:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff !important;
}

/* ══════════════════════════════════════════
   SCROLL REVEAL (JS adds .bd-anims-on)
   No-JS users see everything normally.
══════════════════════════════════════════ */

/* Hidden initial state */
.bd-page.bd-anims-on .bd-card,
.bd-page.bd-anims-on .bd-process__card,
.bd-page.bd-anims-on .bd-pcard,
.bd-page.bd-anims-on .bd-tcard,
.bd-page.bd-anims-on .bd-price-card,
.bd-page.bd-anims-on .bd-bcard,
.bd-page.bd-anims-on .bd-faq-item,
.bd-page.bd-anims-on .bd-strip__item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .55s cubic-bezier(.22,1,.36,1),
              transform .55s cubic-bezier(.22,1,.36,1);
}

.bd-page.bd-anims-on .bd-head-center,
.bd-page.bd-anims-on .bd-blog-head,
.bd-page.bd-anims-on .bd-final-cta,
.bd-page.bd-anims-on .bd-faq-left {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1),
              transform .6s cubic-bezier(.22,1,.36,1);
}

.bd-page.bd-anims-on .bd-visual-wrap {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1),
              transform .6s cubic-bezier(.22,1,.36,1);
}

.bd-page.bd-anims-on .bd-side-content {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1),
              transform .6s cubic-bezier(.22,1,.36,1);
}

/* Visible state */
.bd-page.bd-anims-on .bd-card.bd-in,
.bd-page.bd-anims-on .bd-process__card.bd-in,
.bd-page.bd-anims-on .bd-pcard.bd-in,
.bd-page.bd-anims-on .bd-tcard.bd-in,
.bd-page.bd-anims-on .bd-price-card.bd-in,
.bd-page.bd-anims-on .bd-bcard.bd-in,
.bd-page.bd-anims-on .bd-faq-item.bd-in,
.bd-page.bd-anims-on .bd-strip__item.bd-in,
.bd-page.bd-anims-on .bd-head-center.bd-in,
.bd-page.bd-anims-on .bd-blog-head.bd-in,
.bd-page.bd-anims-on .bd-final-cta.bd-in,
.bd-page.bd-anims-on .bd-faq-left.bd-in,
.bd-page.bd-anims-on .bd-visual-wrap.bd-in,
.bd-page.bd-anims-on .bd-side-content.bd-in {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   01 · HERO  — Premium redesign
══════════════════════════════════════════ */

/* ── keyframes ── */
@keyframes bd-float-a {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes bd-float-b {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(8px); }
}
@keyframes bd-float-c {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}
@keyframes bd-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,.7); }
  50%       { box-shadow: 0 0 0 7px rgba(16,185,129,0); }
}

/* ── hero shell ── */
.bd-page .bd-hero {
  background-color: var(--c-hero);
  /* Layer 1 (top): radial vignette — darkens the edges so pattern fades naturally */
  /* Layer 2: dots at every grid intersection */
  /* Layer 3 & 4: fine grid lines */
  background-image:
    radial-gradient(ellipse 110% 90% at 50% 50%, transparent 35%, rgba(5,16,31,.78) 100%),
    radial-gradient(circle, rgba(255,255,255,.11) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px, 40px 40px;
  /* lock to viewport — hero always above the fold */
  min-height: 100svh;
  min-height: 100vh; /* fallback for older browsers */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(88px, 9vw, 110px);
  padding-bottom: clamp(32px, 4vw, 52px);
  position: relative;
  overflow: hidden;
}

.bd-page .bd-hero > .container {
  width: 100%;
}

/* large ambient colour blobs */
.bd-page .bd-hero::before {
  content: '';
  position: absolute;
  width: 860px;
  height: 860px;
  top: -260px;
  right: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,107,76,.2) 0%, transparent 62%);
  pointer-events: none;
}

.bd-page .bd-hero::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  bottom: -180px;
  left: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.11) 0%, transparent 65%);
  pointer-events: none;
}

.bd-page .bd-hero__row {
  row-gap: 28px;
  align-items: center !important;
}

/* ── copy column ── */
.bd-page .bd-hero__copy {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

/* eyebrow with pulsing live dot */
.bd-page .bd-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.22);
  color: #10b981 !important;
  font-family: var(--f) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .055em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.bd-page .bd-hero__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: bd-pulse-dot 2s ease-in-out infinite;
}

/* ── H1 ── */
.bd-page .bd-hero__h1 {
  font-size: clamp(32px, 3.8vw, 58px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -.04em !important;
  color: #ffffff !important;
  margin: 0 0 16px !important;
}

.bd-page .bd-hero__h1-em {
  /* green underline accent */
  color: #fff !important;
  position: relative;
  display: inline-block;
}

.bd-page .bd-hero__h1-em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-emerald), var(--c-green));
}

/* ── lead ── */
.bd-page .bd-hero__lead {
  font-size: clamp(14px, 1vw, 16px) !important;
  color: rgba(255,255,255,.58) !important;
  line-height: 1.68 !important;
  max-width: 100%;
  margin-bottom: 22px !important;
}

/* ── avatar trust row ── */
.bd-page .bd-hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.bd-page .bd-hero__avatars {
  display: flex;
  align-items: center;
}

.bd-page .bd-hero__avatars img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--c-hero);
  object-fit: cover;
  display: block;
  margin-right: -10px;
  position: relative;
}

.bd-page .bd-hero__avatars img:last-child { margin-right: 0; }

.bd-page .bd-hero__trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 14px;
}

.bd-page .bd-hero__trust-stars {
  color: #f59e0b;
  font-size: 13px !important;
  letter-spacing: 1px;
}

.bd-page .bd-hero__trust-label {
  font-size: 13px !important;
  color: rgba(255,255,255,.52) !important;
  font-weight: 400;
}

.bd-page .bd-hero__trust-label strong {
  color: rgba(255,255,255,.85) !important;
  font-weight: 600;
}

/* ── CTAs ── */
.bd-page .bd-hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── scene (right column) ── */
.bd-page .bd-hero__scene {
  position: relative;
  z-index: 1;
  padding: 10px 8px 28px 12px;
}

/* green ambient glow behind mockup */
.bd-page .bd-hero__glow {
  position: absolute;
  width: 72%;
  height: 72%;
  top: 10%;
  left: 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,107,76,.22) 0%, transparent 68%);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

/* ── browser mockup frame ── */
.bd-page .bd-hero__mockup {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 32px 80px rgba(0,0,0,.55),
    0 8px 24px rgba(0,0,0,.35);
  position: relative;
  z-index: 1;
  animation: bd-float-a 6s ease-in-out infinite;
}

.bd-page .bd-hero__mockup-bar {
  background: #1e2535;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.bd-page .bd-hero__mockup-dots {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.bd-page .bd-hero__mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.bd-page .bd-hero__mockup-dots span:nth-child(1) { background: #ff5f57; }
.bd-page .bd-hero__mockup-dots span:nth-child(2) { background: #febc2e; }
.bd-page .bd-hero__mockup-dots span:nth-child(3) { background: #28c840; }

.bd-page .bd-hero__mockup-url {
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 12px !important;
  color: rgba(255,255,255,.45) !important;
  font-family: var(--f) !important;
  text-align: center;
  font-weight: 500;
}

.bd-page .bd-hero__mockup-spacer {
  width: 40px;
  flex-shrink: 0;
}

.bd-page .bd-hero__mockup-screen {
  background: #0f1923;
  line-height: 0;
  /* cap image so it never overflows viewport */
  max-height: clamp(400px, 38vh, 420px);
  overflow: hidden;
}

.bd-page .bd-hero__mockup-screen img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── floating proof cards ── */
.bd-page .bd-fc {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: var(--r-md);
  padding: 11px 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  z-index: 3;
  pointer-events: none;
  white-space: nowrap;
}

/* card 1 — "Website Live" — top right */
.bd-page .bd-fc--live {
  top: 10%;
  right: -5%;
  animation: bd-float-b 5s ease-in-out infinite;
}

.bd-page .bd-fc__live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  flex-shrink: 0;
  animation: bd-pulse-dot 2s ease-in-out infinite;
}

/* card 2 — "50K+ Appointments" — bottom left */
.bd-page .bd-fc--stat {
  bottom: 12%;
  left: -4%;
  animation: bd-float-a 7s ease-in-out infinite;
}

.bd-page .bd-fc__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--c-green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bd-page .bd-fc__icon i {
  color: var(--c-green);
  font-size: 15px;
}

/* card 3 — "4.9 / 5 Rating" — bottom right */
.bd-page .bd-fc--rating {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  bottom: 4%;
  right: 0%;
  animation: bd-float-c 6s ease-in-out 1s infinite;
}

.bd-page .bd-fc__stars {
  color: #f59e0b;
  font-size: 12px !important;
  letter-spacing: 1px;
}

/* shared text inside floating cards */
.bd-page .bd-fc__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bd-page .bd-fc strong {
  font-family: var(--f) !important;
  font-size: 13px !important;
  font-weight: 700;
  color: var(--c-head) !important;
  display: block;
  line-height: 1.2;
}

.bd-page .bd-fc span {
  font-family: var(--f) !important;
  font-size: 11px !important;
  color: var(--c-muted) !important;
  display: block;
}

/* ── bottom fade into next section ── */
.bd-page .bd-hero__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(5,16,31,.85));
  pointer-events: none;
}

/* ── Hero responsive ── */
@media (max-width: 1199px) {
  .bd-page .bd-fc--live  { right: 0; }
  .bd-page .bd-fc--stat  { left: 0; }
  .bd-page .bd-fc--rating { right: 0; }
}

@media (max-width: 991px) {
  .bd-page .bd-hero__copy { padding-right: 0; }
  .bd-page .bd-hero__scene { padding: 16px 8px 32px; }
  .bd-page .bd-fc { display: none; }
}

@media (max-width: 767px) {
  .bd-page .bd-hero {
    padding-top: 88px;
    padding-bottom: 36px;
    background-size: 22px 22px;
    /* on small screens a comfortable fit, not strict 100vh */
    min-height: auto;
  }

  .bd-page .bd-hero__h1 {
    font-size: clamp(28px, 8.5vw, 42px) !important;
  }

  .bd-page .bd-hero__trust { flex-wrap: wrap; gap: 10px; }

  .bd-page .bd-hero__ctas {
    flex-direction: column;
  }

  .bd-page .bd-hero__ctas .bd-cta-btn,
  .bd-page .bd-hero__ctas .bd-ghost-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .bd-page .bd-hero__h1 {
    font-size: clamp(30px, 8.5vw, 40px) !important;
    letter-spacing: -.03em !important;
  }

  .bd-page .bd-hero__eyebrow {
    font-size: 11px !important;
  }
}

/* ══════════════════════════════════════════
   02 · TRUST STRIP
══════════════════════════════════════════ */
.bd-page .bd-strip {
  background: #fff;
  border-top: 1px solid var(--c-border-lt);
  border-bottom: 1px solid var(--c-border);
  padding: 20px 0;
}

.bd-page .bd-strip__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.bd-page .bd-strip__item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 22px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--c-body) !important;
  white-space: nowrap;
}

.bd-page .bd-strip__item i {
  color: var(--c-green);
  font-size: 15px;
}

.bd-page .bd-strip__div {
  width: 1px;
  height: 18px;
  background: var(--c-border);
}

/* ══════════════════════════════════════════
   03 · SERVICE CARDS
══════════════════════════════════════════ */
.bd-page .bd-card {
  height: 100%;
  padding: 30px 26px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: all .24s ease;
}

.bd-page .bd-card:hover {
  border-color: rgba(10,107,76,.22);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.bd-page .bd-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--c-green-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.bd-page .bd-card__icon i {
  font-size: 19px;
  color: var(--c-green);
}

.bd-page .bd-card__title {
  font-size: clamp(16px, 1.15vw, 18px) !important;
  font-weight: 700 !important;
  color: var(--c-head) !important;
  margin-bottom: 10px !important;
  line-height: 1.3;
}

.bd-page .bd-card__text {
  font-size: 14px !important;
  color: var(--c-body) !important;
  line-height: 1.68 !important;
  flex: 1;
  margin-bottom: 18px !important;
}

.bd-page .bd-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--c-green) !important;
  margin-top: auto;
}

.bd-page .bd-card__link i { transition: transform .2s ease; font-size: 11px; }
.bd-page .bd-card__link:hover i { transform: translateX(4px); }
.bd-page .bd-card__link:hover { color: var(--c-green-d) !important; }

/* ══════════════════════════════════════════
   04 · WHY CHOOSE US
══════════════════════════════════════════ */
.bd-page .bd-visual-wrap {
  position: relative;
}

.bd-page .bd-visual-wrap img {
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  width: 100%;
}

.bd-page .bd-visual-badge {
  position: absolute;
  bottom: -16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-dark);
  color: #fff;
  padding: 11px 18px;
  border-radius: var(--r-md);
  font-size: 13px !important;
  font-weight: 600;
  box-shadow: var(--sh-md);
  white-space: nowrap;
}

.bd-page .bd-visual-badge i { color: #f59e0b; }

.bd-page .bd-side-content { padding-left: 12px; }

.bd-page .bd-check-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 4px;
}

.bd-page .bd-check-list li {
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.bd-page .bd-check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--c-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.bd-page .bd-check-icon i { color: #fff; font-size: 11px; }

.bd-page .bd-check-list strong {
  display: block;
  font-size: 15px !important;
  font-weight: 700;
  color: var(--c-head) !important;
  margin-bottom: 3px;
}

.bd-page .bd-check-list p {
  font-size: 13px !important;
  color: var(--c-muted) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ══════════════════════════════════════════
   05 · PROCESS STEPS (premium redesign)
══════════════════════════════════════════ */
.bd-page .bd-process {
  display: flex;
  align-items: stretch;
  margin-top: clamp(48px, 6vw, 72px);
}

.bd-page .bd-process__item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* Card */
.bd-page .bd-process__card {
  flex: 1;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-top: none;
  border-radius: var(--r-lg);
  padding: 28px 22px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .26s ease, box-shadow .26s ease;
}

/* Green gradient top bar */
.bd-page .bd-process__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-green) 0%, var(--c-emerald) 100%);
}

/* Ghost watermark number */
.bd-page .bd-process__ghost {
  position: absolute;
  top: 8px;
  right: 12px;
  font-family: var(--f) !important;
  font-size: clamp(52px, 5vw, 76px) !important;
  font-weight: 900;
  color: #3a4454  !important;
  -webkit-text-stroke: 1.5px rgba(10,107,76,.10);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Icon circle */
.bd-page .bd-process__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-green) 0%, var(--c-emerald) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(10,107,76,.28);
}

.bd-page .bd-process__icon i { color: #fff; font-size: 19px; }

/* Launch (final) step — dark card with amber/red icon */
.bd-page .bd-process__card--final {
  background: linear-gradient(145deg, var(--c-dark) 0%, #0f2133 100%);
  border-color: rgba(255,255,255,.08);
}

.bd-page .bd-process__card--final::before {
  background: linear-gradient(90deg, #f59e0b 0%, #ef4444 100%);
}

.bd-page .bd-process__card--final .bd-process__ghost {
  -webkit-text-stroke-color: rgba(255,255,255,.07);
}

.bd-page .bd-process__card--final .bd-process__title {
  color: #fff !important;
}

.bd-page .bd-process__card--final .bd-process__text {
  color: rgba(255,255,255,.52) !important;
}

.bd-page .bd-process__icon--launch {
  background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
  box-shadow: 0 6px 18px rgba(239,68,68,.22);
}

/* Content */
.bd-page .bd-process__title {
  font-size: clamp(15px, 1.15vw, 17px) !important;
  font-weight: 700 !important;
  color: var(--c-head) !important;
  margin-bottom: 8px !important;
  line-height: 1.25 !important;
}

.bd-page .bd-process__text {
  font-size: 13.5px !important;
  color: var(--c-body) !important;
  line-height: 1.68 !important;
  margin: 0 !important;
}

/* Hover */
.bd-page .bd-process__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md), 0 0 0 1px rgba(16,185,129,.1);
}

.bd-page .bd-process__card--final:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

/* Connector between steps */
.bd-page .bd-process__conn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  gap: 2px;
  /* vertically align with mid-height of icon (28px top-padding + 26px = ~54px) */
  padding-top: 28px;
}

.bd-page .bd-process__conn-line {
  width: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(16,185,129,.55) 0%, rgba(16,185,129,.15) 100%);
}

.bd-page .bd-process__conn-arr {
  color: rgba(16,185,129,.42);
  font-size: 9px;
  line-height: 1;
}

/* ── Mobile: vertical stack ── */
@media (max-width: 767px) {
  .bd-page .bd-process {
    flex-direction: column;
  }

  .bd-page .bd-process__conn {
    flex-direction: column;
    width: 100%;
    height: 40px;
    padding-top: 0;
    gap: 2px;
  }

  .bd-page .bd-process__conn-line {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, rgba(16,185,129,.55) 0%, rgba(16,185,129,.15) 100%);
  }

  .bd-page .bd-process__conn-arr {
    transform: rotate(90deg);
  }
}

/* ══════════════════════════════════════════
   06 · PORTFOLIO
══════════════════════════════════════════ */
.bd-page .bd-portfolio-section {
  background: var(--c-dark);
}

.bd-page .bd-portfolio-hero {
  background: linear-gradient(135deg, var(--c-dark) 0%, #102237 55%, #0c1d30 100%);
  padding: clamp(40px, 8vw, 50px) 0;
  position: relative;
  overflow: hidden;
}

.bd-page .bd-portfolio-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,107,76,.14) 0%, transparent 70%);
  pointer-events: none;
}

.bd-page .bd-portfolio-h2 {
  font-size: clamp(30px, 3.6vw, 52px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.1 !important;
  letter-spacing: -.03em !important;
  margin: 0 0 14px !important;
}

.bd-page .bd-portfolio-sub {
  color: rgba(255,255,255,.55) !important;
  font-size: clamp(14px, 1vw, 16px) !important;
  margin: 0 !important;
}

.bd-page .bd-portfolio-grid {
  padding: clamp(40px, 5vw, 64px) 0;
  background: var(--c-dark);
}

.bd-page .bd-pcard {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: all .26s ease;
}

.bd-page .bd-pcard:hover {
  background: rgba(255,255,255,.09);
  box-shadow: 0 8px 36px rgba(0,0,0,.4);
  transform: translateY(-5px);
  border-color: rgba(16,185,129,.28);
}

.bd-page .bd-pcard__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--c-green-lt);
}

.bd-page .bd-pcard__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.bd-page .bd-pcard:hover .bd-pcard__thumb img { transform: scale(1.04); }

.bd-page .bd-pcard__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,42,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .26s ease;
}

.bd-page .bd-pcard:hover .bd-pcard__overlay { opacity: 1; }

.bd-page .bd-pcard__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  background: #fff;
  color: var(--c-dark) !important;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 600;
  transform: translateY(8px);
  transition: transform .24s ease;
}

.bd-page .bd-pcard:hover .bd-pcard__link { transform: translateY(0); }
.bd-page .bd-pcard__link:hover { background: var(--c-green-lt); color: var(--c-green) !important; }

.bd-page .bd-pcard__meta {
  padding: 14px 16px 16px;
  background: rgba(0,0,0,.18);
}

.bd-page .bd-pcard__name {
  font-size: clamp(15px, 1.1vw, 17px) !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 3px !important;
}

.bd-page .bd-pcard__spec {
  font-size: 12px !important;
  color: rgba(255,255,255,.45) !important;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   07 · TESTIMONIALS (dark section)
══════════════════════════════════════════ */
.bd-page .bd-section--dark .bd-head-center .bd-lead-center {
  color: rgba(255,255,255,.5) !important;
}

.bd-page .bd-rating-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.bd-page .bd-rating-num {
  font-family: var(--f) !important;
  font-size: clamp(40px, 5vw, 64px) !important;
  font-weight: 900;
  color: #fff !important;
  line-height: 1;
}

.bd-page .bd-rating-stars {
  font-size: clamp(20px, 2vw, 28px) !important;
  color: #f59e0b;
  letter-spacing: 3px;
}

.bd-page .bd-rating-label {
  font-size: 14px !important;
  color: rgba(255,255,255,.45) !important;
  font-weight: 500;
}

.bd-page .bd-testi-slider-wrap {
  position: relative;
  margin-top: clamp(20px, 2.5vw, 30px);
}

.bd-page .bd-testi-nav,
.bd-page .bd-testi-dots {
  display: none;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-slider {
  overflow: hidden;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-track {
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-slide {
  flex: 0 0 100% !important;
  max-width: 100% !important;
  margin-top: 0;
  padding: 0 10px;
}

@media (min-width: 768px) {
  .bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-slide {
    flex-basis: 50% !important;
    max-width: 50% !important;
  }
}

@media (min-width: 1200px) {
  .bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-slide {
    flex-basis: 33.3333% !important;
    max-width: 33.3333% !important;
  }
}

@media (min-width: 1400px) {
  .bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-slide {
    flex-basis: 25% !important;
    max-width: 25% !important;
  }
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(13,27,42,.62);
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  transition: all .22s ease;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-nav:hover:not(:disabled) {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-nav:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-nav--prev {
  left: -10px;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-nav--next {
  right: -10px;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-dot {
  border: none;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  padding: 0;
  transition: width .2s ease, background .2s ease;
}

.bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-dot.is-active {
  width: 24px;
  background: #10b981;
}

.bd-page #brandadoc-testimonials.bd-testi-static .bd-testi-nav,
.bd-page #brandadoc-testimonials.bd-testi-static .bd-testi-dots {
  display: none !important;
}

.bd-page .bd-tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 26px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  transition: all .24s ease;
}

.bd-page .bd-tcard:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(16,185,129,.2);
  transform: translateY(-4px);
}

.bd-page .bd-tcard__text {
  font-size: 14px !important;
  color: rgba(255,255,255,.72) !important;
  line-height: 1.72 !important;
  flex: 1;
  margin: 0 !important;
}

.bd-page .bd-tcard__foot {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.bd-page .bd-tcard__foot img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(16,185,129,.3);
}

.bd-page .bd-tcard__foot strong {
  display: block;
  font-size: 14px !important;
  font-weight: 700;
  color: #fff !important;
}

.bd-page .bd-tcard__foot span {
  display: block;
  font-size: 12px !important;
  color: rgba(255,255,255,.45) !important;
  font-weight: 500;
}

/* ══════════════════════════════════════════
   08 · PRICING
══════════════════════════════════════════ */
.bd-page .bd-price-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: all .26s ease;
}

.bd-page .bd-price-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.bd-page .bd-price-card--pro {
  background: var(--c-dark);
  border-color: transparent;
  box-shadow: var(--sh-lg);
}

.bd-page .bd-price-card--pro:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(13,27,42,.35);
}

.bd-page .bd-price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-green);
  color: #fff;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(10,107,76,.4);
}

.bd-page .bd-price-plan {
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-green) !important;
  display: block;
  margin-bottom: 12px;
}

.bd-page .bd-price-card--pro .bd-price-plan {
  color: var(--c-emerald) !important;
}

.bd-page .bd-price-amt {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.bd-page .bd-price-cur {
  font-size: 22px !important;
  font-weight: 700;
  color: var(--c-head) !important;
}

.bd-page .bd-price-card--pro .bd-price-cur {
  color: rgba(255,255,255,.6) !important;
}

.bd-page .bd-price-num {
  font-size: clamp(36px, 4vw, 52px) !important;
  font-weight: 900;
  color: var(--c-head) !important;
  line-height: 1;
}

.bd-page .bd-price-amt--custom .bd-price-num {
  font-size: clamp(28px, 2.8vw, 38px) !important;
  letter-spacing: .02em;
}

.bd-page .bd-price-card--pro .bd-price-num { color: #fff !important; }

.bd-page .bd-price-per {
  font-size: 14px !important;
  color: var(--c-muted) !important;
  font-weight: 500;
}

.bd-page .bd-price-card--pro .bd-price-per {
  color: rgba(255,255,255,.4) !important;
}

.bd-page .bd-price-desc {
  font-size: 14px !important;
  color: var(--c-muted) !important;
  line-height: 1.6 !important;
  margin: 0 0 24px !important;
}

.bd-page .bd-price-card--pro .bd-price-desc {
  color: rgba(255,255,255,.5) !important;
}

.bd-page .bd-price-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}

.bd-page .bd-price-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px !important;
  color: var(--c-body) !important;
}

.bd-page .bd-price-card--pro .bd-price-list li {
  color: rgba(255,255,255,.75) !important;
}

.bd-page .bd-price-list li i {
  color: var(--c-green);
  font-size: 14px;
  flex-shrink: 0;
}

.bd-page .bd-price-card--pro .bd-price-list li i {
  color: var(--c-emerald);
}

.bd-page .bd-price-list__expand {
  display: block !important;
}

.bd-page .bd-price-drop {
  width: 100%;
}

.bd-page .bd-price-drop summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 14px !important;
  font-weight: 600;
  color: var(--c-body) !important;
}

.bd-page .bd-price-drop summary::-webkit-details-marker {
  display: none;
}

.bd-page .bd-price-card--pro .bd-price-drop summary {
  color: rgba(255,255,255,.88) !important;
}

.bd-page .bd-price-drop summary i {
  font-size: 12px;
  transition: transform .2s ease;
}

.bd-page .bd-price-drop[open] summary i {
  transform: rotate(180deg);
}

.bd-page .bd-price-drop-list {
  margin: 10px 0 2px;
  padding: 0 0 0 18px;
  display: grid;
  gap: 8px;
}

.bd-page .bd-price-drop-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px !important;
  color: #4b5563 !important;
}

.bd-page .bd-price-card--pro .bd-price-drop-list li {
  color: rgba(255,255,255,.72) !important;
}

.bd-page .bd-plan-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--f) !important;
  font-size: 15px !important;
  font-weight: 600;
  text-align: center;
  transition: all .22s ease;
  border: 2px solid transparent;
  cursor: pointer;
  color: #fff !important;
}

.bd-page .bd-plan-btn--outline {
  background: transparent;
  color: var(--c-dark) !important;
  border-color: var(--c-dark);
}

.bd-page .bd-plan-btn--outline:hover {
  background: var(--c-dark);
  color: #fff !important;
}

.bd-page .bd-plan-btn--filled {
  background: var(--c-emerald);
  border-color: var(--c-emerald);
  box-shadow: 0 6px 20px rgba(16,185,129,.35);
}

.bd-page .bd-plan-btn--filled:hover {
  background: #0ea470;
  border-color: #0ea470;
  transform: translateY(-1px);
}

/* ── Pricing: one-time label ─────────────── */
.bd-page .bd-price-per--once {
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  align-self: flex-end;
  padding-bottom: 6px;
  color: var(--c-muted) !important;
}

.bd-page .bd-price-card--pro .bd-price-per--once {
  color: rgba(255,255,255,.55) !important;
}

/* Panels */
.bd-page #bd-pricing .bd-price-panel {
  background: linear-gradient(180deg, #f8fcfa 0%, #f4f8ff 100%);
  border: 1px solid #e4edf3;
  border-radius: 28px;
  padding: clamp(22px, 3.2vw, 34px);
  box-shadow: 0 14px 36px rgba(15,23,42,.06);
  position: relative;
  overflow: hidden;
}

.bd-page #bd-pricing .bd-price-panel::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.14) 0%, rgba(16,185,129,0) 72%);
  pointer-events: none;
}

.bd-page #bd-pricing .bd-price-panel + .bd-price-panel {
  margin-top: clamp(24px, 4vw, 42px);
}

.bd-page #bd-pricing .bd-price-panel--maintenance {
  background: linear-gradient(180deg, #eefaf4 0%, #e7f3ee 100%);
  border-color: #d6eee2;
}

.bd-page #bd-pricing .bd-price-group-head {
  text-align: center;
  margin-bottom: clamp(18px, 2.6vw, 28px);
  position: relative;
  z-index: 1;
}

.bd-page #bd-pricing .bd-price-group-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(10,107,76,.2);
  background: rgba(255,255,255,.86);
  color: var(--c-head) !important;
  font-size: 13px !important;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(15,23,42,.08);
}

.bd-page #bd-pricing .bd-price-group-tag i {
  color: var(--c-green);
}

.bd-page .bd-price-panel {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .28s ease, transform .28s ease;
  /* hidden attribute handles display:none */
}

.bd-page .bd-price-panel--active {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════
   09 · BLOG
══════════════════════════════════════════ */
.bd-page .bd-blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(36px, 5vw, 52px);
  flex-wrap: wrap;
}

.bd-page .bd-blog-head__left { max-width: 640px; }

.bd-page .bd-blog-head__left .bd-h2--left {
  margin: 8px 0 10px !important;
}

.bd-page .bd-blog-head__left .bd-body-text { margin: 0 !important; }

.bd-page .bd-bcard {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: all .26s ease;
}

.bd-page .bd-bcard:hover {
  border-color: rgba(10,107,76,.18);
  box-shadow: var(--sh-md);
  transform: translateY(-5px);
}

.bd-page .bd-bcard__img {
  display: block;
  overflow: hidden;
  background: var(--c-green-lt);
  flex-shrink: 0;
}

.bd-page .bd-bcard__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .34s ease;
}

.bd-page .bd-bcard:hover .bd-bcard__img img { transform: scale(1.04); }

.bd-page .bd-bcard__body {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.bd-page .bd-bcard__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.bd-page .bd-bcard__date {
  font-size: 12px !important;
  color: var(--c-muted) !important;
  font-weight: 600;
}

.bd-page .bd-bcard__cat {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px !important;
  font-weight: 600;
  color: var(--c-green) !important;
  background: var(--c-green-lt);
  border: 1px solid rgba(10,107,76,.15);
}

.bd-page .bd-bcard__title {
  font-size: clamp(16px, 1.15vw, 18px) !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

.bd-page .bd-bcard__title a {
  color: var(--c-head) !important;
}

.bd-page .bd-bcard__title a:hover { color: var(--c-green) !important; }

.bd-page .bd-bcard__excerpt {
  font-size: 13px !important;
  color: var(--c-muted) !important;
  line-height: 1.65 !important;
  flex: 1;
  margin: 0 !important;
}

.bd-page .bd-bcard__read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px !important;
  font-weight: 600;
  color: var(--c-green) !important;
  margin-top: 4px;
}

.bd-page .bd-bcard__read i { font-size: 11px; transition: transform .2s ease; }
.bd-page .bd-bcard__read:hover i { transform: translateX(4px); }

.bd-page .bd-empty-msg {
  padding: 20px 22px !important;
  border-radius: var(--r-md);
  border: 1px dashed var(--c-border);
  background: var(--c-white);
  color: var(--c-muted) !important;
  font-size: 14px !important;
  margin: 0 !important;
}

/* ══════════════════════════════════════════
   10 · FAQ
══════════════════════════════════════════ */
.bd-page .bd-faq-left .bd-h2--left {
  margin-top: 8px !important;
  margin-bottom: 12px !important;
}

.bd-page .bd-faq__cta-btn { margin-top: 24px; }

.bd-page .bd-faq-list { display: flex; flex-direction: column; }

.bd-page .bd-faq-item {
  border-bottom: 1px solid var(--c-border);
}

.bd-page .bd-faq-item:first-child {
  border-top: 1px solid var(--c-border);
}

.bd-page .bd-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--f) !important;
  font-size: clamp(14px, 1.05vw, 16px) !important;
  font-weight: 600;
  color: var(--c-head) !important;
  cursor: pointer;
  transition: color .2s ease;
  -webkit-appearance: none;
}

.bd-page .bd-faq-q:hover { color: var(--c-green) !important; }

.bd-page .bd-faq-ico {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid var(--c-border);
  position: relative;
  flex-shrink: 0;
  transition: all .2s ease;
}

.bd-page .bd-faq-ico::before,
.bd-page .bd-faq-ico::after {
  content: '';
  position: absolute;
  background: var(--c-muted);
  border-radius: 2px;
  top: 50%;
  left: 50%;
}

.bd-page .bd-faq-ico::before {
  width: 10px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.bd-page .bd-faq-ico::after {
  width: 1.5px;
  height: 10px;
  transform: translate(-50%, -50%);
  transition: transform .2s ease, opacity .2s ease;
}

.bd-page .bd-faq-q[aria-expanded="true"] .bd-faq-ico {
  border-color: var(--c-green);
  background: var(--c-green-lt);
}

.bd-page .bd-faq-q[aria-expanded="true"] .bd-faq-ico::before,
.bd-page .bd-faq-q[aria-expanded="true"] .bd-faq-ico::after {
  background: var(--c-green);
}

.bd-page .bd-faq-q[aria-expanded="true"] .bd-faq-ico::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.bd-page .bd-faq-a {
  padding: 0 0 20px;
  font-size: 14px !important;
  color: var(--c-body) !important;
  line-height: 1.72 !important;
}

/* ══════════════════════════════════════════
   11 · FINAL CTA BANNER
══════════════════════════════════════════ */
.bd-page .bd-final-cta {
  background: linear-gradient(135deg, var(--c-dark) 0%, #10253d 50%, var(--c-dark2) 100%);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 80px) clamp(32px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bd-page .bd-final-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,107,76,.18) 0%, transparent 70%);
  pointer-events: none;
}

.bd-page .bd-final-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,.1) 0%, transparent 70%);
  pointer-events: none;
}

.bd-page .bd-final-cta__h2 {
  font-size: clamp(26px, 3.2vw, 46px) !important;
  font-weight: 900 !important;
  color: #fff !important;
  line-height: 1.14 !important;
  letter-spacing: -.025em !important;
  margin: 0 0 14px !important;
  position: relative;
  z-index: 1;
}

.bd-page .bd-final-cta__sub {
  font-size: clamp(14px, 1.05vw, 17px) !important;
  color: rgba(255,255,255,.55) !important;
  line-height: 1.68 !important;
  max-width: 540px;
  margin: 0 auto 36px !important;
  position: relative;
  z-index: 1;
}

.bd-page .bd-final-cta__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.bd-page .bd-final-cta__note {
  font-size: 12px !important;
  color: rgba(255,255,255,.3) !important;
  letter-spacing: .02em;
  position: relative;
  z-index: 1;
  margin: 0 !important;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* 1199px and below */
@media (max-width: 1199px) {
  .bd-page .bd-steps { flex-wrap: wrap; gap: 16px; }
  .bd-page .bd-step  { flex: 0 0 calc(50% - 8px); }
  .bd-page .bd-step-arrow { display: none; }
  .bd-page .bd-blog-head { flex-direction: column; align-items: flex-start; }
}

/* 991px and below */
@media (max-width: 991px) {
  .bd-page .bd-hero__copy { padding-right: 0; margin-bottom: 28px; }
  .bd-page .bd-side-content { padding-left: 0; }
  .bd-page .bd-visual-wrap { max-width: 500px; margin: 0 auto; }
  .bd-page .bd-visual-badge { display: none; }
}

/* 767px and below */
@media (max-width: 767px) {
  .bd-page .bd-hero {
    padding-top: 100px;
    padding-bottom: 52px;
  }

  .bd-page .bd-hero__h1 {
    font-size: clamp(32px, 9vw, 44px) !important;
  }

  .bd-page .bd-hero__stats {
    padding: 14px 10px;
    margin-top: 32px;
  }

  .bd-page .bd-stat { padding: 0 12px; }

  .bd-page .bd-stat strong {
    font-size: 18px !important;
  }

  .bd-page .bd-strip__row {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .bd-page .bd-strip__row::-webkit-scrollbar { display: none; }
  .bd-page .bd-strip__item { flex-shrink: 0; }

  .bd-page .bd-steps { flex-direction: column; gap: 12px; }
  .bd-page .bd-step { flex: 0 0 100%; }

  .bd-page .bd-h2 {
    font-size: clamp(24px, 7.5vw, 32px) !important;
  }

  .bd-page .bd-portfolio-h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
  }

  .bd-page .bd-card {
    text-align: center;
    align-items: center;
  }

  .bd-page .bd-card__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .bd-page .bd-card__text {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .bd-page .bd-card__link {
    justify-content: center;
  }

  .bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-slide {
    padding: 0 6px;
  }

  .bd-page #brandadoc-testimonials.bd-testi-ready .bd-testi-nav {
    display: none;
  }

  .bd-page .bd-price-card { padding: 28px 20px 24px; }
  .bd-page #bd-pricing .bd-price-panel {
    padding: 18px 14px;
    border-radius: 20px;
  }
  .bd-page #bd-pricing .bd-price-panel + .bd-price-panel {
    margin-top: 24px;
  }
  .bd-page #bd-pricing .bd-price-group-tag {
    font-size: 12px !important;
    padding: 9px 14px;
  }

  .bd-page .bd-final-cta {
    padding: 36px 22px;
    border-radius: 18px;
  }

  .bd-page .bd-final-cta__btns {
    flex-direction: column;
  }

  .bd-page .bd-final-cta__btns .bd-cta-btn,
  .bd-page .bd-final-cta__btns .bd-ghost-btn {
    width: 100%;
    justify-content: center;
  }

  .bd-page .bd-rating-num {
    font-size: clamp(36px, 10vw, 50px) !important;
  }
}

/* 480px and below */
@media (max-width: 480px) {
  .bd-page .bd-hero__ctas {
    flex-direction: column;
    width: 100%;
  }

  .bd-page .bd-hero__ctas .bd-cta-btn,
  .bd-page .bd-hero__ctas .bd-ghost-btn {
    width: 100%;
    justify-content: center;
  }

  .bd-page .bd-stat-line { display: none; }
  .bd-page .bd-hero__stats { justify-content: space-around; }
}
