/* Bongz Tech — premium marketing site (2026) */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Outfit:wght@400;500;600;700&display=swap");

:root {
  --primary-color: #fb3a40;
  --bt-red: #fb3a40;
  --bt-red-dark: #e02e34;
  --bt-red-soft: rgba(251, 58, 64, 0.12);
  --bt-ink: #12151a;
  --bt-ink-mid: #2a3038;
  --bt-slate: #5c6570;
  --bt-muted: #8b949e;
  --bt-cream: #f4f5f7;
  --bt-white: #ffffff;
  --bt-border: rgba(18, 21, 26, 0.08);
  --bt-shadow: 0 12px 40px rgba(18, 21, 26, 0.08);
  --bt-shadow-lg: 0 24px 60px rgba(18, 21, 26, 0.14);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --container: min(92%, 1180px);
  --nav-h: 78px;
  --section-y: clamp(4rem, 7vw, 6.5rem);
  --radius: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body.bt-site {
  font-family: var(--font-body);
  color: var(--bt-ink);
  background: var(--bt-cream);
  line-height: 1.65;
  padding-bottom: 0;
  overflow-x: hidden;
}

body.bt-site h1,
body.bt-site h2,
body.bt-site h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.bt-container {
  width: var(--container);
  margin-inline: auto;
}

.bt-skip {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
}
.bt-skip:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.6rem 1rem;
  background: var(--bt-red);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* ── Header ── */
body.bt-site .header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bt-border);
  box-shadow: none;
  transition: box-shadow 0.3s var(--ease);
}
body.bt-site .header.is-scrolled {
  box-shadow: 0 4px 24px rgba(18, 21, 26, 0.06);
}
body.bt-site .navbar {
  max-width: 1240px;
  padding: 0.85rem 4%;
  gap: 1rem;
}
body.bt-site .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0;
}
body.bt-site .logo-img {
  height: 44px;
  width: auto;
  display: block;
}
body.bt-site .logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}
body.bt-site .logo-text .logo-first {
  color: var(--bt-red);
}
body.bt-site .logo-text .logo-second {
  color: var(--bt-ink);
}
body.bt-site .nav-links {
  gap: 0.15rem;
  align-items: center;
}
body.bt-site .nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bt-slate);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
body.bt-site .nav-links a:hover,
body.bt-site .nav-links a.active {
  color: var(--bt-ink);
  background: var(--bt-red-soft);
}
body.bt-site .nav-links .nav-cta-link a,
body.bt-site .nav-links li:last-child a[href="/contact"] {
  background: var(--bt-ink);
  color: var(--bt-white) !important;
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  margin-left: 0.35rem;
}
body.bt-site .nav-links .nav-cta-link a:hover,
body.bt-site .nav-links li:last-child a[href="/contact"]:hover {
  background: var(--bt-red);
}
body.bt-site .mobile-menu .bar {
  background: var(--bt-ink);
  height: 2px;
  border-radius: 2px;
}
body.bt-site .nav-quote-btn {
  display: none;
}
@media (min-width: 1024px) {
  body.bt-site .nav-quote-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.35rem;
    background: var(--bt-red);
    color: #fff !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
  }
  body.bt-site .nav-quote-btn:hover {
    background: var(--bt-red-dark);
    transform: translateY(-1px);
  }
}

/* ── Hero slider ── */
.bt-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  max-height: 920px;
  margin-top: var(--nav-h);
  overflow: hidden;
}
.bt-hero-track {
  display: flex;
  height: 100%;
  min-height: inherit;
  transition: transform 0.75s var(--ease);
  will-change: transform;
}
.bt-hero-slide {
  flex: 0 0 100%;
  min-height: inherit;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.bt-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(18, 21, 26, 0.88) 0%,
    rgba(18, 21, 26, 0.55) 48%,
    rgba(251, 58, 64, 0.15) 100%
  );
}
.bt-hero-slide--1 {
  background-image: url("../images/heroes/hero-slide-1.jpg");
}
.bt-hero-slide--2 {
  background-image: url("../images/heroes/hero-slide-2.jpg");
}
.bt-hero-slide--3 {
  background-image: url("../images/heroes/hero-slide-3.jpg");
}
.bt-hero-slide--4 {
  background-image: url("../images/coding.jpg");
}
.bt-hero-inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding: 4rem 0 6rem;
  max-width: 680px;
}
.bt-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
}
.bt-hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bt-red);
}
.bt-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
}
.bt-hero h1 em {
  font-style: normal;
  color: var(--bt-red);
}
.bt-hero-lead {
  font-size: clamp(1rem, 2vw, 1.12rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.bt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.bt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.9rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
  cursor: pointer;
}
.bt-btn--primary {
  background: var(--bt-red);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: var(--bt-red);
}
.bt-btn--primary:hover,
.bt-btn--primary:focus,
.bt-btn--primary:active {
  background: var(--bt-red-dark);
  border-color: var(--bt-red-dark);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: translateY(-2px);
}
.bt-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}
.bt-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}
.bt-btn--dark {
  background: var(--bt-ink);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: var(--bt-ink);
}
.bt-btn--dark:hover,
.bt-btn--dark:focus,
.bt-btn--dark:active {
  background: var(--bt-ink-mid);
  border-color: var(--bt-ink-mid);
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: translateY(-2px);
}
.bt-hero-dots {
  position: absolute;
  bottom: 2rem;
  left: max(4%, calc((100% - 1180px) / 2));
  display: flex;
  gap: 8px;
  z-index: 3;
}
.bt-hero-dot {
  width: 32px;
  height: 3px;
  border: none;
  padding: 0;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.3s, background 0.3s;
}
.bt-hero-dot.is-active {
  width: 48px;
  background: var(--bt-red);
}
.bt-hero-arrows {
  position: absolute;
  bottom: 2rem;
  right: max(4%, calc((100% - 1180px) / 2));
  display: flex;
  gap: 8px;
  z-index: 3;
}
.bt-hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s;
}
.bt-hero-arrow:hover {
  background: rgba(255, 255, 255, 0.22);
}
.bt-hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  display: flex;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top-left-radius: var(--radius-lg);
}
.bt-hero-stat {
  padding: 1.15rem 1.75rem;
  border-left: 1px solid var(--bt-border);
  text-align: center;
}
.bt-hero-stat:first-child {
  border-left: none;
}
.bt-hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bt-red);
}
.bt-hero-stat span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--bt-slate);
}

/* Marquee */
.bt-marquee {
  background: var(--bt-ink);
  overflow: hidden;
  padding: 0.85rem 0;
}
.bt-marquee-inner {
  display: inline-flex;
  animation: bt-marquee 32s linear infinite;
}
.bt-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}
.bt-marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bt-red);
  opacity: 0.9;
}
@keyframes bt-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Sections */
.bt-section {
  padding-block: var(--section-y);
}
.bt-section--white {
  background: var(--bt-white);
}
.bt-section--cream {
  background: var(--bt-cream);
}
.bt-section--dark {
  background: var(--bt-ink);
  color: rgba(255, 255, 255, 0.85);
}
.bt-section--dark h2,
.bt-section--dark h3 {
  color: #fff;
}
.bt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bt-red);
  margin-bottom: 0.85rem;
}
.bt-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--bt-red);
}
.bt-section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  color: var(--bt-ink);
  margin-bottom: 1rem;
}
.bt-section-title em {
  font-style: normal;
  color: var(--bt-red);
}
.bt-section-lead {
  font-size: 1.02rem;
  color: var(--bt-slate);
  max-width: 620px;
  line-height: 1.75;
}
.bt-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

/* Trust bar */
.bt-trust {
  background: var(--bt-white);
  border-bottom: 1px solid var(--bt-border);
  padding: 1.25rem 0;
}
.bt-trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.bt-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bt-ink-mid);
}
.bt-trust-item svg {
  color: var(--bt-red);
  flex-shrink: 0;
}

/* Intro split */
.bt-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.bt-intro-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--bt-shadow-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.bt-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0 1.75rem;
}
.bt-pill {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--bt-red-soft);
  color: var(--bt-ink-mid);
  border: 1px solid rgba(251, 58, 64, 0.2);
}

/* Service / portfolio cards */
.bt-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.bt-card {
  background: var(--bt-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--bt-border);
  box-shadow: var(--bt-shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.bt-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bt-shadow-lg);
}
.bt-card-media {
  height: 200px;
  overflow: hidden;
  background: var(--bt-cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bt-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.bt-card:hover .bt-card-media img {
  transform: scale(1.04);
}
.bt-card-media--splash {
  background: var(--bt-ink);
}
.bt-card-media--icon {
  background: linear-gradient(145deg, #fff 0%, var(--bt-cream) 100%);
}
.bt-card-media--icon i {
  font-size: 3rem;
  color: var(--bt-red);
}
.bt-card-body {
  padding: 1.35rem 1.5rem 1.5rem;
  border-top: 3px solid var(--bt-red);
}
.bt-card-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--bt-ink);
}
.bt-card-body p {
  font-size: 0.92rem;
  color: var(--bt-slate);
  margin: 0;
  line-height: 1.65;
}
.bt-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--bt-red);
  text-decoration: none;
}
.bt-card-link:hover {
  gap: 10px;
}

/* Process */
.bt-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.bt-step {
  padding: 1.5rem;
  background: var(--bt-white);
  border-radius: var(--radius);
  border: 1px solid var(--bt-border);
  position: relative;
}
.bt-step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--bt-red-soft);
  color: rgba(251, 58, 64, 0.35);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.bt-step h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.bt-step p {
  font-size: 0.88rem;
  color: var(--bt-slate);
  margin: 0;
}

/* CTA band */
.bt-cta-band {
  background: linear-gradient(135deg, var(--bt-ink) 0%, var(--bt-ink-mid) 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  position: relative;
  overflow: hidden;
}
.bt-cta-band::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(circle, rgba(251, 58, 64, 0.25) 0%, transparent 70%);
  pointer-events: none;
}
.bt-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  z-index: 1;
}
.bt-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  color: #fff;
  max-width: 520px;
}
.bt-cta-inner h2 em {
  font-style: normal;
  color: var(--bt-red);
}

/* Legacy alias — always use dark gradient band, never solid red blocks */
body.bt-site .final-cta-conversion.bt-cta-band {
  margin-top: 0;
}

/* Page hero (inner pages) */
.bt-page-hero {
  margin-top: var(--nav-h);
  padding: clamp(5rem, 12vw, 7.5rem) 0 clamp(3rem, 6vw, 4rem);
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}
.bt-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(18, 21, 26, 0.9), rgba(18, 21, 26, 0.65));
}
.bt-page-hero > .bt-container {
  position: relative;
  z-index: 2;
}
.bt-page-hero--about {
  background-image: url("../images/heroes/about-workspace.jpg");
}
.bt-page-hero--services {
  background-image: url("../images/heroes/services-tech.jpg");
}
.bt-page-hero--contact {
  background-image: url("../images/heroes/hero-slide-1.jpg");
}
.bt-page-hero--portfolio {
  background-image: url("../images/heroes/hero-slide-3.jpg");
}
.bt-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.75rem;
}
.bt-page-hero p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 560px;
  font-size: 1.05rem;
}

/* Reviews */
body.bt-site .reviews-section {
  background: var(--bt-white);
  padding: var(--section-y) 0;
}
body.bt-site .reviews-container {
  width: var(--container);
  margin-inline: auto;
}
body.bt-site .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--bt-ink);
}
body.bt-site .reviews-subtitle {
  text-align: center;
  color: var(--bt-slate);
  margin-bottom: 2rem;
}
body.bt-site .reviews-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
body.bt-site .review-card {
  background: var(--bt-cream);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: none;
}
body.bt-site .rating {
  color: #f5a623;
  margin: 0.5rem 0;
}

/* Footer */
body.bt-site .footer {
  background: var(--bt-ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 0;
  margin-top: 0;
}
body.bt-site .footer-content {
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
body.bt-site .footer-section h3 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.bt-site .footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
body.bt-site .footer-section a:not(.footer-social a) {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}
body.bt-site .footer-section a:not(.footer-social a):hover {
  color: var(--bt-red);
}
body.bt-site .footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem 1.25rem;
}
body.bt-site .footer-nav a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 500;
}
body.bt-site .footer-nav a:hover {
  color: #fff;
}
body.bt-site .footer-external {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}
body.bt-site .footer-external a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}
body.bt-site .footer-external a:hover {
  color: var(--bt-red);
}
body.bt-site .footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.25rem;
}
body.bt-site .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
body.bt-site .footer-social a:hover {
  background: var(--bt-red);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none !important;
}
body.bt-site .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
}
body.bt-site .footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
body.bt-site .footer-legal a:hover {
  color: var(--bt-red);
}
/* Legacy inline footer links — no pill styling */
body.bt-site .footer-section > p > a {
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  display: inline;
  margin: 0 0.35rem 0 0;
}
body.bt-site .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
body.bt-site .whatsapp-float {
  background: #25d366;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
}

/* Reveal */
.bt-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.bt-reveal.is-visible {
  opacity: 1;
  transform: none;
}
.bt-reveal[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
.bt-reveal[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
.bt-reveal[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

/* Guides nav */
.bt-guides {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bt-border);
  text-align: center;
}
.bt-guides p {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bt-muted);
  margin-bottom: 0.75rem;
}
.bt-guides nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  font-size: 0.88rem;
}
.bt-guides a {
  color: var(--bt-red);
  text-decoration: none;
  font-weight: 500;
}
.bt-guides a:hover {
  text-decoration: underline;
}

/* Hide legacy home hero when bt-site */
body.bt-site #home.hero,
body.bt-site .starter-highlights {
  display: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .bt-hero-stats {
    display: none;
  }
  .bt-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .bt-intro {
    grid-template-columns: 1fr;
  }
  body.bt-site .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  body.bt-site .navbar {
    padding: 0.75rem 4%;
  }
  .bt-hero-dots,
  .bt-hero-arrows {
    left: 4%;
    right: 4%;
  }
  .bt-hero-arrows {
    top: auto;
    bottom: 5.5rem;
  }
  .bt-process {
    grid-template-columns: 1fr;
  }
  body.bt-site .footer-content {
    grid-template-columns: 1fr;
  }
  .bt-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bt-marquee-inner,
  .bt-hero-track {
    animation: none;
    transition: none;
  }
  .bt-reveal {
    opacity: 1;
    transform: none;
  }
}

/* Inner pages — upgrade legacy .page-header */
body.bt-site .page-header {
  margin-top: var(--nav-h);
  padding: clamp(5rem, 11vw, 7rem) 4% clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  background-color: var(--bt-red);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
body.bt-site .page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(251, 58, 64, 0.92), rgba(224, 46, 52, 0.78));
}
body.bt-site.page-about .page-header::before,
body.bt-site.page-services .page-header::before,
body.bt-site.page-contact .page-header::before,
body.bt-site.page-portfolio .page-header::before,
body.bt-site.page-topics .page-header::before {
  background: linear-gradient(105deg, rgba(18, 21, 26, 0.9), rgba(18, 21, 26, 0.62));
}
body.bt-site .page-header h1,
body.bt-site .page-header p {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
body.bt-site .page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  color: #fff;
}
body.bt-site .page-header p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0.75rem auto 0;
}
body.bt-site.page-about .page-header {
  background-image: url("../images/heroes/about-workspace.jpg");
}
body.bt-site.page-services .page-header {
  background-image: url("../images/heroes/services-tech.jpg");
}
body.bt-site.page-contact .page-header {
  background-image: url("../images/heroes/hero-slide-1.jpg");
}
body.bt-site.page-portfolio .page-header {
  background-image: url("../images/heroes/hero-slide-3.jpg");
}
body.bt-site .about-section .section-title,
body.bt-site .services-page h2 {
  font-family: var(--font-display);
  color: var(--bt-ink);
}
body.bt-site .about-section .section-title,
body.bt-site .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--bt-ink);
  text-align: center;
  margin-bottom: 0.75rem;
}
body.bt-site .about-section .section-title em,
body.bt-site .section-title em {
  font-style: normal;
  color: var(--bt-red);
}
body.bt-site .section-subtitle {
  text-align: center;
  color: var(--bt-slate);
  font-size: 1.02rem;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

/* About — premium splash cards (no icon headers) */
body.bt-site .diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
body.bt-site .diff-card {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--bt-shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
body.bt-site .diff-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--bt-shadow-lg);
}
body.bt-site .diff-card .card-icon {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bt-white);
  margin: 0;
}
body.bt-site .diff-card .card-icon i {
  font-size: 3.5rem;
  color: var(--bt-red);
  transition: transform 0.3s var(--ease);
}
body.bt-site .diff-card:hover .card-icon i {
  transform: scale(1.06);
}
body.bt-site .diff-card .card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  border-top: 3px solid var(--bt-red);
}
body.bt-site .diff-card .card-body p.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bt-ink);
  margin: 0 0 0.5rem;
}
body.bt-site .diff-card .card-body p.card-desc {
  font-size: 0.92rem;
  color: var(--bt-slate);
  line-height: 1.65;
  margin: 0;
}
body.bt-site .stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
body.bt-site .stat-card {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--bt-shadow);
  border-top: 3px solid var(--bt-red);
}
body.bt-site .stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bt-red);
  display: block;
  margin-bottom: 0.35rem;
}
body.bt-site .stat-card .stat-label {
  font-size: 0.88rem;
  color: var(--bt-slate);
  line-height: 1.45;
}
@media (max-width: 900px) {
  body.bt-site .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  body.bt-site .stat-strip {
    grid-template-columns: 1fr;
  }
}

/* ── Footer logo ── */
body.bt-site .footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
  line-height: 0;
}
body.bt-site .footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
  object-fit: contain;
}
body.bt-site .footer-brand .logo-first,
body.bt-site .footer-brand .logo-second {
  display: none;
}

/* ── Service cards (services page & legacy) ── */
body.bt-site .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 4%;
}
body.bt-site .service-category {
  padding: var(--section-y) 0;
  margin: 0;
  background: var(--bt-cream);
  border: none;
  box-shadow: none;
}
body.bt-site .service-category:nth-child(even) {
  background: var(--bt-white);
}
body.bt-site .category-header {
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  padding: 0 4%;
  text-align: center;
}
body.bt-site .category-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--bt-ink);
  background: none;
  -webkit-text-fill-color: unset;
  margin-bottom: 0.75rem;
}
body.bt-site .category-title em {
  font-style: normal;
  color: var(--bt-red);
}
body.bt-site .category-subtitle {
  font-size: 1.02rem;
  color: var(--bt-slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.75;
}
body.bt-site .service-card {
  min-height: 0;
  contain: none;
  background: var(--bt-white);
  border: 1px solid rgba(251, 58, 64, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.5rem;
  box-shadow: var(--bt-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
body.bt-site .service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--bt-shadow-lg);
  border-color: rgba(251, 58, 64, 0.28);
}
body.bt-site .service-card-media {
  display: none !important;
}
body.bt-site .service-card .service-icon,
body.bt-site .service-card > i.service-icon {
  display: block;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--bt-red);
  margin: 0 0 1.25rem;
  transition: transform 0.35s var(--ease);
}
body.bt-site .service-card:hover .service-icon,
body.bt-site .service-card:hover > i.service-icon {
  transform: scale(1.08);
}
body.bt-site .service-card .pricing-tag,
body.bt-site .service-card > .pricing-tag {
  margin: 0 auto 0.75rem;
  background: var(--bt-red-soft);
  color: var(--bt-red-dark);
  border: 1px solid rgba(251, 58, 64, 0.22);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: none;
  display: inline-block;
}
body.bt-site .service-card .service-title,
body.bt-site .service-card h3.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--bt-ink);
  margin: 0 0 0.65rem;
  padding: 0 0 0.5rem;
  position: relative;
}
body.bt-site .service-card .service-title::after,
body.bt-site .service-card h3.service-title::after {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 3px;
  background: var(--bt-red);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
body.bt-site .service-card:hover .service-title::after,
body.bt-site .service-card:hover h3.service-title::after {
  width: 4rem;
}
body.bt-site .service-card .service-description,
body.bt-site .service-card > p.service-description {
  font-size: 0.92rem;
  color: var(--bt-slate);
  line-height: 1.65;
  margin: 0 0 1rem;
  flex-grow: 1;
  text-align: left;
}
body.bt-site .service-card .service-features {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  text-align: left;
  width: 100%;
  align-self: stretch;
}
body.bt-site .service-card .service-features li {
  font-size: 0.86rem;
  color: var(--bt-slate);
  padding-left: 1.1rem;
  position: relative;
  text-align: left;
}
body.bt-site .service-card .service-features li::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.55em !important;
  width: 6px !important;
  height: 6px !important;
  margin-right: 0 !important;
  border-radius: 50%;
  background: var(--bt-red);
  font-weight: normal !important;
}
@media (max-width: 768px) {
  body.bt-site .service-card .service-features li {
    padding-left: 1.1rem !important;
    text-align: left !important;
  }
  body.bt-site .service-card .service-features li::before {
    position: absolute !important;
    left: 0 !important;
  }
}
body.bt-site .service-card .service-cta,
body.bt-site .service-card a.service-cta {
  display: block;
  margin: auto 0 0;
  padding: 0.75rem 1.25rem;
  text-align: center;
  background: var(--bt-ink);
  color: #fff !important;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
body.bt-site .service-card .service-cta:hover {
  background: var(--bt-red);
  transform: translateY(-1px);
}

/* ── Contact form (premium) ── */
body.bt-site .contact-page {
  padding: var(--section-y) 4%;
  background: var(--bt-cream);
}
body.bt-site .contact-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
  padding: 0;
}
body.bt-site .contact-info .info-section h3,
body.bt-site .consultation-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--bt-ink);
  margin-bottom: 1rem;
}
body.bt-site .info-item {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.85rem;
}
body.bt-site .info-item i {
  color: var(--bt-red);
  margin-bottom: 0.35rem;
}
body.bt-site .info-item h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bt-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
body.bt-site .info-item p {
  color: var(--bt-ink-mid);
  font-size: 0.92rem;
  margin: 0;
}
body.bt-site .consultation-card {
  background: var(--bt-ink);
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-top: 1.25rem;
  border: none;
  box-shadow: var(--bt-shadow-lg);
}
body.bt-site .consultation-card h3 {
  color: #fff;
}
body.bt-site .consultation-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
body.bt-site .call-btn,
body.bt-site .whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: transform 0.2s, background 0.2s;
}
body.bt-site .call-btn {
  background: var(--bt-red);
  color: #fff;
}
body.bt-site .whatsapp-btn {
  background: #25d366;
  color: #fff;
}
body.bt-site .call-btn:hover,
body.bt-site .whatsapp-btn:hover {
  transform: translateY(-1px);
}
body.bt-site .business-hours h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
  margin: 1.25rem 0 0.5rem;
}
body.bt-site .contact-form {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--bt-shadow);
}
body.bt-site .form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bt-muted);
  margin-bottom: 0.45rem;
}
body.bt-site .form-control,
body.bt-site .form-group input,
body.bt-site .form-group textarea,
body.bt-site .form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--bt-border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bt-ink);
  background: var(--bt-cream);
  transition: border-color 0.2s, box-shadow 0.2s;
}
body.bt-site .form-control:focus,
body.bt-site .form-group input:focus,
body.bt-site .form-group textarea:focus {
  outline: none;
  border-color: var(--bt-red);
  box-shadow: 0 0 0 3px var(--bt-red-soft);
}
body.bt-site .submit-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.95rem 1.5rem;
  background: var(--bt-red);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
body.bt-site .submit-btn:hover {
  background: var(--bt-red-dark);
  transform: translateY(-1px);
}

/* ── CTAs ── */
body.bt-site .cta-button,
body.bt-site .cta-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.85rem 1.75rem !important;
  background: var(--bt-red) !important;
  color: #fff !important;
  border: 2px solid var(--bt-red) !important;
  border-radius: 999px !important;
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.03em;
  text-decoration: none !important;
  box-shadow: 0 4px 18px rgba(251, 58, 64, 0.28);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
}
body.bt-site .cta-button:hover,
body.bt-site .cta-btn:hover {
  background: var(--bt-red-dark) !important;
  border-color: var(--bt-red-dark) !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
}
body.bt-site .cta-button-secondary,
body.bt-site .cta-btn[style*="background:#fff"],
body.bt-site .cta-btn[style*="background: #fff"] {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: none;
}
body.bt-site .cta-strip {
  background: linear-gradient(135deg, var(--bt-ink) 0%, var(--bt-ink-mid) 100%);
  padding: clamp(3rem, 6vw, 4.5rem) 4%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.bt-site .cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(251, 58, 64, 0.2), transparent 55%);
  pointer-events: none;
}
body.bt-site .cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.75rem;
  position: relative;
}
body.bt-site .cta-strip p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  position: relative;
}
body.bt-site .cta-strip .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  position: relative;
}

/* ── Portfolio cards ── */
body.bt-site .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
body.bt-site .portfolio-item {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--bt-shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
body.bt-site .portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--bt-shadow-lg);
}
body.bt-site .portfolio-content {
  padding: 1.35rem 1.5rem 1.5rem;
  border-top: 3px solid var(--bt-red);
}
body.bt-site .portfolio-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--bt-ink);
  margin-bottom: 0.5rem;
}
body.bt-site .portfolio-content p {
  font-size: 0.9rem;
  color: var(--bt-slate);
  line-height: 1.65;
}
body.bt-site .portfolio-tech span {
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--bt-red-soft);
  color: var(--bt-ink-mid);
  border: 1px solid rgba(251, 58, 64, 0.15);
}
body.bt-site .portfolio-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  padding: 0.75rem 1.25rem !important;
  background: var(--bt-red) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(251, 58, 64, 0.25);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
body.bt-site .portfolio-link:hover,
body.bt-site .portfolio-link:focus {
  background: var(--bt-red-dark) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(251, 58, 64, 0.32);
}
body.bt-site .portfolio-link i {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 0.9rem;
  transition: transform 0.2s;
}
body.bt-site .portfolio-link:hover i {
  transform: translateX(3px);
}

/* ── About page inner blocks ── */
body.bt-site .steps .step-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--bt-border);
}
/* About page — timeline step circles (avoid red-on-red) */
body.bt-site .steps .step-num {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 50%;
  background: var(--bt-red);
  color: #fff !important;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(251, 58, 64, 0.3);
}
body.bt-site .step-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--bt-red);
  line-height: 1;
  min-width: 2.5rem;
}
body.bt-site .step-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bt-ink);
  margin-bottom: 0.35rem;
}
body.bt-site .step-content p {
  font-size: 0.92rem;
  color: var(--bt-slate);
  line-height: 1.7;
  margin: 0;
}
body.bt-site .mv-card {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--bt-shadow);
}
body.bt-site .cap-tag,
body.bt-site .ptag,
body.bt-site .pill {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--bt-red-soft);
  color: var(--bt-ink-mid);
  border: 1px solid rgba(251, 58, 64, 0.2);
}
body.bt-site .bbee-banner {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  box-shadow: var(--bt-shadow);
}
body.bt-site .bbee-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bt-red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.bt-site .bbee-icon i {
  color: var(--bt-red);
  font-size: 1.5rem;
}

/* Digital marketing — process step numbers */
body.bt-site .process-steps .step-number {
  width: 60px;
  height: 60px;
  background: var(--bt-red);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 auto 20px;
}

/* ── Landing / SEO pages (inline content) ── */
body.bt-site .services-detailed {
  padding: var(--section-y) 4% !important;
  background: var(--bt-cream) !important;
}
body.bt-site .services-detailed > div {
  max-width: 1180px !important;
  margin: 0 auto !important;
}
body.bt-site .services-detailed h2 {
  font-family: var(--font-display) !important;
  color: var(--bt-ink) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em;
}
body.bt-site .services-detailed p,
body.bt-site .services-detailed li {
  color: var(--bt-slate) !important;
}
/* Red / dark promo blocks — keep white text, do not flatten to grey */
body.bt-site .bt-on-dark,
body.bt-site .services-detailed .bt-on-dark {
  background: linear-gradient(135deg, var(--bt-ink) 0%, var(--bt-ink-mid) 100%) !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  box-shadow: var(--bt-shadow-lg) !important;
}
body.bt-site .services-detailed div[style*="background:var(--primary-color)"],
body.bt-site .services-detailed div[style*="background: var(--primary-color)"],
body.bt-site .services-detailed div[style*="background:rgb(251,58,64)"],
body.bt-site .services-detailed div[style*="background: rgb(251, 58, 64)"] {
  background: var(--bt-red) !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(251, 58, 64, 0.28) !important;
}
body.bt-site .services-detailed .bt-on-dark h2,
body.bt-site .bt-on-dark h2,
body.bt-site .bt-on-dark h3,
body.bt-site .bt-on-dark p,
body.bt-site .bt-on-dark li,
body.bt-site .bt-on-dark span,
body.bt-site .bt-on-dark strong,
body.bt-site .services-detailed div[style*="background:var(--primary-color)"] h2,
body.bt-site .services-detailed div[style*="background:var(--primary-color)"] p,
body.bt-site .services-detailed div[style*="background:var(--primary-color)"] span,
body.bt-site .services-detailed div[style*="background: rgb(251, 58, 64)"] h2,
body.bt-site .services-detailed div[style*="background: rgb(251, 58, 64)"] p,
body.bt-site .services-detailed div[style*="background: rgb(251, 58, 64)"] span,
body.bt-site .services-detailed div[style*="background:rgb(251,58,64)"] h2,
body.bt-site .services-detailed div[style*="background:rgb(251,58,64)"] p,
body.bt-site .services-detailed div[style*="background:rgb(251,58,64)"] span {
  color: #fff !important;
}
body.bt-site .bt-on-dark p,
body.bt-site .services-detailed div[style*="background:var(--primary-color)"] p,
body.bt-site .services-detailed div[style*="background: rgb(251, 58, 64)"] p,
body.bt-site .services-detailed div[style*="background:rgb(251,58,64)"] p {
  color: rgba(255, 255, 255, 0.92) !important;
}
/* Red CTA sections (often <section>, not <div>) */
body.bt-site .services-detailed section[style*="background:var(--primary-color)"],
body.bt-site .services-detailed section[style*="background: var(--primary-color)"],
body.bt-site .services-detailed section[style*="background:rgb(251,58,64)"],
body.bt-site .services-detailed section[style*="background: rgb(251, 58, 64)"] {
  background: var(--bt-red) !important;
  border-radius: var(--radius-lg) !important;
  border: none !important;
  box-shadow: 0 6px 20px rgba(251, 58, 64, 0.28) !important;
}
body.bt-site .services-detailed section[style*="background:var(--primary-color)"] h2,
body.bt-site .services-detailed section[style*="background: var(--primary-color)"] h2,
body.bt-site .services-detailed section[style*="background:rgb(251,58,64)"] h2,
body.bt-site .services-detailed section[style*="background: rgb(251, 58, 64)"] h2,
body.bt-site .services-detailed section[style*="background:var(--primary-color)"] p,
body.bt-site .services-detailed section[style*="background: var(--primary-color)"] p,
body.bt-site .services-detailed section[style*="background:rgb(251,58,64)"] p,
body.bt-site .services-detailed section[style*="background: rgb(251, 58, 64)"] p,
body.bt-site .services-detailed section[style*="background:var(--primary-color)"] span,
body.bt-site .services-detailed section[style*="background: var(--primary-color)"] span,
body.bt-site .services-detailed section[style*="background:rgb(251,58,64)"] span,
body.bt-site .services-detailed section[style*="background: rgb(251, 58, 64)"] span {
  color: #fff !important;
}
body.bt-site .services-detailed section[style*="background:var(--primary-color)"] p,
body.bt-site .services-detailed section[style*="background: var(--primary-color)"] p,
body.bt-site .services-detailed section[style*="background:rgb(251,58,64)"] p,
body.bt-site .services-detailed section[style*="background: rgb(251, 58, 64)"] p {
  color: rgba(255, 255, 255, 0.92) !important;
}
body.bt-site .services-detailed div[style*="border-radius:15px"]:not(.bt-on-dark):not([style*="background:var(--primary-color)"]):not([style*="background: var(--primary-color)"]):not([style*="background:rgb(251"]):not([style*="background: rgb(251"]):not([style*="background:#f5f6fa"]):not([style*="background: #f5f6fa"]),
body.bt-site .services-detailed div[style*="border-radius: 15px"]:not(.bt-on-dark):not([style*="background:var(--primary-color)"]):not([style*="background: var(--primary-color)"]):not([style*="background:rgb(251"]):not([style*="background: rgb(251"]):not([style*="background:#f5f6fa"]):not([style*="background: #f5f6fa"]),
body.bt-site .services-detailed div[style*="border-radius:12px"]:not(.bt-on-dark):not([style*="background:var(--primary-color)"]):not([style*="background: var(--primary-color)"]):not([style*="background:rgb(251"]):not([style*="background: rgb(251"]):not([style*="background:#f5f6fa"]):not([style*="background: #f5f6fa"]),
body.bt-site .services-detailed div[style*="border-radius: 12px"]:not(.bt-on-dark):not([style*="background:var(--primary-color)"]):not([style*="background: var(--primary-color)"]):not([style*="background:rgb(251"]):not([style*="background: rgb(251"]):not([style*="background:#f5f6fa"]):not([style*="background: #f5f6fa"]) {
  border-radius: var(--radius) !important;
  border: 1px solid var(--bt-border) !important;
  box-shadow: var(--bt-shadow) !important;
  background: var(--bt-white) !important;
}
body.bt-site .services-detailed div[style*="border-top:3px solid"],
body.bt-site .services-detailed div[style*="border-top: 3px solid"] {
  border-top: 3px solid var(--bt-red) !important;
}
body.bt-site .services-detailed div[style*="border:2px solid rgb(251"],
body.bt-site .services-detailed div[style*="border: 2px solid rgb(251"] {
  border: 2px solid var(--bt-red) !important;
  background: #fffafa !important;
}
body.bt-site .services-detailed div[style*="background:#f5f6fa"],
body.bt-site .services-detailed div[style*="background: #f5f6fa"] {
  background: var(--bt-white) !important;
  border: 1px solid var(--bt-border) !important;
}
/* Pricing hero on product pages (inline red banner) */
body.bt-site .bt-pricing-hero {
  max-width: 820px;
  margin: 0 auto 28px;
  background: var(--bt-red) !important;
  border-radius: var(--radius-lg) !important;
  padding: 28px 24px !important;
  text-align: center;
  box-shadow: 0 6px 20px rgba(251, 58, 64, 0.28) !important;
}
body.bt-site .bt-pricing-hero p {
  color: #fff !important;
}
body.bt-site .bt-pricing-hero p:first-child {
  color: rgba(255, 255, 255, 0.92) !important;
}
body.bt-site .bt-pricing-hero p:nth-child(2) {
  font-size: clamp(2rem, 5vw, 3rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
}
body.bt-site .bt-pricing-hero p:last-child {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.95rem !important;
}

/* WhatsApp + primary actions — white label on red */
body.bt-site .bt-cta-whatsapp-btn,
body.bt-site a.bt-cta-whatsapp-btn.cta-button {
  background: var(--bt-red) !important;
  color: #fff !important;
  border-color: var(--bt-red) !important;
}
body.bt-site .bt-cta-whatsapp-btn:hover,
body.bt-site a.bt-cta-whatsapp-btn.cta-button:hover {
  background: var(--bt-red-dark) !important;
  border-color: var(--bt-red-dark) !important;
  color: #fff !important;
}
/* Red pill buttons sitewide */
body.bt-site a[style*="background:rgb(251,58,64)"],
body.bt-site a[style*="background: rgb(251, 58, 64)"] {
  color: #fff !important;
  text-decoration: none !important;
}
body.bt-site .package-grid,
body.bt-site .pricing-grid {
  gap: 1.25rem !important;
}
body.bt-site .package-grid > div,
body.bt-site .pricing-grid > div {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
body.bt-site .package-grid > div:hover,
body.bt-site .pricing-grid > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--bt-shadow-lg) !important;
}
body.bt-site .page-header .cta-btn,
body.bt-site .page-header .cta-button {
  margin-top: 1.25rem;
  position: relative;
  z-index: 2;
}

/* Services page — category nav chips */
body.bt-site.page-services section[style*="max-width:1200px"] a[href^="#"] {
  display: inline-flex !important;
  align-items: center;
  padding: 0.5rem 1rem !important;
  border-radius: 999px !important;
  background: var(--bt-white) !important;
  border: 1px solid var(--bt-border) !important;
  color: var(--bt-ink-mid) !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
body.bt-site.page-services section[style*="max-width:1200px"] a[href^="#"]:hover {
  background: var(--bt-red-soft) !important;
  border-color: rgba(251, 58, 64, 0.35) !important;
  color: var(--bt-ink) !important;
}

/* ── Topics hub (site-index) ── */
body.bt-site.page-topics .page-header {
  background-image: url("../images/heroes/services-tech.jpg");
}
body.bt-site .bt-topics-wrap {
  padding: var(--section-y) 0;
  background: var(--bt-cream);
}
body.bt-site .bt-topics-inner {
  max-width: 820px;
}
body.bt-site .bt-topics-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--bt-slate);
  margin-bottom: 1rem;
}
body.bt-site .bt-topics-intro a {
  color: var(--bt-red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--bt-red-soft);
}
body.bt-site .bt-topics-intro a:hover {
  border-bottom-color: var(--bt-red);
}
body.bt-site .bt-topics-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-bottom: 2.25rem;
  font-size: 0.88rem;
}
body.bt-site .bt-topics-toc a {
  color: var(--bt-red);
  font-weight: 600;
  text-decoration: none;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  transition: background 0.2s, border-color 0.2s;
}
body.bt-site .bt-topics-toc a:hover {
  background: var(--bt-red-soft);
  border-color: rgba(251, 58, 64, 0.35);
}
body.bt-site .bt-topics-grid {
  display: grid;
  gap: 1.5rem;
}
body.bt-site .bt-topics-card {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--bt-shadow);
  border-top: 3px solid var(--bt-red);
}
body.bt-site .bt-topics-card--muted {
  background: var(--bt-cream);
}
body.bt-site .bt-topics-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bt-ink);
  margin: 0 0 0.65rem;
}
body.bt-site .bt-topics-card > p {
  margin: 0 0 1rem;
  line-height: 1.75;
  font-size: 0.98rem;
  color: var(--bt-slate);
}
body.bt-site .bt-topics-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.bt-site .bt-topics-card li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--bt-slate);
  padding-left: 1rem;
  position: relative;
}
body.bt-site .bt-topics-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bt-red);
}
body.bt-site .bt-topics-card a,
body.bt-site .bt-topics-card > p a,
body.bt-site .bt-topics-intro a,
body.bt-site .bt-topics-footer-note a,
body.bt-site .bt-topics-cta-line a {
  color: var(--bt-red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--bt-red-soft);
  transition: color 0.2s, border-color 0.2s;
}
body.bt-site .bt-topics-card a:hover,
body.bt-site .bt-topics-card > p a:hover,
body.bt-site .bt-topics-intro a:hover,
body.bt-site .bt-topics-footer-note a:hover,
body.bt-site .bt-topics-cta-line a:hover {
  color: var(--bt-red-dark);
  border-bottom-color: var(--bt-red);
}
body.bt-site .bt-topics-cols {
  column-count: 2;
  column-gap: 1.5rem;
}
body.bt-site .bt-topics-cols li {
  break-inside: avoid;
}
body.bt-site .bt-topics-footer-note {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--bt-border);
  font-size: 0.88rem;
  color: var(--bt-muted);
  line-height: 1.65;
}
body.bt-site .bt-topics-footer-note a {
  color: var(--bt-red);
  font-weight: 600;
}
body.bt-site .bt-topics-cta-line {
  margin-top: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--bt-slate);
}

/* Generic in-page links (landing / guide content) */
body.bt-site main a:not(.bt-btn):not(.bt-card-link):not(.bt-cta-whatsapp-btn):not(.service-cta):not(.cta-btn):not(.cta-button):not(.nav-quote-btn):not(.whatsapp-float):not(.portfolio-link) {
  color: var(--bt-red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--bt-red-soft);
  transition: color 0.2s, border-color 0.2s;
}
body.bt-site main a:not(.bt-btn):not(.bt-card-link):not(.bt-cta-whatsapp-btn):not(.service-cta):not(.cta-btn):not(.cta-button):not(.nav-quote-btn):not(.whatsapp-float):not(.portfolio-link):hover {
  color: var(--bt-red-dark);
  border-bottom-color: var(--bt-red);
}

@media (max-width: 600px) {
  body.bt-site .bt-topics-cols {
    column-count: 1;
  }
}

/* Services — guide link grids */
body.bt-site .service-category div[style*="grid-template-columns"] a {
  color: var(--bt-ink-mid);
  text-decoration: none;
  font-weight: 500;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
body.bt-site .service-category div[style*="grid-template-columns"] a:hover {
  color: var(--bt-red);
  border-bottom-color: var(--bt-red-soft);
}

/* ── Quote / products forms ── */
body.bt-site .quote-page {
  padding: var(--section-y) 4%;
  background: var(--bt-cream);
}
body.bt-site .quote-container {
  max-width: 1180px;
  margin: 0 auto;
}
body.bt-site .quote-form,
body.bt-site #quoteForm,
body.bt-site .product-form {
  background: var(--bt-white);
  border: 1px solid var(--bt-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--bt-shadow);
}
body.bt-site .quote-form .form-group,
body.bt-site #quoteForm .form-group {
  margin-bottom: 1.1rem;
}
body.bt-site .quote-form label,
body.bt-site #quoteForm label {
  font-weight: 600;
  color: var(--bt-ink);
}
body.bt-site .quote-form .form-control,
body.bt-site #quoteForm .form-control,
body.bt-site .quote-form select,
body.bt-site #quoteForm select,
body.bt-site .quote-form textarea,
body.bt-site #quoteForm textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--bt-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bt-ink);
  background: var(--bt-white);
}
body.bt-site .quote-form .form-control:focus,
body.bt-site #quoteForm .form-control:focus,
body.bt-site .quote-form select:focus,
body.bt-site #quoteForm select:focus,
body.bt-site .quote-form textarea:focus,
body.bt-site #quoteForm textarea:focus {
  border-color: var(--bt-red);
  outline: none;
  box-shadow: 0 0 0 3px var(--bt-red-soft);
}
body.bt-site .btn-submit,
body.bt-site .quote-form .btn-submit {
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--bt-red);
  color: #fff !important;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
body.bt-site .btn-submit:hover,
body.bt-site .quote-form .btn-submit:hover {
  background: var(--bt-red-dark);
  color: #fff !important;
}

/* ── Blog pages — CTA band ── */
body.bt-site .bt-blog-cta {
  padding: clamp(3.5rem, 7vw, 5rem) 4%;
  background: var(--bt-red);
  text-align: center;
}
body.bt-site .bt-blog-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
body.bt-site .bt-blog-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 1rem;
}
body.bt-site .bt-blog-cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 2rem;
  line-height: 1.7;
}
body.bt-site .bt-blog-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
body.bt-site .bt-blog-cta .cta-button,
body.bt-site .bt-blog-cta .cta-btn {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none !important;
}
body.bt-site .bt-blog-cta .cta-button-secondary {
  background: transparent !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border: 2px solid #fff !important;
  box-shadow: none !important;
}
body.bt-site .bt-blog-cta .cta-button-secondary:hover {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  border-color: #fff !important;
}

/* ── Blog pages — header & article ── */
body.bt-site .blog-page-header {
  margin-top: var(--nav-h);
  background: var(--bt-red);
  color: #fff;
  text-align: center;
  padding: clamp(5rem, 11vw, 7rem) 4% clamp(2.5rem, 5vw, 3.5rem);
}
body.bt-site .blog-page-header h1,
body.bt-site .blog-page-header .eyebrow,
body.bt-site .blog-page-header .blog-meta,
body.bt-site .blog-page-header .blog-meta strong {
  color: #fff !important;
}
body.bt-site .blog-page-header .blog-meta {
  color: rgba(255, 255, 255, 0.78) !important;
}
body.bt-site .blog-article {
  padding: var(--section-y) 4%;
  background: var(--bt-cream);
}
body.bt-site section[style*="background:var(--primary-color)"],
body.bt-site section[style*="background: var(--primary-color)"],
body.bt-site section[style*="background:var(--primary-color,#fb3a40)"],
body.bt-site section[style*="background:var(--primary-color, #fb3a40)"],
body.bt-site section[style*="background:rgb(251,58,64)"],
body.bt-site section[style*="background: rgb(251, 58, 64)"] {
  background: var(--bt-red) !important;
}
body.bt-site section[style*="background:var(--primary-color)"] h2,
body.bt-site section[style*="background: var(--primary-color)"] h2,
body.bt-site section[style*="background:var(--primary-color,#fb3a40)"] h2,
body.bt-site section[style*="background:var(--primary-color, #fb3a40)"] h2,
body.bt-site section[style*="background:rgb(251,58,64)"] h2,
body.bt-site section[style*="background: rgb(251, 58, 64)"] h2,
body.bt-site section[style*="background:var(--primary-color)"] p,
body.bt-site section[style*="background: var(--primary-color)"] p,
body.bt-site section[style*="background:var(--primary-color,#fb3a40)"] p,
body.bt-site section[style*="background:var(--primary-color, #fb3a40)"] p,
body.bt-site section[style*="background:rgb(251,58,64)"] p,
body.bt-site section[style*="background: rgb(251, 58, 64)"] p {
  color: #fff !important;
}
body.bt-site section[style*="background:var(--primary-color)"] p,
body.bt-site section[style*="background: var(--primary-color)"] p,
body.bt-site section[style*="background:var(--primary-color,#fb3a40)"] p,
body.bt-site section[style*="background:var(--primary-color, #fb3a40)"] p,
body.bt-site section[style*="background:rgb(251,58,64)"] p,
body.bt-site section[style*="background: rgb(251, 58, 64)"] p {
  color: rgba(255, 255, 255, 0.9) !important;
}
body.bt-site section[style*="background:var(--primary-color)"] .cta-button[style*="transparent"],
body.bt-site section[style*="background: var(--primary-color)"] .cta-button[style*="transparent"],
body.bt-site section[style*="background:var(--primary-color,#fb3a40)"] .cta-button[style*="transparent"],
body.bt-site section[style*="background:rgb(251,58,64)"] .cta-button[style*="transparent"],
body.bt-site section[style*="background: rgb(251, 58, 64)"] .cta-button[style*="transparent"] {
  background: transparent !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: none !important;
}

/* ── Red / dark buttons — white label (normal, hover, focus) ── */
body.bt-site .bt-btn--dark,
body.bt-site .bt-btn--dark:hover,
body.bt-site .bt-btn--dark:focus,
body.bt-site .bt-btn--primary,
body.bt-site .bt-btn--primary:hover,
body.bt-site .bt-btn--primary:focus,
body.bt-site .bt-btn--primary:active,
body.bt-site .nav-quote-btn,
body.bt-site .nav-quote-btn:hover,
body.bt-site .submit-btn,
body.bt-site .btn-submit,
body.bt-site .submit-btn:hover,
body.bt-site .btn-submit:hover,
body.bt-site .cta-btn,
body.bt-site .cta-button,
body.bt-site .cta-btn:hover,
body.bt-site .cta-btn:focus,
body.bt-site .cta-button:hover,
body.bt-site .cta-button:focus,
body.bt-site .service-cta,
body.bt-site .service-cta:hover,
body.bt-site .portfolio-link,
body.bt-site .portfolio-link:hover,
body.bt-site .portfolio-link:focus,
body.bt-site .portfolio-link i,
body.bt-site button.pf-tab[style*="background: var(--primary-color)"],
body.bt-site button.pf-tab[style*="background:var(--primary-color)"],
body.bt-site button[style*="background:var(--primary-color)"],
body.bt-site button[style*="background: var(--primary-color)"],
body.bt-site a[style*="background:var(--primary-color)"],
body.bt-site a[style*="background: var(--primary-color)"],
body.bt-site a[style*="background:rgb(251,58,64)"],
body.bt-site a[style*="background: rgb(251, 58, 64)"],
body.bt-site a[style*="background:#fb3a40"],
body.bt-site a[style*="background: #fb3a40"] {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}
/* White / ghost buttons on red bands keep their own colours */
body.bt-site .cta-btn[style*="background:#fff"],
body.bt-site .cta-btn[style*="background: #fff"],
body.bt-site .cta-btn[style*="background:white"],
body.bt-site .cta-btn[style*="background: white"],
body.bt-site .cta-button[style*="background:#fff"],
body.bt-site .cta-button[style*="background: #fff"],
body.bt-site .cta-button[style*="transparent"],
body.bt-site a[style*="background:#fff"],
body.bt-site a[style*="background: #fff"] {
  -webkit-text-fill-color: unset !important;
}
body.bt-site .bt-cta-band h2,
body.bt-site .bt-cta-band p,
body.bt-site .cta-strip h2,
body.bt-site .cta-strip p {
  color: #fff;
}
body.bt-site .bt-cta-band p,
body.bt-site .cta-strip p {
  color: rgba(255, 255, 255, 0.78);
}

/* ── Hero slider responsive ── */
@media (max-width: 900px) {
  .bt-hero {
    min-height: min(85vh, 720px);
    max-height: none;
  }
  .bt-hero-inner {
    padding: 3rem 0 5.5rem;
    max-width: 100%;
  }
  .bt-hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }
  .bt-hero-lead {
    font-size: 1rem;
  }
  .bt-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .bt-hero-actions .bt-btn {
    width: 100%;
    justify-content: center;
  }
  .bt-hero-dots {
    bottom: 1.25rem;
    left: 4%;
    right: auto;
  }
  .bt-hero-arrows {
    bottom: 1.25rem;
    right: 4%;
  }
  body.bt-site .contact-container {
    grid-template-columns: 1fr;
  }
  body.bt-site .bbee-banner {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .bt-hero-dot {
    width: 24px;
  }
  .bt-hero-dot.is-active {
    width: 36px;
  }
  .bt-hero-arrow {
    width: 40px;
    height: 40px;
  }
  body.bt-site .service-card .service-cta {
    width: 100%;
  }
}
