/* ==========================================================================
   BrandLocus — f1s1v1-0826 funnel clone
   Design tokens & layout system
   ========================================================================== */

:root {
  /* Brand */
  --bl-orange:        #F37122;
  --bl-orange-mid:    #F05224;
  --bl-red-deep:      #9F1B1D;
  --bl-accent-grad:   linear-gradient(90deg, #F37122 33%, #F05224, #9F1B1D 87%);

  /* Neutrals */
  --bl-black:         #000000;
  --bl-text:          #212529;
  --bl-muted:         #6b7280;
  --bl-grey-bg:       #EAEAEA;
  --bl-soft-bg:       #FAF7F5;
  --bl-radius-lg:     42px;
  --bl-white:         #FFFFFF;
  --bl-border:        #EAEAEA;

  /* Type */
  --bl-font-head:     'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bl-font-body:     'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout */
  --bl-container:     1170px;

  /* Motion */
  --bl-ease:          cubic-bezier(.16, 1, .3, 1);
}

/* --------------------------------------------------------------------------
   Base — `html body` specificity so Bootstrap (loaded for the portfolio
   widget) cannot override the page defaults.
   -------------------------------------------------------------------------- */

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

html { scroll-behavior: smooth; }

html body {
  margin: 0;
  padding: 0;
  font-family: var(--bl-font-head);
  font-size: 16px;
  line-height: 1.5;
  color: var(--bl-text);
  background: var(--bl-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

html body img { max-width: 100%; height: auto; display: block; }

html body h1, html body h2, html body h3, html body h4 {
  font-family: var(--bl-font-head);
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

html body p { margin: 0; }

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus { text-decoration: none; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* Full-bleed section + centred inner container (GHL .fullSection / row) */
.blx-section { width: 100%; }

.bl-container {
  width: 100%;
  max-width: var(--bl-container);
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.bl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 34px;
  border: none;
  border-radius: 100px;
  font-family: var(--bl-font-head);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--bl-white) !important;   /* override browser visited/link blue on <a> CTAs */
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.bl-btn:hover { color: var(--bl-white) !important; }
.bl-btn:focus-visible { outline: 3px solid var(--bl-orange); outline-offset: 3px; }

/* Dark (black) button → transitions to brand orange on hover */
.bl-btn--dark { background-color: var(--bl-black); }
.bl-btn--dark:hover {
  background-color: var(--bl-orange);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(243, 113, 34, 0.50);
}

/* Orange button → transitions to deep black on hover */
.bl-btn--orange { background-color: var(--bl-orange); }
.bl-btn--orange:hover {
  background-color: var(--bl-black);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.40);
}

/* --------------------------------------------------------------------------
   1. Hero
   -------------------------------------------------------------------------- */

.bl-hero { padding: 56px 0 96px; background: var(--bl-white); }

.bl-hero__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bl-orange);
  text-align: center;
  margin: 0 auto;
}

.bl-hero__sub {
  max-width: 1140px;
  margin: 10px auto 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bl-text);
  text-align: center;
}

.bl-hero__video {
  max-width: 1038px;
  margin: 26px auto 0;
}

.bl-hero__ctas {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
  margin-top: 34px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   2. Accent / announcement bar
   -------------------------------------------------------------------------- */

.bl-accentbar {
  background: var(--bl-accent-grad);
  min-height: 156px;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.bl-accentbar__title {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--bl-white);
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin: 0 auto;
}

/* --------------------------------------------------------------------------
   Shared headings
   -------------------------------------------------------------------------- */

.bl-h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bl-text);
  text-align: center;
}

.bl-h2--red { color: var(--bl-red-deep); }

/* The black lead-in line above the red block is Medium, not Bold */
.bl-dept__stack .bl-h2 { font-weight: 500; }
.bl-dept__stack .bl-h2--red { font-weight: 700; }

.bl-subhead {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--bl-black);
  text-align: center;
}

.bl-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--bl-text);
  text-align: center;
}

.bl-divider {
  width: 100%;
  max-width: 875px;
  height: 1px;
  margin: 0 auto;
  background: #d9d9d9;
  border: 0;
}

/* --------------------------------------------------------------------------
   3. Technical department / specialists
   -------------------------------------------------------------------------- */

.bl-dept { padding: 96px 0; background: var(--bl-white); }

.bl-dept__flow  { max-width: 672px;  margin: 78px auto 0; }
.bl-dept__stack { margin-top: 100px; }
.bl-dept__tools { max-width: 1103px; margin: 75px auto 0; }

/* --------------------------------------------------------------------------
   4. Assign any task
   -------------------------------------------------------------------------- */

.bl-assign { padding: 96px 0; background: var(--bl-white); }

.bl-assign__head { margin-top: 20px; }
.bl-assign__copy { margin-top: 12px; }

.bl-assign__shots {
  max-width: 857px;
  margin: 22px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --------------------------------------------------------------------------
   5. Pricing
   -------------------------------------------------------------------------- */

.bl-pricing { padding: 96px 0; background: var(--bl-white); }

.bl-pricing__head { margin-bottom: 34px; }
.bl-pricing__head u { text-decoration-thickness: 1px; text-underline-offset: 3px; }

.bl-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: start;
}

.bl-plan {
  background: var(--bl-white);
  border: 1px solid var(--bl-border);
  border-radius: 12px;
  padding: 22px 10px 30px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.bl-plan__name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  color: var(--bl-text);
  margin-bottom: 16px;
}

.bl-plan__price {
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bl-orange);
  color: var(--bl-white);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}

.bl-plan__features {
  list-style: none;
  margin: 26px 0 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1 1 auto;
}

.bl-plan__features li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--bl-muted);
}

.bl-plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bl-orange);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.4 11.3 3.5 8.4l1.1-1.1 1.8 1.8 4.9-4.9 1.1 1.1z'/%3E%3C/svg%3E");
  background-size: 15px 15px;
}

.bl-plan__features li.is-strong {
  font-weight: 700;
  color: var(--bl-text);
}

.bl-plan__cta { margin-top: 30px; text-align: center; }
.bl-plan__cta .bl-btn { min-height: 46px; padding: 12px 30px; }

/* Featured (middle) plan */
.bl-plan--featured .bl-plan__price { background: var(--bl-black); }

/* --------------------------------------------------------------------------
   7. Portfolio heading (widget itself is self-contained)
   -------------------------------------------------------------------------- */

.bl-portfolio { padding:0px 0 96px 0; background: var(--bl-white); }
.bl-portfolio__head { margin-bottom: 6px; }

/* --------------------------------------------------------------------------
   8 & 10. Booking / calendar
   -------------------------------------------------------------------------- */

.bl-booking {
  padding: 96px 0;
  background: var(--bl-soft-bg);
  border-radius: var(--bl-radius-lg);
  max-width: 1440px;
  margin: 0 auto;
}

.bl-booking__title { font-size: 32px; }
.bl-booking__sub   { margin-top: 6px; font-size: 18px; font-weight: 500; }
.bl-booking__small { margin-top: 4px; font-size: 13px; font-weight: 400; color: var(--bl-text); }

.bl-booking__widget {
  max-width: 1060px;
  margin: 34px auto 0;
  background: var(--bl-white);
  border-radius: 6px;
  overflow: hidden;
}

.bl-booking__widget iframe {
  display: block;
  width: 100%;
  min-height: 780px;
  border: none;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   9. One channel / internal team / one team
   -------------------------------------------------------------------------- */

.bl-channel { padding: 96px 0; background: var(--bl-white); }

.bl-channel__block + .bl-channel__block { margin-top: 46px; }

.bl-channel__copy  { margin-top: 8px; }
.bl-channel__media { max-width: 807px; margin: 26px auto 0; }
.bl-channel__rule  { margin: 44px auto 0; }

.bl-channel__subhead {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  color: var(--bl-text);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.bl-footer {
  background: var(--bl-black);
  color: var(--bl-white);
  padding: 46px 0 40px;
  text-align: center;
  margin-top:100px;
}

.bl-footer__logo { max-width: 200px; margin: 0 auto 22px; }

.bl-footer__text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--bl-white);
  max-width: 640px;
  margin: 0 auto 12px;
}

.bl-footer__text a { text-decoration: none; color: var(--bl-white); }
.bl-footer__text a:hover { color: var(--bl-orange); }
.bl-footer__text:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Floating WhatsApp button
   -------------------------------------------------------------------------- */

.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.whatsapp-button img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .bl-hero__title      { font-size: 38px; }
  .bl-accentbar__title { font-size: 26px; }
  .bl-h2,
  .bl-booking__title,
  .bl-channel__subhead { font-size: 27px; }
  .bl-plans            { gap: 14px; }
  .bl-plan__price      { font-size: 32px; min-height: 68px; }
}

@media (max-width: 860px) {
  .bl-plans { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; gap: 22px; }
  .bl-plan  { padding: 22px 14px 30px; }
}

@media (max-width: 640px) {
  /* Lighten hero blobs on mobile so text remains readable */
  .bl-hero .bl-blob--orange { opacity: 0.10; }
  .bl-hero .bl-blob--red    { opacity: 0.08; }
  .bl-hero .bl-blob--amber  { opacity: 0.06; }

  .bl-hero             { padding: 44px 0 60px; }
  .bl-hero__title      { font-size: 28px; }
  .bl-hero__sub        { font-size: 15px; }
  .bl-hero__ctas       { gap: 16px; margin-top: 26px; }
  .bl-btn              { font-size: 14px; padding: 12px 26px; min-height: 46px; }

  .bl-accentbar        { min-height: 0; padding: 28px 0; }
  .bl-accentbar__title { font-size: 20px; line-height: 1.4; }

  .bl-h2,
  .bl-booking__title,
  .bl-channel__subhead { font-size: 22px; }
  .bl-subhead          { font-size: 18px; }
  .bl-body,
  .bl-booking__sub     { font-size: 15px; }

  .bl-dept             { padding: 60px 0; }
  .bl-dept__flow       { margin-top: 40px; }
  .bl-dept__stack      { margin-top: 48px; }
  .bl-dept__tools      { margin-top: 36px; }

  .bl-assign           { padding: 60px 0; }
  .bl-assign__shots    { gap: 14px; }

  .bl-pricing          { padding: 60px 0; }
  .bl-portfolio        { padding: 60px 0; }
  .bl-booking          { padding: 60px 0; }
  .bl-channel          { padding: 60px 0; }
  .bl-section          { padding: 60px 24px; }

  .bl-booking__widget iframe { min-height: 1000px; }

  .whatsapp-button { bottom: 18px; right: 14px; padding: 8px; }
  .whatsapp-button img { width: 38px; height: 38px; }
}

/* ==========================================================================
   MOTION LAYER
   Scroll and interaction behaviour modelled on alphabeta.pk, retuned to the
   BrandLocus palette. Every effect below is disabled under
   `prefers-reduced-motion` by the guard at the end of this block.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--bl-ease), transform 0.8s var(--bl-ease);
  will-change: opacity, transform;
}

[data-reveal="left"]  { transform: translateX(-38px); }
[data-reveal="right"] { transform: translateX(38px); }
[data-reveal="zoom"]  { transform: scale(0.96) translateY(20px); }

[data-reveal].in-view {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* --------------------------------------------------------------------------
   Scroll progress bar
   -------------------------------------------------------------------------- */

.bl-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  z-index: 999;
  background: var(--bl-accent-grad);
  transition: width 0.1s linear;
}

/* --------------------------------------------------------------------------
   Cursor glow — desktop pointers only
   -------------------------------------------------------------------------- */

.bl-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  background: radial-gradient(circle, rgba(243, 113, 34, 0.12), transparent 70%);
}

@media (hover: none) { .bl-cursor-glow { display: none; } }


/* --------------------------------------------------------------------------
   Back to top
   -------------------------------------------------------------------------- */

.bl-back-to-top {
  position: fixed;
  bottom: 30px;
  left: 20px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--bl-white);
  color: var(--bl-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 26px -8px rgba(0, 0, 0, 0.28);
  transition: opacity 0.3s, transform 0.3s, background 0.3s, color 0.3s;
}

.bl-back-to-top svg { width: 20px; height: 20px; }
.bl-back-to-top.show { opacity: 1; pointer-events: auto; }
.bl-back-to-top:hover { transform: translateY(-3px); background: var(--bl-orange); color: var(--bl-white); }
.bl-back-to-top:focus-visible { outline: 3px solid var(--bl-orange); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   Hover micro-interactions
   -------------------------------------------------------------------------- */

.bl-plan {
  transition: transform 0.4s var(--bl-ease), box-shadow 0.4s var(--bl-ease), border-color 0.4s;
}

.bl-plan:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 113, 34, 0.35);
  box-shadow: 0 22px 44px -18px rgba(159, 27, 29, 0.28);
}

.bl-assign__shots img,
.bl-channel__media img,
.bl-dept__flow img,
.bl-dept__tools img {
  border-radius: 6px;
  transition: transform 0.45s var(--bl-ease), box-shadow 0.45s var(--bl-ease);
}

.bl-assign__shots img:hover,
.bl-channel__media img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.35);
}

/* WhatsApp button — gentle pulse, matching the reference site */
.whatsapp-button { animation: blPulseWhats 2.6s ease-in-out infinite; }

@keyframes blPulseWhats {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

/* --------------------------------------------------------------------------
   Reduced motion — nothing above animates, and nothing stays hidden
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].in-view { opacity: 1 !important; transform: none !important; }
  .bl-loader { display: none; }
  .bl-cursor-glow { display: none; }
  .whatsapp-button, .bl-loader__mark { animation: none; }
}

/* Failsafe: if JavaScript never runs, no content can stay invisible */
.no-js [data-reveal] { opacity: 1 !important; transform: none !important; }
.no-js .bl-loader { display: none; }

@media (max-width: 640px) {
  .bl-back-to-top { bottom: 18px; left: 14px; width: 40px; height: 40px; }
}

/* ==========================================================================
   DESIGN REFRESH — surfaces, sliders and split layouts
   Adds the "smooth" feel of the reference site while keeping every brand
   token, all copy, and all hosted assets exactly as they were.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Sticky CTA bar
   A funnel deliberately has no site navigation — links leak traffic away from
   the offer. This is a conversion bar instead: it stays out of the way until
   the hero has scrolled past, then keeps the CTA permanently reachable.
   -------------------------------------------------------------------------- */

.bl-btn--sm { min-height: 42px; padding: 10px 24px; font-size: 14px; }

/* --------------------------------------------------------------------------
   Hero atmosphere — drifting brand-coloured blobs behind the content
   -------------------------------------------------------------------------- */

.bl-hero { position: relative; overflow: hidden; }

.bl-hero__blobs { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.bl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.28;
  animation: blFloat 18s ease-in-out infinite;
}

.bl-blob--orange { width: 460px; height: 460px; background: var(--bl-orange);   top: -140px; left: -110px; }
.bl-blob--red    { width: 380px; height: 380px; background: var(--bl-red-deep);  bottom: -120px; right: -80px; animation-delay: -6s; }
.bl-blob--amber  { width: 300px; height: 300px; background: #FBBF24;             top: 38%; right: 6%; animation-delay: -12s; opacity: 0.18; }

@keyframes blFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(32px, -42px) scale(1.09); }
}

.bl-hero .bl-container { position: relative; z-index: 2; }

/* Scroll cue */
.bl-scrollcue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-top: 44px;
  color: var(--bl-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bl-scrollcue__mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--bl-muted);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.bl-scrollcue__dot {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--bl-orange);
  animation: blScrollDot 1.8s ease-in-out infinite;
}

@keyframes blScrollDot {
  0%   { opacity: 1; transform: translateY(0); }
  70%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; }
}

@media (max-width: 640px) { .bl-scrollcue { display: none; } }

/* --------------------------------------------------------------------------
   Section 4 — Slack screenshots as a continuous slider
   Replaces seven stacked full-width screenshots (~3,500px of vertical scroll)
   with one horizontal track that drifts on its own and can be dragged.
   -------------------------------------------------------------------------- */

.bl-slider {
  position: relative;
  margin: 34px 0 0;
  /* break out of the container so the track bleeds to the viewport edges.
     Uses margin-left instead of transform so the reveal animation
     (which resets transform to none) does not undo the alignment. */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.bl-slider__track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 10px 6vw 22px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}

.bl-slider__track::-webkit-scrollbar { display: none; }
.bl-slider__track.is-dragging { cursor: grabbing; }

.bl-slide {
  flex: 0 0 clamp(280px, 34vw, 460px);
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: #101214;
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s var(--bl-ease), box-shadow 0.4s var(--bl-ease);
}

.bl-slide:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px -20px rgba(0, 0, 0, 0.6);
}

.bl-slide__img {  height: 420px;
  object-fit: cover;
  object-position: top center; }
  @media (max-width: 640px) { .bl-slide__img { height: 320px; } }

/* Edge fades so cards dissolve rather than getting cut off */
.bl-slider__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 12vw;
  max-width: 160px;
  pointer-events: none;
  z-index: 2;
}

.bl-slider__fade--l { left: 0;  background: transparent; }
.bl-slider__fade--r { right: 0; background: transparent; }

.bl-slider__hint {
  margin-top: 14px;
  text-align: center;
  font-size: 13px;
  color: var(--bl-muted);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   Pricing polish
   -------------------------------------------------------------------------- */

.bl-plan { position: relative; }

.bl-plan--featured {
  border-color: transparent;
  box-shadow: 0 18px 46px -20px rgba(159, 27, 29, 0.34);
}

.bl-plan--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  padding: 1.5px;
  background: var(--bl-accent-grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.bl-plan__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 16px;
  border-radius: 100px;
  background: var(--bl-accent-grad);
  color: var(--bl-white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(159, 27, 29, 0.6);
}

/* --------------------------------------------------------------------------
   Section 9 — alternating split layout
   -------------------------------------------------------------------------- */

.bl-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.bl-split--reverse .bl-split__text  { order: 2; }
.bl-split--reverse .bl-split__media { order: 1; }

.bl-split__text  { text-align: left; }
.bl-split__media { max-width: none; margin: 0; }

.bl-split__media img {
  border-radius: 16px;
  box-shadow: 0 22px 50px -24px rgba(0, 0, 0, 0.45);
}

/* Headings and copy left-align inside a split */
.bl-split .bl-h2,
.bl-split .bl-body,
.bl-split .bl-channel__subhead { text-align: left; }

.bl-split .bl-channel__subhead { font-size: 24px; color: var(--bl-orange); margin-top: 4px; }

.bl-channel__block + .bl-channel__block { margin-top: 96px; }

/* Chips */
.bl-chips {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.bl-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid rgba(243, 113, 34, 0.28);
  background: rgba(243, 113, 34, 0.06);
  font-size: 14px;
  font-weight: 600;
  color: var(--bl-text);
  transition: transform 0.3s var(--bl-ease), background 0.3s, border-color 0.3s;
}

.bl-chip:hover {
  transform: translateY(-3px);
  background: rgba(243, 113, 34, 0.13);
  border-color: rgba(243, 113, 34, 0.55);
}

.bl-chip__tick { color: var(--bl-orange); font-size: 12px; }

@media (max-width: 900px) {
  .bl-split { grid-template-columns: 1fr; gap: 28px; }
  .bl-split--reverse .bl-split__text  { order: 0; }
  .bl-split--reverse .bl-split__media { order: 0; }
  .bl-split .bl-h2,
  .bl-split .bl-body,
  .bl-split .bl-channel__subhead { text-align: center; }
  .bl-chips { justify-content: center; }
  .bl-channel__block + .bl-channel__block { margin-top: 64px; }
}

/* --------------------------------------------------------------------------
   Softer section rhythm
   -------------------------------------------------------------------------- */

.bl-pricing { background: var(--bl-soft-bg); border-radius: var(--bl-radius-lg); max-width: 1440px; margin: 0 auto; }

.bl-dept__tools img,
.bl-dept__flow img { border-radius: 14px; }

.bl-dept__tools img { box-shadow: 0 20px 44px -26px rgba(0, 0, 0, 0.4); }

[data-parallax] { will-change: transform; }

@media (max-width: 640px) {
  .bl-pricing, .bl-booking { border-radius: 26px; }
  .bl-slide { flex-basis: 78vw; }
  .bl-slider__fade { width: 8vw; }
}

@media (prefers-reduced-motion: reduce) {
  .bl-blob, .bl-scrollcue__dot { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* --------------------------------------------------------------------------
   Eyebrow label — small orange tag above section headings
   -------------------------------------------------------------------------- */

.bl-eyebrow {
  display: inline-block;
  font-family: var(--bl-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--bl-orange);
  margin-bottom: 12px;
}

/* Supporting paragraph beneath a section heading */
.bl-testimonials__sub {
  max-width: 560px;
  margin: 10px auto 0;
  text-align: center;
  color: var(--bl-text);
  opacity: 0.72;
  padding-bottom:20px;
}

/* ==========================================================================
   TYPOGRAPHY CONSISTENCY PASS
   Unified type scale: h2 → subhead → body → small
   ========================================================================== */

/* Tighten line-height on all h2s for a cleaner hierarchy */
.bl-h2 {
  line-height: 1.18;
  letter-spacing: -0.3px;
}

/* Subhead — sits between h2 and body */
.bl-subhead {
  line-height: 1.35;
  letter-spacing: -0.1px;
}

/* Body — loosen for readability */
.bl-body {
  line-height: 1.7;
}

/* Section body copy inside split blocks */
.bl-channel__copy {
  line-height: 1.7;
  font-size: 16px;
}

/* --------------------------------------------------------------------------
   Branded bullet list
   Orange circle bullets matching the brand; used in channel / team sections.
   -------------------------------------------------------------------------- */

.bl-bullet-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bl-bullet-list li {
  position: relative;
  padding-left: 30px;
  font-family: var(--bl-font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--bl-text);
}

.bl-bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--bl-orange);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M6.4 11.3 3.5 8.4l1.1-1.1 1.8 1.8 4.9-4.9 1.1 1.1z'/%3E%3C/svg%3E");
  background-size: 15px 15px;
}

/* "Every Technical Specialist." — bold intro line above the bullet list */
.bl-channel__intro {
  margin: 10px 0 0;
  font-family: var(--bl-font-head);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--bl-orange);
  text-align: left;
}

/* "Post the task. We'll handle the rest." — closing punch line */
.bl-channel__outro {
  margin: 22px 0 0;
  font-family: var(--bl-font-head);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--bl-text);
  text-align: left;
}

/* Mobile adjustments */
@media (max-width: 900px) {
  .bl-channel__intro,
  .bl-channel__outro { text-align: center; }
  .bl-bullet-list { align-items: flex-start; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .bl-bullet-list li { font-size: 15px; }
  .bl-channel__intro { font-size: 16px; }
  .bl-channel__outro { font-size: 15px; }
}

/* --------------------------------------------------------------------------
   Slider slide — pointer cursor to hint clickability
   -------------------------------------------------------------------------- */

.bl-slide { cursor: pointer; }
.bl-slide__img { width: 100%; }

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */

.bl-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: zoom-out;
}

.bl-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.bl-lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(.16, 1, .3, 1);
  cursor: default;
  object-fit: contain;
  display: block;
}

.bl-lightbox.is-open .bl-lightbox__img {
  transform: scale(1);
}

.bl-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 3001;
}

.bl-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (prefers-reduced-motion: reduce) {
  .bl-lightbox, .bl-lightbox__img { transition: none; }
}
