/* ==========================================================================
   Findx Digital Solutions - Solved Puzzle 1:1 Architecture & Design System
   Exact match to solvedpuzzle.com CSS bundle
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Black Top Offer Bar & Header Navigation (kit-nav)
   -------------------------------------------------------------------------- */
.kit-offer {
  background-color: #111111;
  color: #ffffff;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 16px;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  z-index: 1002;
}

.kit-offer-location {
  position: absolute;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.6;
  white-space: nowrap;
}

.kit-offer-estimate {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}

.kit-offer-estimate:hover {
  opacity: 0.8;
}

.kit-offer-right {
  position: absolute;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kit-offer-aimode {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
}

.kit-offer-aimode:hover {
  background: rgba(255, 255, 255, 0.15);
}

.kit-offer-lang {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #ffffff;
  cursor: pointer;
}

/* Header & Navigation Row — Modern Floating Glassmorphism Island */
.kit-nav {
  position: sticky;
  z-index: 1000;
  top: 14px;
  width: min(1280px, calc(100% - 36px));
  margin: 12px auto 0;
  height: 72px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 9999px;
  box-shadow: 0 10px 32px -4px rgba(0, 0, 0, 0.07), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.35s ease,
              box-shadow 0.35s ease,
              border-color 0.35s ease;
  font-family: 'DM Sans', sans-serif;
}

.kit-nav.scrolled {
  height: 64px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px -8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.1);
}

.kit-nav-row {
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
}

.kit-logo {
  display: inline-flex;
  align-items: center;
  overflow: visible;
  text-decoration: none;
}

.kit-logo-img {
  width: 140px;
  max-width: 145px;
  height: auto;
  max-height: 44px;
  object-fit: contain;
  transition: width 0.3s ease, max-height 0.3s ease;
}

.kit-nav.scrolled .kit-logo-img {
  width: 125px;
  max-height: 38px;
}

.kit-desktop-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.kit-nav-item {
  position: relative;
}

.kit-nav-link {
  font-size: 0.95rem;
  font-weight: 400;
  color: #141414;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
}

.kit-nav-link:hover {
  opacity: 0.65;
}

/* Solved Puzzle 1:1 Mega Menu System */
.kit-has-megamenu {
  position: static !important;
  height: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
}

.kit-has-megamenu .kit-nav-link {
  height: 100% !important;
  display: inline-flex !important;
  align-items: center !important;
}

.sp-megamenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 24px;
  box-shadow: 0 28px 65px -10px rgba(0, 0, 0, 0.16), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  display: none;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  pointer-events: none;
  overflow: visible;
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Invisible bridge so mouse hover never drops across gap */
.sp-megamenu::before {
  content: '';
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  display: block;
  pointer-events: auto;
  background: transparent;
}

.kit-has-megamenu:hover .sp-megamenu,
.kit-has-megamenu:focus-within .sp-megamenu,
.kit-has-megamenu.is-open .sp-megamenu,
.sp-megamenu:hover,
.sp-megamenu.is-open {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.sp-megamenu-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  padding: 0 3vw;
}

/* Left Sidebar Categories */
.sp-megamenu-sidebar {
  width: 330px;
  min-width: 310px;
  padding: 32px 24px 32px 0;
  border-right: 1px solid #edebe5;
  display: flex;
  flex-direction: column;
}

.sp-megamenu-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9c9a95;
  margin-bottom: 18px;
  padding-left: 14px;
}

.sp-megamenu-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.sp-cat-item {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13.5px;
  color: #222222;
  font-weight: 400;
  transition: background-color 0.18s ease, color 0.18s ease;
  user-select: none;
}

.sp-cat-num {
  font-style: italic;
  font-size: 12px;
  color: #888888;
  margin-right: 12px;
  min-width: 18px;
  transition: color 0.18s ease;
}

.sp-cat-name {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sp-cat-arrow {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  margin-left: 8px;
}

.sp-cat-item:hover,
.sp-cat-item.active {
  background-color: #111111;
  color: #ffffff;
}

.sp-cat-item:hover .sp-cat-num,
.sp-cat-item.active .sp-cat-num {
  color: rgba(255, 255, 255, 0.7);
}

.sp-cat-item:hover .sp-cat-arrow,
.sp-cat-item.active .sp-cat-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #ffffff;
}

/* Right Content Area */
.sp-megamenu-content {
  flex: 1;
  padding: 36px 0 36px 56px;
  position: relative;
}

.sp-cat-panel {
  display: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sp-cat-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.sp-cat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #edebe5;
  margin-bottom: 8px;
}

.sp-cat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9c9a95;
  min-width: 140px;
}

.sp-cat-title {
  font-size: 2.35rem;
  font-weight: 350;
  color: #111111;
  letter-spacing: -0.02em;
  margin: 0;
  flex: 1;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
}

.sp-cat-count {
  font-size: 12.5px;
  color: #8c8a85;
  letter-spacing: 0.02em;
  min-width: 140px;
  text-align: right;
}

.sp-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  row-gap: 0;
  margin-top: 6px;
}

.sp-service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 2px;
  border-bottom: 1px solid #f0eee9;
  text-decoration: none;
  color: #1a1a1a;
  transition: all 0.18s ease;
  cursor: pointer;
}

.sp-service-row:hover {
  border-bottom-color: #111111;
  padding-left: 6px;
}

.sp-srv-num {
  font-style: italic;
  font-size: 12.5px;
  color: #888888;
  margin-right: 14px;
  min-width: 22px;
  transition: color 0.18s ease;
}

.sp-service-row:hover .sp-srv-num {
  color: #111111;
  font-weight: 600;
}

.sp-srv-name {
  flex: 1;
  font-size: 14px;
  font-weight: 450;
  color: #222222;
  transition: color 0.18s ease;
}

.sp-service-row:hover .sp-srv-name {
  color: #000000;
  font-weight: 600;
}

.sp-srv-icon {
  font-size: 14px;
  color: #888888;
  transition: transform 0.18s ease, color 0.18s ease;
  margin-left: 12px;
}

.sp-service-row:hover .sp-srv-icon {
  color: #111111;
  transform: translate(3px, -3px);
}

.kit-nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.kit-search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: #141414;
  opacity: 0.6;
  transition: opacity 0.15s ease;
}

.kit-search-btn:hover {
  opacity: 1;
}

.kit-proposal-btn {
  background-color: #141414;
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.kit-proposal-btn:hover {
  background-color: #27272a;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Mobile & Tablet Hamburger Navigation Drawer System
   -------------------------------------------------------------------------- */
.sp-hamburger-btn {
  display: none;
  background: transparent;
  border: 1px solid #e0ded8;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.sp-hamburger-btn:hover {
  background: #f4f3ef;
  border-color: #111111;
}

.sp-hamburger-icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #111111;
  border-radius: 2px;
  transition: all 0.2s ease;
}

/* Mobile Drawer Overlay */
.sp-mob-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: #ffffff;
  z-index: 99999;
  display: none;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  font-family: 'DM Sans', sans-serif;
}

.sp-mob-drawer.active {
  display: flex !important;
  animation: mobDrawerFade 0.22s ease-out;
}

@keyframes mobDrawerFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sp-mob-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edebe5;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.sp-mob-header .kit-logo-img {
  width: 120px !important;
  max-width: 120px !important;
  height: auto !important;
}

.sp-mob-close {
  background: #f2f0ea;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  color: #111111;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease;
}

.sp-mob-close:hover {
  background: #111111;
  color: #ffffff;
}

.sp-mob-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sp-mob-links-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sp-mob-link {
  display: block;
  padding: 13px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  color: #111111;
  text-decoration: none;
  border-bottom: 1px solid #f2f0ea;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.sp-mob-link:hover {
  background: #f8f8f6;
}

/* Accordion Level 1 */
.sp-mob-acc-group {
  border-bottom: 1px solid #f2f0ea;
}

.sp-mob-acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #111111;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 6px;
  transition: background 0.15s ease;
}

.sp-mob-acc-head:hover,
.sp-mob-acc-head.open {
  background: #f8f8f6;
}

.sp-mob-arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
  color: #888888;
}

.sp-mob-acc-head.open .sp-mob-arrow,
.sp-mob-sub-head.open .sp-mob-arrow {
  transform: rotate(180deg);
}

.sp-mob-acc-content {
  display: none;
  padding: 4px 0 12px 10px;
}

.sp-mob-acc-head.open+.sp-mob-acc-content {
  display: block;
}

/* Accordion Level 2 (Sub-categories) */
.sp-mob-sub-acc {
  margin: 4px 0;
  border-left: 2px solid #e2e0db;
}

.sp-mob-sub-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #222222;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 4px;
}

.sp-mob-sub-head em {
  font-style: italic;
  color: #888888;
  margin-right: 6px;
  font-size: 0.8rem;
}

.sp-mob-sub-head:hover,
.sp-mob-sub-head.open {
  background: #f0eee8;
}

.sp-mob-sub-content {
  display: none;
  padding: 4px 0 8px 18px;
  flex-direction: column;
}

.sp-mob-sub-head.open+.sp-mob-sub-content {
  display: flex;
}

.sp-mob-sub-content a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  font-size: 0.84rem;
  color: #444444;
  text-decoration: none;
  border-bottom: 1px solid #f6f5f0;
  transition: color 0.15s ease;
}

.sp-mob-sub-content a:hover {
  color: #000000;
  font-weight: 600;
}

.sp-mob-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #edebe5;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .kit-nav {
    width: calc(100% - 24px) !important;
    margin: 8px auto 0 !important;
    height: 64px !important;
    border-radius: 9999px !important;
  }

  .kit-nav.scrolled {
    height: 58px !important;
  }

  .kit-nav-row {
    padding: 0 20px !important;
  }

  .kit-logo-img {
    width: 135px !important;
    max-width: 140px !important;
    max-height: 38px !important;
  }

  .kit-nav.scrolled .kit-logo-img {
    width: 120px !important;
    max-height: 34px !important;
  }

  .kit-desktop-links {
    display: none !important;
  }

  .sp-hamburger-btn {
    display: flex !important;
  }

  .kit-proposal-btn {
    display: none !important;
  }

  .kit-offer-location,
  .kit-offer-lang {
    display: none !important;
  }

  .kit-offer {
    justify-content: space-between !important;
    padding: 0 16px !important;
  }

  .kit-offer-right {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .kit-nav {
    height: 58px !important;
  }

  .kit-nav.scrolled {
    height: 54px !important;
  }

  .kit-logo-img {
    width: 120px !important;
    max-width: 125px !important;
    max-height: 34px !important;
  }

  .kit-nav.scrolled .kit-logo-img {
    width: 105px !important;
    max-height: 30px !important;
  }
}

@media (max-width: 480px) {
  .kit-nav {
    width: calc(100% - 16px) !important;
    margin: 6px auto 0 !important;
    height: 54px !important;
  }

  .kit-nav.scrolled {
    height: 50px !important;
  }

  .kit-logo-img {
    width: 105px !important;
    max-width: 110px !important;
    max-height: 30px !important;
  }

  .kit-nav.scrolled .kit-logo-img {
    width: 95px !important;
    max-height: 28px !important;
  }
}

/* --------------------------------------------------------------------------
   2. Solved Puzzle Hero Section & Persona Box
   -------------------------------------------------------------------------- */
/* Hero pin wrapper — SABB screens par hero 100svh sticky/pinned rehta hai,
   dark 'Bottom Line' section rounded corners ke saath upar se slide ho kar
   use cover karta hai. */
.sp-hero-wrapper {
  position: relative;
  height: 200vh;
  height: 200svh;
  margin-bottom: -100vh;
  margin-bottom: -100svh;
}

.sp-hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  z-index: 1;
  /* Premium hero dim effect jab dark sheet upar aati hai */
  will-change: transform, filter;
  transition: transform 0.1s linear, filter 0.1s linear;
}

.sp-hero-section {
  padding: 71px 7vw 80px;
  background-color: #ffffff;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(71px + 94px);
}

.sp-hero-image {
  height: min(520px, 56vh);
}

/* Dark sheet kam se kam ek viewport jitni lambi ho */
.sp-bottomline-card {
  min-height: 100vh;
  min-height: 100svh;
  align-content: center;
  padding-bottom: 150px;
}

/* Scroll cue tablet par hide */
@media (max-width: 1199px) {
  .sp-bottomline-cue {
    display: none;
  }
}

.sp-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.15fr 0.85fr;
  gap: 3vw;
  align-items: center;
  width: 100%;
}

.sp-hero-h1 {
  font-size: clamp(2.75rem, 1.9rem + 3.6vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.sp-hero-h1-light {
  font-weight: 200;
  display: block;
  color: #141414;
}

.sp-hero-h1-bold {
  font-weight: 700;
  display: block;
  color: #141414;
}

.sp-hero-sub {
  font-size: clamp(1.125rem, 1.05rem + 0.4vw, 1.3125rem);
  color: #5d5a54;
  margin-bottom: 2.25rem;
  max-width: 540px;
  line-height: 1.55;
  font-weight: 400;
}

.sp-hero-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sp-pill {
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.sp-pill-filled {
  background-color: #141414;
  color: #ffffff;
  border: 1px solid #141414;
}

.sp-pill-filled:hover {
  background-color: #27272a;
  transform: translateY(-2px);
}

.sp-pill-outline {
  background: transparent;
  color: #141414;
  border: 1px solid #141414;
}

.sp-pill-outline:hover {
  background: #141414;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Center Image */
.sp-hero-image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 520px;
}

.sp-hero-image img {
  width: 100%;
  max-width: 480px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.8s ease;
  mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
}

.sp-hero-image img:not([src]),
.sp-hero-image img[src=""] {
  opacity: 0 !important;
  visibility: hidden !important;
}

.sp-hero-image img.fade-out {
  opacity: 0;
}

/* Right Persona Card */
.sp-persona-card {
  padding-left: 10px;
  min-height: 180px;
}

.sp-persona-card h3 {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 42px;
  color: #141414;
}

.sp-persona-card .detail {
  font-size: 16px;
  color: #444444;
  margin-bottom: 8px;
  line-height: 1.5;
  min-height: 24px;
}

.sp-persona-card .channel {
  display: flex;
  align-items: center;
  gap: 8px;
}

.channel-icon {
  width: 20px;
  height: 20px;
  background: #141414;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
}

/* Typing cursor */
.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: #141414;
  margin-left: 2px;
  animation: blink 0.8s infinite;
  vertical-align: text-bottom;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* --------------------------------------------------------------------------
   3. Solved Puzzle 'The Bottom Line' TRUE 100% EDGE-TO-EDGE Dark Section
   Zero outer margins, 100% screen width, top rounded transition corners
   -------------------------------------------------------------------------- */
.sp-bottomline-section {
  padding: 0;
  background-color: #141414;
  width: 100%;
  position: relative;
  z-index: 4;
  /* pinned hero (z-index:1) ke UPAR slide karta hai */
  /* Premium reveal: shuru mein neeche offset, smooth slide up hoga */
  will-change: transform;
}

.sp-bottomline-card {
  background-color: #141414;
  color: #ffffff;
  border-radius: clamp(24px, 3vw, 48px) clamp(24px, 3vw, 48px) 0 0;
  box-shadow: 0 -36px 96px rgba(0, 0, 0, 0.28);
  padding: clamp(80px, 9vw, 130px) 7vw;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 4vw;
  align-items: start;
  width: 100%;
  margin: 0;
  position: relative;
  /* Premium initial state: thoda neeche + kam opacity */
  transform: translateY(80px);
  opacity: 0.01;
  transition:
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Jab JS ne active class lagayi — fully revealed state */
.sp-bottomline-card.is-revealed {
  transform: translateY(0);
  opacity: 1;
  border-radius: clamp(24px, 3vw, 48px) clamp(24px, 3vw, 48px) 0 0;
}

/* Solved puzzle jaisi accent bar — sheet ke top par halki light strip */
.sp-bottomline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  border-radius: clamp(24px, 3vw, 48px) clamp(24px, 3vw, 48px) 0 0;
  background: rgba(200, 200, 200, 0.28);
  pointer-events: none;
}

/* Scroll cue — dark sheet ke bottom me halki animated line (solvedpuzzle style) */
.sp-bottomline-cue {
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.sp-bottomline-cue-line {
  display: block;
  flex: 1;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.sp-bottomline-cue-line i {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  transform-origin: left center;
  animation: spCueFill 2.8s cubic-bezier(0.23, 1, 0.32, 1) infinite;
}

@keyframes spCueFill {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }

  70% {
    transform: scaleX(1);
    opacity: 1;
  }

  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

.sp-bottomline-tag {
  font-size: 0.8125rem;
  font-weight: 400;
  color: #85827b;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding-top: 12px;
}

.sp-bottomline-heading {
  font-size: clamp(1.875rem, 1.45rem + 1.8vw, 2.75rem);
  font-weight: 200;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 2.25rem;
}

.sp-reveal-text {
  font-size: clamp(1.45rem, 1.05rem + 1.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.22);
  max-width: 1180px;
}

.reveal-word {
  color: rgba(255, 255, 255, 0.22);
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  display: inline-block;
  white-space: pre;
}

.reveal-word.active {
  color: #ffffff;
  opacity: 1;
}

/* --------------------------------------------------------------------------
   4. Solved Puzzle 25+ Industries Video Showcase Section
   -------------------------------------------------------------------------- */
.sp-industries-section {
  background-color: #fbfbfa !important;
  color: #111111 !important;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e8e6e1;
  border-bottom: 1px solid #e8e6e1;
  padding: 95px 0 85px 0;
}

.sp-industries-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 0 6vw 45px 6vw;
  max-width: 1520px;
  margin: 0 auto;
}

.sp-industries-header-left {
  flex: 1 1 55%;
  max-width: 680px;
}

.sp-industries-title {
  color: #111111 !important;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0;
}

.sp-industries-header-right {
  flex: 1 1 45%;
  max-width: 520px;
}

.sp-industries-line {
  width: 100%;
  height: 1px;
  background: #e2e0db !important;
  margin-bottom: 24px;
}

.sp-industries-desc {
  color: #52525b !important;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 400;
}

.sp-industries-carousel-wrapper {
  position: relative;
  width: 100%;
}

.sp-carousel-nav {
  position: absolute;
  top: -65px;
  right: 6vw;
  display: flex;
  gap: 12px;
  z-index: 10;
}

.sp-carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #d4d4d8;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
}

.sp-carousel-btn:hover {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.sp-industries-track {
  display: flex;
  gap: 22px;
  padding: 10px 6vw 30px 6vw;
  overflow-x: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}

.sp-industries-track::-webkit-scrollbar {
  display: none;
}

.sp-industries-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.sp-industry-card {
  flex: 0 0 310px;
  width: 310px;
  height: 480px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: #0b0b0e;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.sp-industry-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22), 0 0 30px rgba(0, 188, 255, 0.2);
  border-color: #111111;
}

.sp-industry-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sp-industry-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.sp-industry-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 0, 0, 0.88) 100%);
  pointer-events: none;
}

.sp-industry-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 22px;
  z-index: 4;
  pointer-events: none;
}

.sp-industry-name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #ffffff;
  line-height: 1.25;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.95);
  margin: 0;
}

@media (max-width: 900px) {
  .sp-industries-header {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 36px;
  }

  .sp-carousel-nav {
    display: none;
  }

  .sp-industry-card {
    flex: 0 0 260px;
    width: 260px;
    height: 420px;
  }

  .sp-industry-name {
    font-size: 1.15rem;
  }
}

/* --------------------------------------------------------------------------
   5. Marquee Logo Ticker & Impact Numbers
   -------------------------------------------------------------------------- */
.sp-marquee-section {
  padding: 2.5rem 0;
  border-top: 1px solid #e2e0db;
  border-bottom: 1px solid #e2e0db;
  overflow: hidden;
  background-color: #ffffff;
  width: 100%;
}

.sp-marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.sp-partner-item {
  font-size: 1.1rem;
  font-weight: 600;
  color: #666666;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.75;
}

.sp-stats-section {
  padding: 5rem 7vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e0db;
  width: 100%;
}

.sp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  width: 100%;
}

.sp-stat-num {
  font-size: clamp(2.5rem, 2rem + 2vw, 3.75rem);
  font-weight: 200;
  color: #141414;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.sp-stat-lbl {
  font-size: 0.875rem;
  color: #666666;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   6. Services Cards Grid
   -------------------------------------------------------------------------- */
.sp-services-section {
  padding: 120px 7vw;
  background-color: #ffffff;
  border-top: 1px solid #e2e0db;
  width: 100%;
}

.sp-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.sp-section-tag {
  font-size: 0.8125rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #85827b;
  margin-bottom: 1rem;
  display: block;
}

.sp-section-title {
  font-size: clamp(1.875rem, 1.45rem + 1.8vw, 2.75rem);
  font-weight: 200;
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #141414;
}

.sp-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
}

.sp-service-card {
  background: #ffffff;
  border: 1px solid #e2e0db;
  border-radius: 12px;
  padding: 2.25rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.sp-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: #141414;
}

.sp-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #141414;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.sp-service-name {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #141414;
}

.sp-service-desc {
  font-size: 0.95rem;
  color: #5d5a54;
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.65;
}

.sp-service-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #141414;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.sp-service-card:hover .sp-service-link {
  gap: 10px;
}

/* Enhanced Visual Service Cards in Services Section */
.sp-services-section .sp-service-card.sp-visual-card {
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e7e5e0;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.sp-services-section .sp-service-card.sp-visual-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 188, 255, 0.3);
  border-color: #00bcff;
}

.sp-service-media {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  background-color: #ffffff;
  border-bottom: 1px solid #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1.25rem 1rem;
}

.sp-service-img {
  max-width: 86%;
  max-height: 86%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-visual-card:hover .sp-service-img {
  transform: scale(1.08);
}

.sp-service-pill-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #18181b;
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  z-index: 2;
}

.sp-service-icon-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e4e4e7;
  color: #111111;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  z-index: 2;
  transition: all 0.25s ease;
}

.sp-visual-card:hover .sp-service-icon-badge {
  background: #111111;
  color: #00bcff;
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 188, 255, 0.3);
}

.sp-service-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sp-visual-card .sp-service-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 0.6rem;
  line-height: 1.3;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}

.sp-visual-card:hover .sp-service-name {
  color: #00bcff;
}

.sp-visual-card .sp-service-desc {
  font-size: 0.925rem;
  color: #5d5a54;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}

.sp-service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.5rem;
}

.sp-feature-chip {
  font-size: 0.75rem;
  font-weight: 500;
  color: #3f3f46;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sp-feature-chip::before {
  content: "✓";
  font-size: 0.7rem;
  color: #00bcff;
  font-weight: 700;
}

.sp-service-footer {
  padding-top: 1rem;
  border-top: 1px solid #f0eeea;
}

.sp-service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 0.85rem;
  font-weight: 600;
  color: #141414;
  padding: 11px 16px;
  background: #f7f7f8;
  border: 1px solid #e4e4e7;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  text-decoration: none;
}

.sp-service-btn svg {
  transition: transform 0.25s ease, stroke 0.25s ease;
}

.sp-service-btn:hover,
.sp-visual-card:hover .sp-service-btn {
  background: #141414;
  color: #ffffff;
  border-color: #141414;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.sp-service-btn:hover svg,
.sp-visual-card:hover .sp-service-btn svg {
  transform: translateX(4px);
  stroke: #00bcff;
}

/* --------------------------------------------------------------------------
   7. Execution Methodology (Connected Circle Pipeline Framework) - Black & White
   -------------------------------------------------------------------------- */
.sp-pipeline-section {
  padding: 120px 7vw;
  background-color: #fafaf9;
  border-top: 1px solid #e7e5e0;
  width: 100%;
}

.sp-pipeline-container {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}

/* Continuous Connecting Line - Monochrome */
.sp-pipeline-track {
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: #18181b;
  z-index: 1;
  border-radius: 4px;
}

.sp-track-line {
  width: 100%;
  height: 100%;
  background: #18181b;
}

.sp-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
}

.sp-pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  position: relative;
}

/* Circular Node - Black & White */
.sp-node-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
}

.sp-node-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.sp-pipeline-step:hover .sp-node-circle {
  transform: scale(1.15);
  background: #18181b;
  border-color: #18181b;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.sp-node-num {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-sans);
  color: #18181b;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.sp-pipeline-step:hover .sp-node-num {
  color: #ffffff;
}

.sp-node-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1.5px dashed #a1a1aa;
  opacity: 0.7;
  animation: spRotateRing 16s linear infinite;
  pointer-events: none;
  transition: border-color 0.3s ease;
}

.sp-pipeline-step:hover .sp-node-ring {
  border-color: #18181b;
  opacity: 1;
}

@keyframes spRotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.sp-node-arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #18181b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #18181b;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sp-node-stem {
  width: 2px;
  height: 24px;
  background: #18181b;
  margin-bottom: 8px;
  opacity: 0.35;
}

/* Pipeline Card - Clean Monochrome */
.sp-pipeline-card {
  background: #ffffff;
  border: 1px solid #e5e5e7;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  position: relative;
}

.sp-pipeline-step:hover .sp-pipeline-card {
  transform: translateY(-6px);
  border-color: #18181b;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
}

.sp-card-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52525b;
  background: #f4f4f5;
  padding: 4px 10px;
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 0.75rem;
  border: 1px solid #e4e4e7;
}

.sp-pipeline-step:hover .sp-card-badge {
  background: #18181b;
  color: #ffffff;
  border-color: #18181b;
}

.sp-pipeline-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #18181b;
  margin-bottom: 0.6rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}

.sp-pipeline-desc {
  font-size: 0.875rem;
  color: #52525b;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}

.sp-pipeline-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 1.25rem;
}

.sp-pipeline-chips span {
  font-size: 0.72rem;
  font-weight: 500;
  color: #27272a;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.sp-pipeline-chips span::before {
  content: "✓";
  font-size: 0.68rem;
  color: #18181b;
  font-weight: 800;
}

.sp-pipeline-metric {
  background: #fafaf9;
  border: 1px solid #e7e5e0;
  border-radius: 10px;
  padding: 0.75rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78125rem;
  color: #18181b;
  margin-top: auto;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.sp-pipeline-step:hover .sp-pipeline-metric {
  background: #ffffff;
  border-color: #18181b;
}

/* Bottom Feature Trust Callout */
.sp-pipeline-bottom {
  max-width: 1360px;
  margin: 3.5rem auto 0;
  padding: 1.75rem 2.5rem;
  background: #ffffff;
  border: 1px solid #e7e5e0;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
}

.sp-bottom-features {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.sp-bot-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #27272a;
}

.sp-bot-icon {
  font-size: 1.15rem;
}

@media (max-width: 1180px) {
  .sp-pipeline-track {
    display: none;
  }

  .sp-pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .sp-node-arrow {
    display: none;
  }
}

@media (max-width: 680px) {
  .sp-pipeline-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .sp-pipeline-bottom {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }

  .sp-bottom-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* --------------------------------------------------------------------------
   7b. Black FAQ Section (Solved Puzzle Style)
   -------------------------------------------------------------------------- */
.sp-faq-section {
  background-color: #0d0d0d;
  width: 100%;
  padding: 0;
}

.sp-faq-inner {
  padding: clamp(80px, 9vw, 130px) 7vw;
  max-width: 1440px;
  margin: 0 auto;
}

.sp-faq-header {
  margin-bottom: clamp(40px, 5vw, 70px);
}

.sp-faq-tag {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.sp-faq-title {
  font-size: clamp(2.25rem, 1.8rem + 2vw, 3.75rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.sp-faq-title em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
}

/* Layout: left tabs + right accordion */
.sp-faq-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3vw;
  align-items: start;
}

/* --- Left Category Tabs --- */
.sp-faq-cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 120px;
}

.sp-faq-cat {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 18px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.45);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  font-family: var(--font-sans);
}

.sp-faq-cat:hover {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}

.sp-faq-cat.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

/* --- Right Accordion Panels --- */
.sp-faq-panels {
  min-width: 0;
}

.sp-faq-panel {
  display: none;
  flex-direction: column;
}

.sp-faq-panel.active {
  display: flex;
  animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Each FAQ row */
.sp-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sp-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.sp-faq-q:hover {
  color: #ffffff;
}

.sp-faq-item.open .sp-faq-q {
  color: #ffffff;
}

.sp-faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.25s ease;
  line-height: 1;
}

.sp-faq-item.open .sp-faq-icon {
  transform: rotate(45deg);
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.sp-faq-a {
  display: none;
  padding: 0 2rem 1.4rem 0;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  max-width: 680px;
}

.sp-faq-item.open .sp-faq-a {
  display: block;
  animation: faqFadeIn 0.25s ease;
}

/* Mobile: stack layout */
@media (max-width: 768px) {
  .sp-faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sp-faq-cats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    position: static;
  }

  .sp-faq-cat {
    padding: 8px 14px;
    font-size: 0.78rem;
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   8. Pricing Matrix
   -------------------------------------------------------------------------- */

.sp-pricing-section {
  padding: 120px 7vw;
  background-color: #f9f9f9;
  border-top: 1px solid #e2e0db;
  width: 100%;
}

.sp-pricing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3.5rem;
  overflow-x: auto;
}

.sp-pricing-tabs {
  background: #ffffff;
  border: 1px solid #e2e0db;
  padding: 4px;
  border-radius: 50px;
  display: inline-flex;
  gap: 4px;
}

.sp-pricing-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: none;
  background: transparent;
  color: #666666;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.sp-pricing-tab.active {
  background: #141414;
  color: #ffffff;
}

.sp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.sp-price-card {
  background: #ffffff;
  border: 1px solid #e2e0db;
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.sp-price-card.popular {
  border-color: #141414;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.sp-badge-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #141414;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sp-price-name {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #141414;
}

.sp-price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 2px;
  color: #141414;
}

.sp-price-period {
  font-size: 0.85rem;
  color: #666666;
  margin-bottom: 1.75rem;
}

.sp-price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 2.25rem;
  flex: 1;
  font-size: 0.9rem;
  color: #444444;
}

.sp-price-list li::before {
  content: '✓ ';
  color: #141414;
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. Modals & Footer
   -------------------------------------------------------------------------- */
.sp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.sp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sp-modal-box {
  background: #ffffff;
  width: 90%;
  max-width: 640px;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  position: relative;
  transform: scale(0.96);
  transition: all 0.3s ease;
}

.sp-modal-overlay.active .sp-modal-box {
  transform: scale(1);
}

.sp-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f7f7f8;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-weight: 700;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.sp-modal-close:hover {
  background: #e2e8f0;
}

/* ==========================================================================
   Estimator Modal & Multi-Step Wizard
   ========================================================================== */
.wizard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-right: 2.5rem;
}

.wizard-step-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0284c7;
  background: #e0f2fe;
  padding: 4px 10px;
  border-radius: 20px;
}

.wizard-progress-track {
  height: 5px;
  background: #f1f5f9;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.wizard-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, #00bcff 0%, #8b5cf6 100%);
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step {
  display: none;
  animation: wizardFadeIn 0.28s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.wizard-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.wizard-step-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.wizard-section-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}

.wizard-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.wizard-card {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.95rem 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.wizard-card:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.wizard-card.selected {
  background: #f0f9ff;
  border-color: #00bcff;
  box-shadow: 0 0 0 2px rgba(0, 188, 255, 0.25);
}

.wizard-card-icon {
  font-size: 1.45rem;
  line-height: 1;
}

.wizard-card-title {
  font-weight: 700;
  font-size: 0.88rem;
  color: #0f172a;
}

.wizard-card-desc {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.3;
}

.wizard-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.wizard-tag-pill {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  color: #334155;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.wizard-tag-pill:hover {
  background: #e2e8f0;
}

.wizard-tag-pill.selected {
  background: #0f172a;
  border-color: #0f172a;
  color: #ffffff;
}

.wizard-field {
  margin-bottom: 0.9rem;
}

.wizard-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}

.wizard-input, .wizard-textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.9rem;
  outline: none;
  background: #f8fafc;
  color: #0f172a;
  box-sizing: border-box;
  font-family: inherit;
  transition: all 0.2s;
}

.wizard-input:focus, .wizard-textarea:focus {
  border-color: #00bcff;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 188, 255, 0.12);
}

.wizard-textarea {
  min-height: 80px;
  resize: vertical;
}

.wizard-nav-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.wizard-nav-prev {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

.wizard-nav-prev:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.wizard-nav-next {
  flex: 1;
  background: #0f172a;
  border: none;
  color: #ffffff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wizard-nav-next:hover {
  background: #1e293b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
  transform: translateY(-1px);
}

.wizard-thankyou-wrap {
  text-align: center;
  padding: 1.2rem 0.5rem 0.5rem;
}

.wizard-thankyou-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.12);
  color: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  animation: popIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wizard-thankyou-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.wizard-thankyou-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.wizard-email-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.sp-ai-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  height: 100vh;
  background: #ffffff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
  z-index: 2010;
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}

.sp-ai-drawer.active {
  right: 0;
}

.sp-ai-header {
  padding: 1.25rem 1.5rem;
  background: #141414;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sp-ai-body {
  flex: 1;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sp-chat-bubble {
  padding: 0.9rem 1.15rem;
  border-radius: 12px;
  max-width: 88%;
  font-size: 0.9rem;
  line-height: 1.5;
}

.sp-chat-bubble.bot {
  background: #f7f7f8;
  color: #141414;
  align-self: flex-start;
}

.sp-chat-bubble.user {
  background: #141414;
  color: #ffffff;
  align-self: flex-end;
}

.sp-ai-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e2e0db;
  display: flex;
  gap: 8px;
}

.sp-ai-input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e0db;
  border-radius: 50px;
  font-size: 0.9rem;
  outline: none;
}

.sp-footer {
  background-color: #141414;
  color: #ffffff;
  padding: 100px 7vw 40px;
  width: 100%;
}

.sp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4vw;
  margin-bottom: 4rem;
  width: 100%;
}

.sp-footer-logo {
  height: 40px;
  margin-bottom: 1.25rem;
}

.sp-footer-desc {
  color: #888888;
  font-size: 0.9rem;
  line-height: 1.6;
}

.sp-footer-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.sp-footer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #888888;
}

.sp-footer-list a:hover {
  color: #ffffff;
}

.sp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666666;
  font-size: 0.85rem;
  width: 100%;
}

/* Responsive queries */
@media (max-width: 1100px) {
  .sp-hero-section {
    /* Compact padding: topbar(49px) + nav(94px) + small gap */
    padding: calc(49px + 94px + 12px) 5vw 16px;
  }

  .sp-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .sp-persona-card {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 8px;
    padding-left: 0;
  }

  .sp-persona-card .channel {
    justify-content: center;
  }

  .sp-hero-image {
    height: min(260px, 28svh);
    /* 100svh mein fit karne ke liye */
  }

  .sp-bottomline-card {
    grid-template-columns: 1fr;
    padding: 60px 5vw;
    transform: translateY(40px);
  }
}


@media (max-width: 992px) {
  .sp-hero-section {
    padding: 20px 5vw 16px !important;
    justify-content: flex-start !important;
  }

  .sp-hero-grid {

    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas:
      "text text"
      "image persona";
    align-items: start;
    gap: 1.75rem 1.25rem;
  }

  .sp-hero-text {
    grid-area: text;
    display: block;
    text-align: center;
    margin-bottom: 0;
  }

  .sp-hero-h1 {
    font-size: clamp(2rem, 6vw, 2.75rem);
    margin-bottom: 1rem;
    text-align: center;
  }

  .sp-hero-sub {
    max-width: 480px;
    margin: 0 auto 0;
    font-size: 1rem;
    text-align: center;
  }

  /* Image left column — badi, poori visible */
  .sp-hero-image {
    grid-area: image;
    height: auto;
    align-items: flex-start;
    justify-content: center;
  }

  .sp-hero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    object-position: top center;
    mask-image: none;
    -webkit-mask-image: none;
    border-radius: 8px;
  }

  /* Right column: persona details upar, buttons bottom par pinned */
  .sp-persona-card {
    grid-area: persona;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    padding-left: 0;
    text-align: left;
    min-height: auto;
  }

  .sp-persona-card h3 {
    font-size: 22px;
    min-height: auto;
    margin-bottom: 8px;
  }

  .sp-persona-card .detail {
    font-size: 13px;
    margin-bottom: 4px;
    min-height: auto;
  }

  .sp-persona-card .channel {
    justify-content: flex-start;
    margin-bottom: 16px;
  }

  .sp-persona-card .sp-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top: auto;
    padding-top: 12px;
  }

  .sp-persona-card .sp-pill {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.85rem;
  }

  /* Get a Proposal = outline, Call number = filled (screenshot jaisa) */
  .sp-persona-card .sp-pill-filled {
    background: transparent;
    color: #141414;
    border: 1px solid #141414;
  }

  .sp-persona-card .sp-pill-outline {
    background: #141414;
    color: #ffffff;
    border: 1px solid #141414;
  }

  .sp-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kit-desktop-links {
    display: none;
  }

  .sp-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sp-hero-section {
    padding: 18px 16px 22px !important;
    justify-content: center !important;
    min-height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
  }

  .sp-hero-grid {
    grid-template-columns: 1fr 1.05fr;
    grid-template-areas:
      "text text"
      "image persona";
    gap: 0.85rem 0.85rem;
    align-items: center;
  }

  .sp-hero-h1 {
    font-size: clamp(1.9rem, 6.6vw, 2.3rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
  }

  .sp-hero-sub {
    font-size: 0.92rem;
    line-height: 1.48;
    margin: 0 auto 0.65rem;
    max-width: 390px;
  }

  .sp-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto !important;
  }

  .sp-hero-image img {
    max-height: clamp(280px, 35vh, 340px) !important;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  .sp-persona-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 2px;
    min-height: auto;
  }

  .sp-persona-card h3 {
    font-size: 19px;
    margin-bottom: 4px;
    min-height: auto;
  }

  .sp-persona-card .detail {
    font-size: 12px;
    margin-bottom: 3px;
    line-height: 1.4;
    min-height: auto;
  }

  .sp-persona-card .channel {
    margin-bottom: 10px;
  }

  .sp-persona-card .sp-hero-btns {
    display: flex;
    flex-direction: column;
    gap: 9px;
    width: 100%;
    margin-top: 4px;
    padding-top: 4px;
  }

  .sp-persona-card .sp-pill {
    padding: 10px 14px;
    font-size: 0.82rem;
    width: 100%;
    max-width: 100%;
    border-radius: 9999px;
  }

  .sp-ai-drawer {
    width: 100%;
    right: -100%;
  }

  .sp-footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Tablet only: persona text ko buttons ke center axis par center karo */
@media (min-width: 601px) and (max-width: 992px) {
  .sp-persona-card {
    align-items: center;
    text-align: center;
  }

  .sp-persona-card h3,
  .sp-persona-card .detail {
    text-align: center;
  }

  .sp-persona-card .channel {
    justify-content: center;
  }
}

/* Phone: header offer bar compact — location chhupao, baaki overlap na ho */
@media (max-width: 600px) {
  .kit-offer {
    gap: 10px;
  }

  .kit-offer-location {
    display: none;
  }

  .kit-offer-right {
    position: static;
  }

  .kit-offer-estimate {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .kit-offer-aimode {
    font-size: 10px;
    padding: 4px 9px;
  }
}

@media (max-width: 400px) {
  .kit-offer-lang {
    display: none;
  }
}

/* Old industries section removed - superseded by Solved Puzzle 25+ Industries Video Showcase */

/* ==========================================================================
   13. Proposal & Intake Section — Floating Split Card on Pure White
   ========================================================================== */
.findx-proposal-section {
  position: relative;
  background-color: #ffffff;
  font-family: var(--font-sans);
  overflow: hidden;
  padding: 85px 4vw;
  border-top: 1px solid #f0f0f2;
}

/* ── Centered Floating Card ── */
.findx-proposal-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.03);
  border: 1px solid #e5e7eb;
}

/* ── Left Half (Dark Panel) ── */
.findx-proposal-left {
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.findx-proposal-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

.fpl-inner {
  position: relative;
  z-index: 2;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
  width: 100%;
}

.fpl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #bbbbbb;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  width: fit-content;
}

.live-radar-dot {
  width: 7px;
  height: 7px;
  background-color: #aaaaaa;
  border-radius: 50%;
  position: relative;
}

.live-radar-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background-color: rgba(170, 170, 170, 0.35);
  animation: radarPulse 2s infinite;
}

@keyframes radarPulse {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.fpl-title {
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0;
}

.fpl-title em {
  font-style: italic;
  color: #cccccc;
  font-weight: 700;
}

.fpl-desc {
  font-size: 0.95rem;
  color: #888888;
  line-height: 1.65;
  margin: 0;
  max-width: 440px;
}

.fpl-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fpl-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #cccccc;
  font-weight: 500;
  list-style: none;
}

.fpl-list li::marker {
  content: '';
}

.fpl-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  min-width: 19px;
  border-radius: 50%;
  border: 1.5px solid #444;
  color: #aaaaaa;
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1;
}

.fpl-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.fpl-avatars {
  display: flex;
  align-items: center;
}

.fpl-avatars img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #0d0d0d;
  object-fit: cover;
  margin-left: -8px;
}

.fpl-avatars img:first-child {
  margin-left: 0;
}

.fpl-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #333333;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0d0d0d;
  margin-left: -8px;
}

.fpl-stars {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 2px;
}

.fpl-stars strong {
  color: #cccccc;
  font-weight: 700;
}

.fpl-proof-sub {
  font-size: 0.75rem;
  color: #555555;
}

.fpl-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #bbbbbb !important;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 9999px;
  transition: all 0.2s ease;
  width: fit-content;
  background: rgba(255, 255, 255, 0.05);
}

.fpl-wa-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3);
}

/* ── Right Half (Clean White Panel) ── */
.findx-proposal-right {
  background: #ffffff;
  display: flex;
  align-items: stretch;
  border-left: 1px solid #ededed;
}

.fpr-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 3rem 2.75rem 2.5rem;
}

.fpr-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #f0f0f0;
  margin-bottom: 1.5rem;
}

.fpr-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #999999;
  margin: 0 0 6px;
}

.fpr-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0d0d0d;
  letter-spacing: -0.03em;
  margin: 0;
  line-height: 1.2;
}

.fpr-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f2f2f2;
  color: #555555;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.fpr-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Input Fields */
.fpr-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fpr-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fpr-field>label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #555555;
  letter-spacing: 0.02em;
}

.fpr-opt {
  font-weight: 400;
  color: #aaaaaa;
}

.fpr-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.fpr-input-wrap>svg {
  position: absolute;
  left: 13px;
  color: #cccccc;
  pointer-events: none;
  flex-shrink: 0;
  transition: color 0.2s;
}

.fpr-input-wrap>input,
.fpr-input-wrap>textarea {
  width: 100%;
  background: #f8f8f8;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 13px 10px 38px;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: #111111;
  outline: none;
  transition: all 0.2s ease;
}

.fpr-textarea-wrap>textarea {
  padding-left: 13px;
  resize: none;
  min-height: 65px;
  line-height: 1.5;
}

.fpr-input-wrap>input::placeholder,
.fpr-input-wrap>textarea::placeholder {
  color: #c8c8c8;
}

.fpr-input-wrap:focus-within>input,
.fpr-input-wrap:focus-within>textarea {
  background: #ffffff;
  border-color: #0d0d0d;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.fpr-input-wrap:focus-within>svg {
  color: #555555;
}

/* Submit button */
.fpr-submit {
  position: relative;
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #00bcff 0%, #8b5cf6 55%, #d946ef 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  margin-top: 0.25rem;
}

.fpr-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(99, 102, 241, 0.45);
}

.fpr-submit .btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-25deg);
  animation: shimmerSweep 3s infinite;
}

.fpr-submit>svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.fpr-submit:hover>svg {
  transform: translateX(4px);
}

.fpr-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #aaaaaa;
  margin-top: 4px;
  text-align: center;
}

/* Success Card */
.findx-success-card {
  text-align: center;
  padding: 2.5rem 1rem;
  animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-icon-wrap {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem auto;
  position: relative;
}

.success-svg {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: block;
  stroke-width: 2.5;
  stroke: #10b981;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #10b981;
  animation: fillCircle .4s ease-in-out .4s forwards, scaleUp .3s ease-in-out .9s both;
}

.success-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke: #10b981;
  fill: none;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: #ffffff;
  animation: strokeCheck 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes strokeCircle {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes strokeCheck {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes fillCircle {
  100% {
    box-shadow: inset 0px 0px 0px 38px #10b981;
  }
}

@keyframes scaleUp {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

.findx-success-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.findx-success-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 1.5rem auto;
}

.findx-success-card strong {
  color: #111111;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.findx-reset-btn {
  background: transparent;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.findx-reset-btn:hover {
  border-color: #0f172a;
  color: #0f172a;
}

/* ── Responsive Tablet & Mobile ── */
@media (max-width: 960px) {
  .findx-proposal-section {
    padding: 60px 4vw;
  }

  .findx-proposal-container {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .findx-proposal-right {
    border-left: none;
    border-top: 1px solid #e8e8e8;
  }

  .fpl-inner {
    padding: 2.5rem 2rem;
  }

  .fpr-card {
    padding: 2rem;
  }
}

@media (max-width: 600px) {
  .fpr-row {
    grid-template-columns: 1fr;
  }

  .fpl-inner,
  .fpr-card {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .fpr-title {
    font-size: 1.2rem;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   Findx Wall of Love - Client Reviews Two-Row Infinite Marquee
   Strict Black & White Luxury SaaS Aesthetic (Pitch.com Style)
   ========================================================================== */

.findx-reviews-section {
  position: relative;
  background-color: #000000;
  color: #ffffff;
  padding: 120px 0 130px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Subtle monochrome radial ambient glow in the center */
.findx-reviews-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.findx-reviews-header {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem;
  padding: 0 20px;
}

.findx-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9999px;
  padding: 6px 18px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.findx-reviews-badge .badge-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px #ffffff;
}

.findx-reviews-title {
  font-size: clamp(2rem, 1.6rem + 2vw, 3.25rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1rem;
}

.findx-reviews-title strong {
  font-weight: 700;
  color: #ffffff;
}

.findx-reviews-sub {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem);
  color: #a1a1aa;
  line-height: 1.6;
  max-width: 660px;
  margin: 0 auto 1.75rem;
}

.findx-reviews-rating-bar {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9999px;
  padding: 8px 22px;
  font-size: 0.875rem;
  color: #d4d4d8;
}

.findx-reviews-rating-bar .stars {
  color: #ffffff;
  letter-spacing: 2px;
  font-size: 1rem;
}

.findx-reviews-rating-bar .rating-val {
  font-weight: 700;
  color: #ffffff;
}

/* Marquee wrapper and fade overlays */
.findx-reviews-marquee-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  user-select: none;
}

/* Edge fade gradients */
.findx-reviews-fade-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14vw;
  max-width: 200px;
  z-index: 5;
  pointer-events: none;
}

.findx-reviews-fade-left {
  left: 0;
  background: linear-gradient(to right, #000000 20%, transparent 100%);
}

.findx-reviews-fade-right {
  right: 0;
  background: linear-gradient(to left, #000000 20%, transparent 100%);
}

/* Marquee rows */
.reviews-row {
  width: 100%;
  overflow: hidden;
  display: flex;
  position: relative;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  width: max-content;
  will-change: transform;
}

/* Row 1: Right to Left */
.reviews-track-left {
  animation: marqueeLeft 42s linear infinite;
}

/* Row 2: Left to Right */
.reviews-track-right {
  animation: marqueeRight 42s linear infinite;
}

/* PAUSE BOTH ROWS ON HOVER! */
.findx-reviews-marquee-container:hover .reviews-track,
.findx-reviews-marquee-container.is-paused .reviews-track {
  animation-play-state: paused !important;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Review Card Styling - Pure Black & White */
.review-card {
  width: 350px;
  min-width: 350px;
  max-width: 350px;
  min-height: 420px;
  background: #111113;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-sizing: border-box;
  cursor: pointer;
}

.review-card:hover {
  transform: translateY(-6px) scale(1.015);
  background: #161619;
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 255, 255, 0.08);
}

/* Dedicated Photo Frame at top so text NEVER overlaps with face */
.review-photo-frame {
  width: 100%;
  height: 165px;
  min-height: 165px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
  background: #09090b;
}

.review-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.08);
  transition: transform 0.4s ease;
}

.review-card:hover .review-photo-frame img {
  transform: scale(1.04);
}

/* White / High-Key Card (Alternating Black & White Theme) */
.review-card.review-card-white {
  background: #ffffff !important;
  color: #111113 !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.review-card.review-card-white:hover {
  background: #fdfdfd !important;
  border-color: #ffffff !important;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 255, 255, 0.25) !important;
}

.review-card.review-card-white .review-photo-frame {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.review-card.review-card-white .review-quote-icon {
  color: #111113 !important;
  text-shadow: none !important;
}

.review-card.review-card-white .review-quote-text {
  color: #18181b !important;
  font-weight: 500 !important;
  text-shadow: none !important;
}

.review-card.review-card-white .review-card-bottom {
  border-top-color: rgba(0, 0, 0, 0.1) !important;
}

.review-card.review-card-white .review-author-name {
  color: #09090b !important;
}

.review-card.review-card-white .review-author-role {
  color: #52525b !important;
}

.review-card.review-card-white .review-brand-badge {
  background: #000000 !important;
  color: #ffffff !important;
  border: 1px solid #000000 !important;
}

/* Solid Cards (Without Photo Frame) */
.review-card-solid {
  justify-content: space-between;
  padding: 32px 26px;
}

.review-card-solid .review-quote-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
}

.review-card-solid .review-quote-text {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Card Content Layout */
.review-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.review-quote-icon {
  font-size: 1.8rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: #ffffff;
  margin-bottom: 6px;
}

.review-quote-text {
  font-size: 0.9rem;
  line-height: 1.52;
  color: #f4f4f5;
  font-weight: 400;
  margin-bottom: 12px;
}

.review-card-bottom {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}

.review-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.review-author-role {
  font-size: 0.76rem;
  color: #a1a1aa;
  line-height: 1.3;
}

.review-brand-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

.review-author-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.review-author-role {
  font-size: 0.78rem;
  color: #a1a1aa;
  line-height: 1.3;
}

.review-brand-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  white-space: nowrap;
}

/* Special Highlight Card (like Pitch "Trusted by 4M+ teams") */
.review-highlight-card {
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 36px 28px;
}

.review-highlight-card:hover {
  border-color: #ffffff;
  box-shadow: 0 0 35px rgba(255, 255, 255, 0.12);
}

.rh-logo {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rh-logo img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
}

.rh-metric {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
}

.rh-text {
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.5;
  margin-bottom: 20px;
}

.rh-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  background: #ffffff;
  color: #000000;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Responsive adjustments for Wall of Love / Reviews Marquee */
@media (max-width: 768px) {
  .findx-reviews-section {
    padding: 60px 0 70px;
  }

  .findx-reviews-header {
    margin-bottom: 2rem;
    padding: 0 16px;
  }

  .findx-reviews-badge {
    padding: 5px 14px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }

  .findx-reviews-title {
    font-size: clamp(1.65rem, 5.5vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .findx-reviews-sub {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    padding: 0 8px;
  }

  .findx-reviews-rating-bar {
    font-size: 0.78rem;
    padding: 6px 16px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .findx-reviews-rating-bar .stars {
    font-size: 0.88rem;
    letter-spacing: 1.5px;
  }

  .findx-reviews-marquee-container {
    gap: 16px;
  }

  .findx-reviews-fade-overlay {
    display: none !important;
  }

  .reviews-track {
    gap: 14px;
  }

  .reviews-track-left {
    animation-duration: 34s;
  }

  .reviews-track-right {
    animation-duration: 34s;
  }

  .review-card {
    width: 275px;
    min-width: 275px;
    max-width: 275px;
    min-height: 355px;
    padding: 16px;
    border-radius: 16px;
  }

  .review-photo-frame {
    height: 135px;
    min-height: 135px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .review-quote-icon {
    font-size: 1.7rem;
    line-height: 1;
    margin-bottom: 4px;
  }

  .review-quote-text {
    font-size: 0.84rem;
    line-height: 1.44;
    margin-bottom: 8px;
  }

  .review-card-bottom {
    padding-top: 10px;
    gap: 8px;
  }

  .review-author-name {
    font-size: 0.88rem;
  }

  .review-author-role {
    font-size: 0.72rem;
  }

  .review-brand-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }

  /* Highlight Card */
  .review-highlight-card {
    padding: 24px 18px;
  }

  .rh-logo {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }

  .rh-logo img {
    height: 22px;
  }

  .rh-metric {
    font-size: 1.65rem;
    line-height: 1.15;
    margin-bottom: 8px;
  }

  .rh-text {
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .rh-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }
}

@media (max-width: 480px) {
  .findx-reviews-section {
    padding: 48px 0 56px;
  }

  .findx-reviews-header {
    margin-bottom: 1.75rem;
    padding: 0 12px;
  }

  .findx-reviews-fade-overlay {
    display: none !important;
  }

  .findx-reviews-marquee-container {
    gap: 12px;
  }

  .reviews-track {
    gap: 12px;
  }

  .review-card {
    width: 255px;
    min-width: 255px;
    max-width: 255px;
    min-height: 335px;
    padding: 14px;
    border-radius: 14px;
  }

  .review-photo-frame {
    height: 120px;
    min-height: 120px;
    margin-bottom: 10px;
    border-radius: 8px;
  }

  .review-quote-icon {
    font-size: 1.45rem;
    margin-bottom: 2px;
  }

  .review-quote-text {
    font-size: 0.80rem;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .review-card-bottom {
    padding-top: 8px;
    gap: 6px;
  }

  .review-author-name {
    font-size: 0.82rem;
  }

  .review-author-role {
    font-size: 0.68rem;
  }

  .review-brand-badge {
    font-size: 0.58rem;
    padding: 2px 6px;
  }

  .review-highlight-card {
    padding: 20px 14px;
  }

  .rh-logo {
    font-size: 1.18rem;
    margin-bottom: 8px;
  }

  .rh-metric {
    font-size: 1.45rem;
    margin-bottom: 6px;
  }

  .rh-text {
    font-size: 0.78rem;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .rh-badge {
    font-size: 0.66rem;
    padding: 4px 10px;
  }
}

/* ==========================================================================
   Premium Why Choose Us Section
   ========================================================================== */

.findx-why-section {
  position: relative;
  background: #ffffff;
  padding: 110px 0 120px;
  overflow: hidden;
}

.findx-why-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}



.findx-why-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5vw;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

/* Left Panel */
.findx-why-left {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.findx-why-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111111;
  margin-bottom: 4px;
}

.findx-why-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
}

.findx-why-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  line-height: 1.0;
  margin: 0;
}

.findx-why-title em {
  font-style: normal;
  background: linear-gradient(135deg, #6366f1 0%, #ec4899 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.findx-why-sub {
  font-size: 0.98rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 380px;
  margin: 0;
}

/* Proof bar */
.findx-why-proof-bar {
  display: flex;
  gap: 24px;
  padding: 20px 24px;
  background: #0a0a0a;
  border-radius: 16px;
  margin-top: 4px;
}

.findx-why-proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.findx-why-proof-num {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
  line-height: 1;
}

.findx-why-proof-label {
  font-size: 0.72rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Right: Cards Stack */
.findx-why-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual Card */
.findx-why-card {
  display: flex;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid #e5e7eb;
  transition: background 0.3s ease;
  cursor: default;
  border-radius: 0;
  position: relative;
}

.findx-why-card:first-child {
  padding-top: 0;
}

.findx-why-card--last {
  border-bottom: none;
  padding-bottom: 0;
}

.findx-why-card::before {
  content: '';
  position: absolute;
  left: -5vw;
  right: -5vw;
  top: 0;
  bottom: 0;
  background: #f9fafb;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  border-radius: 12px;
}

.findx-why-card:hover::before {
  opacity: 1;
}

/* Left column: number + line */
.findx-why-card-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 52px;
  flex-shrink: 0;
  gap: 8px;
  padding-top: 2px;
}

.findx-why-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #d1d5db;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

.findx-why-card:hover .findx-why-num {
  color: #111111;
}

.findx-why-line-v {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, #e5e7eb, transparent);
  min-height: 40px;
}

/* Card body */
.findx-why-card-body {
  display: flex;
  gap: 20px;
  flex: 1;
  align-items: flex-start;
}

/* Icon */
.findx-why-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.findx-why-card:hover .findx-why-icon-wrap {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

/* Content */
.findx-why-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.findx-why-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0;
  line-height: 1.3;
}

.findx-why-card-desc {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
}

/* Chips */
.findx-why-card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.findx-why-card-chips span {
  font-size: 0.72rem;
  font-weight: 600;
  color: #374151;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease;
}

.findx-why-card:hover .findx-why-card-chips span {
  background: #111111;
  color: #ffffff;
  border-color: #111111;
}

/* Responsive */
@media (max-width: 1024px) {
  .findx-why-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .findx-why-section::before {
    display: none;
  }

  .findx-why-left {
    position: static;
  }
}

@media (max-width: 640px) {
  .findx-why-proof-bar {
    flex-direction: column;
    gap: 16px;
  }

  .findx-why-card-body {
    flex-direction: column;
    gap: 14px;
  }
}

/* ==========================================================================
   Industries We Scale & Dominate — Ultra Premium Tabbed Showcase
   ========================================================================== */

/* ── Section Base ────────────────────────────────────────── */
.ind2-section {
  position: relative;
  background: #050608;
  padding: 100px 0 80px;
  overflow: hidden;
  color: #fff;
  font-family: var(--font-sans, 'DM Sans', -apple-system, sans-serif);
}

/* ── Background: Radial gradient ── */
.ind2-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(139, 92, 246, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(0, 188, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 70%);
  z-index: 0;
}

/* ── Grid overlay ── */
.ind2-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 0%, transparent 80%);
  z-index: 0;
  pointer-events: none;
}

/* ── Scan lines ── */
.ind2-bg-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent 0px,
      transparent 3px,
      rgba(0, 0, 0, 0.12) 3px,
      rgba(0, 0, 0, 0.12) 4px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}

/* ── Ambient orbs ── */
.ind2-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
}

.ind2-orb--a {
  width: 600px;
  height: 600px;
  top: -100px;
  left: -80px;
  background: rgba(139, 92, 246, 0.08);
  animation: ind2OrbA 20s ease-in-out infinite alternate;
}

.ind2-orb--b {
  width: 500px;
  height: 500px;
  bottom: -80px;
  right: -60px;
  background: rgba(0, 188, 255, 0.07);
  animation: ind2OrbB 25s ease-in-out infinite alternate;
}

@keyframes ind2OrbA {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, -30px) scale(1.1);
  }
}

@keyframes ind2OrbB {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-35px, 25px) scale(1.08);
  }
}

/* ── Light beams ── */
.ind2-beam {
  position: absolute;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 188, 255, 0.15) 40%, rgba(139, 92, 246, 0.1) 70%, transparent 100%);
  z-index: 0;
  pointer-events: none;
}

.ind2-beam--1 {
  height: 60%;
  top: 0;
  left: 30%;
  animation: ind2BeamFloat 12s ease-in-out infinite alternate;
}

.ind2-beam--2 {
  height: 50%;
  top: 0;
  right: 25%;
  background: linear-gradient(180deg, transparent 0%, rgba(236, 72, 153, 0.1) 50%, transparent 100%);
  animation: ind2BeamFloat 18s ease-in-out infinite alternate-reverse;
}

@keyframes ind2BeamFloat {
  0% {
    opacity: 0.3;
    transform: scaleX(1);
  }

  50% {
    opacity: 0.8;
    transform: scaleX(3);
  }

  100% {
    opacity: 0.3;
    transform: scaleX(1);
  }
}

/* ── Container ── */
.ind2-wrap {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 52px);
}

/* ── Header ────────────────────────────────────────────────── */
.ind2-header {
  text-align: center;
  margin-bottom: 48px;
}

.ind2-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.ind2-label-bar {
  display: block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 188, 255, 0.5), transparent);
}

.ind2-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  margin: 0 0 14px;
}

.ind2-title-glow {
  display: inline-block;
  background: linear-gradient(130deg, #00bcff 0%, #a855f7 40%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.ind2-title-glow::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(20px);
  opacity: 0.4;
  z-index: -1;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ind2-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.42);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* ── Stats Strip ───────────────────────────────────────────── */
.ind2-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 18px 40px;
  margin: 0 auto 48px;
  max-width: 840px;
  backdrop-filter: blur(12px);
}

.ind2-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.ind2-stat-val {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.ind2-stat-name {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ind2-stat-sep {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0 4px;
}

/* ── Main Showcase ─────────────────────────────────────────── */
.ind2-showcase {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
  align-items: stretch;
  min-height: 480px;
}

/* ── Left Panel ── */
.ind2-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: opacity 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-height: 460px;
}

.ind2-panel-bg {
  position: absolute;
  inset: 0;
  transition: background 0.5s ease;
  pointer-events: none;
}

.ind2-panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.015) 0%, transparent 50%);
}

.ind2-panel-body {
  position: relative;
  z-index: 1;
  padding: 44px 44px 36px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

/* Shimmer top line */
.ind2-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  z-index: 2;
}

.ind2-panel-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.4s ease;
}

.ind2-panel-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
  transition: all 0.4s ease;
}

.ind2-panel-title {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 12px;
}

.ind2-panel-desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.52);
  margin: 0 0 24px;
  max-width: 560px;
  font-weight: 400;
}

.ind2-panel-metrics {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ind2-metric {
  padding: 12px 20px;
  border-radius: 14px;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: all 0.3s ease;
}

.ind2-metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.ind2-metric-name {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.42);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ind2-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 28px;
}

.ind2-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.2s ease;
}

.ind2-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  width: fit-content;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: auto;
}

.ind2-panel-cta:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.15);
}

.ind2-panel-cta svg {
  transition: transform 0.3s ease;
}

.ind2-panel-cta:hover svg {
  transform: translateX(4px);
}

/* Live badge */
.ind2-panel-live {
  position: absolute;
  top: 18px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 3;
}

.ind2-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  animation: ind2LiveBlink 1.6s ease-in-out infinite;
}

@keyframes ind2LiveBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

/* ── Right Tabs ── */
.ind2-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ind2-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  font-family: inherit;
}

.ind2-tab:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
}

.ind2-tab--active {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(var(--acc), 0.35) !important;
  border-color: color-mix(in srgb, var(--acc) 40%, transparent) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ind2-tab-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.ind2-tab--active .ind2-tab-icon {
  background: rgba(255, 255, 255, 0.07);
}

.ind2-tab-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ind2-tab-name {
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ind2-tab-badge {
  font-size: 0.66rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  display: block;
}

.ind2-tab--active .ind2-tab-badge {
  color: rgba(255, 255, 255, 0.5);
}

.ind2-tab-arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
  color: rgba(255, 255, 255, 0.4);
}

.ind2-tab:hover .ind2-tab-arrow,
.ind2-tab--active .ind2-tab-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Progress bar at bottom of tab */
.ind2-tab-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--acc), rgba(255, 255, 255, 0.4));
  border-radius: 0 0 16px 16px;
}

/* ── Footer Strip ── */
.ind2-footer-strip {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 16px 28px;
  backdrop-filter: blur(8px);
}

.ind2-footer-strip p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

.ind2-footer-strip p span {
  color: rgba(255, 255, 255, 0.3);
  margin-right: 4px;
}

.ind2-footer-strip p strong {
  color: #fff;
  font-weight: 600;
}

.ind2-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  background: linear-gradient(135deg, #00bcff, #8b5cf6);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0, 188, 255, 0.25);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ind2-footer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 188, 255, 0.4);
  filter: brightness(1.08);
}

.ind2-footer-btn svg {
  transition: transform 0.25s ease;
}

.ind2-footer-btn:hover svg {
  transform: translateX(3px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ind2-showcase {
    grid-template-columns: 1fr;
  }

  .ind2-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    order: -1;
  }

  .ind2-tab-badge {
    display: none;
  }

  .ind2-panel {
    min-height: 400px;
  }
}

@media (max-width: 700px) {
  .ind2-section {
    padding: 70px 0 60px;
  }

  .ind2-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind2-stats {
    flex-wrap: wrap;
    border-radius: 20px;
    padding: 20px;
    gap: 16px;
  }

  .ind2-stat {
    flex: 0 0 calc(50% - 8px);
  }

  .ind2-stat-sep {
    display: none;
  }

  .ind2-panel-body {
    padding: 28px 24px 24px;
  }

  .ind2-footer-strip {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 14px;
  }

  .ind2-footer-btn {
    width: 100%;
    justify-content: center;
  }

  .ind2-panel-metrics {
    gap: 8px;
  }

  .ind2-metric {
    padding: 10px 14px;
  }

  .ind2-metric-val {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .ind2-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .ind2-tab {
    padding: 12px;
  }

  .ind2-tab-name {
    font-size: 0.75rem;
  }
}



.fx-ind-section {
  position: relative;
  background: #06070b;
  padding: 90px 0 100px;
  overflow: hidden;
  color: #ffffff;
  font-family: var(--font-sans, 'DM Sans', -apple-system, sans-serif);
}

/* ── Animated Mesh Background ────────────────────────────── */
.fx-ind-mesh-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0, 188, 255, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 70% 40% at 50% 50%, rgba(236, 72, 153, 0.03) 0%, transparent 70%);
  animation: fxMeshShift 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes fxMeshShift {
  0% {
    transform: scale(1) translate(0, 0);
  }

  50% {
    transform: scale(1.1) translate(-2%, 3%);
  }

  100% {
    transform: scale(1) translate(2%, -2%);
  }
}

.fx-ind-noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* ── Floating Orbs ───────────────────────────────────────── */
.fx-ind-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  z-index: 0;
  opacity: 0.5;
}

.fx-ind-orb-1 {
  top: 0%;
  left: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 188, 255, 0.12), transparent 70%);
  animation: fxOrbDrift1 16s infinite alternate ease-in-out;
}

.fx-ind-orb-2 {
  top: 35%;
  right: 0%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent 70%);
  animation: fxOrbDrift2 20s infinite alternate ease-in-out;
}

.fx-ind-orb-3 {
  bottom: 0%;
  left: 30%;
  width: 420px;
  height: 380px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.07), transparent 70%);
  animation: fxOrbDrift3 18s infinite alternate ease-in-out;
}

@keyframes fxOrbDrift1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(30px, -20px) scale(1.05);
  }
}

@keyframes fxOrbDrift2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-25px, 25px) scale(1.08);
  }
}

@keyframes fxOrbDrift3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(20px, -18px) scale(0.96);
  }
}

/* ── Container ───────────────────────────────────────────── */
.fx-ind-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}

/* ── Section Header ──────────────────────────────────────── */
.fx-ind-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.fx-ind-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
}

.fx-ind-eyebrow-line {
  flex: 0 1 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 188, 255, 0.3), transparent);
}

.fx-ind-eyebrow-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.fx-ind-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00bcff;
  box-shadow: 0 0 10px #00bcff, 0 0 20px rgba(0, 188, 255, 0.3);
  animation: fxEyebrowPulse 2s ease-in-out infinite;
}

@keyframes fxEyebrowPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

.fx-ind-title {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #ffffff;
  margin: 0 0 12px;
}

.fx-ind-title-gradient {
  background: linear-gradient(135deg, #00bcff 0%, #a855f7 45%, #f43f5e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.fx-ind-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.45);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── Stats Ribbon ────────────────────────────────────────── */
.fx-ind-stats-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px 32px;
  margin: 0 auto 36px;
  max-width: 820px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fx-ind-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 2px;
}

.fx-ind-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #00bcff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.fx-ind-stat-suffix {
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #00bcff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fx-ind-stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.fx-ind-stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  margin: 0 8px;
}

/* ── Filter Pills ────────────────────────────────────────── */
.fx-ind-filters {
  margin: 0 auto 32px;
  display: flex;
  justify-content: center;
}

.fx-ind-filter-track {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  padding: 4px;
}

.fx-ind-filter-slider {
  position: absolute;
  top: 4px;
  height: calc(100% - 8px);
  background: linear-gradient(135deg, rgba(0, 188, 255, 0.2), rgba(139, 92, 246, 0.2));
  border: 1px solid rgba(0, 188, 255, 0.4);
  border-radius: 100px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  box-shadow: 0 4px 20px rgba(0, 188, 255, 0.15);
}

.fx-ind-filter-btn {
  position: relative;
  z-index: 1;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.25s ease;
  white-space: nowrap;
  font-family: inherit;
}

.fx-ind-filter-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.fx-ind-filter-btn.active {
  color: #ffffff;
}

/* ── Bento Grid ──────────────────────────────────────────── */
.fx-ind-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Featured card spans 2 columns and 2 rows */
.fx-ind-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* ── Card Base ───────────────────────────────────────────── */
.fx-ind-card {
  position: relative;
  border-radius: 20px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    filter 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0;
  transform: translateY(30px);
}

.fx-ind-card--visible {
  opacity: 1;
  transform: translateY(0);
}

.fx-ind-card--dimmed {
  opacity: 0.15 !important;
  filter: grayscale(80%) !important;
  pointer-events: none;
  transform: scale(0.97) !important;
}

/* Animated gradient border */
.fx-ind-card-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.08));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.4s ease;
  z-index: 1;
}

.fx-ind-card:hover .fx-ind-card-border {
  background: linear-gradient(135deg,
      rgba(0, 188, 255, 0.5),
      rgba(139, 92, 246, 0.4),
      rgba(236, 72, 153, 0.3),
      rgba(0, 188, 255, 0.5));
  background-size: 300% 300%;
  animation: fxBorderGlow 3s ease infinite;
}

@keyframes fxBorderGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Card glow on hover */
.fx-ind-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%),
      rgba(0, 188, 255, 0.08), transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.fx-ind-card:hover .fx-ind-card-glow {
  opacity: 1;
}

/* Card inner */
.fx-ind-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 28px 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.fx-ind-card:hover .fx-ind-card-inner {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(0, 188, 255, 0.08);
}

/* Top shimmer line */
.fx-ind-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.fx-ind-card:hover .fx-ind-card-inner::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, rgba(0, 188, 255, 0.5), transparent);
}

/* Featured card special padding */
.fx-ind-card--featured .fx-ind-card-inner {
  padding: 36px 34px 28px;
}

/* ── Card Head ───────────────────────────────────────────── */
.fx-ind-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.fx-ind-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.fx-ind-card:hover .fx-ind-card-icon {
  transform: scale(1.12) rotate(-5deg);
}

/* Reuse existing gradient classes */
.fx-ind-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid;
}

/* ── Card Content ────────────────────────────────────────── */
.fx-ind-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.3;
}

.fx-ind-card--featured .fx-ind-card-title {
  font-size: 1.6rem;
}

.fx-ind-card-desc {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.48);
  margin: 0 0 18px;
  font-weight: 400;
}

.fx-ind-card--featured .fx-ind-card-desc {
  font-size: 0.95rem;
  max-width: 520px;
}

/* ── Metrics Row ─────────────────────────────────────────── */
.fx-ind-card-metrics {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.fx-ind-metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.fx-ind-card:hover .fx-ind-metric {
  border-color: rgba(0, 188, 255, 0.2);
  background: rgba(0, 188, 255, 0.04);
}

.fx-ind-metric-value {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #00bcff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.fx-ind-card--featured .fx-ind-metric-value {
  font-size: 1.5rem;
}

.fx-ind-metric-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Card Tags ───────────────────────────────────────────── */
.fx-ind-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.fx-ind-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 10px;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.fx-ind-card:hover .fx-ind-tag {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.75);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ── Card CTA ────────────────────────────────────────────── */
.fx-ind-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.25s ease;
}

.fx-ind-card-cta svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
}

.fx-ind-card:hover .fx-ind-card-cta {
  color: #ffffff;
}

.fx-ind-card:hover .fx-ind-card-cta svg {
  transform: translateX(5px);
  color: #00bcff;
}

/* ── Bottom CTA Banner ───────────────────────────────────── */
.fx-ind-bottom-cta {
  position: relative;
  margin-top: 32px;
  border-radius: 20px;
  overflow: hidden;
}

.fx-ind-bottom-cta-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 188, 255, 0.06), rgba(139, 92, 246, 0.04));
  pointer-events: none;
}

.fx-ind-bottom-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 28px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.fx-ind-bottom-cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.fx-ind-bottom-cta-text strong {
  color: #ffffff;
}

.fx-ind-bottom-cta-emoji {
  font-size: 1.2rem;
}

.fx-ind-bottom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00bcff 0%, #8b5cf6 100%);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: 0 6px 24px rgba(0, 188, 255, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fx-ind-bottom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 188, 255, 0.45);
}

.fx-ind-bottom-btn svg {
  transition: transform 0.25s ease;
}

.fx-ind-bottom-btn:hover svg {
  transform: translateX(3px);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fx-ind-bento {
    grid-template-columns: repeat(2, 1fr);
  }

  .fx-ind-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 768px) {
  .fx-ind-section {
    padding: 60px 0 70px;
  }

  .fx-ind-bento {
    grid-template-columns: 1fr;
  }

  .fx-ind-card--featured {
    grid-column: span 1;
    grid-row: span 1;
  }

  .fx-ind-stats-ribbon {
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 20px;
  }

  .fx-ind-stat-divider {
    display: none;
  }

  .fx-ind-stat-item {
    flex: 0 0 calc(50% - 8px);
  }

  .fx-ind-filter-track {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .fx-ind-filter-btn {
    flex-shrink: 0;
  }

  .fx-ind-bottom-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 16px;
    padding: 18px 22px;
  }

  .fx-ind-bottom-btn {
    width: 100%;
    justify-content: center;
  }

  .fx-ind-card--featured .fx-ind-card-title {
    font-size: 1.3rem;
  }

  .fx-ind-card--featured .fx-ind-card-desc {
    font-size: 0.88rem;
  }
}


/* ==========================================================================
   Why Businesses Choose Our Digital Marketing Agency in India (Solved Puzzle 1:1)
   ========================================================================== */

.sp-why-agency-section {
  background-color: #ffffff;
  width: 100%;
  padding: clamp(80px, 8vw, 130px) 7vw;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.sp-why-agency-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
}

/* Left: Image Container */
.sp-why-agency-img-wrap {
  position: relative;
  width: 100%;
  border-radius: clamp(20px, 2.5vw, 32px);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  background: #f4f4f5;
  line-height: 0;
}

.sp-why-agency-img {
  width: 100%;
  height: 100%;
  max-height: 600px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp-why-agency-img-wrap:hover .sp-why-agency-img {
  transform: scale(1.025);
}

/* Right: Content */
.sp-why-agency-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sp-why-agency-heading {
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #111111;
  margin: 0 0 28px 0;
  font-family: var(--font-sans, 'DM Sans', -apple-system, sans-serif);
}

.sp-why-agency-heading strong,
.sp-why-agency-heading .bold-part {
  font-weight: 700;
  color: #111111;
}

.sp-why-agency-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  line-height: 1.75;
  color: #4b5563;
  margin: 0 0 20px 0;
  font-weight: 400;
  font-family: var(--font-sans, 'DM Sans', -apple-system, sans-serif);
}

.sp-why-agency-desc:last-of-type {
  margin-bottom: 32px;
}

/* Proof Badges Strip / Quick Trust Indicators */
.sp-why-agency-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.sp-why-agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1f2937;
  font-family: var(--font-sans, 'DM Sans', -apple-system, sans-serif);
}

.sp-why-agency-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00bcff;
}

/* Responsive */
@media (max-width: 1024px) {
  .sp-why-agency-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sp-why-agency-img-wrap {
    max-width: 720px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .sp-why-agency-section {
    padding: 60px 5vw;
  }

  .sp-why-agency-heading {
    font-size: 2rem;
  }

  .sp-why-agency-desc {
    font-size: 0.92rem;
  }
}