/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
*/

/* =================================================================
   Global resets
   ================================================================= */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }

/* =================================================================
   Sticky Header
   ================================================================= */
.elementor-location-header {
  position: sticky;
  top: 0;
  z-index: 999;
  will-change: box-shadow, background-color;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.elementor-location-header.bmbw-scrolled {
  background-color: rgba(250, 248, 244, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(20,32,58,.07), 0 4px 20px rgba(20,32,58,.07);
}
.elementor-element[data-id="hdr001"] {
  min-height: 72px;
}
.elementor-element[data-id="hdr001"] > .e-con-inner {
  min-height: 72px;
  align-items: center;
}

/* =================================================================
   Header Nav
   ================================================================= */
.bmbw-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.bmbw-nav a {
  font-family: var(--bmbw-font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-900);
  text-decoration: none;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.bmbw-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cobalt-500);
  border-radius: 2px;
  transition: width 0.22s ease;
}
.bmbw-nav a:hover { color: var(--cobalt-500); }
.bmbw-nav a:hover::after { width: 100%; }

/* Header CTA */
.elementor-element[data-id="hdr_cta"] .elementor-button {
  background-color: var(--cobalt-500) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--bmbw-radius-pill) !important;
  font-family: var(--bmbw-font-body) !important;
  font-weight: 600 !important;
  font-size: 0.9375rem !important;
  padding: 0.625rem 1.375rem !important;
  box-shadow: var(--bmbw-shadow-brand);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.elementor-element[data-id="hdr_cta"] .elementor-button:hover {
  background-color: var(--cobalt-600) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(47,91,234,.4);
}
.elementor-element[data-id="hdr_cta"] .elementor-button:active {
  transform: translateY(0);
}

/* Logo text */
.elementor-element[data-id="hdr_logo"] .elementor-heading-title {
  font-family: var(--bmbw-font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  line-height: 1;
}

/* =================================================================
   GSAP animation init states (hidden until JS runs)
   ================================================================= */
.bmbw-anim-init {
  opacity: 0;
}

/* =================================================================
   Pricing cards hover
   ================================================================= */
.elementor-element[data-id="card_ess"],
.elementor-element[data-id="card_partner"] {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.elementor-element[data-id="card_ess"]:hover,
.elementor-element[data-id="card_partner"]:hover {
  transform: translateY(-6px);
  box-shadow: var(--bmbw-shadow-lg);
}
.elementor-element[data-id="card_growth"] {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.elementor-element[data-id="card_growth"]:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(20,32,58,.35);
}

/* =================================================================
   Footer
   ================================================================= */

/* Centering wrapper: brand + nav columns capped at 1240px */
.elementor-location-footer .bmbw-ftr-brand {
  flex: 0 0 300px;
  max-width: 300px;
}
.elementor-location-footer .bmbw-ftr-nav {
  flex: 1 1 0;
}

/* Footer link lists */
.bmbw-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bmbw-footer-links a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(250,248,244,0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.bmbw-footer-links a:hover {
  color: #FAF8F4;
}

/* Bottom bar */
.bmbw-ftr-bottom {
  border-top: 1px solid rgba(250,248,244,0.10) !important;
  margin-top: 0;
}

/* Legal links */
.bmbw-footer-legal {
  display: flex;
  gap: 20px;
}
.bmbw-footer-legal a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(250,248,244,0.28);
  text-decoration: none;
  transition: color 0.2s ease;
}
.bmbw-footer-legal a:hover {
  color: rgba(250,248,244,0.6);
}

/* Generic fallback transition */
.elementor-location-footer a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

/* Mobile */
@media (max-width: 767px) {
  .elementor-location-footer .bmbw-ftr-brand {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .bmbw-ftr-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px;
  }
}

/* =================================================================
   Mobile
   ================================================================= */
@media (max-width: 767px) {
  .bmbw-nav { gap: 1.25rem; }
  .bmbw-nav a { font-size: 0.875rem; }
  .elementor-element[data-id="hdr_cta"] .elementor-button {
    font-size: 0.875rem !important;
    padding: 0.5rem 1rem !important;
  }
}
@media (max-width: 480px) {
  .bmbw-nav { display: none; }
}
/* =================================================================
   Value Comparison — Two Boxes
   ================================================================= */

/* Row: left box wider than right */
.bmbw-vs-row { align-items: stretch !important; }
.bmbw-vs-row > .e-con:first-child { flex: 0 0 57% !important; min-width: 0; }
.bmbw-vs-row > .e-con:last-child  { flex: 1 1 auto !important; min-width: 0; }

/* Shared mono label */
.bmbw-vs-box-label .elementor-heading-title {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* ─ Left box: DIY cost price-list ─ */
.bmbw-cost-list ul.elementor-price-list { margin: 0; padding: 0; }
.bmbw-cost-list .elementor-price-list-item {
  padding: 9px 0 !important;
  border-bottom: 1px solid rgba(255,255,255,0.06) !important;
}
.bmbw-cost-list .elementor-price-list-item:last-child { border-bottom: none !important; }
.bmbw-cost-list .elementor-price-list-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.68) !important;
}
.bmbw-cost-list .elementor-price-list-price {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.38) !important;
  white-space: nowrap;
}
.bmbw-cost-list .elementor-price-list-separator {
  border-bottom: 1px dashed rgba(255,255,255,0.12) !important;
  flex: 1;
  margin: 0 8px;
  height: 0;
  align-self: center;
}

/* ─ Left box: human cost price-list ─ */
.bmbw-human-list .elementor-price-list-item {
  padding: 9px 0 !important;
  border-bottom: 1px solid rgba(255,122,69,0.08) !important;
}
.bmbw-human-list .elementor-price-list-item:last-child { border-bottom: none !important; }
.bmbw-human-list .elementor-price-list-title {
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 13.5px !important;
  font-weight: 400 !important;
  color: rgba(255,122,69,0.82) !important;
  font-style: italic !important;
}
.bmbw-human-list .elementor-price-list-price {
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 11px !important;
  color: rgba(255,122,69,0.38) !important;
  white-space: nowrap;
}
.bmbw-human-list .elementor-price-list-separator { display: none !important; }

/* ─ Left box: total row ─ */
.bmbw-vs-total .elementor-text-editor {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 14px;
  margin-top: 8px;
}
.bmbw-vs-total .elementor-text-editor p {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.bmbw-vs-total-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ─ Right box: price display ─ */
.bmbw-price-dollar .elementor-heading-title {
  line-height: 1 !important;
  margin-bottom: 10px !important;
}
.bmbw-price-amount .elementor-heading-title {
  line-height: 0.9 !important;
  letter-spacing: -0.04em !important;
}
.bmbw-price-mo .elementor-heading-title {
  line-height: 1 !important;
  margin-bottom: 8px !important;
}

/* ─ Right box: features icon-list ─ */
.bmbw-features-list .elementor-icon-list-item {
  border-bottom: 1px solid rgba(255,255,255,0.10) !important;
  padding-bottom: 6px !important;
}
.bmbw-features-list .elementor-icon-list-item:last-child { border-bottom: none !important; }
.bmbw-features-list .elementor-icon-list-icon i { color: rgba(255,255,255,0.45) !important; }
.bmbw-features-list .elementor-icon-list-text { color: rgba(255,255,255,0.88) !important; }

/* ─ Right box: CTA ─ */
.elementor-element.bmbw-vs-cta .elementor-button {
  width: 100% !important;
  background-color: #ffffff !important;
  color: #1F45C7 !important;
  font-weight: 700 !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.elementor-element.bmbw-vs-cta .elementor-button:hover {
  background-color: #EDF1FE !important;
  color: #1A37A0 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* ─ Mobile ─ */
@media (max-width: 767px) {
  .bmbw-vs-row > .e-con:first-child,
  .bmbw-vs-row > .e-con:last-child {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
}