/**
 * WL B2B Page Styles
 * Shared styles for both Version A (Executive) and Version B (Immersive)
 */

/* Montserrat weight 400 (regular) — parent theme has it commented out,
   files exist locally. Also add 800 from Google as fallback. */
@font-face {
  font-family: 'Montserrat';
  src: url('../../../autoparts/css/font-face/Montserrat/montserrat-regular.woff2') format('woff2'),
       url('../../../autoparts/css/font-face/Montserrat/montserrat-regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.wl-b2b {
  --wl-bg: #0a0a0a;
  --wl-bg-card: #161616;
  --wl-bg-card-hover: #1c1c1c;
  --wl-accent: #FF5A1F;
  --wl-accent-glow: rgba(255, 90, 31, 0.4);
  --wl-text: #ffffff;
  --wl-text-muted: rgba(255,255,255,0.6);
  --wl-text-subtle: rgba(255,255,255,0.35);
  --wl-border: rgba(255,255,255,0.08);
  --wl-border-accent: rgba(255,90,31,0.3);

  --wl-space-section: clamp(80px, 12vw, 160px);
  --wl-space-block: clamp(48px, 8vw, 96px);
  --wl-space-inline: clamp(24px, 6vw, 64px);

  --wl-font-display: 'Montserrat', sans-serif;
  --wl-font-body: 'Montserrat', sans-serif;
  --wl-fs-hero: clamp(44px, 6vw, 80px);
  --wl-fs-h2: clamp(32px, 4vw, 56px);
  --wl-fs-h3: clamp(22px, 3vw, 32px);
  --wl-fs-body: clamp(16px, 1.8vw, 20px);

  --wl-ease-out: cubic-bezier(0.2, 0.9, 0.2, 1);
  --wl-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --wl-duration-fast: 300ms;
  --wl-duration-normal: 600ms;

  background: var(--wl-bg);
  color: var(--wl-text);
  font-family: var(--wl-font-body);
  overflow-x: clip;
}

/* ===== HERO PARALLAX: content scrolls over sticky hero ===== */
.wl-b2b-hero ~ * {
  position: relative;
  z-index: 1;
}

/* First section after hero gets a subtle top shadow to sell the "cover" effect */
.wl-b2b-split {
  box-shadow: 0 -40px 80px rgba(10,10,10,0.8);
}

/* ===== REVEAL ANIMATIONS ===== */
.wl-b2b-reveal-hidden {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.wl-b2b-reveal-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== COMMON ===== */
.wl-b2b-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--wl-space-inline);
}

.wl-b2b-container--narrow {
  max-width: 1000px;
}

.wl-b2b .wl-section-title {
  font-family: var(--wl-font-display);
  font-size: var(--wl-fs-h2);
  font-weight: 800;
  line-height: 1.15;
  color: var(--wl-text);
  text-align: center;
  margin: 0;
}

.wl-b2b .wl-section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--wl-text-muted);
  text-align: center;
  line-height: 1.6;
  margin: 16px auto 0;
  max-width: 640px;
}

.wl-b2b .wl-title-accent {
  display: block;
  width: 0;
  height: 3px;
  background: var(--wl-accent);
  margin: 16px auto 0;
  border-radius: 2px;
  transition: width 0.8s var(--wl-ease-out);
}

.wl-b2b .wl-title-accent.is-visible {
  width: 60px;
}

.wl-b2b .wl-section-header {
  text-align: center;
  margin-bottom: var(--wl-space-block);
}

/* Dot pattern overlay */
.wl-b2b-dots::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Orange section separator */
.wl-b2b-separator::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(80%, 800px);
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--wl-accent) 50%, transparent 100%);
  opacity: 0.25;
}

/* ===== HERO (shared) ===== */
.wl-b2b-hero {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.wl-b2b-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wl-b2b-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.3) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.wl-b2b-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--wl-space-inline);
  max-width: 900px;
}

.wl-b2b-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,90,31,0.1);
  border: 1px solid rgba(255,90,31,0.3);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wl-accent);
  margin-bottom: 24px;
}

.wl-b2b-hero__title {
  font-family: var(--wl-font-display);
  font-size: var(--wl-fs-hero);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 24px;
}

.wl-b2b-hero__subtitle {
  font-size: var(--wl-fs-body);
  color: var(--wl-text-muted);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 640px;
}

.wl-b2b-hero__hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--wl-text-subtle);
  z-index: 3;
}

.wl-b2b-hero__hint-line {
  width: 1px;
  height: 40px;
  background: var(--wl-accent);
  transform-origin: top;
}

/* CTA buttons shared */
.wl-b2b-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform var(--wl-duration-fast) var(--wl-ease-out),
              box-shadow var(--wl-duration-fast) var(--wl-ease-out);
}

.wl-b2b-btn:hover { transform: translateY(-2px); }

.wl-b2b-btn--primary {
  background: var(--wl-accent);
  color: #fff;
}
.wl-b2b-btn--primary:hover {
  box-shadow: 0 8px 30px rgba(255,90,31,0.3);
}

.wl-b2b-btn--outline {
  background: transparent;
  color: var(--wl-text);
  border: 1px solid var(--wl-border);
}
.wl-b2b-btn--outline:hover {
  border-color: var(--wl-border-accent);
}

.wl-b2b-btn--whatsapp {
  background: #25D366;
  color: #fff;
}
.wl-b2b-btn--whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37,211,102,0.3);
}

/* ===== SOCIAL PROOF / COUNTERS BAR ===== */
.wl-b2b-proof {
  padding: var(--wl-space-block) 0;
  background: var(--wl-bg);
  position: relative;
}

.wl-b2b-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  text-align: center;
}

.wl-b2b-proof__value {
  font-family: var(--wl-font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--wl-accent);
  line-height: 1.1;
  margin-bottom: 8px;
}

.wl-b2b-proof__label {
  font-size: 14px;
  color: var(--wl-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== PARALLAX DIVIDER ===== */
.wl-b2b-parallax {
  position: relative;
  height: 50vh;
  min-height: 300px;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wl-b2b-parallax__bg {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
}

.wl-b2b-parallax__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-b2b-parallax__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.6) 0%,
    rgba(10,10,10,0.35) 50%,
    rgba(10,10,10,0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

.wl-b2b-parallax__label {
  position: relative;
  z-index: 2;
  font-family: var(--wl-font-display);
  font-size: clamp(22px, 4vw, 44px);
  font-weight: 700;
  color: var(--wl-text);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

/* ===== WHY PARTNER / FEATURES ===== */
.wl-b2b-features {
  padding: var(--wl-space-section) 0;
  background: var(--wl-bg-card);
  position: relative;
}

.wl-b2b-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wl-b2b-feature {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--wl-border);
  border-radius: 16px;
  transition: all var(--wl-duration-fast) var(--wl-ease-out);
}

.wl-b2b-feature:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--wl-border-accent);
  transform: translateY(-4px);
}

.wl-b2b-feature__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,90,31,0.1);
  border-radius: 50%;
  color: var(--wl-accent);
}

.wl-b2b-feature__icon svg {
  width: 32px;
  height: 32px;
}

.wl-b2b-feature__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 12px;
}

.wl-b2b-feature__desc {
  font-size: 15px;
  color: var(--wl-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== PRICING TIERS (V1 — side by side) ===== */
.wl-b2b-pricing {
  padding: var(--wl-space-section) 0;
  background: var(--wl-bg);
  position: relative;
}

.wl-b2b-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.wl-b2b-tier {
  background: var(--wl-bg-card);
  border: 1px solid var(--wl-border);
  border-radius: 20px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--wl-duration-fast) var(--wl-ease-out);
}

.wl-b2b-tier:hover { transform: translateY(-4px); }

.wl-b2b-tier--featured {
  border-color: var(--wl-accent);
  position: relative;
  transform: scale(1.04);
  box-shadow: 0 0 60px rgba(255,90,31,0.15);
  z-index: 1;
}
.wl-b2b-tier--featured:hover { transform: scale(1.04) translateY(-4px); }

.wl-b2b-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--wl-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  white-space: nowrap;
}

.wl-b2b-tier__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--wl-accent);
  margin-bottom: 8px;
}

.wl-b2b-tier__name {
  font-size: var(--wl-fs-h3);
  font-weight: 700;
  margin: 0 0 20px;
}

.wl-b2b-tier__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
}

.wl-b2b-tier__features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--wl-border);
  font-size: 15px;
  color: var(--wl-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.wl-b2b-tier__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF5A1F'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.wl-b2b-tier__cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--wl-duration-fast) var(--wl-ease-out);
  background: transparent;
  color: var(--wl-text);
  border: 1px solid var(--wl-border);
}
.wl-b2b-tier__cta:hover {
  border-color: var(--wl-accent);
  color: var(--wl-accent);
}

.wl-b2b-tier--featured .wl-b2b-tier__cta {
  background: var(--wl-accent);
  color: #fff;
  border-color: var(--wl-accent);
}
.wl-b2b-tier--featured .wl-b2b-tier__cta:hover {
  box-shadow: 0 6px 24px rgba(255,90,31,0.3);
}

/* ===== PROCESS / HOW TO START (V1 — sticky left image) ===== */
.wl-b2b-process {
  padding: var(--wl-space-section) 0;
  position: relative;
}

.wl-b2b-process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.wl-b2b-process__visual {
  position: sticky;
  top: 15vh;
  height: 70vh;
  max-height: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.wl-b2b-process__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-b2b-process__steps {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 40px;
}

.wl-b2b-process__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--wl-border);
  --progress: 0;
}

.wl-b2b-process__line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--wl-accent);
  transform: scaleY(var(--progress));
  transform-origin: top;
}

.wl-b2b-process__step {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
}

.wl-b2b-process__step::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,90,31,0.15);
  border: 2px solid rgba(255,90,31,0.2);
  transform: translateY(-50%) scale(0.6);
  transition: all 0.4s ease;
  z-index: 2;
}

.wl-b2b-process__step.is-active::before {
  background: var(--wl-accent);
  border-color: var(--wl-accent);
  transform: translateY(-50%) scale(1);
  box-shadow: 0 0 20px rgba(255,90,31,0.5);
}

.wl-b2b-process__step-num {
  font-family: var(--wl-font-display);
  font-size: 72px;
  font-weight: 700;
  color: rgba(255,90,31,0.12);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.5s ease;
}

.wl-b2b-process__step.is-active .wl-b2b-process__step-num {
  color: var(--wl-accent);
  text-shadow: 0 0 40px rgba(255,90,31,0.3);
}

.wl-b2b-process__step-title {
  font-size: var(--wl-fs-h3);
  font-weight: 700;
  margin: 0 0 12px;
  transition: color 0.4s ease;
}

.wl-b2b-process__step.is-active .wl-b2b-process__step-title {
  color: var(--wl-accent);
}

.wl-b2b-process__step-desc {
  font-size: 17px;
  color: var(--wl-text-muted);
  line-height: 1.6;
  max-width: 460px;
  transition: opacity 0.4s ease;
}

.wl-b2b-process__step:not(.is-active) .wl-b2b-process__step-desc {
  opacity: 0.5;
}

/* ===== BRAND MARQUEE ===== */
.wl-b2b-brands {
  padding: var(--wl-space-block) 0;
  overflow: hidden;
  background: var(--wl-bg);
  position: relative;
}

.wl-b2b-brands__track {
  display: flex;
  gap: 64px;
  animation: wl-marquee 20s linear infinite;
  width: max-content;
}

.wl-b2b-brands__track--reverse {
  animation-direction: reverse;
}

.wl-b2b-brands__item {
  font-family: var(--wl-font-display);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.wl-b2b-brands__item:hover {
  color: rgba(255,255,255,0.25);
}

/* Small brand logos for V1 */
.wl-b2b-brands__logo-track {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: wl-marquee 25s linear infinite;
  width: max-content;
}

.wl-b2b-brands__logo {
  font-family: var(--wl-font-display);
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 0.3s ease;
  cursor: default;
}

.wl-b2b-brands__logo:hover {
  color: var(--wl-text);
}

@keyframes wl-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== TESTIMONIALS ===== */
.wl-b2b-testimonials {
  padding: var(--wl-space-section) 0;
  background: var(--wl-bg-card);
  position: relative;
}

.wl-b2b-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wl-b2b-testimonial {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--wl-border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all var(--wl-duration-fast) var(--wl-ease-out);
}

.wl-b2b-testimonial:hover {
  border-color: var(--wl-border-accent);
  transform: translateY(-4px);
}

.wl-b2b-testimonial__stars {
  color: var(--wl-accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.wl-b2b-testimonial__quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--wl-text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.wl-b2b-testimonial__author {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px;
}

.wl-b2b-testimonial__role {
  font-size: 13px;
  color: var(--wl-text-subtle);
}

/* ===== FAQ ACCORDION (light) ===== */
.wl-b2b-faq {
  padding: var(--wl-space-section) 0;
  background: #f5f5f5;
  position: relative;
}

.wl-b2b .wl-b2b-faq .wl-section-title {
  color: #1a1a1a !important;
}

.wl-b2b-faq .twl-glass-accordion__item {
  background: #fff !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px;
  margin-bottom: 8px;
}

.wl-b2b-faq .twl-glass-accordion__item.is-open {
  border-color: rgba(255,106,0,0.3) !important;
}

.wl-b2b-faq .twl-glass-accordion__trigger,
.wl-b2b-faq .twl-glass-accordion__trigger span {
  color: #1a1a1a !important;
  background: none !important;
}

.wl-b2b-faq .twl-glass-accordion__trigger:hover,
.wl-b2b-faq .twl-glass-accordion__trigger:hover span {
  color: #ff6a00 !important;
}

.wl-b2b-faq .twl-glass-accordion__content,
.wl-b2b-faq .twl-glass-accordion__content p {
  color: #555 !important;
}

.wl-b2b-faq .twl-glass-accordion__icon {
  color: #1a1a1a;
}

.wl-b2b-faq .twl-glass-accordion__item.is-open .twl-glass-accordion__icon {
  color: #ff6a00;
}

.wl-b2b-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wl-b2b-faq__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--wl-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--wl-duration-fast) ease;
}

.wl-b2b-faq__item.is-open {
  border-color: var(--wl-border-accent);
}

.wl-b2b-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--wl-text);
  font-family: var(--wl-font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: color var(--wl-duration-fast) ease;
}

.wl-b2b-faq__question:hover {
  color: var(--wl-accent);
}

.wl-b2b-faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.wl-b2b-faq__item.is-open .wl-b2b-faq__icon {
  transform: rotate(45deg);
}

.wl-b2b-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.wl-b2b-faq__answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--wl-text-muted);
  line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.wl-b2b-cta {
  position: relative;
  padding: var(--wl-space-section) var(--wl-space-inline);
  text-align: center;
  overflow: hidden;
}

.wl-b2b-cta__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.wl-b2b-cta__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(255,90,31,0.15) 50%, rgba(10,10,10,0.9) 100%);
}

.wl-b2b-cta__title {
  font-family: var(--wl-font-display);
  font-size: var(--wl-fs-h2);
  font-weight: 700;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.wl-b2b-cta__subtitle {
  font-size: var(--wl-fs-body);
  color: var(--wl-text-muted);
  margin: 0 0 40px;
  position: relative;
  z-index: 1;
}

.wl-b2b-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

/* ===== V2 SPECIFIC: SPLIT INTRO ===== */
.wl-b2b-split {
  padding: var(--wl-space-section) 0;
  background: var(--wl-bg);
  position: relative;
}

.wl-b2b-split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wl-b2b-split__text {
  font-family: var(--wl-font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.25;
}

.wl-b2b-split__text em {
  color: var(--wl-accent);
  font-style: normal;
}

.wl-b2b-split__stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.wl-b2b-split__stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.wl-b2b-split__stat-value {
  font-family: var(--wl-font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: var(--wl-accent);
  line-height: 1;
  display: inline-block;
}

.wl-b2b-split__stat-label {
  font-size: 15px;
  color: var(--wl-text-muted);
}

/* ===== V2 SPECIFIC: HORIZONTAL SCROLL TIERS ===== */
.wl-b2b-htiers {
  position: relative;
  background: #0a0a0a;
  padding: clamp(48px, 6vw, 80px) 0;
  overflow: hidden;
}

.wl-b2b-htiers__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.wl-b2b-htiers__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 1;
}

.wl-b2b-htiers > .wl-b2b-container,
.wl-b2b-htiers__track {
  position: relative;
  z-index: 2;
}

.wl-b2b-htiers__track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--wl-space-inline);
  align-items: stretch;
}

.wl-b2b-htier {
  display: flex;
}

.wl-b2b-htier__card {
  background: var(--wl-bg-card);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 40px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--wl-ease-out), box-shadow 0.4s var(--wl-ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.wl-b2b-htier__card:hover {
  transform: translateY(-8px);
  border-color: var(--wl-accent);
  box-shadow: 0 16px 48px rgba(255,90,31,0.15);
}

.wl-b2b-htier__card--featured {
  border-color: var(--wl-accent);
  border-width: 2px;
  background: linear-gradient(180deg, rgba(255,90,31,0.08) 0%, var(--wl-bg-card) 40%);
  box-shadow: 0 0 80px rgba(255,90,31,0.15), 0 0 200px rgba(255,90,31,0.05);
  transform: scale(1.03);
}

.wl-b2b-htier__card--featured:hover {
  transform: scale(1.03) translateY(-8px);
}

/* ===== V2 SPECIFIC: TIMELINE ===== */
.wl-b2b-timeline {
  padding: var(--wl-space-section) 0;
  position: relative;
  background: #0a0a0a;
}

.wl-b2b-timeline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.wl-b2b-timeline > .wl-b2b-container {
  position: relative;
  z-index: 1;
}

.wl-b2b-timeline__items {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.wl-b2b-timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--wl-border);
  transform: translateX(-50%);
  --progress: 0;
}

.wl-b2b-timeline__line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--wl-accent);
  transform: scaleY(var(--progress));
  transform-origin: top;
}

.wl-b2b-timeline__item {
  display: flex;
  align-items: center;
  padding: 40px 0;
  position: relative;
}

.wl-b2b-timeline__item:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 40px);
}

.wl-b2b-timeline__item:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 40px);
}

.wl-b2b-timeline__dot {
  position: absolute;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--wl-bg);
  border: 3px solid var(--wl-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  z-index: 2;
  font-weight: 700;
  font-size: 14px;
  color: var(--wl-text-subtle);
  transition: all 0.4s ease;
}

.wl-b2b-timeline__item.is-active .wl-b2b-timeline__dot {
  border-color: var(--wl-accent);
  color: var(--wl-accent);
  box-shadow: 0 0 20px rgba(255,90,31,0.4);
}

.wl-b2b-timeline__content {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--wl-border);
  border-radius: 16px;
  padding: 28px 24px;
  max-width: 360px;
}

.wl-b2b-timeline__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.wl-b2b-timeline__content p {
  font-size: 15px;
  color: var(--wl-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ===== V2 SPECIFIC: BENTO GRID ===== */
.wl-b2b-bento {
  padding: var(--wl-space-section) 0;
  background: #0a0a0a;
  position: relative;
}

.wl-b2b-bento::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.wl-b2b-bento > .wl-b2b-container {
  position: relative;
  z-index: 1;
}

.wl-b2b-bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 20px;
}

.wl-b2b-bento__card {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--wl-ease-out);
  position: relative;
  overflow: hidden;
}

.wl-b2b-bento__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,90,31,0.3);
  box-shadow: 0 12px 40px rgba(255,90,31,0.1);
}

/* Hero image card - spans 2 cols */
.wl-b2b-bento__card--hero {
  grid-column: span 2;
  min-height: 320px;
  padding: 0;
  justify-content: flex-end;
}

/* Smaller image card */
.wl-b2b-bento__card--img {
  min-height: 280px;
  padding: 0;
  justify-content: flex-end;
}

.wl-b2b-bento__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s var(--wl-ease-out);
}

.wl-b2b-bento__card:hover .wl-b2b-bento__bg {
  transform: scale(1.05);
}

.wl-b2b-bento__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.4) 50%, rgba(10,10,10,0.1) 100%);
}

.wl-b2b-bento__body {
  position: relative;
  z-index: 3;
  padding: 32px 28px;
}

.wl-b2b-bento__tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--wl-accent);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* Metric highlight card */
.wl-b2b-bento__card--metric {
  background: linear-gradient(135deg, rgba(255,90,31,0.08), #1a1a1a 60%);
  border-color: rgba(255,90,31,0.2);
  text-align: center;
  justify-content: center;
  align-items: center;
}

.wl-b2b-bento__metric-value {
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 800;
  color: var(--wl-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.wl-b2b-bento__metric-label {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.wl-b2b-bento__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,90,31,0.1);
  border-radius: 14px;
  color: var(--wl-accent);
  transition: transform 0.3s ease;
}

.wl-b2b-bento__card:hover .wl-b2b-bento__icon {
  transform: rotate(-6deg) scale(1.08);
}

.wl-b2b-bento__card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.wl-b2b-bento__card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

/* ===== V2 SPECIFIC: BEFORE/AFTER SLIDER ===== */
.wl-b2b-slider {
  padding: var(--wl-space-section) 0;
  background: var(--wl-bg);
  position: relative;
}

.wl-b2b-slider__wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  aspect-ratio: 16/9;
  user-select: none;
}

.wl-b2b-slider__img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wl-b2b-slider__img--after {
  clip-path: inset(0 50% 0 0);
}

.wl-b2b-slider__handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--wl-accent);
  transform: translateX(-50%);
  z-index: 2;
}

.wl-b2b-slider__handle::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wl-accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(255,90,31,0.4);
}

.wl-b2b-slider__handle::before {
  content: '\2194';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.wl-b2b-slider__label {
  position: absolute;
  top: 16px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 3;
}

.wl-b2b-slider__label--before {
  left: 16px;
  background: rgba(255,255,255,0.15);
  color: var(--wl-text);
}

.wl-b2b-slider__label--after {
  right: 16px;
  background: rgba(255,90,31,0.2);
  color: var(--wl-accent);
}

/* ===== V2 SPECIFIC: HORIZONTAL TESTIMONIALS ===== */
.wl-b2b-htest {
  padding: var(--wl-space-section) 0;
  overflow: hidden;
  background: #0a0a0a;
  position: relative;
}

.wl-b2b-htest::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

.wl-b2b-htest > .wl-b2b-container {
  position: relative;
  z-index: 1;
}

.wl-b2b-htest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wl-b2b-htest__card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--wl-ease-out);
}

.wl-b2b-htest__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,90,31,0.3);
  box-shadow: 0 12px 40px rgba(255,90,31,0.1);
}

.wl-b2b-htest__card--featured {
  border-color: var(--wl-accent);
  background: linear-gradient(135deg, rgba(255,90,31,0.06), rgba(255,255,255,0.03) 60%);
}

.wl-b2b-htest__stars {
  color: var(--wl-accent);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.wl-b2b-htest__quote {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0 0 28px;
  flex: 1;
}

.wl-b2b-htest__quote strong {
  color: var(--wl-accent);
  font-weight: 700;
}

.wl-b2b-htest__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.wl-b2b-htest__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--wl-accent);
  flex-shrink: 0;
}

.wl-b2b-htest__name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.wl-b2b-htest__role {
  font-size: 13px;
  color: var(--wl-text-muted);
}

.wl-b2b-htest__badge {
  margin-left: auto;
  padding: 6px 14px;
  background: rgba(255,90,31,0.12);
  border: 1px solid rgba(255,90,31,0.25);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--wl-accent);
  white-space: nowrap;
}

/* ===== V2 HERO: floating grid lines ===== */
.wl-b2b-hero--v2 .wl-b2b-hero__grid-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.wl-b2b-hero--v2 .wl-grid-line {
  position: absolute;
  background: rgba(255,90,31,0.06);
}

.wl-grid-line--h {
  width: 100%;
  height: 1px;
}

.wl-grid-line--v {
  width: 1px;
  height: 100%;
}

/* ===== V2 CTA: pulsing button ===== */
@keyframes wl-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(37,211,102,0); }
}

.wl-b2b-btn--pulse {
  animation: wl-pulse 2s ease-in-out infinite;
}

/* ===== MOBILE ===== */
@media (max-width: 1100px) {
  .wl-b2b-proof__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .wl-b2b-features__grid { grid-template-columns: repeat(2, 1fr); }
  .wl-b2b-pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .wl-b2b-tier--featured { transform: none; }
  .wl-b2b-tier--featured:hover { transform: translateY(-4px); }
  .wl-b2b-process__grid { grid-template-columns: 1fr; gap: 40px; }
  .wl-b2b-process__visual { position: relative; top: 0; height: auto; aspect-ratio: 16/9; }
  .wl-b2b-process__step { min-height: auto; }
  .wl-b2b-testimonials__grid { grid-template-columns: 1fr; }
  .wl-b2b-split__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .wl-b2b-split__stats { align-items: center; }
  .wl-b2b-timeline__line { left: 20px; }
  .wl-b2b-timeline__item:nth-child(odd),
  .wl-b2b-timeline__item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 70px;
    padding-right: 0;
  }
  .wl-b2b-timeline__dot { left: 20px; }
  .wl-b2b-bento__grid { grid-template-columns: 1fr 1fr; }
  .wl-b2b-bento__card--hero { grid-column: span 2; }
  .wl-b2b-htest__grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  /* V2 horizontal tiers fallback to vertical on tablet */
  .wl-b2b-htiers__track { grid-template-columns: 1fr; max-width: 420px; }
  .wl-b2b-htier__card--featured { transform: none; }
  .wl-b2b-htier__card--featured:hover { transform: translateY(-8px); }
}

@media (max-width: 768px) {
  .wl-b2b-hero { min-height: 80vh; position: relative; }
  .wl-b2b-hero ~ * { z-index: auto; }
  .wl-b2b-split { box-shadow: none; }
  .wl-b2b-hero__title { font-size: clamp(32px, 8vw, 44px); }
  .wl-b2b-proof__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wl-b2b-proof__value { font-size: clamp(28px, 7vw, 40px); }
  .wl-b2b-features__grid { grid-template-columns: 1fr; }
  .wl-b2b-feature { padding: 28px 20px; }
  .wl-b2b-parallax { height: 30vh; min-height: 180px; }
  .wl-b2b-process__steps { padding-left: 0; }
  .wl-b2b-process__line { display: none; }
  .wl-b2b-process__step::before { display: none; }
  .wl-b2b-process__step-num { font-size: 56px; }
  .wl-b2b-cta__actions { flex-direction: column; align-items: stretch; }
  .wl-b2b-bento__grid { grid-template-columns: 1fr; }
  .wl-b2b-bento__card--hero { grid-column: span 1; }
  .wl-b2b-htest__grid { grid-template-columns: 1fr; }
  .wl-b2b-htest__badge { display: none; }
  .wl-b2b-timeline__content { max-width: 100%; }
  .wl-b2b-slider__wrap { aspect-ratio: 4/3; }
}

/* ===== WORDPRESS THEME OVERRIDES ===== */
/* Parent theme sets video{display:inline-block} and iframe,video{max-width:100%;min-height:100px}
   which breaks the full-viewport hero. These !important overrides fix it. */

/* Hero must break out of WP content wrappers */
.wl-b2b-hero {
  position: sticky !important;
  top: 0 !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  height: 100vh !important;
  min-height: 600px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 0 !important;
}

/* Video: override theme's inline-block + max-width rules.
   height +80px + bottom:-40px pushes native controls off-screen
   (the parent overflow:hidden clips them).                       */
.wl-b2b .wl-b2b-hero__media {
  position: absolute !important;
  top: -40px !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -40px !important;
  width: 100% !important;
  height: calc(100% + 80px) !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  display: block !important;
  vertical-align: initial !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Hide native video controls & overlay play button */
.wl-b2b-hero__media::-webkit-media-controls,
.wl-b2b-hero__media::-webkit-media-controls-panel,
.wl-b2b-hero__media::-webkit-media-controls-play-button,
.wl-b2b-hero__media::-webkit-media-controls-start-playback-button,
.wl-b2b-hero__media::-webkit-media-controls-overlay-play-button,
.wl-b2b-hero__media::-webkit-media-controls-timeline,
.wl-b2b-hero__media::-webkit-media-controls-current-time-display,
.wl-b2b-hero__media::-webkit-media-controls-time-remaining-display,
.wl-b2b-hero__media::-webkit-media-controls-volume-slider {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}

/* Hero content overlays the video */
.wl-b2b .wl-b2b-hero__content {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
}

.wl-b2b .wl-b2b-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.wl-b2b .wl-b2b-hero__grid-lines {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

/* Tiers background video: same parent-theme overrides as hero video */
.wl-b2b .wl-b2b-htiers__bg-video {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  min-height: 0 !important;
  object-fit: cover !important;
  display: block !important;
  vertical-align: initial !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

/* Hide native video controls on tiers bg video */
.wl-b2b-htiers__bg-video::-webkit-media-controls,
.wl-b2b-htiers__bg-video::-webkit-media-controls-panel,
.wl-b2b-htiers__bg-video::-webkit-media-controls-play-button,
.wl-b2b-htiers__bg-video::-webkit-media-controls-start-playback-button,
.wl-b2b-htiers__bg-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none !important;
  opacity: 0 !important;
}

/* Sections after hero scroll OVER it (parallax cover effect) */
.wl-b2b-hero ~ * {
  position: relative !important;
  z-index: 1 !important;
}

/* Split intro gets shadow to sell the cover effect */
.wl-b2b .wl-b2b-split {
  box-shadow: 0 -40px 80px rgba(10,10,10,0.8) !important;
}

/* Force Montserrat + white on entire B2B page (override parent theme) */
.wl-b2b,
.wl-b2b *,
.wl-b2b h1, .wl-b2b h2, .wl-b2b h3, .wl-b2b h4, .wl-b2b h5, .wl-b2b h6,
.wl-b2b p, .wl-b2b a, .wl-b2b span, .wl-b2b li, .wl-b2b button {
  font-family: 'Montserrat', sans-serif !important;
  color: #fff !important;
}
/* FAQ section: override white to dark for light-bg FAQ */
.wl-b2b .wl-b2b-faq,
.wl-b2b .wl-b2b-faq *,
.wl-b2b .wl-b2b-faq h2,
.wl-b2b .wl-b2b-faq p,
.wl-b2b .wl-b2b-faq span,
.wl-b2b .wl-b2b-faq button {
  color: #1a1a1a !important;
}
.wl-b2b .wl-b2b-faq .wl-b2b-kicker,
.wl-b2b .wl-b2b-faq .wl-b2b-kicker::before,
.wl-b2b .wl-b2b-faq .wl-b2b-kicker::after {
  color: var(--wl-accent, #FF5A1F) !important;
}
.wl-b2b .wl-b2b-faq .wl-b2b-faq__num {
  color: #999 !important;
}
.wl-b2b .wl-b2b-faq .wl-b2b-faq__toggle {
  color: var(--wl-accent, #FF5A1F) !important;
}
.wl-b2b .wl-b2b-faq .wl-b2b-faq__body > p {
  color: #555 !important;
}
/* Subtitles & second lines in accent orange */
.wl-b2b .wl-section-subtitle,
.wl-b2b .wl-b2b-hero__subtitle,
.wl-b2b .wl-b2b-cta__subtitle {
  color: var(--wl-accent) !important;
}
/* Muted text stays softer white */
.wl-b2b .wl-b2b-tier__features li,
.wl-b2b .wl-b2b-timeline__content p,
.wl-b2b .wl-b2b-bento__card p,
.wl-b2b .wl-b2b-htest__quote,
.wl-b2b .wl-b2b-htest__role,
.wl-b2b .wl-b2b-split__stat-label,
.wl-b2b .twl-glass-accordion__content p {
  color: rgba(255,255,255,0.7) !important;
}
/* Accent-colored elements keep orange */
.wl-b2b .wl-b2b-hero__badge,
.wl-b2b .wl-b2b-tier__label,
.wl-b2b .wl-b2b-split__stat-value,
.wl-b2b .wl-b2b-bento__metric-value,
.wl-b2b .wl-b2b-htest__badge,
.wl-b2b .wl-b2b-htest__stars,
.wl-b2b .wl-b2b-htest__quote strong,
.wl-b2b .wl-title-accent {
  color: var(--wl-accent) !important;
}

/* Remove WP page title + header margin-bottom that creates gap */
.twl-page-active .page_title_wrap {
  display: none !important;
}
.twl-page-active .page_content_wrap {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.twl-page-active .top_panel,
.twl-page-active .top_panel_navi {
  margin-bottom: 0 !important;
}
/* Pull hero flush against header — no white gap */
.wl-b2b {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* WP wrappers: overflow-x:clip breaks position:sticky on hero.
   Remove overflow on B2B page so parallax cover effect works. */
body:has(.wl-b2b) .page_wrap,
body:has(.wl-b2b) .page_content_wrap,
body:has(.wl-b2b) #page,
body:has(.wl-b2b) #content,
body:has(.wl-b2b) .content_wrap,
body:has(.wl-b2b) .body_wrap {
  overflow: visible !important;
  overflow-x: visible !important;
  overflow-y: visible !important;
}

/* Transparent header on B2B page, animated to black on sticky.
   Parent theme .scheme_dark.sc_layouts_row sets background-color:#eaeaea
   — must target COMBINED classes (no space = same element).               */
body:has(.wl-b2b) .top_panel,
body:has(.wl-b2b) .top_panel_navi,
body:has(.wl-b2b) .top_panel_navi.sc_layouts_row,
body:has(.wl-b2b) .scheme_dark.sc_layouts_row,
body:has(.wl-b2b) .sc_layouts_row_fixed,
body:has(.wl-b2b) .sc_layouts_row_fixed_on {
  background: #000 !important;
  background-color: #000 !important;
  background-image: none !important;
}
/* Kill page title banner / breadcrumb area */
body:has(.wl-b2b) .page_title_wrap,
body:has(.wl-b2b) .sc_layouts_title,
body:has(.wl-b2b) .sc_layouts_title_wrap {
  display: none !important;
}

/* Footer: remove top gap on B2B page */
body:has(.wl-b2b) .page_footer_wrap,
body:has(.wl-b2b) .footer_wrap,
body:has(.wl-b2b) footer,
body:has(.wl-b2b) .copyright_wrap {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Kicker (global) ── */
.wl-b2b-kicker {
  font-size: 14px;
  color: var(--wl-accent, #FF5A1F);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.wl-b2b-kicker::before,
.wl-b2b-kicker::after {
  content: '\2014';
  color: var(--wl-accent, #FF5A1F);
  font-size: 16px;
}
.wl-b2b-mono {
  font-family: 'JetBrains Mono', monospace;
}

/* ── Green-box (global) ── */
.wl-b2b .first-letter-box {
  position: relative;
  display: inline-block;
  z-index: 2;
}
.wl-b2b .green-box {
  position: absolute;
  inset: -7px 2px -6px -8px;
  background: var(--wl-accent, #FF5A1F);
  transform: skewX(-15deg);
  border-radius: 2px;
  z-index: -1;
  overflow: hidden;
  width: 40px;
  height: 60px;
  top: -47px;
  left: 1px;
}
.wl-b2b .green-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-25deg);
  animation: wlShineBox 4s ease-in-out infinite;
  filter: blur(3px);
  pointer-events: none;
}
@keyframes wlShineBox {
  0%, 100% { left: -100%; opacity: 0; }
  50% { left: 150%; opacity: 1; }
}

/* ── FAQ (standard pattern) ── */
.wl-b2b-faq {
  padding: clamp(60px, 8vw, 100px) 0;
  background: #f5f5f5;
  color: #1a1a1a;
}
.wl-b2b-faq .wl-section-title {
  color: #1a1a1a !important;
  display: inline-block;
}
.wl-b2b-faq .wl-b2b-kicker {
  color: var(--wl-accent, #FF5A1F) !important;
}
.wl-b2b-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.wl-b2b-faq__item {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 0 !important;
  overflow: hidden;
  transition: border-color 0.3s;
  padding: 0 !important;
  margin: 0 !important;
}
.wl-b2b-faq__item.is-open {
  border-color: rgba(255,90,31,0.3) !important;
}
button.wl-b2b-faq__header,
.wl-b2b-faq__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer;
  color: #1a1a1a !important;
  font-size: clamp(0.9rem, 1.4vw, 1rem) !important;
  font-weight: 500 !important;
  text-align: left !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  transition: color 0.3s;
  margin: 0 !important;
  line-height: 1.5 !important;
}
button.wl-b2b-faq__header:hover,
button.wl-b2b-faq__header:focus {
  color: var(--wl-accent, #FF5A1F) !important;
  background: none !important;
  background-color: transparent !important;
  box-shadow: none !important;
  outline: none;
}
.wl-b2b-faq__num {
  color: #999 !important;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.wl-b2b-faq__q {
  flex: 1;
  font-weight: 500;
  color: #1a1a1a !important;
}
.wl-b2b-faq__toggle {
  color: var(--wl-accent, #FF5A1F);
  font-size: 1.2rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.wl-b2b-faq__item.is-open .wl-b2b-faq__toggle {
  transform: rotate(45deg);
}
.wl-b2b-faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.wl-b2b-faq__item.is-open .wl-b2b-faq__body {
  grid-template-rows: 1fr;
}
.wl-b2b-faq__body > p {
  overflow: hidden;
  padding: 0;
  margin: 0;
  color: #555 !important;
  line-height: 1.7;
  font-size: 0.95rem;
  background: none;
}
.wl-b2b-faq__item.is-open .wl-b2b-faq__body > p {
  padding-bottom: 1.25rem;
}
@media (min-width: 769px) {
  .wl-b2b-faq__body > p {
    padding-left: 3.5rem;
  }
}

/* ── Mobile FAQ overflow fix ── */
@media (max-width: 768px) {
  .wl-b2b-faq__header { gap: 0.5rem; }
  .wl-b2b-faq__q { word-break: break-word; min-width: 0; }
  .wl-b2b-faq__toggle { flex-shrink: 0; }
  .wl-b2b-faq__body > p { font-size: 0.9rem; }
}

/* ── Green-box responsive ── */
@media (max-width: 767px) {
  .wl-b2b .green-box {
    width: 28px !important;
    height: 42px !important;
    inset: -6px -0.35em -30px -10px !important;
    top: unset !important;
    left: unset !important;
  }
}
