/* ========================================
   BILDERA — Theme System (4 themes)
   Default: theme-light (variant 2)
   ======================================== */

/* TOKENS — shared */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ============================================================
   THEME 1: BLACK + STEEL (dark, variant 1)
   body.theme-black
   ============================================================ */
body.theme-black {
  --bg:        #0F0F0F;
  --bg2:       #1A1A1A;
  --bg3:       #2E2E2E;
  --surface:   #1E1E1E;
  --border:    rgba(255,255,255,0.08);
  --text:      #EBEBEB;
  --text2:     rgba(255,255,255,0.55);
  --text3:     rgba(255,255,255,0.3);
  --accent:    #B0BAD0;
  --accent2:   #C8D0E0;
  --accent-t:  #0F0F0F;
  --nav-bg:    rgba(15,15,15,0.95);
  --nav-border:rgba(255,255,255,0.06);
  --card-bg:   #1A1A1A;
  --card-b:    rgba(255,255,255,0.07);
  --btn-ghost-b: rgba(255,255,255,0.18);
  --btn-ghost-t: rgba(255,255,255,0.75);
  --hero-glow: radial-gradient(ellipse 70% 55% at 60% 40%, rgba(176,186,208,0.1) 0%, transparent 65%);
}

/* ============================================================
   THEME 2: LIGHT GRAY + BLACK (default, variant 2)
   body, body.theme-light
   ============================================================ */
body, body.theme-light {
  --bg:        #F5F5F5;
  --bg2:       #EBEBEB;
  --bg3:       #D4D4D4;
  --surface:   #FFFFFF;
  --border:    rgba(0,0,0,0.09);
  --text:      #1A1A1A;
  --text2:     rgba(0,0,0,0.5);
  --text3:     rgba(0,0,0,0.3);
  --accent:    #1A1A1A;
  --accent2:   #2E2E2E;
  --accent-t:  #FFFFFF;
  --nav-bg:    rgba(245,245,245,0.95);
  --nav-border:rgba(0,0,0,0.08);
  --card-bg:   #FFFFFF;
  --card-b:    rgba(0,0,0,0.08);
  --btn-ghost-b: rgba(0,0,0,0.14);
  --btn-ghost-t: rgba(0,0,0,0.7);
  --hero-glow: none;
}

/* ============================================================
   THEME 3: CHARCOAL + STEEL (variant 3)
   body.theme-charcoal
   ============================================================ */
body.theme-charcoal {
  --bg:        #232323;
  --bg2:       #2A2A2A;
  --bg3:       #3C3C3C;
  --surface:   #303030;
  --border:    rgba(255,255,255,0.07);
  --text:      #EBEBEB;
  --text2:     rgba(255,255,255,0.5);
  --text3:     rgba(255,255,255,0.28);
  --accent:    #C8D0E0;
  --accent2:   #B0BAD0;
  --accent-t:  #1A1A1A;
  --nav-bg:    rgba(35,35,35,0.95);
  --nav-border:rgba(255,255,255,0.06);
  --card-bg:   #2A2A2A;
  --card-b:    rgba(255,255,255,0.06);
  --btn-ghost-b: rgba(255,255,255,0.14);
  --btn-ghost-t: rgba(255,255,255,0.65);
  --hero-glow: radial-gradient(ellipse 65% 50% at 60% 40%, rgba(200,208,224,0.08) 0%, transparent 65%);
}

/* ============================================================
   THEME 4: SPLIT — dark hero + light body (variant 4)
   body.theme-split
   ============================================================ */
body.theme-split {
  --bg:        #EBEBEB;
  --bg2:       #F5F5F5;
  --bg3:       #D4D4D4;
  --surface:   #FFFFFF;
  --border:    rgba(0,0,0,0.09);
  --text:      #1A1A1A;
  --text2:     rgba(0,0,0,0.5);
  --text3:     rgba(0,0,0,0.3);
  --accent:    #1A1A1A;
  --accent2:   #2E2E2E;
  --accent-t:  #FFFFFF;
  --nav-bg:    rgba(26,26,26,0.97);
  --nav-border:rgba(255,255,255,0.06);
  --card-bg:   #FFFFFF;
  --card-b:    rgba(0,0,0,0.08);
  --btn-ghost-b: rgba(255,255,255,0.18);
  --btn-ghost-t: rgba(255,255,255,0.75);
  --hero-glow: none;
}
body.theme-split .bld-hero {
  background: #1A1A1A !important;
}
body.theme-split .bld-hero .hero-title,
body.theme-split .bld-hero .btn-ghost {
  color: #EBEBEB;
}
body.theme-split .bld-hero .hero-sub {
  color: rgba(255,255,255,0.5);
}
body.theme-split .bld-hero .btn-ghost {
  border-color: rgba(255,255,255,0.18);
}
body.theme-split .bld-hero .hero-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #C8D0E0;
}
body.theme-split .bld-hero .hc-num,
body.theme-split .bld-hero .hc-pname { color: #EBEBEB; }
body.theme-split .bld-hero .hero-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

/* ============================================================
   BASE STYLES (use CSS vars, work for all themes)
   ============================================================ */
body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.bld-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--nav-border);
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); letter-spacing: -0.02em;
}
body.theme-black .nav-logo,
body.theme-charcoal .nav-logo { color: #EBEBEB; }
body.theme-split .nav-logo { color: #EBEBEB; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text2); font-size: 0.9rem; font-weight: 500;
  transition: color 0.25s;
}
body.theme-black .nav-links a,
body.theme-charcoal .nav-links a,
body.theme-split .nav-links a { color: rgba(255,255,255,0.6); }
.nav-links a:hover { color: var(--text); }
body.theme-black .nav-links a:hover,
body.theme-charcoal .nav-links a:hover,
body.theme-split .nav-links a:hover { color: #EBEBEB; }
.nav-cta {
  background: var(--accent); color: var(--accent-t);
  padding: 0.5rem 1.25rem; border-radius: 8px;
  font-weight: 600; font-size: 0.875rem;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* THEME SWITCHER */
.theme-switcher {
  display: flex; gap: 6px; align-items: center;
}
.theme-dot {
  width: 18px; height: 18px; border-radius: 50%; cursor: pointer;
  border: 2px solid transparent; transition: transform 0.2s, border-color 0.2s;
}
.theme-dot:hover { transform: scale(1.2); }
.theme-dot.active { border-color: var(--accent); }
.td-light  { background: #F5F5F5; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.15); }
.td-black  { background: #0F0F0F; }
.td-charcoal { background: #232323; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1); }
.td-split  { background: linear-gradient(135deg, #1A1A1A 50%, #EBEBEB 50%); }

/* HERO */
.bld-hero {
  min-height: 100vh;
  background: var(--bg);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 68px;
  transition: background 0.4s ease;
}
.bld-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--hero-glow);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text2); padding: 0.375rem 0.875rem;
  border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.5rem;
  width: fit-content;
}
body.theme-black .hero-badge,
body.theme-charcoal .hero-badge {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: var(--accent);
}
.hero-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 800; line-height: 1.1;
  color: var(--text); letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.05rem; line-height: 1.75;
  color: var(--text2);
  margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--accent-t);
  padding: 0.875rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-2px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--btn-ghost-t);
  border: 1.5px solid var(--btn-ghost-b);
  padding: 0.875rem 2rem; border-radius: 8px;
  font-weight: 600; font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { background: var(--bg2); }

/* HERO CARD */
.hero-visual { position: relative; }
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--card-b);
  border-radius: 20px; padding: 2rem;
}
.hc-label { font-size: 0.75rem; color: var(--text3); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.hc-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hc-metric {
  background: var(--bg2); border-radius: 12px; padding: 1rem; text-align: center;
  border: 1px solid var(--border);
}
.hc-num { font-family: "Syne", system-ui, sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--text); }
.hc-unit { font-size: 0.75rem; color: var(--text3); margin-top: 0.25rem; }
.hc-divider { height: 1px; background: var(--border); margin: 1.25rem 0; }
.hc-products { display: flex; flex-direction: column; gap: 0.75rem; }
.hc-product {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.625rem 0.875rem; border-radius: 10px;
  background: var(--bg2); border: 1px solid var(--border);
}
.hc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.hc-pname { font-size: 0.875rem; color: var(--text); font-weight: 500; }
.hc-status { margin-left: auto; font-size: 0.7rem; color: #6BCB7F; font-weight: 600; }

/* SECTIONS */
.bld-section { padding: 5.5rem 2rem; transition: background 0.4s ease; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block; font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text3); margin-bottom: 0.625rem;
}
.section-title {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 0.875rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text2); line-height: 1.7; max-width: 540px;
}
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* PRODUCTS */
.bld-products { background: var(--surface); }
.products-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.product-card {
  border-radius: 16px; padding: 2.25rem;
  border: 1.5px solid var(--card-b);
  background: var(--card-bg);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.product-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.product-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.product-card:hover::after { transform: scaleX(1); }
.product-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--bg2); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.product-name { font-family: "Syne", system-ui, sans-serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.5rem; color: var(--text); }
.product-desc { font-size: 0.9rem; color: var(--text2); line-height: 1.65; margin-bottom: 1rem; }
.product-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.product-tag {
  background: var(--bg2); color: var(--text3);
  font-size: 0.75rem; font-weight: 600; padding: 0.25rem 0.625rem;
  border-radius: 4px; border: 1px solid var(--border);
}

/* FEATURES */
.bld-features { background: var(--bg2); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.feature-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 1.75rem; border: 1px solid var(--card-b); transition: all 0.3s ease;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.feature-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.feature-title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; color: var(--text); }
.feature-desc { font-size: 0.875rem; color: var(--text2); line-height: 1.65; }

/* HOW TO */
.bld-howto { background: var(--bg3); }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step-card { text-align: center; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: var(--accent-t);
  font-family: "Syne", system-ui, sans-serif; font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.step-title { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 0.5rem; }
.step-desc { font-size: 0.82rem; color: var(--text2); line-height: 1.6; }

/* PRICING */
.bld-pricing { background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: start; }
.pricing-card {
  border-radius: 16px; padding: 2rem;
  border: 1.5px solid var(--card-b); background: var(--card-bg); transition: all 0.3s ease;
}
.pricing-card.featured {
  background: var(--accent); border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  transform: scale(1.03);
}
.pricing-badge {
  display: inline-block; background: var(--bg2); color: var(--text);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.625rem; border-radius: 4px; margin-bottom: 1.25rem;
}
.pricing-card.featured .pricing-badge { background: rgba(255,255,255,0.15); color: var(--accent-t); }
.pricing-name {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text2); margin-bottom: 0.625rem;
}
.pricing-card.featured .pricing-name { color: rgba(255,255,255,0.6); }
.pricing-price {
  font-family: "Syne", system-ui, sans-serif; font-size: 2.75rem; font-weight: 800; line-height: 1;
  margin-bottom: 0.25rem; color: var(--text);
}
.pricing-card.featured .pricing-price { color: var(--accent-t); }
.pricing-period { font-size: 0.8rem; color: var(--text3); margin-bottom: 1.75rem; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.45); }
.pricing-feats { list-style: none; margin-bottom: 2rem; }
.pricing-feats li {
  padding: 0.5rem 0; font-size: 0.875rem; color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 0.625rem; align-items: flex-start;
}
.pricing-card.featured .pricing-feats li { border-color: rgba(255,255,255,0.12); color: var(--accent-t); }
.pricing-feats li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-card.featured .pricing-feats li::before { color: var(--accent-t); }
.pricing-cta {
  display: block; width: 100%; padding: 0.875rem;
  border-radius: 8px; font-weight: 700; font-size: 0.9rem;
  text-align: center; border: 1.5px solid var(--border); cursor: pointer;
  background: var(--bg2); color: var(--text); transition: all 0.2s;
}
.pricing-card:not(.featured) .pricing-cta:hover { background: var(--accent); color: var(--accent-t); border-color: var(--accent); }
.pricing-card.featured .pricing-cta { background: var(--accent-t); color: var(--accent); border-color: transparent; }
.pricing-card.featured .pricing-cta:hover { opacity: 0.9; }

/* CASES */
.bld-cases { background: var(--bg2); }
.cases-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.case-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 1.75rem; border: 1px solid var(--card-b); transition: all 0.3s ease;
}
.case-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.case-metric {
  font-family: "Syne", system-ui, sans-serif; font-size: 2.25rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.375rem;
}
.case-desc { font-size: 0.875rem; color: var(--text2); line-height: 1.65; margin-bottom: 1rem; }
.case-company { font-size: 0.75rem; font-weight: 700; color: var(--text3); letter-spacing: 0.08em; text-transform: uppercase; }

/* CTA */
.bld-cta { background: var(--bg3); text-align: center; }
.cta-box { max-width: 560px; margin: 0 auto; }
.cta-tg {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--card-bg); border: 1.5px solid var(--card-b);
  border-radius: 8px; padding: 1rem 2rem;
  color: var(--text); font-weight: 600; font-size: 1rem;
  transition: all 0.2s; margin-bottom: 1rem;
}
.cta-tg:hover { background: var(--accent); color: var(--accent-t); border-color: var(--accent); }
.cta-note { font-size: 0.8rem; color: var(--text3); }

/* FOOTER */
.bld-footer { background: var(--bg); color: var(--text2); padding: 3.5rem 2rem 2rem; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-logo { font-family: "Syne", system-ui, sans-serif; font-size: 1.375rem; font-weight: 800; color: var(--text); margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
.footer-col h4 { color: var(--text); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { font-size: 0.875rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .cases-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .bld-nav .nav-links { display: none; }
}
@media (max-width: 560px) {
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .bld-section { padding: 3.5rem 1.25rem; }
}
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════════
   BILDERA — bld-* class definitions
   Appended to template.css
═══════════════════════════════════════════════════════ */

/* ── SHARED UTILITIES ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.theme-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s;
  padding: 0; background: none;
}
.theme-dot[data-theme="theme-light"] { background: #F5F5F5; }
.theme-dot[data-theme="theme-black"] { background: #0F0F0F; }
.theme-dot[data-theme="theme-charcoal"] { background: #232323; }
.theme-dot[data-theme="theme-split"] { background: linear-gradient(135deg, #EBEBEB 50%, #1A1A1A 50%); }
.theme-dot:hover { transform: scale(1.2); border-color: var(--accent); }
.theme-dot.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent); }

/* ── NAV ────────────────────────────────────────────── */
.bld-nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}
.bld-logo {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.theme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── BUTTONS ────────────────────────────────────────── */
.bld-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--accent-t);
  padding: 0.875rem 2rem; border-radius: 8px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  border: 1.5px solid var(--accent);
  transition: opacity 0.2s, transform 0.2s;
  cursor: pointer;
}
.bld-btn:hover { opacity: 0.85; transform: translateY(-2px); }
.bld-btn-ghost {
  background: transparent; color: var(--btn-ghost-t);
  border-color: var(--btn-ghost-b);
}
.bld-btn-ghost:hover { background: var(--bg2); opacity: 1; transform: none; }

/* ── HERO ───────────────────────────────────────────── */
.bld-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: calc(100vh - 64px);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.bld-hero-text { display: flex; flex-direction: column; gap: 1.5rem; }
.bld-eyebrow {
  display: inline-block;
  font-size: 0.73rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text3);
}
.bld-h1 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--text);
  margin: 0;
}
.bld-h1 span { color: var(--accent); }
.bld-lead {
  font-size: 1.1rem; color: var(--text2);
  line-height: 1.75; max-width: 480px; margin: 0;
}
.bld-hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  align-items: center;
}
.bld-hero-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bld-hero-visual .bld-hero-card:first-child {
  grid-column: 1 / -1;
}
.bld-hero-card {
  background: var(--card-bg);
  border: 1px solid var(--card-b);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bld-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

/* ── SECTION HEADER ─────────────────────────────────── */
.bld-section-header {
  margin-bottom: 3.5rem;
  text-align: center;
}
.bld-section-header h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em; color: var(--text);
  margin: 0.5rem 0 0;
}

/* ── PRODUCTS ───────────────────────────────────────── */
.bld-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.bld-product-card {
  border-radius: 16px; padding: 2.25rem;
  border: 1.5px solid var(--card-b);
  background: var(--card-bg);
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.bld-product-card::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease;
}
.bld-product-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.bld-product-card:hover::after { transform: scaleX(1); }
.bld-product-card h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.2rem; font-weight: 800;
  color: var(--text); margin: 0 0 0.5rem;
}
.bld-product-card p { font-size: 0.9rem; color: var(--text2); line-height: 1.65; margin: 0 0 1rem; }
.bld-product-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--bg2); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
  border: 1px solid var(--border);
}
.bld-link {
  color: var(--accent);
  font-size: 0.875rem; font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.bld-link:hover { opacity: 0.75; }

/* ── FEATURES ───────────────────────────────────────── */
.bld-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bld-feature-item {
  background: var(--card-bg); border-radius: 16px;
  padding: 1.75rem; border: 1px solid var(--card-b);
  transition: all 0.3s ease;
}
.bld-feature-item:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.bld-feature-item h4 {
  font-weight: 700; font-size: 1rem;
  color: var(--text); margin: 0.625rem 0 0.4rem;
}
.bld-feature-item p { font-size: 0.875rem; color: var(--text2); line-height: 1.65; margin: 0; }
.bld-feature-num {
  display: block;
  font-family: "Syne", system-ui, sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--border);
  line-height: 1;
}

/* ── HOWTO STEPS ────────────────────────────────────── */
.bld-steps {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.bld-step {
  flex: 1;
  background: var(--card-bg);
  border: 1px solid var(--card-b);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}
.bld-step h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700; font-size: 1rem;
  color: var(--text); margin: 0 0 0.5rem;
}
.bld-step p { font-size: 0.875rem; color: var(--text2); line-height: 1.65; margin: 0; }
.bld-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--accent); color: var(--accent-t);
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.bld-step-arrow {
  font-size: 1.5rem; color: var(--text3);
  padding-top: 3rem;
  flex-shrink: 0;
}

/* ── PRICING ────────────────────────────────────────── */
.bld-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.bld-price-card {
  border-radius: 16px; padding: 2rem;
  border: 1.5px solid var(--card-b);
  background: var(--card-bg);
  transition: all 0.3s ease;
}
.bld-price-card:hover:not(.bld-price-featured) {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.bld-price-featured {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  transform: scale(1.03);
  position: relative; z-index: 1;
}
.bld-price-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15); color: var(--accent-t);
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.25rem 0.625rem;
  border-radius: 4px; margin-bottom: 1rem;
}
.bld-price-card:not(.bld-price-featured) .bld-price-badge {
  background: var(--bg2); color: var(--text);
}
.bld-price-name {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text2); margin-bottom: 0.625rem;
}
.bld-price-featured .bld-price-name { color: rgba(255,255,255,0.6); }
.bld-price-amount {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 2.25rem; font-weight: 800;
  color: var(--text); margin-bottom: 0.25rem; line-height: 1.1;
}
.bld-price-amount span {
  font-size: 1rem; font-weight: 400; opacity: 0.65;
}
.bld-price-featured .bld-price-amount { color: var(--accent-t); }
.bld-price-list {
  list-style: none; padding: 0; margin: 1.25rem 0 1.75rem;
}
.bld-price-list li {
  padding: 0.5rem 0; font-size: 0.875rem; color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 0.625rem; align-items: flex-start;
}
.bld-price-list li::before { content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.bld-price-featured .bld-price-list li {
  color: var(--accent-t); border-color: rgba(255,255,255,0.12);
}
.bld-price-featured .bld-price-list li::before { color: var(--accent-t); }
.bld-price-card .bld-btn {
  display: block; width: 100%; text-align: center;
  box-sizing: border-box;
}
.bld-price-featured .bld-btn-ghost {
  background: var(--accent-t) !important; color: var(--accent) !important;
  border-color: transparent !important;
}

/* ── CASES ──────────────────────────────────────────── */
.bld-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bld-case-card {
  background: var(--card-bg); border-radius: 16px;
  padding: 1.75rem; border: 1px solid var(--card-b);
  transition: all 0.3s ease;
}
.bld-case-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-2px); }
.bld-case-card h3 {
  font-family: "Syne", system-ui, sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--text); margin: 0.375rem 0 0.75rem;
}
.bld-case-card p { font-size: 0.875rem; color: var(--text2); line-height: 1.65; margin: 0 0 1rem; }
.bld-case-industry {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text3); margin-bottom: 0.25rem;
}
.bld-case-metric {
  font-size: 0.9rem; color: var(--text2);
  padding-top: 0.75rem; border-top: 1px solid var(--border);
}
.bld-case-metric strong {
  font-family: "Syne", system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--text); display: block; margin-bottom: 0.125rem;
}

/* ── CTA / CONTACT ──────────────────────────────────── */
.bld-cta-inner {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.bld-cta-inner h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800; color: var(--text); margin: 0 0 1rem;
}
.bld-cta-inner > p { font-size: 1rem; color: var(--text2); margin: 0 0 2rem; }
.bld-contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  text-align: left;
}
.bld-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.bld-input {
  width: 100%; box-sizing: border-box;
  background: var(--bg2); color: var(--text);
  border: 1.5px solid var(--border); border-radius: 8px;
  padding: 0.875rem 1rem; font-size: 0.95rem;
  transition: border-color 0.2s;
  font-family: "Inter", system-ui, sans-serif;
}
.bld-input:focus {
  outline: none;
  border-color: var(--accent);
}
.bld-input::placeholder { color: var(--text3); }
.bld-textarea { resize: vertical; min-height: 80px; }
.bld-contact-alts {
  display: flex; align-items: center; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.875rem; color: var(--text3);
}
.bld-contact-link {
  color: var(--text); font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 0.375rem 0.875rem; border-radius: 6px;
  transition: all 0.2s;
}
.bld-contact-link:hover {
  background: var(--accent); color: var(--accent-t);
  border-color: var(--accent);
}

/* ── FOOTER ─────────────────────────────────────────── */
.bld-footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px; margin: 0 auto;
}
.bld-footer-brand p {
  font-size: 0.85rem; color: var(--text2);
  line-height: 1.7; margin: 0.625rem 0 0;
  max-width: 260px;
}
.bld-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.bld-footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text);
  margin: 0 0 1rem;
}
.bld-footer-col a {
  display: block; font-size: 0.875rem; color: var(--text2);
  text-decoration: none; margin-bottom: 0.625rem;
  transition: color 0.2s;
}
.bld-footer-col a:hover { color: var(--text); }
.bld-footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  font-size: 0.78rem; color: var(--text3);
  flex-wrap: wrap;
}
.bld-footer-theme { display: flex; gap: 6px; align-items: center; }

/* ── RESPONSIVE ADDITIONS ───────────────────────────── */
@media (max-width: 960px) {
  .bld-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .bld-hero-visual { display: none; }
  .bld-products-grid { grid-template-columns: 1fr; }
  .bld-features-grid { grid-template-columns: 1fr 1fr; }
  .bld-steps { flex-direction: column; }
  .bld-step-arrow { transform: rotate(90deg); padding: 0; align-self: center; }
  .bld-pricing-grid { grid-template-columns: 1fr; }
  .bld-price-featured { transform: none; }
  .bld-cases-grid { grid-template-columns: 1fr; }
  .bld-footer-links { grid-template-columns: 1fr 1fr; }
  .bld-footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bld-features-grid { grid-template-columns: 1fr; }
  .bld-form-row { grid-template-columns: 1fr; }
  .bld-footer-links { grid-template-columns: 1fr; }
}

/* Joomla chrome fix: mod-custom wrappers inside grid become transparent */
.bld-products-grid > .mod-custom { display: contents; }

/* ─── Product Cards: pain + benefits + price ─────────────────────────────── */

.bld-product-card {
  display: flex;
  flex-direction: column;
}

.bld-product-pain {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #555555;
  background: rgba(26,26,26,.07);
  border: 1px solid rgba(26,26,26,.18);
  border-radius: 6px;
  padding: .35rem .65rem;
  margin-bottom: .85rem;
}

.bld-product-benefits {
  list-style: none;
  padding: 0;
  margin: .7rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  flex: 1;
}
.bld-product-benefits li {
  font-size: .84rem;
  color: #556070;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.45;
}
.bld-product-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

.bld-product-price {
  font-size: .88rem;
  color: #1a2332;
  margin: .75rem 0 .9rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(0,0,0,.07);
}
.bld-product-price strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A1A1A;
}

.bld-btn-sm {
  padding: .5rem 1rem;
  font-size: .84rem;
}

/* ─── Results / stats strip ─────────────────────────────────────────────── */

.bld-results {
  background: #1A1A1A;
  padding: 3.5rem 0;
}
.bld-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.bld-result-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .4rem;
  font-family: 'Syne', 'Inter', sans-serif;
}
.bld-result-label {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}
@media (max-width: 768px) {
  .bld-results-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .bld-result-num   { font-size: 2rem; }
}

/* ─── Pricing 4-col ──────────────────────────────────────────────────────── */

.bld-pricing-4col {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 960px) {
  .bld-pricing-4col { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 520px) {
  .bld-pricing-4col { grid-template-columns: 1fr !important; }
}

.bld-price-product-tag {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1A1A1A;
  margin-bottom: .5rem;
}
.bld-price-sub {
  font-size: .78rem;
  color: #6b7280;
  margin: .25rem 0 1rem;
  line-height: 1.4;
}

.bld-pricing-bundle {
  margin-top: 2rem;
  border: 1px solid rgba(0,0,0,.09);
  border-radius: 12px;
  padding: 1.25rem 2rem;
  background: #FFFBF6;
}
.bld-bundle-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.bld-bundle-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1A1A1A;
  white-space: nowrap;
}
.bld-bundle-text {
  flex: 1;
  font-size: .95rem;
  color: #1a2332;
}
@media (max-width: 600px) {
  .bld-bundle-inner { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .bld-pricing-bundle { padding: 1rem; }
}

/* ─── CTA two-column ─────────────────────────────────────────────────────── */

.bld-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bld-cta-left h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  margin-bottom: .9rem;
}
.bld-cta-left > p {
  font-size: .95rem;
  color: #4a5568;
  line-height: 1.6;
}
.bld-cta-direct {
  display: flex;
  gap: .85rem;
  margin: 1.4rem 0 .8rem;
  flex-wrap: wrap;
}
.bld-cta-or {
  font-size: .78rem;
  color: #9ca3af;
  text-align: center;
  margin: .6rem 0 0;
}
@media (max-width: 768px) {
  .bld-cta-inner   { grid-template-columns: 1fr; gap: 2rem; }
  .bld-cta-direct  { flex-direction: column; }
}

/* ─── Form checkboxes ────────────────────────────────────────────────────── */

.bld-form-what {
  margin-bottom: 1rem;
}
.bld-form-what-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #6b7280;
  display: block;
  margin-bottom: .5rem;
}
.bld-form-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.bld-check-label {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .8rem;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 6px;
  cursor: pointer;
  font-size: .84rem;
  color: #1a2332;
  transition: border-color .18s, background .18s, color .18s;
  user-select: none;
}
.bld-check-label:hover {
  border-color: #1A1A1A;
  background: rgba(11,27,56,.04);
}
.bld-check-label input[type="checkbox"] {
  display: none;
}
.bld-check-label:has(input:checked) {
  border-color: #1A1A1A;
  background: #1A1A1A;
  color: #fff;
}

.bld-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: .75rem;
}
@media (max-width: 420px) {
  .bld-form-row { grid-template-columns: 1fr; }
}

/* ─── Ticker / Бегущая строка ────────────────────────────────────────────── */

.bld-ticker-section {
  background: #1A1A1A;
  overflow: hidden;
  padding: .7rem 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.bld-ticker-inner {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}
.bld-ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  flex-shrink: 0;
}
.bld-ticker-track span {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.5);
  padding: 0 2.5rem;
  flex-shrink: 0;
}
.bld-ticker-track span .bld-t-accent {
  color: #1A1A1A;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.bld-ticker-section:hover .bld-ticker-track {
  animation-play-state: paused;
}

/* ─── Pricing: product name header ──────────────────────────────────────── */

.bld-price-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 0 0 .5rem;
  letter-spacing: -.01em;
}
.bld-price-name-light {
  color: #fff;
}

/* Price card: column flex so button always at bottom */
.bld-price-card {
  display: flex;
  flex-direction: column;
}
.bld-price-list {
  flex: 1;
  margin-bottom: 0;
}
.bld-price-cta {
  margin-top: 1.6rem !important;
  text-align: center;
  display: block;
  width: 100%;
}

/* Remove old tiny product-tag (now replaced by bld-price-name) */
.bld-price-product-tag {
  display: none;
}


/* ═══════════════════════════════════════════════════════════════
   CTA REDESIGN — dark navy section
═══════════════════════════════════════════════════════════════ */

/* Section wrapper dark background */
.bld-cta {
  background: #1A1A1A;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative mesh dots */
.bld-cta-deco {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Subtle glow top-right */
.bld-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,26,26,.18) 0%, transparent 70%);
  pointer-events: none;
}

.bld-cta-wrap {
  position: relative;
  z-index: 1;
}

/* Inner two-column grid */
.bld-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .bld-cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* Eyebrow light variant */
.bld-eyebrow-light {
  color: #1A1A1A;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

/* Title */
.bld-cta-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 1.25rem;
  letter-spacing: -.02em;
}
.bld-cta-accent {
  color: #1A1A1A;
}

/* Subtext */
.bld-cta-sub {
  color: rgba(255,255,255,.6);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 36ch;
}

/* Direct action buttons */
.bld-cta-direct {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  align-items: flex-start;
}

.bld-btn-tg {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #1A1A1A;
  color: #fff;
  border: none;
  padding: .85rem 1.6rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.bld-btn-tg:hover { background: #333333; transform: translateY(-2px); }

.bld-btn-link-light {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  text-decoration: none;
  transition: color .2s;
}
.bld-btn-link-light:hover { color: #fff; }

/* ─── Right: form card ────────────────────────────────────── */
.bld-cta-right {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2.25rem;
  backdrop-filter: blur(8px);
}

.bld-form-what-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .75rem;
}

/* Pill toggles */
.bld-form-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.bld-pill {
  padding: .42rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.2);
  background: transparent;
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .18s, background .18s, color .18s;
}
.bld-pill:hover {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.bld-pill-active {
  background: #1A1A1A;
  border-color: #1A1A1A;
  color: #fff;
}

/* Inputs */
.bld-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .bld-form-row { grid-template-columns: 1fr; }
}
.bld-input-light {
  width: 100%;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #fff;
  font-size: .92rem;
  outline: none;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.bld-input-light::placeholder { color: rgba(255,255,255,.35); }
.bld-input-light:focus {
  border-color: #1A1A1A;
  background: rgba(255,255,255,.12);
}

/* Submit button */
.bld-btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 1.5rem;
  background: #1A1A1A;
  border: none;
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
  margin-bottom: .85rem;
  box-shadow: 0 4px 24px rgba(26,26,26,.35);
}
.bld-btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(26,26,26,.5);
}

.bld-form-note {
  text-align: center;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}


/* ═══════════════════════════════════════════════════════════════
   CTA LIGHT OVERRIDE v2 — перекрываем тёмную тему, сайт кремовый
═══════════════════════════════════════════════════════════════ */

/* Секция — светлый кремовый фон как у всего сайта */
.bld-cta {
  background: #FEF9F4 !important;
  padding: 5rem 0 !important;
}

/* Убираем тёмные декоративные элементы */
.bld-cta::before { display: none !important; }
.bld-cta-deco { display: none !important; }

/* Заголовок — тёмно-синий */
.bld-cta-title {
  color: #1A1A1A !important;
}

/* Подзаголовок — тёмно-серый */
.bld-cta-sub {
  color: #4a5568 !important;
}

/* Eyebrow — оранжевый (как на всём сайте) */
.bld-eyebrow-light {
  color: #111111 !important;
}

/* Карточка формы — белая с тенью */
.bld-cta-right {
  background: #fff !important;
  border: 1.5px solid rgba(11,27,56,.12) !important;
  border-radius: 20px !important;
  padding: 2.25rem !important;
  box-shadow: 0 8px 40px rgba(11,27,56,.1) !important;
  backdrop-filter: none !important;
}

/* Лейбл пиллов */
.bld-form-what-label {
  color: rgba(11,27,56,.5) !important;
}

/* Пиллы — тёмная тема → светлая */
.bld-pill {
  border: 1.5px solid rgba(11,27,56,.2) !important;
  background: transparent !important;
  color: rgba(11,27,56,.65) !important;
}
.bld-pill:hover {
  border-color: rgba(11,27,56,.4) !important;
  color: #1A1A1A !important;
}
.bld-pill-active {
  background: #1A1A1A !important;
  border-color: #111111 !important;
  color: #fff !important;
}

/* Инпуты — светлые */
.bld-input-light {
  background: #f7f3ef !important;
  border: 1.5px solid rgba(11,27,56,.15) !important;
  color: #1A1A1A !important;
}
.bld-input-light::placeholder {
  color: rgba(11,27,56,.35) !important;
}
.bld-input-light:focus {
  border-color: #111111 !important;
  background: #fff !important;
}

/* Ссылка email */
.bld-btn-link-light {
  color: rgba(11,27,56,.55) !important;
}
.bld-btn-link-light:hover {
  color: #1A1A1A !important;
}

/* Примечание под кнопкой */
.bld-form-note {
  color: rgba(11,27,56,.4) !important;
}


/* ═══════════════════════════════════════════════════════════════
   PRICING 3-COLUMN GRID (6 продуктов, 2 ряда по 3)
═══════════════════════════════════════════════════════════════ */
.bld-pricing-3col {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}
@media (max-width: 900px) {
  .bld-pricing-3col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 600px) {
  .bld-pricing-3col {
    grid-template-columns: 1fr !important;
  }
}


/* ═══════════════════════════════════════════════════════════════
   CTA COLOR STRICT v3 — строго navy/amber/cream, NO BLUE
   palette: #1A1A1A (navy) · #1A1A1A (amber) · #FEF9F4 (cream)
═══════════════════════════════════════════════════════════════ */

/* ─── Telegram кнопка → navy (не синий Telegram-бренд) ─────── */
.bld-btn-tg {
  background: #1A1A1A !important;
  color: #fff !important;
  border: 2px solid #1A1A1A !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 12px rgba(11,27,56,.18) !important;
}
.bld-btn-tg:hover,
.bld-btn-tg:focus {
  background: #1a3060 !important;
  border-color: #1a3060 !important;
  color: #fff !important;
}
.bld-btn-tg svg { fill: #fff !important; color: #fff !important; }

/* ─── Пиллы выбора продуктов — navy обводка, amber при выборе ─ */
.bld-pill {
  background: transparent !important;
  border: 1.5px solid rgba(11,27,56,.25) !important;
  color: #1A1A1A !important;
  border-radius: 100px !important;
  transition: border-color .15s, background .15s !important;
  outline: none !important;
  box-shadow: none !important;
}
.bld-pill:hover {
  border-color: #1A1A1A !important;
  color: #1A1A1A !important;
  background: rgba(11,27,56,.04) !important;
}
.bld-pill:focus,
.bld-pill:focus-visible {
  border-color: #111111 !important;
  outline: none !important;
  box-shadow: 0 0 0 2px rgba(26,26,26,.25) !important;
}
.bld-pill-active,
.bld-pill.bld-pill-active {
  background: #1A1A1A !important;
  border-color: #111111 !important;
  color: #fff !important;
}

/* ─── Кнопка Submit формы — amber ──────────────────────────── */
.bld-btn-submit {
  background: #1A1A1A !important;
  color: #fff !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 20px rgba(26,26,26,.35) !important;
}
.bld-btn-submit:hover {
  background: #333333 !important;
  box-shadow: 0 6px 24px rgba(26,26,26,.45) !important;
}

/* ─── Акцент в заголовке CTA → amber ───────────────────────── */
.bld-cta-accent {
  color: #111111 !important;
}

/* ─── Eyebrow → amber ──────────────────────────────────────── */
.bld-cta .bld-eyebrow,
.bld-eyebrow-light {
  color: #111111 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  font-weight: 700 !important;
  font-size: .75rem !important;
}

/* ─── Инпуты — cream/white, navy border, amber focus ───────── */
.bld-input-light,
.bld-cta input[type="text"],
.bld-cta input[type="tel"],
.bld-cta input[type="email"],
.bld-cta textarea {
  background: #f7f3ef !important;
  border: 1.5px solid rgba(11,27,56,.18) !important;
  color: #1A1A1A !important;
  border-radius: 10px !important;
  outline: none !important;
  box-shadow: none !important;
}
.bld-input-light::placeholder,
.bld-cta input::placeholder {
  color: rgba(11,27,56,.38) !important;
}
.bld-input-light:focus,
.bld-cta input:focus {
  border-color: #111111 !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(26,26,26,.15) !important;
}

/* ─── Ссылка email → navy muted ────────────────────────────── */
.bld-btn-link-light {
  color: rgba(11,27,56,.55) !important;
  text-decoration: none !important;
}
.bld-btn-link-light:hover {
  color: #1A1A1A !important;
}
.bld-btn-link-light svg {
  color: rgba(11,27,56,.45) !important;
  vertical-align: middle !important;
}

/* ─── Сноска под кнопкой ─────────────────────────────────────── */
.bld-form-note { color: rgba(11,27,56,.4) !important; }

/* ─── Заголовок "Что интересует:" ─────────────────────────── */
.bld-form-what-label {
  color: rgba(11,27,56,.5) !important;
  font-size: .7rem !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
}

/* ─── Убиваем все синие outline/focus-ring глобально в CTA ─── */
.bld-cta *:focus {
  outline-color: rgba(26,26,26,.5) !important;
}
.bld-cta *:focus:not(:focus-visible) {
  outline: none !important;
}


/* PRICE-LIST COLOR FIX — текст списка navy, галочка amber */
.bld-price-list li {
  color: #1A1A1A !important;
}
.bld-price-list li::before,
.bld-price-card:not(.bld-price-featured) .bld-price-list li::before {
  color: #111111 !important;
}
.bld-price-name {
  color: #1A1A1A !important;
}
.bld-price-sub {
  color: rgba(11,27,56,.6) !important;
}
.bld-price-amount {
  color: #1A1A1A !important;
}
.bld-price-amount span {
  color: rgba(11,27,56,.5) !important;
  font-size: .55em !important;
}

/* ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????
   BILDERA MASTER v5 ??? FINAL
   ??????????????: ?????????? ?????? / ?????????? ???????????????? / ???????????? ??????????
   ?????? Hero + Features + "?????? ????????????????" ??? ???????????? ?????????? ??????????
   ?????? ???????????????????? ?? ?????? ???????????? ?? ?????? ??????????????????
????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */

/* ?????? 3-???????????????????? ?????????? ?????????????? (6 ???????????????? 3??2) ????????????????????????????????? */
.bld-pricing-3col {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}
@media (max-width: 900px) {
  .bld-pricing-3col { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .bld-pricing-3col { grid-template-columns: 1fr !important; }
}

/* ?????? CTA ???????????? ??? ?????????? ?????? ?????? ?? ?????????? ?????????? ????????????????????????????????????????????? */
.bld-cta {
  background: #EBEBEB !important;
  padding: 5rem 0 !important;
}
.bld-cta::before,
.bld-cta-deco { display: none !important; }

/* ?????? CTA ?????????? ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.bld-cta-title { color: #111111 !important; }
.bld-cta-accent { color: #111111 !important; }
.bld-cta-sub { color: #555555 !important; }
.bld-eyebrow-light,
.bld-cta .bld-eyebrow {
  color: #888888 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  font-weight: 700 !important;
  font-size: .7rem !important;
}

/* ?????? ????????-???????????????? ??? ?????????? ?? ?????????? ?????????? ????????????????????????????????????????????????????????? */
.bld-cta-right {
  background: #ffffff !important;
  border: 1px solid #E0E0E0 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07) !important;
  backdrop-filter: none !important;
}

/* ?????? ?????????? ??? ??????????, ?????? ???????????? ??? ???????????? ????????????????????????????????????????????????????????? */
.bld-pill {
  background: transparent !important;
  border: 1.5px solid #CCCCCC !important;
  color: #333333 !important;
  border-radius: 100px !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color .15s, background .15s !important;
}
.bld-pill:hover {
  border-color: #111111 !important;
  color: #111111 !important;
}
.bld-pill-active, .bld-pill.bld-pill-active {
  background: #111111 !important;
  border-color: #111111 !important;
  color: #1A1A1A !important;
}

/* ?????? ???????????? ??? ????????????-?????????? ??????????????????????????????????????????????????????????????????????????????????????????????????? */
.bld-input-light,
.bld-cta input[type="text"],
.bld-cta input[type="tel"],
.bld-cta input[type="email"] {
  background: #F5F5F5 !important;
  border: 1.5px solid #E0E0E0 !important;
  color: #111111 !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  outline: none !important;
}
.bld-input-light::placeholder,
.bld-cta input::placeholder { color: #AAAAAA !important; }
.bld-input-light:focus,
.bld-cta input:focus {
  border-color: #111111 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,.07) !important;
}

/* ?????? ???????????? Telegram ??? ???????????? ??????????????????????????????????????????????????????????????????????????????????????? */
.bld-btn-tg {
  background: #111111 !important;
  color: #1A1A1A !important;
  border: 2px solid #111111 !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.bld-btn-tg:hover { background: #333333 !important; border-color: #333333 !important; }
.bld-btn-tg svg { color: #1A1A1A !important; }

/* ?????? ???????????? Submit ??? ???????????? ????????????????????????????????????????????????????????????????????????????????????????????? */
.bld-btn-submit {
  background: #111111 !important;
  color: #1A1A1A !important;
  border: none !important;
  border-radius: 12px !important;
  box-shadow: none !important;
}
.bld-btn-submit:hover { background: #333333 !important; }

/* ?????? ???????????? email ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.bld-btn-link-light { color: #888888 !important; text-decoration: none !important; }
.bld-btn-link-light:hover { color: #111111 !important; }
.bld-btn-link-light svg { color: #AAAAAA !important; vertical-align: middle !important; }

/* ?????? ?????????????? ?????????? ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.bld-form-what-label {
  color: #888888 !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  font-size: .68rem !important;
}
.bld-form-note { color: #AAAAAA !important; }

/* ?????? ???????????????? ???????????????? ??? ?????????? ??????????????????????????????????????????????????????????????????????????????????????? */
.bld-price-card {
  background: #ffffff !important;
  border: 1px solid #E8E8E8 !important;
  border-radius: 16px !important;
}
.bld-price-name { color: #111111 !important; font-weight: 700 !important; }
.bld-price-amount { color: #111111 !important; font-weight: 900 !important; }
.bld-price-amount span { color: #888888 !important; font-size: .52em !important; font-weight: 400 !important; }
.bld-price-sub { color: #666666 !important; }
.bld-price-badge {
  background: #111111 !important;
  color: #1A1A1A !important;
  border-radius: 8px 8px 0 0 !important;
}

/* ?????? ???????????? ?????????? ??? ???????????? ?????????????? ???????????????????????????????????????????????????????????????????????? */
.bld-price-list li { color: #333333 !important; }
.bld-price-list li::before { color: #111111 !important; }

/* ?????? Featured (????????????) ???????????????? ??? ?????????????? ?????????? ????????????????????????????????? */
.bld-price-featured .bld-price-list li { color: #333333 !important; }
.bld-price-featured .bld-price-list li::before { color: #1A1A1A !important; }
.bld-price-featured .bld-price-name-light { color: #1A1A1A !important; }
.bld-price-featured .bld-price-sub { color: #555555 !important; }

/* ?????? ???????????? ???? ?????????????????? ????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.bld-price-cta.bld-btn-ghost {
  border-color: #CCCCCC !important;
  color: #111111 !important;
  background: transparent !important;
}
.bld-price-cta.bld-btn-ghost:hover {
  border-color: #111111 !important;
  background: #111111 !important;
  color: #1A1A1A !important;
}
.bld-price-featured .bld-price-cta {
  background: #ffffff !important;
  color: #111111 !important;
  border: none !important;
}
.bld-price-featured .bld-price-cta:hover {
  background: #EEEEEE !important;
}

/* ?????? Bundle-?????????????? ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.bld-pricing-bundle {
  background: #ffffff !important;
  border: 1px solid #E8E8E8 !important;
  border-radius: 12px !important;
}
.bld-bundle-label { color: #111111 !important; font-weight: 700 !important; }
.bld-bundle-text { color: #444444 !important; }
.bld-bundle-text strong { color: #111111 !important; }
.bld-pricing-bundle .bld-btn-ghost {
  border-color: #CCCCCC !important;
  color: #111111 !important;
}

/* ?????? Eyebrow ?????????????????? ??? ?????????? ??????????????????????????????????????????????????????????????????????????????????????? */
.bld-eyebrow { color: #888888 !important; }

/* ?????? Focus ring ??? ?????????????????????? ?????????????????????????????????????????????????????????????????????????????????????????? */
.bld-cta *:focus { outline-color: rgba(0,0,0,.25) !important; }
.bld-cta *:focus:not(:focus-visible) { outline: none !important; }


/* FIX-v5.1-featured: dark bg + white text; high-spec black checkmarks */

/* Featured: ?????????????????????????????? ???????????? ?????? (?????????????????????? bld-price-card{bg:#fff}) */
/* Specificity: 0,2,0 ??? ?????????????????? 0,1,0 ???? bld-price-card */
.bld-price-featured.bld-price-card {
  background: #1A1A1A !important;
  border-color: #1A1A1A !important;
}

/* Featured: ???????? ?????????? ?????????? ??? specificity 0,2,0 ?????? 0,2,1 */
.bld-price-featured.bld-price-card .bld-price-name,
.bld-price-featured.bld-price-card .bld-price-name-light {
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-amount {
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-amount span {
  color: #888888 !important;
}
.bld-price-featured.bld-price-card .bld-price-sub {
  color: #555555 !important;
}
.bld-price-featured.bld-price-card .bld-price-list li {
  color: #333333 !important;
}
.bld-price-featured.bld-price-card .bld-price-list li::before {
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-badge {
  background: #1A1A1A !important;
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-cta {
  background: #ffffff !important;
  color: #1A1A1A !important;
  border: none !important;
}
.bld-price-featured.bld-price-card .bld-price-cta:hover {
  background: #F0F0F0 !important;
}

/* ?????????????? ????????????????: ???????????? ?????????????? ??? spec 0,4,2 > ???????????? amber 0,3,2 */
.bld-pricing-grid .bld-price-card:not(.bld-price-featured) .bld-price-list li::before {
  color: #111111 !important;
}
.bld-pricing-grid .bld-price-card:not(.bld-price-featured) .bld-price-list li {
  color: #333333 !important;
}
.bld-pricing-grid .bld-price-card:not(.bld-price-featured) .bld-price-name {
  color: #111111 !important;
}
.bld-pricing-grid .bld-price-card:not(.bld-price-featured) .bld-price-amount {
  color: #111111 !important;
}
.bld-pricing-grid .bld-price-card:not(.bld-price-featured) .bld-price-sub {
  color: #555555 !important;
}


/* FORM-ROW-FIX-v1: inputs stack vertically, full width, proper padding */
.bld-form-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.75rem !important;
  width: 100% !important;
}
.bld-form-row .bld-input-light,
.bld-form-row input {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.875rem 1rem !important;
  font-size: 0.95rem !important;
  border-radius: 10px !important;
  background: #F5F5F5 !important;
  border: 1.5px solid #E0E0E0 !important;
  color: #111111 !important;
  outline: none !important;
}
.bld-form-row input::placeholder {
  color: #AAAAAA !important;
}
.bld-form-row input:focus {
  border-color: #111111 !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(0,0,0,.07) !important;
}

/* ???????????? submit ??? ???????????? ????????????, ???????????????????? padding */
.bld-btn-submit {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 1rem 1.5rem !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  cursor: pointer !important;
  background: #111111 !important;
  color: #1A1A1A !important;
  border: none !important;
  border-radius: 12px !important;
  margin-top: 0.25rem !important;
}
.bld-btn-submit:hover {
  background: #333333 !important;
}

/* ????????-???????????????? ??? ???????????????????? padding */
.bld-cta-right {
  padding: 1.75rem !important;
}

/* form-note ?????????????????? */
.bld-form-note {
  text-align: center !important;
  font-size: 0.78rem !important;
  color: #AAAAAA !important;
  margin-top: 0.75rem !important;
}


/* NUCLEAR-CHECK-v2: spec (0,5,2) ??? beats ALL existing rules */
.bld-pricing-3col.bld-pricing-grid .bld-price-card:not(.bld-price-featured) .bld-price-list li::before {
  color: #111111 !important;
}
.bld-pricing-3col.bld-pricing-grid .bld-price-featured .bld-price-list li::before {
  color: #1A1A1A !important;
}
.bld-pricing-3col.bld-pricing-grid .bld-price-card:not(.bld-price-featured) .bld-price-list li {
  color: #333333 !important;
}
﻿
/* CTA-COLOR-FIX-v1: pill active = black, TG button = dark */
.bld-pill-active,
.bld-pill.bld-pill-active {
  background: #1A1A1A !important;
  border-color: #1A1A1A !important;
  color: #1A1A1A !important;
}
.bld-pill-active:hover,
.bld-pill.bld-pill-active:hover {
  background: #333333 !important;
  border-color: #333333 !important;
}

/* Telegram button -> dark instead of blue */
.bld-btn-tg {
  background: #1A1A1A !important;
  color: #1A1A1A !important;
}
.bld-btn-tg:hover {
  background: #333333 !important;
}

/* CTA accent span -> dark */
.bld-cta-accent {
  color: #1A1A1A !important;
}

/* CTA eyebrow -> muted dark */
.bld-eyebrow-light {
  color: #888888 !important;
}
﻿
/* CTA-COLOR-FIX-v1: pill active = black, TG button = dark */
.bld-pill-active,
.bld-pill.bld-pill-active {
  background: #1A1A1A !important;
  border-color: #1A1A1A !important;
  color: #1A1A1A !important;
}
.bld-pill-active:hover,
.bld-pill.bld-pill-active:hover {
  background: #333333 !important;
  border-color: #333333 !important;
}
.bld-btn-tg {
  background: #1A1A1A !important;
  color: #1A1A1A !important;
}
.bld-btn-tg:hover {
  background: #333333 !important;
}
.bld-cta-accent {
  color: #1A1A1A !important;
}
.bld-eyebrow-light {
  color: #888888 !important;
}


/* EQUAL-CARDS-v1: ??? ???????? ????????? ?????????? ??????, featured ?? ????????? */
.bld-pricing-3col.bld-pricing-grid {
  align-items: stretch !important;
}
.bld-pricing-3col.bld-pricing-grid .bld-price-card {
  transform: none !important;
  margin-top: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}
.bld-pricing-3col.bld-pricing-grid .bld-price-card .bld-price-list {
  flex: 1 !important;
}
/* Featured ???????? ? ?????? ??????? ? ?????, ?? ? ??????? */
.bld-pricing-3col.bld-pricing-grid .bld-price-featured {
  transform: none !important;
  margin-top: 0 !important;
  padding-top: 1.75rem !important;
}

/* Pain ???? ? ??????????? ?????, ??? ?????????? */
.bld-product-pain {
  color: #555555 !important;
  background: rgba(0,0,0,.05) !important;
  border-color: rgba(0,0,0,.12) !important;
}

/* ??????? ?????? ? ?????? */
.bld-ticker-section {
  background: #1A1A1A !important;
  border-color: rgba(255,255,255,.08) !important;
}


/* LIGHT-CARDS-v1: ??? ???????? ???????, featured = ?????? badge + ?????? ??????? */
.bld-price-featured {
  background: #ffffff !important;
  border: 2px solid #1A1A1A !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10) !important;
  transform: none !important;
}
.bld-price-featured .bld-price-name { color: #1A1A1A !important; }
.bld-price-featured .bld-price-name-light { color: #888888 !important; }
.bld-price-featured .bld-price-amount { color: #1A1A1A !important; }
.bld-price-featured .bld-price-amount span { color: #888888 !important; }
.bld-price-featured .bld-price-sub { color: #555555 !important; }
.bld-price-featured .bld-price-list li { color: #333333 !important; border-color: rgba(0,0,0,.08) !important; }
.bld-price-featured .bld-price-list li::before { color: #1A1A1A !important; }
.bld-price-featured .bld-price-cta {
  background: #1A1A1A !important;
  color: #1A1A1A !important;
  border: none !important;
}
.bld-price-featured .bld-price-cta:hover {
  background: #333333 !important;
}
/* Badge ? ??????, ??????????? */
.bld-price-featured .bld-price-badge {
  background: #1A1A1A !important;
  color: #ffffff !important;
}
/* ??-featured ???????? ? ??????? border, ????????? shadow */
.bld-price-card:not(.bld-price-featured) {
  border: 1px solid rgba(0,0,0,.08) !important;
  background: #ffffff !important;
}
/* ?????? hover ??? ???? ???????? */
.bld-price-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.12) !important;
  transform: translateY(-3px) !important;
  border-color: rgba(0,0,0,.18) !important;
  transition: all 0.25s ease !important;
}
.bld-price-card {
  transition: all 0.25s ease !important;
  cursor: default;
}

/* EQUAL-HEIGHT fix */
.bld-pricing-3col.bld-pricing-grid {
  align-items: stretch !important;
}
.bld-pricing-3col.bld-pricing-grid .bld-price-card {
  display: flex !important;
  flex-direction: column !important;
  margin-top: 0 !important;
}
.bld-pricing-3col.bld-pricing-grid .bld-price-list {
  flex: 1 !important;
}


/* FEATURED-LIGHT-NUCLEAR: spec (0,2,0) + !important ? ????????? ? ????? = ????????? */
.bld-price-featured.bld-price-card,
.bld-price-card.bld-price-featured {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 2px solid #1A1A1A !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10) !important;
  transform: none !important;
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-name,
.bld-price-card.bld-price-featured .bld-price-name,
.bld-price-featured.bld-price-card .bld-price-name-light,
.bld-price-card.bld-price-featured .bld-price-name-light {
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-amount,
.bld-price-card.bld-price-featured .bld-price-amount {
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-amount span,
.bld-price-card.bld-price-featured .bld-price-amount span {
  color: #888888 !important;
}
.bld-price-featured.bld-price-card .bld-price-sub,
.bld-price-card.bld-price-featured .bld-price-sub {
  color: #555555 !important;
}
.bld-price-featured.bld-price-card .bld-price-list li,
.bld-price-card.bld-price-featured .bld-price-list li {
  color: #333333 !important;
  border-color: rgba(0,0,0,.08) !important;
}
.bld-price-featured.bld-price-card .bld-price-list li::before,
.bld-price-card.bld-price-featured .bld-price-list li::before {
  color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-badge,
.bld-price-card.bld-price-featured .bld-price-badge {
  background: #1A1A1A !important;
  color: #ffffff !important;
}
.bld-price-featured.bld-price-card .bld-price-cta,
.bld-price-card.bld-price-featured .bld-price-cta,
.bld-price-featured.bld-price-card .bld-btn-ghost,
.bld-price-card.bld-price-featured .bld-btn-ghost {
  background: #1A1A1A !important;
  color: #ffffff !important;
  border-color: #1A1A1A !important;
}
.bld-price-featured.bld-price-card .bld-price-cta:hover,
.bld-price-card.bld-price-featured .bld-price-cta:hover {
  background: #333333 !important;
  color: #ffffff !important;
}


/* CTA-EQUAL-v1 */
.bld-cta-inner {
  max-width: 1100px !important;
  width: 100% !important;
  text-align: left !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 3rem !important;
  align-items: stretch !important;
}
.bld-cta-left {
  background: #ffffff !important;
  border: 1px solid #E0E0E0 !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07) !important;
  padding: 2.25rem !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}
.bld-cta-right {
  border-radius: 16px !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.07) !important;
  border: 1px solid #E0E0E0 !important;
  background: #ffffff !important;
  padding: 2.25rem !important;
}
.bld-section.bld-cta, section.bld-cta { background: #f4f4f4 !important; }
.bld-cta-deco { display: none !important; }
@media (max-width: 768px) {
  .bld-cta-inner { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
}


/* HOVER-FIX-v1: tilt-shine ?? ????????????? ??????? + ????? hover ????? */
.tilt-shine {
  pointer-events: none !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.12) 0%, transparent 60%) !important;
  opacity: 0 !important;
  transition: opacity 0.25s !important;
  z-index: 1 !important;
}
.bld-price-card:hover .tilt-shine,
.bld-product-card:hover .tilt-shine,
.bld-case-card:hover .tilt-shine { opacity: 1 !important; }

/* ??? ?????? ? ????????? ? ????? ?????? shine */
.bld-price-card .bld-price-cta,
.bld-price-card .bld-btn-ghost { position: relative !important; z-index: 2 !important; }

/* non-featured ???????? ??? hover ? ?????? ????????? */
.bld-price-card:not(.bld-price-featured):hover {
  background: #f5f5f5 !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
}

/* ????? featured ?????? ??? hover ?????? ????? */
.bld-price-featured .bld-price-cta:hover,
.bld-price-featured .bld-btn-ghost:hover {
  color: #ffffff !important;
  background: #333333 !important;
}
