/* BiPatent Stitch shell — amber/dark. Prefix: .bp- */

:root {
  --bp-primary: #f59e0b;
  --bp-primary-light: #fbbf24;
  --bp-primary-dark: #d97706;
  --bp-coral: #f97316;
  --bp-bg: #0e0d0c;
  --bp-surface: #151311;
  --bp-surface-2: #1c1916;
  --bp-surface-3: #24201c;
  --bp-ink: #f5ede4;
  --bp-muted: #a89f91;
  --bp-outline: #544c41;
  --bp-line: #342e26;
  --bp-max: 1280px;
  --bp-header: 64px;
  --bp-sans: "Geist", "Manrope", system-ui, -apple-system, sans-serif;
  --bp-display: "Manrope", "Geist", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html.bp-home,
html.bp-inner { scroll-behavior: smooth; }

body.bp-home,
body.bp-inner {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bp-bg) !important;
  color: var(--bp-ink);
  font-family: var(--bp-sans);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.bp-home ::selection,
body.bp-inner ::selection {
  background: rgba(245, 158, 11, 0.3);
  color: #fcd34d;
}

.bp-wrap {
  width: 100%;
  max-width: var(--bp-max);
  margin: 0 auto;
  padding: 0 24px;
}

.bp-main { flex: 1 0 auto; }

.bp-ico {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Header */
.bp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--bp-header);
  background: rgba(14, 13, 12, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(69, 26, 3, 0.4);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}

.bp-header .bp-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.bp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.bp-brand img {
  height: 28px;
  width: auto;
  display: block;
}

.bp-nav {
  display: none;
  align-items: center;
  gap: 8px;
}

.bp-nav-item { position: relative; padding: 16px 4px; }

.bp-nav-btn,
.bp-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: 0;
  color: #d6d3d1;
  font: 500 13px/1 var(--bp-sans);
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 8px;
}

.bp-nav-btn:hover,
.bp-nav-link:hover,
.bp-nav-item:hover > .bp-nav-btn { color: var(--bp-primary); }

.bp-nav-item.is-active > .bp-nav-btn,
.bp-nav-link.is-active {
  color: var(--bp-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--bp-primary);
  border-radius: 0;
  padding-bottom: 4px;
}

.bp-caret { width: 14px; height: 14px; transition: transform .2s; }
.bp-nav-item:hover .bp-caret { transform: rotate(180deg); }

.bp-drop {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 4px;
  width: 280px;
  padding: 8px;
  border-radius: 12px;
  background: rgba(25, 22, 19, 0.96);
  border: 1px solid rgba(120, 53, 15, 0.4);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all .18s ease;
  z-index: 60;
}

.bp-nav-item:hover .bp-drop,
.bp-nav-item:focus-within .bp-drop {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.bp-drop a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  color: #d6d3d1;
  text-decoration: none;
  font-size: 13.5px;
  border-radius: 8px;
}

.bp-drop a:hover { background: rgba(41, 37, 36, 0.8); color: var(--bp-primary); }

.bp-chip {
  font-size: 10px;
  font-weight: 600;
  color: #fcd34d;
  background: rgba(69, 26, 3, 0.8);
  border: 1px solid rgba(180, 83, 9, 0.5);
  padding: 2px 6px;
  border-radius: 4px;
}

.bp-chip-ai {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 6px;
  font-size: 10px;
  font-weight: 600;
  color: #fcd34d;
  background: rgba(69, 26, 3, 0.9);
  border: 1px solid rgba(180, 83, 9, 0.5);
  border-radius: 999px;
}

.bp-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.bp-wa {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #292524;
  color: #e7e5e4;
  text-decoration: none;
  font: 500 13px/1 var(--bp-sans);
}

.bp-wa:hover { border-color: rgba(16, 185, 129, 0.5); background: rgba(6, 78, 59, 0.2); color: #fff; }

.bp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  animation: bp-pulse 1.6s ease-in-out infinite;
}

@keyframes bp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

.bp-sep { width: 1px; height: 16px; background: #292524; display: none; }

.bp-link-quiet {
  color: #d6d3d1;
  text-decoration: none;
  font: 500 13px/1 var(--bp-sans);
  padding: 8px 10px;
  border-radius: 8px;
}

.bp-link-quiet:hover { color: #fff; }

.bp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  border-radius: 10px;
  font: 700 13px/1 var(--bp-sans);
  transition: transform .12s ease, filter .12s ease, background .12s ease;
}

.bp-btn:active { transform: scale(0.97); }

.bp-btn-primary {
  background: linear-gradient(90deg, #f59e0b, #d97706 45%, #ea580c);
  color: #1c1917;
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.22);
  padding: 10px 16px;
}

.bp-btn-primary:hover { filter: brightness(1.08); color: #1c1917; }

.bp-btn-ghost {
  background: rgba(41, 37, 36, 0.9);
  color: #fff;
  border: 1px solid #44403c;
  padding: 10px 16px;
}

.bp-btn-ghost:hover { border-color: rgba(217, 119, 6, 0.5); color: #fff; }

.bp-burger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #e7e5e4;
  cursor: pointer;
  border-radius: 8px;
}

.bp-burger:hover { background: rgba(41, 37, 36, 0.7); color: var(--bp-primary); }

.bp-mobile {
  display: none;
  border-top: 1px solid rgba(69, 26, 3, 0.4);
  background: #0e0d0c;
  padding: 8px 16px 20px;
}

.bp-header.is-open .bp-mobile { display: block; }

.bp-mobile a,
.bp-mobile summary {
  display: block;
  color: #e7e5e4;
  text-decoration: none;
  padding: 10px 8px;
  font-size: 14px;
}

.bp-mobile a:hover,
.bp-mobile summary:hover { color: var(--bp-primary); }

.bp-mobile details { border-bottom: 1px solid #292524; }
.bp-mobile summary { cursor: pointer; list-style: none; font-weight: 600; }
.bp-mobile summary::-webkit-details-marker { display: none; }
.bp-mobile .bp-drop-in a { padding-left: 18px; color: #a8a29e; font-size: 13.5px; }

.bp-mobile-cta {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.bp-mobile-cta a { flex: 1; text-align: center; }

@media (min-width: 640px) {
  .bp-wa { display: inline-flex; }
  .bp-sep { display: block; }
}

@media (min-width: 1100px) {
  .bp-nav { display: flex; }
  .bp-burger { display: none; }
  .bp-header.is-open .bp-mobile { display: none; }
}

/* Hero */
.bp-hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 80px;
  text-align: center;
}

.bp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 900px at 50% -120px, rgba(245, 158, 11, 0.16), rgba(249, 115, 22, 0.06) 50%, transparent 80%);
  pointer-events: none;
}

.bp-hero .bp-wrap { position: relative; z-index: 1; }

.bp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(30, 27, 23, 0.9);
  border: 1px solid rgba(120, 53, 15, 0.5);
  color: #d6d3d1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.bp-hero h1 {
  margin: 0 auto 20px;
  max-width: 820px;
  font-family: var(--bp-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
}

.bp-grad {
  background: linear-gradient(90deg, #fcd34d, #f59e0b, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bp-lead {
  margin: 0 auto 40px;
  max-width: 640px;
  color: #a8a29e;
  font-size: 18px;
  line-height: 1.6;
}

/* Search card */
.bp-search {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: left;
  background: rgba(25, 22, 19, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(120, 53, 15, 0.4);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.55);
}

.bp-tabs {
  display: flex;
  gap: 8px;
  padding: 0 8px 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(41, 37, 36, 0.8);
  overflow-x: auto;
}

.bp-tab {
  appearance: none;
  border: 0;
  background: transparent;
  color: #a8a29e;
  font: 600 11px/1 var(--bp-sans);
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.bp-tab.is-on {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #1c1917;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.bp-tab:hover:not(.is-on) { color: #fff; background: rgba(41, 37, 36, 0.7); }

.bp-search-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bp-field {
  position: relative;
  flex: 1;
}

.bp-field .bp-ico {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #a8a29e;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

.bp-input,
.bp-select {
  width: 100%;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #292524;
  background: rgba(17, 15, 13, 0.8);
  color: #f5f5f4;
  font: 400 15px/1.4 var(--bp-sans);
  padding: 0 14px;
  outline: none;
}

.bp-field .bp-input { padding-left: 42px; }

.bp-input::placeholder { color: #78716c; }

.bp-input:focus,
.bp-select:focus {
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.bp-select { color: #e7e5e4; }

.bp-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.bp-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #a8a29e;
  font-size: 13px;
  padding: 4px 4px 0;
}

.bp-check input { margin-top: 3px; accent-color: var(--bp-primary); }

.bp-check a { color: #d6d3d1; }

.bp-search .bp-btn-primary {
  height: 48px;
  padding: 0 28px;
  border-radius: 12px;
  width: 100%;
  font-size: 13px;
}

.bp-micros {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 8px 2px;
  border-top: 1px solid rgba(41, 37, 36, 0.8);
  color: #a8a29e;
  font-size: 11px;
}

.bp-micros span { display: inline-flex; align-items: center; gap: 6px; }
.bp-micros .bp-ico { color: var(--bp-primary); width: 14px; height: 14px; }

@media (min-width: 640px) {
  .bp-hero { padding: 80px 0 120px; }
  .bp-search-row { flex-direction: row; align-items: stretch; }
  .bp-search .bp-btn-primary { width: auto; flex-shrink: 0; }
  .bp-grid-2 { grid-template-columns: 1fr 1fr; }
}

/* Stats */
.bp-stats {
  border-top: 1px solid rgba(69, 26, 3, 0.4);
  border-bottom: 1px solid rgba(69, 26, 3, 0.4);
  background:
    radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.08) 0, transparent 50%),
    radial-gradient(at 100% 100%, rgba(234, 88, 12, 0.07) 0, transparent 50%),
    rgba(18, 16, 14, 0.8);
  padding: 40px 0;
}

.bp-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: center;
}

.bp-stat-n {
  display: block;
  font-family: var(--bp-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  letter-spacing: -0.03em;
  color: #fff;
}

.bp-stat-n.is-grad { background: linear-gradient(90deg, #fcd34d, #f59e0b, #fb923c); -webkit-background-clip: text; background-clip: text; color: transparent; }

.bp-stat-l {
  display: block;
  margin-top: 4px;
  color: #a8a29e;
  font-size: 13px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .bp-stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Services */
.bp-section { padding: 80px 0; }
.bp-section-dark { background: #100f0d; }
.bp-section-darker { background: #0c0b0a; border-top: 1px solid rgba(69, 26, 3, 0.4); border-bottom: 1px solid rgba(69, 26, 3, 0.4); }

.bp-section-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.bp-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(69, 26, 3, 0.8);
  border: 1px solid rgba(146, 64, 14, 0.5);
  color: #fcd34d;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 10px;
}

.bp-section h2 {
  margin: 0;
  font-family: var(--bp-display);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #fff;
}

.bp-section-head p { margin: 8px 0 0; color: #a8a29e; max-width: 520px; }

.bp-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
}

.bp-more:hover { color: #fcd34d; }

.bp-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bp-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(24, 21, 18, 0.75);
  border: 1px solid #292524;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  transition: transform .18s ease, border-color .18s ease;
}

.bp-card:hover { transform: translateY(-4px); border-color: rgba(245, 158, 11, 0.5); color: inherit; }

.bp-card.is-pop {
  border: 2px solid rgba(245, 158, 11, 0.4);
  background: linear-gradient(180deg, rgba(34, 28, 22, 0.9), rgba(24, 21, 18, 0.8));
}

.bp-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }

.bp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(41, 37, 36, 0.9);
  color: var(--bp-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bp-card:hover .bp-icon {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #1c1917;
}

.bp-icon.is-on {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #1c1917;
}

.bp-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid #44403c;
  color: #d6d3d1;
  background: #292524;
}

.bp-tag-green { background: rgba(6, 78, 59, 0.8); color: #6ee7b7; border-color: rgba(6, 95, 70, 0.6); }
.bp-tag-amber { background: rgba(69, 26, 3, 0.9); color: #fcd34d; border-color: rgba(180, 83, 9, 0.6); }

.bp-card h3 {
  margin: 0 0 8px;
  font-family: var(--bp-display);
  font-size: 22px;
  color: #fff;
}

.bp-card:hover h3 { color: var(--bp-primary); }

.bp-card p { margin: 0 0 20px; color: #a8a29e; font-size: 15px; }

.bp-card-foot {
  padding-top: 16px;
  border-top: 1px solid rgba(41, 37, 36, 0.8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a8a29e;
  font-size: 12px;
}

.bp-card-foot .bp-ico { color: var(--bp-primary); }

.bp-wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(90deg, rgba(28, 24, 20, 0.95), rgba(24, 21, 18, 0.8) 50%, rgba(39, 29, 21, 0.5));
  border: 1px solid #292524;
  border-radius: 16px;
  padding: 24px;
}

.bp-wide-left { display: flex; gap: 20px; align-items: flex-start; }
.bp-wide h3 { margin: 6px 0 0; color: #fff; font-size: 22px; }
.bp-wide p { margin: 6px 0 0; color: #a8a29e; max-width: 640px; }
.bp-wide .bp-btn { align-self: flex-start; }

@media (min-width: 768px) {
  .bp-section-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .bp-bento { grid-template-columns: 1fr 1fr; }
  .bp-wide { flex-direction: row; align-items: center; justify-content: space-between; padding: 32px; }
}

@media (min-width: 1024px) {
  .bp-bento { grid-template-columns: 1fr 1fr 1fr; }
}

/* Process */
.bp-center { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.bp-center .bp-kicker { background: none; border: 0; padding: 0; text-transform: uppercase; letter-spacing: 0.12em; }

.bp-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.bp-step {
  background: rgba(24, 21, 18, 0.75);
  border: 1px solid #292524;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.bp-step:hover { border-color: rgba(245, 158, 11, 0.4); }

.bp-num {
  display: block;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 2.2rem;
  font-weight: 800;
  color: #44403c;
  line-height: 1;
  margin-bottom: 16px;
}

.bp-step:hover .bp-num { color: rgba(245, 158, 11, 0.4); }

.bp-step h3 { margin: 0 0 8px; color: #fff; font-size: 18px; }
.bp-step p { margin: 0; color: #a8a29e; font-size: 13.5px; line-height: 1.6; }

.bp-step-foot {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(41, 37, 36, 0.8);
  color: var(--bp-primary);
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) { .bp-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .bp-steps { grid-template-columns: repeat(4, 1fr); } }

/* CTA */
.bp-cta-box {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(120, 53, 15, 0.4);
  background: linear-gradient(90deg, #1d1915, #1a1613 50%, #2b1f14);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
}

.bp-cta-box::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.bp-cta-box > * { position: relative; z-index: 1; }
.bp-cta-box h2 { margin: 8px 0; color: #fff; }
.bp-cta-box p { margin: 0; color: #a8a29e; }
.bp-cta-actions { display: flex; flex-direction: column; gap: 10px; }

@media (min-width: 768px) {
  .bp-cta-box { flex-direction: row; align-items: center; justify-content: space-between; padding: 48px; }
  .bp-cta-actions { flex-direction: row; }
  .bp-cta-actions .bp-btn { min-width: 180px; padding: 14px 24px; }
}

/* Footer */
.bp-footer {
  background: #080807 !important;
  border-top: 1px solid rgba(69, 26, 3, 0.4);
  color: #a8a29e;
  padding: 64px 0 32px;
}

.bp-foot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(41, 37, 36, 0.8);
}

.bp-footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-family: var(--bp-display);
  font-size: 16px;
}

.bp-footer ul { list-style: none; margin: 0; padding: 0; }
.bp-footer li { margin: 0 0 10px; }
.bp-footer a { color: #a8a29e; text-decoration: none; font-size: 13.5px; }
.bp-footer a:hover { color: var(--bp-primary); }

.bp-legal-box {
  margin-top: 24px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(25, 21, 18, 0.9);
  border: 1px solid #292524;
}

.bp-legal-box strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--bp-primary);
  font-size: 13px;
  margin-bottom: 6px;
}

.bp-legal-box p { margin: 0; font-size: 11px; color: #a8a29e; }

.bp-foot-bottom {
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 13px;
}

.bp-wordmark { color: #fff; font-family: var(--bp-display); font-size: 22px; }
.bp-wordmark b { font-weight: 800; }
.bp-wordmark span { font-weight: 300; }

@media (min-width: 640px) {
  .bp-foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .bp-foot-grid { grid-template-columns: 1.1fr 1.3fr 1.2fr 1fr; }
  .bp-foot-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* Basket pill (kept from old theme) */
body.bp-home #sepet a,
body.bp-inner #sepet a {
  background: linear-gradient(90deg, #f59e0b, #ea580c) !important;
  color: #1c1917 !important;
}

/* Search loader overlay */
#search-loader-container {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 8, 7, 0.72);
}

#search-loader-container .search-loader-inner {
  min-height: 100%;
}

.bp-loader-card {
  background: #191613;
  border: 1px solid rgba(120, 53, 15, 0.45);
  color: #f5ede4;
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.bp-spinner {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(245, 158, 11, 0.2);
  border-top-color: #f59e0b;
  animation: bp-spin .7s linear infinite;
}

@keyframes bp-spin { to { transform: rotate(360deg); } }

.grecaptcha-badge { visibility: hidden; }

body.bp-inner .bp-footer { margin-top: 0; }

/* ===== Inner pages: same dark shell over Bootstrap / old markup ===== */
.bp-page-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 36px;
  background: var(--bp-bg);
}
.bp-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 800px at 50% -80px, rgba(245, 158, 11, 0.16), rgba(249, 115, 22, 0.05) 50%, transparent 80%);
  pointer-events: none;
}
.bp-page-hero .bp-wrap { position: relative; z-index: 1; }
.bp-page-hero h1 {
  margin: 0;
  font-family: var(--bp-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  color: #fff !important;
  line-height: 1.2;
}
.bp-page-lead { margin: 10px 0 0; color: var(--bp-muted); max-width: 640px; }
.bp-page-hero-slim { padding: 12px 0; }

body.bp-inner #header.dtr-section,
body.bp-inner .dtr-section-with-bg,
body.bp-inner .dtr-hero-section-top-padding {
  background-image: none !important;
  background-color: var(--bp-bg) !important;
  background: radial-gradient(circle 800px at 50% -80px, rgba(245, 158, 11, 0.16), transparent 70%), var(--bp-bg) !important;
}
body.bp-inner .dtr-hero-section-top-padding { padding-top: 40px !important; padding-bottom: 28px !important; }
body.bp-inner .dtr-overlay,
body.bp-inner .dtr-overlay-dark { display: none !important; }
body.bp-inner #header h1,
body.bp-inner #header h4,
body.bp-inner #header .text-white { color: #fff !important; }

body.bp-inner .bp-main { padding-bottom: 48px; }
body.bp-inner .bp-main h1,
body.bp-inner .bp-main h2,
body.bp-inner .bp-main h3,
body.bp-inner .bp-main h4,
body.bp-inner .bp-main h5,
body.bp-inner .bp-main h6,
body.bp-inner .dtr-intro-heading {
  color: #fff;
  font-family: var(--bp-display);
}
body.bp-inner .bp-main p,
body.bp-inner .dtr-intro-content,
body.bp-inner .bp-main li { color: var(--bp-muted); }
body.bp-inner .bp-main strong,
body.bp-inner .bp-main b { color: var(--bp-ink); }
body.bp-inner .dtr-intro-subheading { color: var(--bp-primary) !important; }
body.bp-inner .dtr-intro-subheading::after { background: var(--bp-primary) !important; }

body.bp-inner .bp-main a:not(.btn):not(.bp-btn):not(.page-link):not(.accordion-btn-link):not(.close) {
  color: #fbbf24;
}
body.bp-inner .bp-main a:not(.btn):not(.bp-btn):hover { color: #fcd34d; }

body.bp-inner .text-muted { color: var(--bp-muted) !important; }
body.bp-inner .text-dark,
body.bp-inner .color-dark { color: var(--bp-ink) !important; }
body.bp-inner .color-green,
body.bp-inner .text-success { color: #34d399 !important; }
body.bp-inner .color-yellow { color: var(--bp-primary) !important; }
body.bp-inner .bg-yellow { background-color: var(--bp-primary) !important; }
body.bp-inner .bg-green { background-color: #059669 !important; }
body.bp-inner .bg-price-gray { background-color: rgba(36, 32, 28, 0.9) !important; }
body.bp-inner .bg-white { background-color: rgba(24, 21, 18, 0.95) !important; color: inherit !important; }

body.bp-inner .card,
body.bp-inner .modal-content {
  background: rgba(24, 21, 18, 0.88) !important;
  border: 1px solid #292524 !important;
  color: var(--bp-ink);
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}
body.bp-inner .card-header,
body.bp-inner .card-footer {
  background: rgba(17, 15, 13, 0.6) !important;
  border-color: #292524 !important;
  color: #fff;
}
body.bp-inner .card-body { color: var(--bp-ink); }
body.bp-inner .list-group-item {
  background: transparent !important;
  border-color: #292524 !important;
  color: var(--bp-ink);
}
body.bp-inner .list-group-item a { color: #e7e5e4 !important; }
body.bp-inner .list-group-item a:hover { color: var(--bp-primary) !important; }

body.bp-inner .form-control,
body.bp-inner .form-select,
body.bp-inner select.form-control,
body.bp-inner textarea.form-control,
body.bp-inner input.form-control,
body.bp-inner input[type=text],
body.bp-inner input[type=email],
body.bp-inner input[type=password],
body.bp-inner input[type=number],
body.bp-inner input[type=tel],
body.bp-inner textarea {
  background: rgba(17, 15, 13, 0.85) !important;
  border: 1px solid #292524 !important;
  color: #f5f5f4 !important;
  border-radius: 10px;
  box-shadow: none !important;
}
body.bp-inner .form-control:focus,
body.bp-inner input:focus,
body.bp-inner textarea:focus,
body.bp-inner select:focus {
  border-color: #fbbf24 !important;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2) !important;
  color: #fff !important;
}
body.bp-inner .form-control::placeholder,
body.bp-inner input::placeholder,
body.bp-inner textarea::placeholder { color: #78716c !important; }
body.bp-inner label,
body.bp-inner .col-form-label,
body.bp-inner .form-check-label { color: #d6d3d1; }
body.bp-inner .form-check-input {
  background-color: #1c1916;
  border-color: #544c41;
  accent-color: var(--bp-primary);
}

body.bp-inner .btn-warning,
body.bp-inner .btn-success,
body.bp-inner .btn-primary,
body.bp-inner .btn-flat-red,
body.bp-inner .dtr-btn.btn-success {
  background: linear-gradient(90deg, #f59e0b, #d97706 50%, #ea580c) !important;
  border: 0 !important;
  color: #1c1917 !important;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.2);
}
body.bp-inner .btn-warning:hover,
body.bp-inner .btn-success:hover,
body.bp-inner .btn-primary:hover {
  filter: brightness(1.08);
  color: #1c1917 !important;
}
body.bp-inner .btn-outline-warning {
  border: 1px solid rgba(245, 158, 11, 0.5) !important;
  color: #fbbf24 !important;
  background: transparent !important;
  border-radius: 10px;
}
body.bp-inner .btn-link { color: #fbbf24 !important; }
body.bp-inner .btn-secondary,
body.bp-inner .btn-light {
  background: #292524 !important;
  border-color: #44403c !important;
  color: #f5ede4 !important;
}

body.bp-inner .alert-warning {
  background: rgba(69, 26, 3, 0.55);
  border-color: rgba(180, 83, 9, 0.5);
  color: #fcd34d;
}
body.bp-inner .alert-danger {
  background: rgba(127, 29, 29, 0.45);
  border-color: rgba(185, 28, 28, 0.5);
  color: #fecaca;
}
body.bp-inner .alert-success {
  background: rgba(6, 78, 59, 0.45);
  border-color: rgba(4, 120, 87, 0.5);
  color: #6ee7b7;
}
body.bp-inner .alert-info {
  background: rgba(30, 27, 23, 0.8);
  border-color: #44403c;
  color: #e7e5e4;
}

body.bp-inner .table {
  color: var(--bp-ink);
  background: transparent;
}
body.bp-inner .table td,
body.bp-inner .table th,
body.bp-inner .table thead th {
  border-color: #292524 !important;
  color: var(--bp-ink);
  background: transparent;
}
body.bp-inner .table-striped tbody tr:nth-of-type(odd) { background: rgba(255, 255, 255, 0.03); }
body.bp-inner .table thead th { color: #fff; }

body.bp-inner .page-link {
  background: #191613;
  border-color: #292524;
  color: #e7e5e4;
}
body.bp-inner .page-item.active .page-link {
  background: var(--bp-primary);
  border-color: var(--bp-primary);
  color: #1c1917;
}
body.bp-inner .page-item.disabled .page-link {
  background: #151311;
  border-color: #292524;
  color: #78716c;
}

body.bp-inner .modal-header,
body.bp-inner .modal-footer { border-color: #292524; }
body.bp-inner .modal-title { color: #fff; }
body.bp-inner .close,
body.bp-inner .modal .close { color: #fff; text-shadow: none; opacity: 0.8; }

body.bp-inner .dtr-contact-box {
  background: rgba(24, 21, 18, 0.75);
  border: 1px solid #292524;
  border-radius: 16px;
  padding: 18px 16px;
  color: var(--bp-ink);
}
body.bp-inner .dtr-contact-box i { color: var(--bp-primary); }
body.bp-inner a:hover .dtr-contact-box { border-color: rgba(245, 158, 11, 0.5); }
body.bp-inner .dtr-border-left { border-color: #292524 !important; }

body.bp-inner .card-radio .form-check-label {
  background: rgba(24, 21, 18, 0.85) !important;
  border: 1px solid #292524 !important;
  border-radius: 16px !important;
  color: var(--bp-ink);
}
body.bp-inner .card-radio .form-check-input:checked + .form-check-label {
  border-color: rgba(245, 158, 11, 0.7) !important;
  background: rgba(69, 26, 3, 0.35) !important;
}

body.bp-inner .dtr-accordion .card { margin-bottom: 10px; overflow: hidden; }
body.bp-inner .accordion-btn-link,
body.bp-inner .dtr-btn.accordion-btn-link {
  background: transparent !important;
  color: #fff !important;
  box-shadow: none !important;
  width: 100%;
  text-align: left;
  font-weight: 600;
}
body.bp-inner .service-card { height: 100%; transition: transform .18s ease, border-color .18s ease; }
body.bp-inner .service-card:hover { transform: translateY(-4px); border-color: rgba(245, 158, 11, 0.5) !important; }
body.bp-inner .dtr-img-feature-heading { color: #fff !important; }
body.bp-inner .dtr-img-feature i { color: #1c1917 !important; }

body.bp-inner .bp-main img { max-width: 100%; height: auto; }
body.bp-inner article img { border-radius: 12px; }
body.bp-inner .img-holder img { border-radius: 16px; border: 1px solid #292524; }

body.bp-inner .dropdown-menu {
  background: #191613;
  border: 1px solid rgba(120, 53, 15, 0.4);
}
body.bp-inner .dropdown-item { color: #e7e5e4; }
body.bp-inner .dropdown-item:hover { background: #292524; color: var(--bp-primary); }

body.bp-inner hr { border-color: #292524; }
body.bp-inner .border,
body.bp-inner .border-top,
body.bp-inner .border-bottom { border-color: #292524 !important; }

body.bp-inner .nav-tabs { border-color: #292524; }
body.bp-inner .nav-tabs .nav-link { color: var(--bp-muted); }
body.bp-inner .nav-tabs .nav-link.active {
  background: #191613;
  border-color: #292524 #292524 transparent;
  color: var(--bp-primary);
}

body.bp-inner .pagination { justify-content: center; }
body.bp-inner .invalid-feedback { color: #fca5a5; }
body.bp-inner form label.error { color: #fca5a5 !important; }

body.bp-inner .dtr-counter { color: var(--bp-ink); }
body.bp-inner .dtr-count-text { color: var(--bp-muted); }

body.bp-inner #search-result .card { margin-bottom: 12px; }
body.bp-inner #search-result .card-header { color: #fff; }

body.bp-inner .bg-price-gray p,
body.bp-inner .bg-price-gray span { color: var(--bp-muted); }

@media (max-width: 767px) {
  body.bp-inner .dtr-hero-section-top-padding { padding-top: 28px !important; }
}

body.bp-inner .bg-light-grey,
body.bp-inner .about-banner-section,
body.bp-inner .process-bg,
body.bp-inner .radial-element {
  background: transparent !important;
  background-image: none !important;
}
body.bp-inner .dtr-post-item {
  background: rgba(24, 21, 18, 0.8);
  border: 1px solid #292524;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  padding-bottom: 8px;
}
body.bp-inner .dtr-post-img img { width: 100%; display: block; }
body.bp-inner .dtr-post-content { padding: 16px; }
body.bp-inner .dtr-post-title a { color: #fff !important; }
body.bp-inner .dtr-post-excerpt { color: var(--bp-muted) !important; }
body.bp-inner .dtr-testimonial {
  border-radius: 16px !important;
  padding: 20px;
  border: 1px solid #292524;
}
body.bp-inner .dtr-client-name { color: #fff !important; }
body.bp-inner .dtr-dark-bg-intro .dtr-intro-heading,
body.bp-inner .dtr-dark-bg-intro .dtr-intro-content,
body.bp-inner .color-white-muted { color: var(--bp-muted) !important; }
body.bp-inner #app { color: var(--bp-ink); }
body.bp-inner #app .card,
body.bp-inner #app .bg-white { background: rgba(24, 21, 18, 0.9) !important; }
body.bp-inner .instagram_section,
body.bp-inner [class*="instagram"] { color: var(--bp-ink); }

body.bp-inner [style*="background-color: #eaf8eb"] {
  background: rgba(6, 78, 59, 0.35) !important;
  border-color: rgba(16, 185, 129, 0.4) !important;
  color: #d1fae5 !important;
  border-radius: 16px;
}
body.bp-inner [style*="background-color: #eaf8eb"] h2,
body.bp-inner [style*="background-color: #eaf8eb"] p { color: #ecfdf5 !important; }
