/* style.css — hero overlays + premium CTA patterns */

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

html, body {
  overflow-x: hidden;
}

/* Hero video background */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 0;
  pointer-events: none;
  width: 100vw;
  height: 56.25vw;
  transform: translate(-50%, -50%) scale(1.2);
}

@media (max-aspect-ratio: 16/9) {
  .hero-video-bg {
    width: 177.78vh;
    height: 100vh;
  }
}

/* Hero Page Load Entrance Animations */
.hero-fade-in {
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-fade-in--1 { animation-delay: 0.1s; }
.hero-fade-in--2 { animation-delay: 0.25s; }
.hero-fade-in--3 { animation-delay: 0.4s; }
.hero-fade-in--4 { animation-delay: 0.55s; }

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky header */
.header-hidden {
  transform: translateY(-100%);
}

.header-visible {
  transform: translateY(0);
}

/* Hero overlays — dark where content lives (left), video breathes (right) */
.hero-overlay-base {
  background: rgba(0, 0, 0, 0.28);
}

.hero-overlay-left {
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.72) 32%,
      rgba(0, 0, 0, 0.35) 58%,
      rgba(0, 0, 0, 0.12) 78%,
      transparent 100%);
}

.hero-overlay-bottom {
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.45) 0%,
      transparent 42%);
}

/* Solid red pill CTA */
.btn-solid-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 9999px;
  background: #ea1d22;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.65rem;
  box-shadow: 0 10px 28px rgba(234, 29, 34, 0.4);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.btn-solid-pill:hover {
  background: #c4181c;
  box-shadow: 0 12px 32px rgba(234, 29, 34, 0.55);
}

/* Outline CTA + red arrow disc (header + secondary) */
.btn-outline-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9999px;
  border: 1.5px solid #ea1d22;
  background: rgba(8, 13, 26, 0.45);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.45rem 0.5rem 0.45rem 1.45rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  isolation: isolate;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.btn-outline-arrow>* {
  position: relative;
  z-index: 2;
}

.btn-outline-arrow:hover {
  background: rgba(234, 29, 34, 0.12);
  border-color: #ff3a3f;
}

.btn-outline-arrow__icon {
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 9999px;
  background: #ea1d22;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Header CTA — smooth left-to-right sweep fill, no bump */
.btn-outline-arrow--fill::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #ea1d22;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.btn-outline-arrow--fill:hover::before {
  transform: scaleX(1);
}

.btn-outline-arrow--fill:hover {
  background: rgba(8, 13, 26, 0.45);
  border-color: #ea1d22;
  box-shadow: 0 0 20px rgba(234, 29, 34, 0.45);
}

.btn-outline-arrow--fill:hover .btn-outline-arrow__icon {
  background: #fff;
  color: #ea1d22;
}

/* ═══════════════════════════════════════════════════
   01 — WHAT WE DO — 3-Card Interactive Grid
═══════════════════════════════════════════════════ */

.wwd-section {
  position: relative;
  background: #07090f;
  padding: 96px 0;
  overflow: hidden;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wwd-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
  filter: blur(90px);
  z-index: 0;
}

.wwd-glow--tl {
  top: -12%;
  left: -8%;
  width: 48%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(234, 29, 34, 0.18) 0%, transparent 70%);
}

.wwd-glow--br {
  bottom: -15%;
  right: -8%;
  width: 46%;
  height: 50%;
  background: radial-gradient(ellipse at center, rgba(234, 29, 34, 0.12) 0%, transparent 70%);
}

.wwd-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  /* exact match to max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Content Scroll Transitions (Header: Label, Heading, Body) ── */
.wwd-header {
  margin-bottom: 44px;
}

.wwd-label,
.wwd-heading,
.wwd-body {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wwd-section.is-visible .wwd-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.wwd-section.is-visible .wwd-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.wwd-section.is-visible .wwd-body {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.wwd-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wwd-label__line {
  width: 28px;
  height: 2px;
  background: #ea1d22;
  border-radius: 2px;
  flex-shrink: 0;
}

.wwd-label__text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.wwd-label__num {
  color: #ea1d22;
}

.wwd-heading {
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 12px;
}

.wwd-heading__accent {
  background: linear-gradient(180deg, #ff4d52 0%, #ea1d22 55%, #b81418 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wwd-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  margin: 0;
}

/* ── 3-Card Grid & Staggered Scroll-in Movement ── */
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wwd-card {
  position: relative;
  background: #0d111a;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  cursor: pointer;

  /* Initial scroll-in state */
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  will-change: opacity, transform;
}

/* Staggered entrance when scrolled into view */
.wwd-section.is-visible .wwd-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.wwd-section.is-visible .wwd-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

.wwd-section.is-visible .wwd-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.48s;
}

/* Hover Movement & Lighting */
.wwd-section.is-visible .wwd-card:hover {
  transform: translateY(-6px);
  border-color: #ea1d22;
  box-shadow:
    0 0 0 1px rgba(234, 29, 34, 0.4),
    0 0 28px rgba(234, 29, 34, 0.26),
    0 18px 42px rgba(0, 0, 0, 0.55);
}

/* Card Media — Top, Full Width, with bottom radius */
.wwd-card__media {
  position: relative;
  width: 100%;
  height: 235px;
  overflow: hidden;
  background: #07090f;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wwd-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wwd-card:hover .wwd-card__media img {
  transform: scale(1.04);
}

.wwd-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  background: linear-gradient(to bottom, transparent 55%, rgba(13, 17, 26, 0.65) 100%);
  pointer-events: none;
}

/* Card Body — Bottom: Left Icon, Center Title, Right Arrow */
.wwd-card__body {
  padding: 18px 20px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0d111a;
  flex: 1;
}

/* Left Icon — Title-based unique & premium icon */
.wwd-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #ea1d22;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(234, 29, 34, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wwd-card:hover .wwd-card__icon {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(234, 29, 34, 0.65);
}

/* Middle Title Group */
.wwd-card__title-group {
  flex: 1;
  min-width: 0;
}

.wwd-card__title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wwd-card__desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right Arrow Button */
.wwd-card__go {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  flex-shrink: 0;
}

.wwd-card:hover .wwd-card__go {
  background: #ea1d22;
  border-color: #ea1d22;
  box-shadow: 0 0 14px rgba(234, 29, 34, 0.5);
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .wwd-section {
    padding: 64px 0;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wwd-card__media {
    height: 200px;
  }

  .wwd-heading {
    font-size: 1.85rem;
  }
}

/* ═══════════════════════════════════════════════════
   WHAT WE TRANSFORM — contained layout + smooth 3D
═══════════════════════════════════════════════════ */

.wt-section {
  position: relative;
  height: 86vh;
  min-height: 740px;
  max-height: 980px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050607;
  color: #fff;
}

.wt-glow {
  position: absolute;
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
}

.wt-glow--tr {
  top: -14%;
  right: -6%;
  width: 52%;
  height: 58%;
  background: radial-gradient(ellipse at center, rgba(234, 29, 34, 0.26) 0%, transparent 72%);
}

.wt-glow--bl {
  bottom: -22%;
  left: -10%;
  width: 44%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(234, 29, 34, 0.14) 0%, transparent 72%);
}

.wt-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem;
  /* exact match to max-w-7xl (1280px) of other sections */
  margin: 0 auto;
  padding: 0 1.5rem;
  /* exact match to px-6 of other sections */
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.58fr);
  gap: 32px 10px;
  align-items: center;
}

/* LEFT stays above / never overlapped by slides */
.wt-left {
  position: relative;
  z-index: 4;
  max-width: 410px;
}

/* Staggered slide in from the left */
.wt-left .wt-label,
.wt-left .wt-heading,
.wt-left .wt-body,
.wt-left .btn-outline-arrow,
.wt-left .wt-cta {
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wt-section.wt-revealed .wt-left .wt-label,
.wt-left.wt-revealed .wt-label {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.06s;
}

.wt-section.wt-revealed .wt-left .wt-heading,
.wt-left.wt-revealed .wt-heading {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.18s;
}

.wt-section.wt-revealed .wt-left .wt-body,
.wt-left.wt-revealed .wt-body {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.30s;
}

.wt-section.wt-revealed .wt-left .btn-outline-arrow,
.wt-section.wt-revealed .wt-left .wt-cta,
.wt-left.wt-revealed .btn-outline-arrow,
.wt-left.wt-revealed .wt-cta {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.42s;
}

.wt-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.wt-label__line {
  width: 28px;
  height: 2px;
  background: #ea1d22;
  border-radius: 2px;
  flex-shrink: 0;
}

.wt-label__text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.wt-label__num {
  color: #ea1d22;
}

.wt-heading {
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 16px;
}

.wt-heading__accent {
  display: block;
  margin-top: 4px;
  background: linear-gradient(180deg, #ff4d52 0%, #ea1d22 55%, #b81418 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.wt-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 30rem;
  margin: 0 0 24px;
}

.wt-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.9rem 1.55rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #c4181c 0%, #ea1d22 55%, #ff3a3f 100%);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 32px rgba(234, 29, 34, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.wt-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 40px rgba(234, 29, 34, 0.55);
}

.wt-cta svg {
  transition: transform 0.22s ease;
}

.wt-cta:hover svg {
  transform: translateX(3px);
}

/* RIGHT — stage container enters smoothly from the right */
.wt-right {
  position: relative;
  z-index: 1;
  min-width: 0;
  width: 100%;
  overflow: visible;
  isolation: isolate;
  opacity: 0;
  transform: translateX(48px) scale(0.96);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.wt-section.wt-revealed .wt-right,
.wt-right.wt-revealed {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.2s;
}

.wt-stage {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 0;
}

.wt-nav__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(14, 18, 26, 0.75);
  color: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 10;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.wt-nav__btn--prev {
  left: calc(50% - 395px);
}

.wt-nav__btn--next {
  right: calc(50% - 395px);
}

.wt-nav__btn:hover {
  border-color: #ea1d22;
  background: rgba(234, 29, 34, 0.22);
  color: #ea1d22;
  box-shadow: 0 0 16px rgba(234, 29, 34, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.wt-nav__btn:active {
  transform: translateY(-50%) scale(0.96);
}

.wt-nav__btn:focus-visible {
  outline: 2px solid #ea1d22;
  outline-offset: 3px;
}

/* ── 1 · 2 · 1 CAROUSEL ── */
.wt-carousel {
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: visible;
  padding: 10px 0;
}

.wt-track {
  position: relative;
  width: 100%;
  height: 470px;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
  perspective-origin: 50% 50%;
}

.wt-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 318px;
  height: 445px;
  margin-left: -159px;
  margin-top: -222px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(0.78);
  transition:
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.55s ease,
    box-shadow 0.4s ease;
  will-change: transform, opacity;
  z-index: 0;
  cursor: pointer;
}

/* Center / main active slot — wide, prominent, full height, vibrant red glowing border */
.wt-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1) rotateY(0deg);
  z-index: 5;
  filter: none;
  cursor: default;
}

/* Left slot — reversed 3D angle, clean visible gap, 100% visible */
.wt-slide.is-prev {
  opacity: 0.84;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-304px, 0, -15px) scale(0.85) rotateY(-18deg);
  transform-origin: 50% 50%;
  z-index: 3;
  filter: brightness(0.75);
}

/* Right slot — reversed 3D angle, clean visible gap, 100% visible */
.wt-slide.is-next {
  opacity: 0.84;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(304px, 0, -15px) scale(0.85) rotateY(18deg);
  transform-origin: 50% 50%;
  z-index: 3;
  filter: brightness(0.75);
}

/* Off-screen Left — smooth entry & exit path */
.wt-slide.is-hidden-left {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-510px, 0, -50px) scale(0.7) rotateY(-24deg);
  z-index: 1;
}

/* Off-screen Right — smooth entry & exit path */
.wt-slide.is-hidden-right {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(510px, 0, -50px) scale(0.7) rotateY(24deg);
  z-index: 1;
}

.wt-card {
  height: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: #11141c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.wt-slide.is-active .wt-card {
  border: 2px solid #ea1d22;
  box-shadow:
    0 0 0 1px rgba(234, 29, 34, 0.45),
    0 0 24px rgba(234, 29, 34, 0.42),
    0 14px 34px rgba(0, 0, 0, 0.5);
}

.wt-card__media {
  position: relative;
  height: 48%;
  min-height: 205px;
  overflow: hidden;
  background: #0b0d12;
  flex-shrink: 0;
}

.wt-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wt-slide.is-active .wt-card:hover .wt-card__media img {
  transform: scale(1.03);
}

.wt-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(21, 24, 32, 0.55) 100%);
  pointer-events: none;
}

.wt-card__body {
  padding: 15px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  background: #11141c;
}

.wt-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wt-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #ea1d22;
  flex-shrink: 0;
  box-shadow: 0 0 14px rgba(234, 29, 34, 0.45);
}

.wt-card__title {
  margin: 0;
  flex: 1;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.wt-card__go {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.wt-slide.is-active .wt-card__go {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.wt-card__go:hover {
  background: #ea1d22;
  border-color: #ea1d22;
  transform: translateX(2px);
}

.wt-card__desc {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.48;
  color: rgba(255, 255, 255, 0.78);
}

.wt-card__tags {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.wt-card__tags li {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 9999px;
  padding: 4px 11px;
  background: rgba(255, 255, 255, 0.05);
}

.wt-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.wt-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: all 0.3s ease;
}

.wt-dot.is-active {
  width: 24px;
  height: 8px;
  border-radius: 9999px;
  background: #ea1d22;
  box-shadow: 0 0 10px rgba(234, 29, 34, 0.6);
  transform: none;
}

@media (max-width: 1100px) {
  .wt-section {
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 72px 0 64px;
  }

  .wt-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 1.5rem;
  }

  .wt-left {
    max-width: 560px;
    background: none;
  }

  .wt-right {
    opacity: 1;
    transform: none;
    overflow: visible;
  }

  .wt-stage {
    padding: 0;
    width: 100%;
  }

  .wt-nav__btn--prev {
    left: 10px;
  }

  .wt-nav__btn--next {
    right: 10px;
  }

  .wt-track {
    min-height: 450px;
    height: 450px;
  }

  .wt-slide {
    width: 260px;
    height: 420px;
    margin-left: -130px;
    margin-top: -210px;
  }

  .wt-slide.is-prev {
    transform: translate3d(-220px, 0, -20px) scale(0.85) rotateY(-18deg);
  }

  .wt-slide.is-next {
    transform: translate3d(220px, 0, -20px) scale(0.85) rotateY(18deg);
  }
}

@media (max-width: 640px) {
  .wt-container {
    padding: 0 1rem;
  }

  .wt-section {
    padding: 56px 0 48px;
  }

  .wt-heading {
    font-size: 1.65rem;
  }

  .wt-nav__btn {
    width: 36px;
    height: 36px;
  }

  .wt-stage {
    padding: 0;
    gap: 6px;
  }

  .wt-track {
    height: 410px;
    min-height: 410px;
  }

  .wt-slide {
    width: min(270px, 78vw);
    margin-left: calc(min(270px, 78vw) / -2);
    height: 390px;
    margin-top: -195px;
  }

  .wt-card {
    height: 390px;
  }

  .wt-card__media {
    min-height: 175px;
    height: 45%;
  }

  .wt-slide.is-prev,
  .wt-slide.is-next,
  .wt-slide.is-hidden-left,
  .wt-slide.is-hidden-right {
    display: none !important;
  }

  .wt-slide.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

/* ═══════════════════════════════════════════════════
   03 — HOW IT WORKS — From Idea to Real Business Impact
═══════════════════════════════════════════════════ */

.hiw-section {
  position: relative;
  background: #05070c;
  color: #fff;
  padding: 108px 0 112px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Atmospheric Ambient Red Nebulas */
.hiw-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 9999px;
  filter: blur(110px);
  z-index: 0;
}
.hiw-glow--left {
  top: 15%;
  left: -8%;
  width: 45%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(234, 29, 34, 0.2) 0%, transparent 70%);
}
.hiw-glow--right {
  bottom: 10%;
  right: -8%;
  width: 40%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(234, 29, 34, 0.14) 0%, transparent 70%);
}

.hiw-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 80rem; /* exact match to max-w-7xl (1280px) of other sections */
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.88fr) minmax(0, 1fr);
  gap: 48px 36px;
  align-items: center;
}

/* LEFT: The 7-Step Interactive Journey */
.hiw-flow {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 52px; /* Increased ample gap between rows */
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hiw-section.is-visible .hiw-flow {
  opacity: 1;
  transform: translateX(0);
}

/* Loop Wire SVG connecting Row 1 (Card 3) to Row 2 (Card 4) */
.hiw-loop-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.hiw-loop-svg path {
  transition: stroke 0.4s ease, filter 0.4s ease;
}

/* Loop Turn Indicator Node */
.hiw-loop-node {
  position: absolute;
  z-index: 3;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background: #0b0f17;
  border: 1.2px solid rgba(234, 29, 34, 0.45);
  display: grid;
  place-items: center;
  color: #ea1d22;
  box-shadow: 0 0 12px rgba(234, 29, 34, 0.4);
  transform: translate(-50%, -50%);
  transition: background 0.35s ease, border-color 0.35s ease, color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

/* Rows of Cards */
.hiw-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
}

.hiw-row--1 {
  width: calc(75% - 8px);
  margin: 0 auto;
  justify-content: center;
}

.hiw-row--2 {
  width: 100%;
}

.hiw-row--1 .hiw-card,
.hiw-row--2 .hiw-card {
  flex: 1;
  min-width: 0;
}

/* Card Styling */
.hiw-card {
  position: relative;
  background: #0b0f17;
  border: 1.2px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 16px 14px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  min-height: 154px;
  display: flex;
  flex-direction: column;
}

.hiw-card:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 29, 34, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(234, 29, 34, 0.2);
}

/* Card Border Laser Beam / Snake Runner */
.hiw-card__border-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 18px;
  overflow: visible;
  z-index: 5;
}

.hiw-card__border-beam {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: transparent;
  stroke-width: 2.2px;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.hiw-card.is-active-step .hiw-card__border-beam {
  stroke: #ff3b42;
  stroke-dasharray: 28 72;
  filter: drop-shadow(0 0 6px #ea1d22) drop-shadow(0 0 14px rgba(255, 60, 65, 0.9));
  animation: hiwBorderTrace 1.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  opacity: 1;
}

@keyframes hiwBorderTrace {
  0% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.3;
  }
}

/* Card 07: Impact (Hero Destination Card — Activates ONLY on step 7) */
.hiw-card--impact {
  border: 1.2px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  position: relative;
}
.hiw-card--impact:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 29, 34, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(234, 29, 34, 0.2);
}
.hiw-card--impact.is-active-step {
  border: 1.8px solid #ff383e !important;
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow:
    0 0 52px rgba(234, 29, 34, 0.95),
    inset 0 0 24px rgba(234, 29, 34, 0.3),
    0 18px 48px rgba(0, 0, 0, 0.75) !important;
}

/* Card Header (Round Icon on Left + Number on Right) */
.hiw-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 14px;
}

/* Round Circular Icon Wrapper on Left */
.hiw-card__icon-wrap {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(234, 29, 34, 0.2) 0%, rgba(13, 17, 26, 0.9) 100%);
  border: 1.5px solid rgba(234, 29, 34, 0.45);
  box-shadow: 0 0 14px rgba(234, 29, 34, 0.22), inset 0 0 8px rgba(234, 29, 34, 0.15);
  display: grid;
  place-items: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.hiw-icon-svg {
  width: 23px;
  height: 23px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(234, 29, 34, 0.8));
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

/* Step Number Badge on Right */
.hiw-card__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 10px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

/* Title & Description */
.hiw-card__title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.hiw-card__desc {
  font-size: 0.75rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* ── Inseparable Bridge Connector (Line + Centered Arrow Node) ── */
.hiw-bridge {
  position: relative;
  width: 32px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hiw-bridge__line {
  position: absolute;
  top: 50%;
  left: -2px;
  right: -2px;
  height: 2px;
  background: rgba(234, 29, 34, 0.3);
  box-shadow: 0 0 6px rgba(234, 29, 34, 0.3);
  transform: translateY(-50%);
  z-index: 1;
  overflow: hidden;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.hiw-bridge__pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, #ff4d52 50%, #ffffff 80%, transparent 100%);
  transform: translateX(-100%);
  opacity: 0;
}

.hiw-bridge.is-active-bridge .hiw-bridge__line {
  background: #ff4d52;
  box-shadow: 0 0 12px #ea1d22, 0 0 20px rgba(234, 29, 34, 0.8);
}

.hiw-bridge.is-active-bridge .hiw-bridge__pulse {
  opacity: 1;
  animation: hiwPulseShot 0.45s ease-out forwards;
}

@keyframes hiwPulseShot {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.hiw-bridge__node {
  position: relative;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  background: #0b0f17;
  border: 1.2px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hiw-bridge.is-active-bridge .hiw-bridge__node {
  background: #ea1d22;
  border-color: #ff5257;
  color: #fff;
  box-shadow: 0 0 16px rgba(234, 29, 34, 0.95), 0 0 26px rgba(234, 29, 34, 0.5);
  transform: scale(1.18);
}

/* ── Continuous Active Pipeline Flow States ── */
.hiw-card.is-active-step {
  border-color: #ea1d22 !important;
  transform: translateY(-5px) !important;
  box-shadow:
    0 0 28px rgba(234, 29, 34, 0.45),
    inset 0 0 14px rgba(234, 29, 34, 0.12),
    0 14px 36px rgba(0, 0, 0, 0.65) !important;
}

.hiw-card.is-active-step .hiw-card__icon-wrap {
  border-color: #ff474d;
  background: radial-gradient(circle at 35% 35%, rgba(234, 29, 34, 0.35) 0%, rgba(20, 24, 36, 0.95) 100%);
  box-shadow: 0 0 20px rgba(234, 29, 34, 0.65), inset 0 0 12px rgba(234, 29, 34, 0.3);
  transform: scale(1.08);
}

.hiw-card.is-active-step .hiw-icon-svg {
  filter: drop-shadow(0 0 10px #ff383e);
  transform: scale(1.08);
}

.hiw-card.is-active-step .hiw-card__step-num {
  color: #ffffff;
  border-color: rgba(234, 29, 34, 0.65);
  background: rgba(234, 29, 34, 0.2);
  box-shadow: 0 0 12px rgba(234, 29, 34, 0.45);
}

.hiw-loop-svg.is-active-loop path {
  stroke: #ff4d52;
  stroke-width: 2.8px;
  filter: drop-shadow(0 0 10px #ea1d22) drop-shadow(0 0 20px rgba(234, 29, 34, 0.8));
}

.hiw-loop-node.is-active-loop,
.hiw-entry-node.is-active-loop {
  background: #ea1d22;
  color: #fff;
  border-color: #ff4d52;
  box-shadow: 0 0 18px rgba(234, 29, 34, 0.95), 0 0 30px rgba(234, 29, 34, 0.6);
  transform: translate(-50%, -50%) scale(1.2);
}

/* RIGHT: Sidebar */
.hiw-sidebar {
  position: relative;
  z-index: 2;
  padding-left: 10px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.hiw-section.is-visible .hiw-sidebar {
  opacity: 1;
  transform: translateX(0);
}

.hiw-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.hiw-label__line {
  width: 28px;
  height: 2px;
  background: #ea1d22;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(234, 29, 34, 0.6);
}
.hiw-label__text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.hiw-heading {
  font-size: clamp(2.1rem, 3.2vw, 2.85rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 16px;
}

.hiw-heading__accent {
  background: linear-gradient(180deg, #ff4d52 0%, #ea1d22 55%, #b81418 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hiw-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
  max-width: 28rem;
  margin: 0 0 28px;
}

/* CTA Button */
.hiw-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #ea1d22 0%, #c41419 100%);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 0 26px rgba(234, 29, 34, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 0;
}
.hiw-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(234, 29, 34, 0.65);
}
.hiw-cta svg {
  transition: transform 0.22s ease;
}
.hiw-cta:hover svg {
  transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1120px) {
  .hiw-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hiw-sidebar {
    order: -1;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .hiw-section {
    padding: 72px 0;
  }
  .hiw-flow {
    gap: 14px;
  }
  .hiw-loop-svg,
  .hiw-loop-node,
  .hiw-entry-node {
    display: none !important;
  }
  .hiw-row--1,
  .hiw-row--2 {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin: 0;
  }
  .hiw-bridge {
    transform: rotate(90deg);
    margin: 4px 0;
  }
  .hiw-card {
    width: 100%;
    min-height: auto;
  }
}

/* ═══════════════════════════════════════════════
   03 — AI TRAINING & ENABLEMENT SECTION (.ate-*)
═══════════════════════════════════════════════ */
.ate-section {
  position: relative;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(234, 29, 34, 0.1) 0%, transparent 60%), #06090f;
  color: #f1f5f9;
  padding: 100px 0 120px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ate-ambient-glow {
  position: absolute;
  top: 30%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 450px;
  background: radial-gradient(ellipse, rgba(234, 29, 34, 0.14) 0%, rgba(234, 29, 34, 0) 70%);
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
  animation: ateAuraBreathe 8s ease-in-out infinite alternate;
}

@keyframes ateAuraBreathe {
  0% { opacity: 0.45; transform: translate(-50%, -50%) scale(0.92); }
  100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1.08); }
}

.ate-container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Header Scroll Reveal */
.ate-header {
  margin-bottom: 48px;
}

.ate-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ate-label__line {
  width: 28px;
  height: 2px;
  background: #ea1d22;
  border-radius: 2px;
  flex-shrink: 0;
}

.ate-label__text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.ate-label__num {
  color: #ea1d22;
}

.ate-label,
.ate-title,
.ate-subtitle {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.ate-section.is-visible .ate-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.ate-section.is-visible .ate-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.ate-section.is-visible .ate-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.ate-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
}

.ate-gradient-text {
  background: linear-gradient(135deg, #ff2d32 0%, #ea1d22 50%, #ff7b7f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ate-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 44rem;
  margin: 0;
}

/* 2-Column Grid Layout */
.ate-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

/* Left Media Column - Focal Point Card */
.ate-media-col {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.32s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.32s;
  will-change: opacity, transform;
}

.ate-section.is-visible .ate-media-col {
  opacity: 1;
  transform: translateX(0);
}

.ate-card-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  box-shadow: 
    0 25px 65px -15px rgba(0, 0, 0, 0.9),
    0 0 45px -10px rgba(234, 29, 34, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  background: #0b0f17;
}

.ate-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.96) contrast(1.04);
}

.ate-card-frame:hover .ate-image {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.06);
}

.ate-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 7, 12, 0.05) 0%, rgba(5, 7, 12, 0.4) 55%, rgba(5, 7, 12, 0.92) 100%);
  pointer-events: none;
}

.ate-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
  z-index: 2;
}

.ate-caption-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11, 15, 23, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 10px;
}

.ate-live-dot {
  width: 8px;
  height: 8px;
  background: #ea1d22;
  border-radius: 50%;
  box-shadow: 0 0 10px #ea1d22;
  animation: bfcPulse 2s infinite;
}

.ate-caption-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: #cbd5e1;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Right Content Column - Staggered Capability Cards */
.ate-content-col {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.42s, transform 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.42s;
  will-change: opacity, transform;
}

.ate-section.is-visible .ate-content-col {
  opacity: 1;
  transform: translateX(0);
}

.ate-feature-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ate-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: rgba(11, 15, 23, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.ate-feature-card:hover {
  transform: translateX(6px);
  background: rgba(11, 15, 23, 0.95);
  border-color: rgba(234, 29, 34, 0.4);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5), 0 0 20px -5px rgba(234, 29, 34, 0.2);
}

.ate-feature-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(234, 29, 34, 0.1);
  border: 1px solid rgba(234, 29, 34, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.ate-feature-card:hover .ate-feature-icon-wrap {
  transform: scale(1.08);
  background: rgba(234, 29, 34, 0.2);
}

.ate-feature-icon {
  width: 22px;
  height: 22px;
  color: #ea1d22;
}

.ate-feature-body {
  flex: 1;
}

.ate-feature-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.ate-feature-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .ate-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ate-image {
    min-height: 380px;
  }
}

@media (max-width: 640px) {
  .ate-section {
    padding: 72px 0 80px;
  }
  .ate-header {
    margin-bottom: 36px;
  }
  .ate-feature-card {
    padding: 16px;
    gap: 14px;
  }
}

/* ═══════════════════════════════════════════════
   BOOK FREE CONSULTANCY SECTION (.bfc-*)
   Unified 2-column split card (Zero Gap)
   with High-End Animations & Transitions
═══════════════════════════════════════════════ */
.bfc-section {
  position: relative;
  background: radial-gradient(ellipse 90% 50% at 50% 0%, rgba(234, 29, 34, 0.12) 0%, transparent 60%), #06090f;
  color: #f1f5f9;
  padding: 100px 0 120px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Ambient Backlight Breathing Animation */
.bfc-ambient-glow {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(234, 29, 34, 0.18) 0%, rgba(234, 29, 34, 0) 70%);
  pointer-events: none;
  filter: blur(90px);
  z-index: 0;
  animation: bfcAuraBreathe 7s ease-in-out infinite alternate;
}

@keyframes bfcAuraBreathe {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.92);
  }
  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.08);
  }
}

.bfc-container {
  max-width: 80rem; /* matches max-w-7xl */
  margin: 0 auto;
  padding: 0 1.5rem; /* matches px-6 */
  position: relative;
  z-index: 1;
}

/* Header Scroll Reveal (Matching Section 01 & 02) */
.bfc-header {
  margin-bottom: 48px;
}

.bfc-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.bfc-label__line {
  width: 28px;
  height: 2px;
  background: #ea1d22;
  border-radius: 2px;
  flex-shrink: 0;
}

.bfc-label__text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.bfc-label__num {
  color: #ea1d22;
}

.bfc-label,
.bfc-title,
.bfc-subtitle {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.bfc-section.is-visible .bfc-label,
.bfc-section.bfc-visible .bfc-label {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.bfc-section.is-visible .bfc-title,
.bfc-section.bfc-visible .bfc-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.16s;
}

.bfc-section.is-visible .bfc-subtitle,
.bfc-section.bfc-visible .bfc-subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.28s;
}

.bfc-title {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0 0 16px;
}

.bfc-gradient-text {
  background: linear-gradient(135deg, #ff2d32 0%, #ea1d22 50%, #ff7b7f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bfc-subtitle {
  font-size: 16.5px;
  line-height: 1.65;
  color: #94a3b8;
  max-width: 42rem;
  margin: 0;
}

/* ── Unified Split Card (ZERO GAP) with Staggered Entrance & Hover ── */
.bfc-card {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 0; /* Strict Zero Gap */
  background: #0b0f17;
  border-radius: 24px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  align-items: stretch;
  position: relative;

  /* Initial scroll-in state (matches other sections) */
  opacity: 0;
  transform: translateY(34px);
  transition: 
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  will-change: opacity, transform;
}

.bfc-section.is-visible .bfc-card,
.bfc-section.bfc-visible .bfc-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.34s;
}

/* Card Hover: completely steady (NO BUMP) with subtle border & shadow glow */
.bfc-section.is-visible .bfc-card:hover,
.bfc-section.bfc-visible .bfc-card:hover {
  transform: translateY(0);
  border-color: rgba(234, 29, 34, 0.32);
  box-shadow: 
    0 25px 65px -15px rgba(0, 0, 0, 0.9),
    0 0 45px -8px rgba(234, 29, 34, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Moving Sheen Light Sweep on Top Border */
.bfc-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(234, 29, 34, 0.85), #ff7b7f, transparent);
  animation: bfcSheenSweep 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 5;
  pointer-events: none;
}

@keyframes bfcSheenSweep {
  0% { left: -100%; }
  45%, 100% { left: 100%; }
}

/* ── Left Column: Pure Image ONLY with Slide In ── */
.bfc-media-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 540px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.bfc-section.is-visible .bfc-media-col,
.bfc-section.bfc-visible .bfc-media-col {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.44s;
}

.bfc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
  filter: brightness(0.97) contrast(1.03);
}

.bfc-card:hover .bfc-image {
  transform: scale(1.03);
  filter: brightness(1) contrast(1.05);
}

/* ── Right Column: Optimized Form with Slide In ── */
.bfc-form-col {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0b0f17;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateX(18px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.bfc-section.is-visible .bfc-form-col,
.bfc-section.bfc-visible .bfc-form-col {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.52s;
}

/* Stepper */
.bfc-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.bfc-step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bfc-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.bfc-step-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}

.bfc-step-item.active .bfc-step-num {
  background: #ea1d22;
  border-color: #ea1d22;
  color: #ffffff;
  box-shadow: 0 0 18px rgba(234, 29, 34, 0.6);
  transform: scale(1.08);
}

.bfc-step-item.active .bfc-step-label {
  color: #ffffff;
}

.bfc-step-item.completed .bfc-step-num {
  background: rgba(234, 29, 34, 0.22);
  border-color: #ea1d22;
  color: #ea1d22;
  transform: scale(1);
}

.bfc-step-item.completed .bfc-step-label {
  color: #cbd5e1;
}

.bfc-step-divider {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 16px;
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
}

.bfc-step-divider::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0%;
  background: linear-gradient(90deg, #ea1d22 0%, #ff4d4f 100%);
  box-shadow: 0 0 10px rgba(234, 29, 34, 0.7);
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.bfc-step-divider.step-2-active::after {
  width: 100%;
}

/* Step Panes: Animated Transitions */
.bfc-step-pane {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bfc-step-pane.slide-in-right {
  animation: bfcSlideInRight 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.bfc-step-pane.slide-in-left {
  animation: bfcSlideInLeft 0.38s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bfcSlideInRight {
  from {
    opacity: 0;
    transform: translateX(22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes bfcSlideInLeft {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.bfc-pane-hidden {
  display: none !important;
}

/* Field Styles & Interactive Focus Transitions */
.bfc-field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.bfc-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bfc-label {
  font-size: 13.5px;
  font-weight: 600;
  color: #e2e8f0;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.bfc-required {
  color: #ea1d22;
  margin-left: 2px;
}

.bfc-optional {
  font-size: 11.5px;
  color: #64748b;
  font-weight: 400;
  margin-left: 4px;
}

.bfc-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.bfc-input-icon {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 18px;
  color: #64748b;
  pointer-events: none;
  transition: color 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

/* White-style Input Fields for High Visibility & Contrast */
.bfc-input {
  width: 100%;
  height: 48px;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  padding: 0 16px 0 44px;
  font-size: 14.5px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: 
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  font-family: inherit;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bfc-input::placeholder {
  color: #64748b;
  font-weight: 400;
}

.bfc-input:focus {
  border-color: #ea1d22;
  box-shadow: 0 0 0 3.5px rgba(234, 29, 34, 0.22), 0 4px 14px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.bfc-input-wrapper:focus-within .bfc-input-icon {
  color: #ea1d22;
  transform: scale(1.1);
}

.bfc-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3.5px rgba(239, 68, 68, 0.22);
  animation: bfcShake 0.35s ease-in-out;
}

@keyframes bfcShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

/* White-style Textarea */
.bfc-textarea {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  transition: 
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  font-family: inherit;
  resize: vertical;
  min-height: 110px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.bfc-textarea::placeholder {
  color: #64748b;
  font-weight: 400;
}

.bfc-textarea:focus {
  border-color: #ea1d22;
  box-shadow: 0 0 0 3.5px rgba(234, 29, 34, 0.22), 0 4px 14px rgba(0, 0, 0, 0.12);
  background: #ffffff;
}

.bfc-error-text {
  display: none;
  font-size: 12px;
  color: #f87171;
  margin-top: 3px;
  font-weight: 500;
  animation: bfcFadeIn 0.2s ease;
}

.bfc-error-text.visible {
  display: block;
}

@keyframes bfcFadeIn {
  from { opacity: 0; transform: translateY(-3px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Action Rows & Buttons (NO BUMPING on hover) */
.bfc-action-row {
  display: flex;
  align-items: center;
  margin-top: 8px;
  gap: 14px;
}

.bfc-action-right {
  justify-content: flex-end;
}

.bfc-action-split {
  justify-content: space-between;
}

.bfc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: 12px;
  padding: 13px 26px;
  cursor: pointer;
  transition: 
    box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease,
    border-color 0.25s ease;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
}

.bfc-btn:active {
  transform: scale(0.98);
}

.bfc-btn-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.bfc-btn-primary {
  background: #ea1d22;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(234, 29, 34, 0.4);
}

.bfc-btn-primary:hover {
  background: #d6181d;
  box-shadow: 0 6px 26px rgba(234, 29, 34, 0.58);
  /* No translateY bump */
}

.bfc-btn-primary:hover .bfc-btn-icon {
  transform: translateX(4px);
}

.bfc-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
}

.bfc-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.32);
  /* No translateY bump */
}

.bfc-btn-secondary:hover .bfc-btn-icon {
  transform: translateX(-4px);
}

.bfc-btn-submit {
  background: linear-gradient(135deg, #ea1d22 0%, #c41217 100%);
  color: #ffffff;
  box-shadow: 0 4px 22px rgba(234, 29, 34, 0.48);
}

.bfc-btn-submit:hover {
  background: linear-gradient(135deg, #ff2a30 0%, #d6181d 100%);
  box-shadow: 0 6px 30px rgba(234, 29, 34, 0.68);
  /* No translateY bump */
}

.bfc-btn-submit:hover .bfc-btn-icon {
  transform: scale(1.15);
}

.bfc-btn-submit:hover .bfc-btn-icon {
  transform: scale(1.15);
}

/* Success View with Spring Pop & Pulse */
.bfc-success {
  text-align: center;
  padding: 40px 10px;
  animation: bfcSuccessReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bfcSuccessReveal {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(14px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.bfc-success-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(234, 29, 34, 0.14);
  border: 1px solid rgba(234, 29, 34, 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(234, 29, 34, 0.35);
  animation: bfcSuccessPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

@keyframes bfcSuccessPop {
  0% {
    transform: scale(0.4) rotate(-15deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.bfc-success-check {
  width: 38px;
  height: 38px;
  color: #ea1d22;
}

.bfc-success-title {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 10px;
}

.bfc-success-desc {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 20px;
}

.bfc-success-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  color: #4ade80;
  margin-bottom: 28px;
}

.bfc-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

/* Responsive Adjustments */
@media (max-width: 980px) {
  .bfc-card {
    grid-template-columns: 1fr;
  }
  .bfc-media-col {
    min-height: 360px;
    max-height: 420px;
  }
  .bfc-form-col {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 28px;
  }
}

@media (max-width: 640px) {
  .bfc-section {
    padding: 72px 0 80px;
  }
  .bfc-header {
    margin-bottom: 36px;
  }
  .bfc-field-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bfc-form-col {
    padding: 26px 18px;
  }
  .bfc-action-split {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .bfc-action-split .bfc-btn {
    width: 100%;
  }
  .bfc-action-right .bfc-btn {
    width: 100%;
  }
}