/*
Theme Name: BDM Developer Theme
Theme URI: https://businessdirectmedia.com
Author: Business Direct Media
Author URI: https://businessdirectmedia.com
Description: A dark, modern developer services theme for Business Direct Media.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bdm-theme
Tags: dark, modern, developer, services, one-page
*/

/* ─── RESET & BASE ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg:          #070b12;
  --bg2:         #0c1220;
  --bg3:         #111827;
  --bg4:         #1a2235;
  --cyan:        #00d4ff;
  --cyan-dim:    rgba(0, 212, 255, 0.10);
  --cyan-glow:   rgba(0, 212, 255, 0.22);
  --border:      rgba(255, 255, 255, 0.07);
  --border-cyan: rgba(0, 212, 255, 0.25);
  --text:        #e2e8f0;
  --muted:       #64748b;
  --font-main:   'Outfit', sans-serif;
  --font-display:'Syne', sans-serif;
  --font-mono:   'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-main);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p  { line-height: 1.75; }

/* ─── LAYOUT ─── */
.bdm-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.bdm-section   { padding: 6rem 5%; }
.bdm-section--alt { background: var(--bg2); }

/* ─── SECTION LABELS ─── */
.bdm-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--cyan); letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.bdm-label::before { content: ''; width: 24px; height: 1px; background: var(--cyan); flex-shrink: 0; }

.bdm-section-head { margin-bottom: 3.5rem; }
.bdm-section-head h2 { margin-bottom: 0.75rem; }
.bdm-section-head h2 span, h1 em { color: var(--cyan); }
.bdm-section-head p { color: var(--muted); font-size: 1.05rem; max-width: 520px; line-height: 1.75; }

/* ─── BUTTONS ─── */
.bdm-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 8px;
  font-family: var(--font-main); font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: opacity .2s, transform .2s, background .2s, border-color .2s;
}
.bdm-btn--primary { background: var(--cyan); color: #07111e; }
.bdm-btn--primary:hover { opacity: 0.88; transform: translateY(-2px); }
.bdm-btn--ghost { border: 1px solid var(--border); color: var(--text); background: transparent; }
.bdm-btn--ghost:hover { border-color: var(--border-cyan); background: var(--cyan-dim); }

/* ══════════════════════════════════════
   NAV  — single authoritative block
══════════════════════════════════════ */
.bdm-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(7,11,18,0.90);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}

.bdm-nav__logo {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  color: #fff; letter-spacing: -0.02em; flex-shrink: 0;
}
.bdm-nav__logo span { color: var(--cyan); }

/* ── Top-level <ul> ── */
#bdm-nav-links {
  display: flex !important;
  align-items: center;
  gap: 2rem;
  list-style: none !important;
  margin: 0 !important; padding: 0 !important;
}

/* ── Every top-level <li> ── */
#bdm-nav-links > li {
  position: relative;
  list-style: none !important;
}

/* ── All nav links ── */
#bdm-nav-links a {
  display: block;
  color: var(--muted);
  font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color .2s;
}
#bdm-nav-links > li > a:hover { color: var(--text); }

/* ── Dropdown arrow ── */
#bdm-nav-links > li.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 0.6rem; opacity: 0.55;
}
#bdm-nav-links > li.menu-item-has-children.bdm-open > a::after {
  display: inline-block;
  transform: rotate(180deg);
}

/* ── Sub-menu: HIDDEN by default, absolutely positioned ── */
#bdm-nav-links .sub-menu {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  min-width: 200px;
  background: var(--bg2) !important;
  border: 1px solid var(--border-cyan) !important;
  border-radius: 10px !important;
  padding: 0.4rem !important;
  z-index: 9999 !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7) !important;
  list-style: none !important;
  margin: 0 !important;
}

/* ── Cyan accent line at top of dropdown ── */
#bdm-nav-links .sub-menu::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.1));
  border-radius: 10px 10px 0 0;
  margin: -0.4rem -0.4rem 0.4rem;
}

/* ── Show sub-menu when JS adds .bdm-open ── */
#bdm-nav-links > li.bdm-open > .sub-menu {
  display: block !important;
  animation: bdm-dd-in .17s ease;
}

@keyframes bdm-dd-in {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ── Sub-menu items ── */
#bdm-nav-links .sub-menu li { display: block !important; list-style: none !important; }
#bdm-nav-links .sub-menu a {
  display: block !important;
  padding: 0.55rem 0.85rem !important;
  color: var(--muted) !important;
  font-size: 0.875rem !important;
  border-radius: 6px;
  transition: background .15s, color .15s;
}
#bdm-nav-links .sub-menu a:hover {
  background: var(--cyan-dim) !important;
  color: var(--text) !important;
}

/* ── CTA button ── */
#bdm-nav-links .menu-item-cta > a {
  background: var(--cyan) !important;
  color: #07111e !important;
  padding: 0.5rem 1.35rem !important;
  border-radius: 6px !important;
  font-weight: 600 !important;
}
#bdm-nav-links .menu-item-cta > a:hover { opacity: 0.85 !important; }

/* ── Hamburger ── */
.bdm-nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
  background: none; border: none;
}
.bdm-nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px; transition: .3s;
}

/* ── WordPress admin bar offsets ── */
.admin-bar .bdm-nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .bdm-nav { top: 46px; } }
.admin-bar .bdm-hero { padding-top: calc(8rem + 32px); }
@media screen and (max-width: 782px) { .admin-bar .bdm-hero { padding-top: calc(6rem + 46px); } }

/* ── Mobile nav ── */
@media (max-width: 768px) {
  .bdm-nav__hamburger { display: flex; }
  #bdm-nav-links {
    display: none !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 5%;
    gap: 1.25rem;
    z-index: 999;
  }
  #bdm-nav-links.bdm-mobile-open {
    display: flex !important;
  }
  #bdm-nav-links .sub-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--border) !important;
    border-radius: 8px !important;
    margin-top: 0.5rem !important;
    animation: none !important;
  }
  #bdm-nav-links .sub-menu::before { display: none !important; }
  #bdm-nav-links > li.bdm-open > .sub-menu { display: block !important; }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.bdm-hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 5% 5rem; position: relative; overflow: hidden;
}
.bdm-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 40%, rgba(0,212,255,0.055) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(124,58,237,0.045) 0%, transparent 60%);
  pointer-events: none;
}
.bdm-hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.bdm-hero__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  max-width: 1200px; width: 100%; position: relative; z-index: 1;
}
.bdm-hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--cyan-dim); border: 1px solid var(--border-cyan);
  border-radius: 100px; padding: 0.35rem 1rem;
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--cyan); margin-bottom: 1.5rem; letter-spacing: 0.04em;
}
.bdm-hero__badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--cyan); border-radius: 50%;
  box-shadow: 0 0 8px var(--cyan);
  animation: bdm-pulse 2s ease-in-out infinite;
}
@keyframes bdm-pulse { 0%,100%{opacity:1} 50%{opacity:.35} }

.bdm-hero__title { margin-bottom: 1.5rem; }
.bdm-hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), #0099ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bdm-hero__sub { font-size: 1.1rem; color: var(--muted); max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75; }
.bdm-hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Terminal */
.bdm-terminal {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.bdm-terminal__bar {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 1.2rem; background: var(--bg3); border-bottom: 1px solid var(--border);
}
.bdm-terminal__dot { width: 12px; height: 12px; border-radius: 50%; }
.bdm-terminal__dot--r { background: #ff5f57; }
.bdm-terminal__dot--y { background: #febc2e; }
.bdm-terminal__dot--g { background: #28c840; }
.bdm-terminal__title { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); margin: 0 auto; }
.bdm-terminal__body { padding: 1.5rem; font-family: var(--font-mono); font-size: 0.82rem; line-height: 2.1; }
.t-comment { color: #3d5066; }
.t-key     { color: var(--cyan); }
.t-val     { color: #a8e6cf; }
.t-str     { color: #ffd88d; }
.t-dim     { color: var(--muted); }
.t-prompt  { color: #7c3aed; user-select: none; }
.t-indent  { padding-left: 1.5rem; display: block; }
.t-indent2 { padding-left: 3rem; display: block; }
.bdm-cursor {
  display: inline-block; width: 2px; height: 1em;
  background: var(--cyan); vertical-align: middle; margin-left: 2px;
  animation: bdm-blink 1s step-end infinite;
}
@keyframes bdm-blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ─── SERVICES ─── */
.bdm-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.bdm-service-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.bdm-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0; transition: opacity .3s;
}
.bdm-service-card:hover { border-color: var(--border-cyan); transform: translateY(-4px); }
.bdm-service-card:hover::before { opacity: 1; }
.bdm-service-card--wide { grid-column: span 2; }
.bdm-service-card__icon {
  width: 48px; height: 48px; background: var(--cyan-dim);
  border: 1px solid var(--border-cyan); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.bdm-service-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.bdm-service-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.bdm-service-card__wide-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.bdm-stat-mini { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-bottom: 0.75rem; }
.bdm-stat-mini:last-child { margin-bottom: 0; }
.bdm-stat-mini__label { font-family: var(--font-mono); font-size: 0.7rem; color: var(--cyan); margin-bottom: 0.35rem; letter-spacing: 0.08em; text-transform: uppercase; }
.bdm-stat-mini__val   { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 0.2rem; }
.bdm-stat-mini__sub   { font-size: 0.78rem; color: var(--muted); }

/* ─── TAGS ─── */
.bdm-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.bdm-tag {
  font-family: var(--font-mono); font-size: 0.68rem; color: var(--cyan);
  background: var(--cyan-dim); border: 1px solid rgba(0,212,255,0.15);
  border-radius: 4px; padding: 0.2rem 0.55rem; letter-spacing: 0.04em;
}

/* ─── ABOUT ─── */
.bdm-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.bdm-about__body { color: var(--muted); line-height: 1.8; margin-bottom: 1.25rem; }
.bdm-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.bdm-stat-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem 1.5rem; transition: border-color .3s; }
.bdm-stat-card:hover { border-color: var(--border-cyan); }
.bdm-stat-card__num   { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--cyan); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -0.03em; }
.bdm-stat-card__label { font-size: 0.82rem; color: var(--muted); }
.bdm-features-list { display: flex; flex-direction: column; gap: 1.25rem; }
.bdm-feature {
  display: flex; gap: 1rem; padding: 1.5rem;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 10px; transition: border-color .3s;
}
.bdm-feature:hover { border-color: var(--border-cyan); }
.bdm-feature__icon { font-size: 1.5rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.bdm-feature h4 { font-size: 1rem; margin-bottom: 0.35rem; color: #fff; }
.bdm-feature p  { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ─── PROCESS ─── */
.bdm-process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.bdm-process-grid::before {
  content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.15), var(--cyan)); opacity: 0.4;
}
.bdm-step { padding: 0 1.5rem; text-align: center; }
.bdm-step__num {
  width: 56px; height: 56px; background: var(--bg2);
  border: 1px solid var(--border-cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--cyan);
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.bdm-step h4 { font-size: 1rem; margin-bottom: 0.5rem; color: #fff; }
.bdm-step p  { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ─── PRICING ─── */
.bdm-pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.bdm-pricing-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 12px;
  padding: 2rem; position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: border-color .3s;
}
.bdm-pricing-card--featured { border-color: var(--border-cyan); background: linear-gradient(160deg,rgba(0,212,255,0.04),var(--bg2)); }
.bdm-pricing-card--featured::before {
  content: 'Most Popular'; position: absolute; top: 0; right: 0;
  background: var(--cyan); color: #07111e;
  font-size: 0.68rem; font-weight: 700; font-family: var(--font-mono);
  letter-spacing: 0.08em; padding: 0.3rem 1rem;
  border-radius: 0 12px 0 8px; text-transform: uppercase;
}
.bdm-pricing-card__plan { font-family: var(--font-mono); font-size: 0.72rem; color: var(--cyan); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
.bdm-pricing-card h3    { font-size: 1.25rem; margin-bottom: 1rem; }
.bdm-pricing-card__price { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 0.25rem; }
.bdm-pricing-card__price span { font-size: 1rem; color: var(--muted); font-weight: 400; font-family: var(--font-main); }
.bdm-pricing-card__note { font-size: 0.8rem; color: var(--muted); margin-bottom: 1.5rem; }
.bdm-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }
.bdm-pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; flex: 1; }
.bdm-pricing-features li { display: flex; gap: 0.6rem; font-size: 0.875rem; color: var(--muted); align-items: flex-start; }
.bdm-pricing-features li::before { content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.bdm-pricing-features li.na { opacity: 0.4; }
.bdm-pricing-features li.na::before { content: '–'; color: var(--muted); }
.bdm-pricing-btn { display: block; text-align: center; padding: 0.85rem; border-radius: 8px; font-weight: 600; font-size: 0.9rem; transition: opacity .2s, background .2s, border-color .2s; }
.bdm-pricing-btn--primary { background: var(--cyan); color: #07111e; }
.bdm-pricing-btn--primary:hover { opacity: 0.85; color: #07111e; }
.bdm-pricing-btn--outline { border: 1px solid var(--border); color: var(--text); }
.bdm-pricing-btn--outline:hover { border-color: var(--border-cyan); background: var(--cyan-dim); }

/* ─── CTA ─── */
.bdm-cta { text-align: center; padding: 7rem 5%; position: relative; overflow: hidden; border-top: 1px solid var(--border); }
.bdm-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 50% 100%,rgba(0,212,255,0.055) 0%,transparent 70%); pointer-events: none; }
.bdm-cta h2 { margin-bottom: 1rem; position: relative; z-index: 1; }
.bdm-cta p  { color: var(--muted); font-size: 1.05rem; max-width: 480px; margin: 0 auto 2.5rem; position: relative; z-index: 1; }
.bdm-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
.bdm-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 2.5rem 5%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.bdm-footer__brand { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: #fff; }
.bdm-footer__brand span { color: var(--cyan); }
.bdm-footer__links { display: flex; gap: 2rem; }
.bdm-footer__links a { color: var(--muted); font-size: 0.85rem; transition: color .2s; }
.bdm-footer__links a:hover { color: var(--text); }
.bdm-footer__copy { font-size: 0.8rem; color: var(--muted); }

/* ─── SCROLL ANIMATIONS ─── */
.bdm-fade { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.bdm-fade.is-visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .bdm-service-card--wide { grid-column: span 1; }
  .bdm-service-card__wide-inner { grid-template-columns: 1fr; }
  .bdm-pricing-grid { grid-template-columns: 1fr 1fr; }
  .bdm-pricing-grid .bdm-pricing-card:last-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .bdm-section { padding: 4rem 5%; }
  .bdm-hero__inner { grid-template-columns: 1fr; }
  .bdm-terminal { display: none; }
  .bdm-about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bdm-process-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bdm-process-grid::before { display: none; }
  .bdm-pricing-grid { grid-template-columns: 1fr; }
  .bdm-pricing-grid .bdm-pricing-card:last-child { grid-column: span 1; }
  .bdm-footer { flex-direction: column; text-align: center; }
  .bdm-footer__links { flex-wrap: wrap; justify-content: center; }
  .bdm-stats-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .bdm-process-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════
   SINGLE POST
══════════════════════════════════════ */

/* Outer wrapper — sits below the fixed nav */
.bdm-single {
  padding-top: 70px;
  min-height: 100vh;
}
.admin-bar .bdm-single {
  padding-top: 102px; /* 70px nav + 32px admin bar */
}
@media screen and (max-width: 782px) {
  .admin-bar .bdm-single {
    padding-top: 116px; /* 70px nav + 46px admin bar */
  }
}

/* Hero band */
.bdm-single__hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.bdm-single__hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Meta row */
.bdm-single__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.bdm-single__cat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid var(--border-cyan);
  border-radius: 4px;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bdm-single__sep  { color: var(--border); }
.bdm-single__date,
.bdm-single__read { color: var(--muted); font-size: 0.82rem; }

/* Title — explicit size, NOT inheriting global h1 clamp */
.bdm-single__title {
  font-family: var(--font-display) !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.03em !important;
  color: #fff !important;
  margin: 0 0 1.25rem !important;
  max-width: 100%;
}
@media (max-width: 600px) {
  .bdm-single__title { font-size: 1.7rem !important; }
}

/* Excerpt */
.bdm-single__excerpt {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

/* Author */
.bdm-single__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.bdm-single__avatar {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  border: 1px solid var(--border-cyan) !important;
  flex-shrink: 0;
}
.bdm-single__author-name { font-size: 0.875rem; font-weight: 600; color: #fff; line-height: 1.2; }
.bdm-single__author-role { font-size: 0.75rem; color: var(--muted); }

/* Featured image */
.bdm-single__thumb {
  max-width: 760px;
  margin: 2.5rem auto;
  padding: 0 5%;
}
.bdm-single__thumb img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}

/* Body / content area */
.bdm-single__body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 5% 5rem;
}

/* Content typography */
.bdm-single__content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 3rem;
}
.bdm-single__content > *:first-child { color: var(--text); }

.bdm-single__content h1,
.bdm-single__content h2,
.bdm-single__content h3,
.bdm-single__content h4,
.bdm-single__content h5,
.bdm-single__content h6 {
  color: #fff;
  margin: 2rem 0 0.75rem;
  line-height: 1.25;
  font-family: var(--font-display);
}
.bdm-single__content h2 { font-size: 1.5rem; font-weight: 800; }
.bdm-single__content h3 { font-size: 1.2rem; font-weight: 700; }
.bdm-single__content h4 { font-size: 1rem; font-weight: 700; }

.bdm-single__content p { margin-bottom: 1.5rem; }

.bdm-single__content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bdm-single__content a:hover { opacity: 0.8; }

.bdm-single__content ul,
.bdm-single__content ol {
  margin: 0 0 1.5rem 1.5rem;
}
.bdm-single__content li { margin-bottom: 0.5rem; line-height: 1.75; }

.bdm-single__content blockquote {
  border-left: 3px solid var(--cyan);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg2);
  border-radius: 0 8px 8px 0;
  color: var(--text);
  font-size: 1.05rem;
  font-style: italic;
}

.bdm-single__content pre {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.88rem;
}
.bdm-single__content code {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
}
.bdm-single__content pre code { background: none; border: none; padding: 0; }

.bdm-single__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin: 1.5rem 0;
  display: block;
}
.bdm-single__content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* Tags */
.bdm-single__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Prev/Next nav */
.bdm-single__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.bdm-single__nav-prev { text-align: left; }
.bdm-single__nav-next { text-align: right; }
.bdm-single__nav-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.bdm-single__nav a {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
  display: block;
  transition: color .2s;
  line-height: 1.4;
}
.bdm-single__nav a:hover { color: var(--cyan); }

/* ══════════════════════════════════════
   PAGE TEMPLATE
══════════════════════════════════════ */
.bdm-page {
  padding-top: 70px;
  min-height: 100vh;
}
.admin-bar .bdm-page { padding-top: 102px; }
@media screen and (max-width: 782px) {
  .admin-bar .bdm-page { padding-top: 116px; }
}
.bdm-page__hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 5%;
}
.bdm-page__hero h1 {
  max-width: 760px;
  margin: 0 auto;
  font-size: 2.2rem !important;
  color: #fff;
}
.bdm-page__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 5% 5rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--muted);
}
.bdm-page__content h2,
.bdm-page__content h3,
.bdm-page__content h4 { color: #fff; margin: 2rem 0 0.75rem; }
.bdm-page__content p   { margin-bottom: 1.5rem; }
.bdm-page__content a   { color: var(--cyan); text-decoration: underline; }

/* ══════════════════════════════════════
   ARCHIVE / BLOG LIST
══════════════════════════════════════ */
.bdm-archive {
  padding-top: 70px;
  min-height: 100vh;
}
.admin-bar .bdm-archive { padding-top: 102px; }
@media screen and (max-width: 782px) {
  .admin-bar .bdm-archive { padding-top: 116px; }
}
.bdm-archive__hero {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 3rem 5%;
}
.bdm-archive__hero-inner { max-width: 1200px; margin: 0 auto; }
.bdm-archive__hero h1 {
  font-size: 2rem !important;
  margin: 0.5rem 0 0 !important;
  color: #fff !important;
}

.bdm-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 5%;
}
.bdm-blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s;
}
.bdm-blog-card:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}
.bdm-blog-card__thumb { display: block; aspect-ratio: 16/9; overflow: hidden; }
.bdm-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.bdm-blog-card:hover .bdm-blog-card__thumb img { transform: scale(1.04); }
.bdm-blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.bdm-blog-card__title { font-size: 1.05rem; font-weight: 700; margin: 0.5rem 0 0.75rem; line-height: 1.3; letter-spacing: -0.02em; }
.bdm-blog-card__title a { color: #fff; transition: color .2s; }
.bdm-blog-card__title a:hover { color: var(--cyan); }
.bdm-blog-card__excerpt { color: var(--muted); font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.25rem; flex: 1; }
.bdm-blog-card__more { color: var(--cyan); font-size: 0.875rem; font-weight: 600; transition: opacity .2s; }
.bdm-blog-card__more:hover { opacity: 0.75; }

.bdm-pagination {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5% 5rem;
  display: flex;
  justify-content: center;
}
.bdm-pagination .nav-links { display: flex; gap: 0.5rem; align-items: center; }
.bdm-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--muted); font-size: 0.875rem;
  transition: border-color .2s, color .2s, background .2s;
}
.bdm-pagination .page-numbers:hover,
.bdm-pagination .page-numbers.current {
  border-color: var(--border-cyan);
  background: var(--cyan-dim);
  color: var(--cyan);
}

/* ══════════════════════════════════════
   SERVICE PAGES (shared styles)
══════════════════════════════════════ */
.bdm-srv-page { background: var(--bg); }

/* Hero */
.bdm-srv-hero {
  min-height: 78vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 5% 4rem; position: relative; overflow: hidden;
}
.bdm-srv-hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bdm-srv-hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.bdm-srv-hero__inner { max-width: 740px; position: relative; z-index: 1; }
.bdm-srv-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 5vw, 3.4rem) !important;
  font-weight: 800 !important; letter-spacing: -0.03em !important;
  color: #fff !important; line-height: 1.15 !important; margin: 1rem 0 1.25rem !important;
}
.bdm-srv-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), #0099ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bdm-srv-hero__sub { color: var(--muted); font-size: 1.05rem; line-height: 1.75; max-width: 580px; margin: 0 auto 2.5rem; }
.bdm-srv-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.bdm-srv-hero__badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* What I do */
.bdm-srv-what { padding: 5rem 5%; background: var(--bg2); border-top: 1px solid var(--border); }
.bdm-srv-what__inner { max-width: 1100px; margin: 0 auto; }
.bdm-srv-what h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.75rem; }
.bdm-srv-what h2 span { color: var(--cyan); }
.bdm-srv-what__lead { color: var(--muted); font-size: 1rem; max-width: 620px; line-height: 1.75; margin-bottom: 3rem; }

.bdm-srv-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.25rem;
}
.bdm-srv-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.75rem; transition: border-color .3s, transform .3s;
}
.bdm-srv-card:hover { border-color: var(--border-cyan); transform: translateY(-3px); }
.bdm-srv-card__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.bdm-srv-card h4 { font-size: 1rem; color: #fff; margin-bottom: 0.5rem; font-family: var(--font-display); font-weight: 700; }
.bdm-srv-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* Stack */
.bdm-srv-stack { padding: 4rem 5%; background: var(--bg); border-top: 1px solid var(--border); }
.bdm-srv-stack__inner { max-width: 1100px; margin: 0 auto; }
.bdm-srv-stack h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1.75rem; }
.bdm-srv-stack h2 span { color: var(--cyan); }
.bdm-srv-stack__tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* Process */
.bdm-srv-process { padding: 5rem 5%; background: var(--bg2); border-top: 1px solid var(--border); }
.bdm-srv-process__inner { max-width: 1100px; margin: 0 auto; }
.bdm-srv-process h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.bdm-srv-process h2 span { color: var(--cyan); }
.bdm-srv-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.bdm-srv-steps::before {
  content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.15), var(--cyan)); opacity: 0.35;
}
.bdm-srv-step { text-align: center; padding: 0 1.5rem; }
.bdm-srv-step__num {
  width: 56px; height: 56px; background: var(--bg);
  border: 1px solid var(--border-cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--cyan);
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.bdm-srv-step h4 { font-size: 1rem; color: #fff; margin-bottom: 0.5rem; font-family: var(--font-display); font-weight: 700; }
.bdm-srv-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* CTA */
.bdm-srv-cta {
  padding: 6rem 5%; text-align: center; background: var(--bg);
  border-top: 1px solid var(--border); position: relative; overflow: hidden;
}
.bdm-srv-cta__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.bdm-srv-cta__inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.bdm-srv-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.bdm-srv-cta h2 span { color: var(--cyan); }
.bdm-srv-cta p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }
.bdm-srv-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .bdm-srv-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bdm-srv-steps::before { display: none; }
}
@media (max-width: 600px) {
  .bdm-srv-steps { grid-template-columns: 1fr; }
  .bdm-srv-cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   SEO / PRICING PACKAGE CARDS (global)
   Used on SEO Packages, Google Ads, etc.
══════════════════════════════════════ */

/* Section wrapper */
.bdm-seo-packages { padding: 5rem 5%; background: var(--bg); border-top: 1px solid var(--border); }
.bdm-seo-packages__inner { max-width: 1100px; margin: 0 auto; }
.bdm-seo-packages h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.bdm-seo-packages h2 span { color: var(--cyan); }

/* 3-column card grid */
.bdm-seo-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* Individual card */
.bdm-seo-pkg {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s, transform .3s;
}
.bdm-seo-pkg:hover {
  border-color: var(--border-cyan);
  transform: translateY(-4px);
}
.bdm-seo-pkg--featured {
  border-color: var(--border-cyan);
  background: linear-gradient(160deg, rgba(0,212,255,0.05), var(--bg2));
  transform: scale(1.02);
}
.bdm-seo-pkg--featured:hover { transform: scale(1.02) translateY(-4px); }

/* Most popular badge */
.bdm-seo-pkg__badge {
  position: absolute; top: 0; right: 0;
  background: var(--cyan); color: #07111e;
  font-size: 0.68rem; font-weight: 700;
  font-family: var(--font-mono); letter-spacing: 0.08em;
  padding: 0.3rem 1rem;
  border-radius: 0 14px 0 8px;
  text-transform: uppercase;
}

/* Card header */
.bdm-seo-pkg__name {
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--cyan);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.75rem;
}
.bdm-seo-pkg__price {
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800;
  color: #fff; line-height: 1; letter-spacing: -0.03em; margin-bottom: 0.25rem;
}
.bdm-seo-pkg__price span {
  font-size: 1rem; color: var(--muted); font-weight: 400; font-family: var(--font-main);
}
.bdm-seo-pkg__term { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.75rem; }
.bdm-seo-pkg__tagline { font-size: 0.875rem; color: var(--muted); line-height: 1.55; }

/* Divider */
.bdm-seo-pkg__divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

/* Feature list */
.bdm-seo-pkg__features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.65rem;
  flex: 1; margin-bottom: 1.75rem;
}
.bdm-seo-pkg__features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; line-height: 1.5;
}
.bdm-seo-pkg__features li.yes { color: var(--text); }
.bdm-seo-pkg__features li.yes::before {
  content: '✓'; color: var(--cyan); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.bdm-seo-pkg__features li.no { color: var(--muted); opacity: 0.45; }
.bdm-seo-pkg__features li.no::before {
  content: '–'; color: var(--muted); flex-shrink: 0;
}

/* CTA button */
.bdm-seo-pkg__btn {
  display: block; text-align: center; padding: 0.9rem;
  border-radius: 8px; font-weight: 600; font-size: 0.9rem;
  text-decoration: none;
  transition: opacity .2s, background .2s, border-color .2s;
}
.bdm-seo-pkg__btn--primary { background: var(--cyan); color: #07111e; }
.bdm-seo-pkg__btn--primary:hover { opacity: 0.85; color: #07111e; }
.bdm-seo-pkg__btn--outline { border: 1px solid var(--border); color: var(--text); }
.bdm-seo-pkg__btn--outline:hover {
  border-color: var(--border-cyan); background: var(--cyan-dim); color: var(--text);
}

/* Footnote */
.bdm-seo-pkg__note {
  text-align: center; margin-top: 2rem; font-size: 0.8rem; color: var(--muted);
}
.bdm-seo-pkg__note a { color: var(--cyan); }

/* Why / section shared styles */
.bdm-seo-why { padding: 5rem 5%; background: var(--bg2); border-top: 1px solid var(--border); }
.bdm-seo-why__inner { max-width: 1100px; margin: 0 auto; }
.bdm-seo-why h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.75rem; }
.bdm-seo-why h2 span { color: var(--cyan); }
.bdm-seo-why__lead { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 3rem; line-height: 1.75; }
.bdm-seo-why__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.25rem; }
.bdm-seo-why__card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.75rem; transition: border-color .3s;
}
.bdm-seo-why__card:hover { border-color: var(--border-cyan); }
.bdm-seo-why__icon { font-size: 1.75rem; margin-bottom: 1rem; }
.bdm-seo-why__card h4 {
  font-size: 1rem; color: #fff; margin-bottom: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
}
.bdm-seo-why__card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* Comparison table */
.bdm-seo-table-section { padding: 5rem 5%; background: var(--bg2); border-top: 1px solid var(--border); }
.bdm-seo-table-wrap { max-width: 1000px; margin: 0 auto; }
.bdm-seo-table-wrap h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.bdm-seo-table-wrap h2 span { color: var(--cyan); }
.bdm-seo-table-scroll { overflow-x: auto; }
.bdm-seo-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.bdm-seo-table th,
.bdm-seo-table td { padding: 0.85rem 1.25rem; text-align: center; border-bottom: 1px solid var(--border); }
.bdm-seo-table th:first-child,
.bdm-seo-table td:first-child { text-align: left; color: var(--muted); }
.bdm-seo-table thead th {
  background: var(--bg3); font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem; color: #fff;
}
.bdm-seo-table thead th span {
  display: block; font-size: 0.72rem; font-family: var(--font-mono);
  color: var(--cyan); font-weight: 400; margin-top: 0.2rem;
}
.bdm-seo-table thead th.featured {
  background: rgba(0,212,255,0.08); border-top: 2px solid var(--cyan);
}
.bdm-seo-table tbody td.featured { background: rgba(0,212,255,0.04); color: #fff; }
.bdm-seo-table tbody tr:last-child td { border-bottom: none; }
.bdm-seo-table tbody td { color: var(--text); }

/* Hero badges (shared) */
.bdm-seo-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(0,212,255,0.07); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px; padding: 0.3rem 0.9rem;
  font-size: 0.8rem; color: var(--muted);
}
.bdm-seo-badge span { color: var(--cyan); font-weight: 700; }

/* SEO hero */
.bdm-seo-hero {
  min-height: 75vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 5rem 5% 4rem; position: relative; overflow: hidden;
}
.bdm-seo-hero__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 60%, rgba(0,212,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.bdm-seo-hero__grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.bdm-seo-hero__inner { max-width: 760px; position: relative; z-index: 1; }
.bdm-seo-hero h1 {
  font-family: var(--font-display) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: 800 !important; letter-spacing: -0.03em !important;
  color: #fff !important; line-height: 1.1 !important; margin: 1rem 0 1.25rem !important;
}
.bdm-seo-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), #0099ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.bdm-seo-hero__sub { color: var(--muted); font-size: 1.1rem; line-height: 1.75; max-width: 580px; margin: 0 auto 2.5rem; }
.bdm-seo-hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.bdm-seo-hero__badges { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* SEO process */
.bdm-seo-process { padding: 5rem 5%; background: var(--bg); border-top: 1px solid var(--border); }
.bdm-seo-process__inner { max-width: 1100px; margin: 0 auto; }
.bdm-seo-process h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
.bdm-seo-process h2 span { color: var(--cyan); }
.bdm-seo-process__steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.bdm-seo-process__steps::before {
  content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.15), var(--cyan)); opacity: 0.35;
}
.bdm-seo-process__step { text-align: center; padding: 0 1.5rem; }
.bdm-seo-process__num {
  width: 56px; height: 56px; background: var(--bg2);
  border: 1px solid var(--border-cyan); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem; color: var(--cyan);
  margin: 0 auto 1.25rem; position: relative; z-index: 1;
}
.bdm-seo-process__step h4 { font-size: 1rem; color: #fff; margin-bottom: 0.5rem; font-family: var(--font-display); font-weight: 700; }
.bdm-seo-process__step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* SEO CTA */
.bdm-seo-cta {
  padding: 6rem 5%; text-align: center; background: var(--bg2);
  border-top: 1px solid var(--border); position: relative; overflow: hidden;
}
.bdm-seo-cta__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0,212,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.bdm-seo-cta__inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 1; }
.bdm-seo-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.bdm-seo-cta h2 span { color: var(--cyan); }
.bdm-seo-cta p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; }
.bdm-seo-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .bdm-seo-pkg-grid { grid-template-columns: 1fr; }
  .bdm-seo-pkg--featured { transform: none; }
  .bdm-seo-pkg--featured:hover { transform: translateY(-4px); }
  .bdm-seo-process__steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .bdm-seo-process__steps::before { display: none; }
}
@media (max-width: 600px) {
  .bdm-seo-process__steps { grid-template-columns: 1fr; }
  .bdm-seo-why__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   LEAD MAGNET BANNER
══════════════════════════════════════ */
.bdm-lead-banner {
  max-width: 760px;
  margin: 3rem auto 0;
  padding: 0 5%;
}
.bdm-lead-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--bg2);
  border: 1px solid var(--border-cyan);
  border-radius: 14px;
  padding: 1.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.bdm-lead-banner__inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,212,255,0.2));
}
.bdm-lead-banner__inner:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}
.bdm-lead-banner__img {
  width: 60px;
  height: 78px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.bdm-lead-banner__content {
  flex: 1;
  min-width: 0;
}
.bdm-lead-banner__label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.bdm-lead-banner__title {
  font-family: var(--font-display) !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.25 !important;
  margin: 0 0 0.5rem !important;
  letter-spacing: -0.02em !important;
}
.bdm-lead-banner__sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.bdm-lead-banner__btn {
  display: inline-flex;
  align-items: center;
  background: var(--cyan);
  color: #07111e;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  border-radius: 6px;
  transition: opacity .2s;
}
.bdm-lead-banner__inner:hover .bdm-lead-banner__btn { opacity: 0.85; }

@media (max-width: 500px) {
  .bdm-lead-banner__inner { flex-direction: column; text-align: center; }
  .bdm-lead-banner__img { width: 70px; height: 91px; }
}
