/* ===================================
   SrankTech Page Styles
   =================================== */
:root {

  /* Backgrounds */
  --color-bg:      #2F2F6A;
  --color-surface: rgba(255,255,255,0.05);
  --color-border:  rgba(255,255,255,0.10);

  /* Text */
  --color-text:    #F8F9FF;
  --color-muted:   #C7C4FF;

  /* Brand Colors */
  --color-purple:  #5C5DA6;
  --color-pink:    #8D73FF;
  --color-rose:    #A78BFA;
  --color-orange:  #42B8FF;
  --color-teal:    #6DD3FF;

  /* Gradients */
  --gradient-main: linear-gradient(
      135deg,
      #5C5DA6,
      #42B8FF
  );

  --gradient-full: linear-gradient(
      135deg,
      #5C5DA6,
      #42B8FF,
      #8D73FF,
      #C7C4FF
  );

  /* Fonts */
  --font-display: 'Outfit', 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
* { box-sizing: border-box; }
body { background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); margin: 0; }

/* Scrollbar */
::-webkit-scrollbar       { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-purple); border-radius: 4px; }

/* Utilities */
.gradient-text { background: var(--gradient-full); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.section-eyebrow { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--color-muted); margin-bottom: 14px; }
.section-title { font-family: var(--font-display); font-weight: 800; color: #fff; line-height: 1.1; }
.card-surface { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; transition: border-color 0.3s; }
.card-surface:hover { border-color: rgba(129,140,248,0.3); }

/* ── Hero wrapper ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ── Background video ── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
}

/* ── Overlay ── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.60) 75%,
    rgba(0,0,0,0.92) 100%
  );
}

/* ── Content ── */
.hero-content {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end; /* align to bottom */
  padding: 6rem 4rem 3rem;
  max-width: 760px;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  padding: 0.35rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: hFadeDown 0.6s ease both;
}

.hero-badge strong {
  color: #f97316;
  font-weight: 600;
}

#changing-service-text {
  color: #a7e218;
  font-weight: 600;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* ── Title ── */
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.4rem;
  text-shadow: 0 0 60px rgba(255,255,255,0.15);
  animation: hFadeUp 0.7s 0.1s ease both;
}

/* ── Description ── */
.hero-description {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.72;
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin-bottom: 0;
  animation: hFadeUp 0.7s 0.2s ease both;
}

/* ══ LOGO MARQUEE ══════════════════════════ */
.hero-logos {
  position: relative;
  z-index: 10;
  padding: 0 0 3rem;
}

.hero-logos-track-wrap {
  position: relative;
  overflow: hidden;
}

.hero-logos-track-wrap::before,
.hero-logos-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.hero-logos-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, transparent 100%);
}
.hero-logos-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, rgba(0,0,0,0.85) 0%, transparent 100%);
}

.hero-logos-track {
  display: flex;
  width: max-content;
  animation: hMarquee 20s linear infinite;
}

.hero-logos-track:hover {
  animation-play-state: paused;
}

.hero-logo-set {
  display: flex;
  align-items: center;
}

.hero-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3.5rem;
  height: 80px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.hero-logo-item img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.3s, filter 0.3s;
  display: block;
}

/* ── Keyframes ── */
@keyframes hFadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══ SERVICES PREVIEW ══════════════════════════ */
.services-preview {
  position: relative;
  background: #2f2f79;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.services-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(0,200,255,0.25) 30%,
    rgba(108,71,255,0.25) 70%,
    transparent 100%
  );
}

.services-preview::after {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(108,71,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}

.services-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00c8ff;
  margin-bottom: 0.9rem;
}

.services-eyebrow::before,
.services-eyebrow::after {
  content: '';
  width: 28px;
  height: 1px;
  background: #00c8ff;
  opacity: 0.5;
}

.services-heading {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
}

.services-subtext {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  max-width: 380px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Service Cards ── */
.service-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem 1.75rem 2rem;
  height: 100%;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--card-accent, #00c8ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 2px 2px 0 0;
}

.service-card::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, var(--card-accent, #00c8ff) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.055);
}

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after  { opacity: 0.08; }

.service-card.card-mobile  { --card-accent: #00c8ff; }
.service-card.card-web     { --card-accent: #6c47ff; }
.service-card.card-marketing { --card-accent: #f97316; }
.service-card.card-staffing  { --card-accent: #10b981; }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(255,255,255,0.09);
  border-color: var(--card-accent, #00c8ff);
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--card-accent, #00c8ff);
}

.service-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
  letter-spacing: -0.01em;
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.68;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--card-accent, #00c8ff);
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease, gap 0.2s ease;
}

.service-link i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover .service-link:hover {
  gap: 0.65rem;
}

.service-card:hover .service-link:hover i {
  transform: translateX(3px);
}

.service-number {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
  transition: color 0.3s;
}

.service-card:hover .service-number {
  color: rgba(255,255,255,0.06);
}

/* ==========================
   WHY US SECTION
========================== */
/* ==================================================
   WHY YOU NEED US — FULL CSS (replace entire old block)
================================================== */

.wnu {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(183,148,255,.08), transparent 30%),
    linear-gradient(180deg, #fafbff 0%, #f5f0ff 100%);
  overflow: hidden;
}

.wnu * {
  font-family: 'Outfit', sans-serif;
}

/* ── Header ── */
.wnu__header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}

.wnu__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a5cf4;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}

.wnu__eyebrow-line {
  width: 45px;
  height: 2px;
  background: #8a5cf4;
  display: inline-block;
}

.wnu__heading {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #121826;
  margin-bottom: 20px;
}

.wnu__blue {
  background: linear-gradient(135deg, #8a5cf4, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wnu__sub {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Body: 2 columns ── */
.wnu__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

/* ── Video ── */
.wnu__video-col {
  width: 100%;
}

.wnu__video-frame {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  padding: 10px;
  box-shadow: 0 20px 60px rgba(138,92,244,.18);
}

.wnu__video {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ── Right column ── */
.wnu__right {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ── 2x2 Trust Grid ── */
.wnu__trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.wnu__trust-item {
  background: #fff;
  border-radius: 18px;
  padding: 28px 16px;
  border: 1px solid #ece8ff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  transition: transform .28s, box-shadow .28s;
}

.wnu__trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(138,92,244,.15);
}

.wnu__trust-num {
  font-family: 'Outfit', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #8a5cf4;
  line-height: 1;
  margin-bottom: 8px;
}

.wnu__trust-star {
  font-size: 30px;
  color: #f59e0b;
  vertical-align: middle;
}

.wnu__trust-lbl {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
}

/* ── Buttons ── */
.wnu__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.wnu__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: all .28s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.wnu__btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

.wnu__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #8a5cf4, #c084fc);
  box-shadow: 0 4px 16px rgba(138,92,244,.30);
}

.wnu__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(138,92,244,.40);
  color: #fff;
  text-decoration: none;
}

.wnu__btn--outline {
  color: #8a5cf4;
  border: 1.5px solid #d8ccff;
  background: #fff;
}

.wnu__btn--outline:hover {
  background: #f3eeff;
  border-color: #b49ef4;
  color: #8a5cf4;
  text-decoration: none;
  transform: translateY(-2px);
}

/* ── Tablet (991px and below) ── */
@media (max-width: 991px) {
  .wnu {
    padding: 80px 0;
  }

  .wnu__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .wnu__heading {
    font-size: 42px;
  }

  .wnu__trust-num {
    font-size: 38px;
  }
}

/* ── Mobile (576px and below) ── */
@media (max-width: 576px) {
  .wnu {
    padding: 60px 0;
  }

  .wnu__heading {
    font-size: 32px;
  }

  .wnu__sub {
    font-size: 15px;
  }

  .wnu__trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .wnu__trust-item {
    padding: 20px 12px;
  }

  .wnu__trust-num {
    font-size: 30px;
  }

  .wnu__trust-lbl {
    font-size: 12px;
  }

  .wnu__actions {
    flex-direction: row;
    gap: 10px;
  }

  .wnu__btn {
    flex: 1;
    justify-content: center;
    font-size: 14px;
    padding: 11px 16px;
  }
}
/* ── Testimonials ── */

.tst {
  padding: 80px 0 90px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.tst::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,.05) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.tst::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(99,102,241,.04) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.tst__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}

/* ── Header ── */
.tst__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 48px;
}

.tst__left-head { flex: 2; min-width: 240px; }

.tst__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 14px;
}
.tst__eyebrow-line {
  display: inline-block;
  width: 28px; height: 2px;
  background: #2563eb;
  border-radius: 2px;
}

.tst__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #0a2540;
}
.tst__heading-accent {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tst__sub {
  flex: 1.2;
  font-size: .97rem;
  line-height: 1.7;
  color: #64748b;
  max-width: 420px;
  border-left: 3px solid #3b82f6;
  padding-left: 1.25rem;
}

/* ── Trust strip ── */
.tst__trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tst__trust-stat { display: flex; align-items: center; gap: 10px; }
.tst__trust-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.tst__trust-label { font-size: .8rem; color: #94a3b8; line-height: 1.3; }
.tst__trust-div { width: 1px; height: 32px; background: #e2e8f0; }
.tst__stars-overall { display: flex; align-items: center; gap: 6px; }
.tst__stars-overall span { color: #facc15; font-size: 1rem; letter-spacing: 1px; }
.tst__stars-overall em { font-style: normal; font-size: .82rem; color: #64748b; }

/* ══════════════════════════════════════
   SLIDER SHELL
══════════════════════════════════════ */
.tst__slider-container {
  position: relative;
  margin: 0 0 8px;
}

/* Arrow buttons */
.tst__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  transition: background .2s, border-color .2s, box-shadow .2s, transform .2s;
}
.tst__arrow:hover {
  background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 8px 24px rgba(37,99,235,.28);
  transform: translateY(-50%) scale(1.06);
}
.tst__arrow svg { width: 20px; height: 20px; stroke: #334155; transition: stroke .2s; }
.tst__arrow:hover svg { stroke: #fff; }
.tst__arrow--prev { left: -22px; }
.tst__arrow--next { right: -22px; }

/* Viewport clips overflow */
.tst__viewport {
  overflow: hidden;
  border-radius: 16px;
  /* no horizontal padding — we handle card width via CSS */
}

/* Track — JS moves this with transform */
.tst__track {
  display: flex;
  transition: transform .52s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

/* ══════════════════════════════════════
   CARDS
   Desktop: 3 visible, each ~33.333% wide, gap baked into calc
   Mobile:  1 visible, 100% wide, no gap
══════════════════════════════════════ */

/* CSS custom property set by JS on .tst__track */
.tst__track {
  --card-gap: 20px;
}

.tst__card {
  /* Each card takes 1/3 of the viewport minus gaps */
  flex: 0 0 calc(33.333% - (var(--card-gap) * 2 / 3));
  background: #fff;
  border-radius: 20px;
  padding: 28px 26px;
  border: 1.5px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,.04), 0 12px 28px -8px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  cursor: default;
  margin-right: var(--card-gap);
}

.tst__card:last-child {
  margin-right: 0;
}

.tst__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px -12px rgba(37,99,235,.14);
  border-color: #dbeafe;
}
.tst__card.is-active {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,.1), 0 20px 48px -12px rgba(37,99,235,.16);
}

.tst__card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}
.tst__stars { font-size: 1rem; color: #facc15; letter-spacing: 2px; line-height: 1; }
.tst__quote-mark {
  font-size: 3.2rem;
  line-height: .8;
  font-family: 'Georgia', serif;
  font-weight: 700;
  color: #2563eb;
  opacity: .15;
  user-select: none;
}

.tst__quote {
  font-size: .92rem;
  line-height: 1.7;
  color: #334155;
  flex-grow: 1;
  margin-bottom: 22px;
}

.tst__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
  margin-top: auto;
}
.tst__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  flex-shrink: 0;
  letter-spacing: .5px;
}
.tst__avatar--f { background: #dbeafe; color: #1e3a8a; }
.tst__avatar--m { background: #e0f2fe; color: #075985; }
.tst__avatar--g { background: #fce7f3; color: #9d174d; }

.tst__author-info { flex: 1; min-width: 0; }
.tst__author-info strong { display: block; font-size: .88rem; font-weight: 600; color: #0f172a; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tst__author-info span  { font-size: .76rem; color: #94a3b8; }

.tst__tag {
  flex-shrink: 0;
  background: #eff6ff;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: .67rem;
  font-weight: 600;
  color: #2563eb;
  letter-spacing: .3px;
  white-space: nowrap;
}

/* Fade edges */
.tst__fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 5;
}
.tst__fade--left  { left: 0;  background: linear-gradient(to right, #fff, transparent); }
.tst__fade--right { right: 0; background: linear-gradient(to left,  #fff, transparent); }

/* Dots */
.tst__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.tst__dots { display: flex; gap: 8px; align-items: center; }
.tst__dot {
  width: 8px; height: 8px;
  border-radius: 20px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  transition: all .28s ease;
}
.tst__dot.is-active { background: #2563eb; width: 26px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* Tablet: 2 cards */
@media (max-width: 900px) {
  .tst__track {
    --card-gap: 16px;
  }
  .tst__card {
    flex: 0 0 calc(50% - (var(--card-gap) / 2));
  }
  .tst__arrow--prev { left: -16px; }
  .tst__arrow--next { right: -16px; }
}

/* Mobile: strictly 1 card, full width */
@media (max-width: 600px) {
  .tst {
    padding: 60px 0 70px;
  }

  .tst__container {
    padding: 0 16px;
  }

  .tst__slider-container {
    /* push arrows outside without clipping */
    margin: 0 36px;
  }

  .tst__arrow {
    width: 36px; height: 36px;
  }
  .tst__arrow--prev { left: -42px; }
  .tst__arrow--next { right: -42px; }

  .tst__track {
    --card-gap: 0px;
  }

  /* Exactly one card = full viewport of the track */
  .tst__card {
    flex: 0 0 100%;
    margin-right: 0;
    /* small inner breathing room */
    padding: 22px 20px 20px;
  }

  /* No fade edges on mobile — single card fills the space */
  .tst__fade { display: none; }

  .tst__trust-div { display: none; }
  .tst__heading { letter-spacing: -1px; }
  .tst__header { flex-direction: column; align-items: flex-start; }
  .tst__sub { max-width: 100%; }
}
/* ══ FAQ SECTION ══════════════════════════ */
.faq-section {
  padding: 110px 0;
  background: #ffffff;
  border-top: 2px dotted #878686;
}

.faq-wrap {
  display: flex;
  gap: 90px;
  align-items: flex-start;
}

.faq-left {
  flex: 0 0 300px;
  position: sticky;
  top: 100px;
}

.faq-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #3752e9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.faq-eyebrow-line {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: #3752e9;
  border-radius: 2px;
}

.faq-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  color: #0d0d0d;
  margin-bottom: 18px;
}

.faq-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #888;
  line-height: 1.65;
  margin-bottom: 32px;
}

.faq-contact-nudge {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #aaa;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-contact-nudge a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #0d0d0d;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.2s, color 0.2s;
}

.faq-contact-nudge a:hover {
  color: #0066ff;
  border-color: #0066ff;
}

.faq-right {
  flex: 1;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.faq-item:last-child {
  border-bottom: 1px solid #f0f0f0;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}

.faq-q-left {
  display: flex;
  align-items: baseline;
  gap: 18px;
}

.faq-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #ddd;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.faq-q-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  line-height: 1.45;
  transition: color 0.2s;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.faq-icon i {
  font-size: 13px;
  color: #aaa;
  transition: transform 0.3s ease, color 0.2s;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-a-inner {
  padding: 0 0 24px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #777;
  line-height: 1.75;
}

.faq-item.open .faq-icon {
  background: #0d0d0d;
  border-color: #0d0d0d;
}

.faq-item.open .faq-icon i {
  transform: rotate(45deg);
  color: #fff;
}

.faq-item.open .faq-num {
  color: #bbb;
}

.faq-item.open .faq-q-text {
  color: #0d0d0d;
}

.faq-item:not(.open) .faq-q:hover .faq-q-text {
  color: #0d0d0d;
}

.faq-item:not(.open) .faq-q:hover .faq-icon {
  border-color: #ccc;
  background: #f0f0f0;
}

/* ═══════════════════════════════════════════
   MOBILE RESPONSIVE OVERRIDES (≤ 768px)
═══════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── HERO ── */
  .hero-content {
    padding: 5rem 1.5rem 2.5rem;
    max-width: 100%;
    width: 100%;
    justify-content: flex-end; /* title/desc anchored to bottom */
    align-items: flex-start;
  }

  /* Badge stretches full width on mobile */
  .hero-badge {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-title {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .hero-description {
    font-size: 0.98rem;
    max-width: 100%;
  }

  .hero-logo-item { padding: 0 2rem; }
  .hero-logos-track-wrap::before,
  .hero-logos-track-wrap::after { width: 60px; }

  /* ── WHY YOU NEED US ── */
  .wnu {
  padding: 80px 0;
  background:
    radial-gradient(circle at top left, rgba(183,148,255,.08), transparent 30%),
    linear-gradient(180deg, #fafbff 0%, #f5f0ff 100%);
  overflow: hidden;
}

@media (max-width: 768px) {

  .hero-section {
    height: calc(100dvh - 66px); /* navbar height minus karo */
    min-height: 0 !important;
    overflow: hidden;
  }

}
 
.wnu * {
  font-family: 'Outfit', sans-serif;
}
 
/* Header */
.wnu__header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 60px;
}
 
.wnu__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #8a5cf4;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 18px;
}
 
.wnu__eyebrow-line {
  width: 45px;
  height: 2px;
  background: #8a5cf4;
}
 
.wnu__heading {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #121826;
  margin-bottom: 20px;
}
 
.wnu__blue {
  background: linear-gradient(135deg, #8a5cf4, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
 
.wnu__sub {
  font-size: 18px;
  line-height: 1.8;
  color: #6b7280;
}
 
/* Body: 2 columns */
.wnu__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
 
/* Video */
.wnu__video-frame {
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(138,92,244,.15);
}
 
.wnu__video {
  width: 100%;
  border-radius: 22px;
  display: block;
}
 
/* Right column */
.wnu__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
 
/* 2x2 trust grid */
.wnu__trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
 
.wnu__trust-item {
  background: #fff;
  border-radius: 18px;
  padding: 22px 18px;
  border: 1px solid #ece8ff;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
  transition: transform .28s, box-shadow .28s;
}
 
.wnu__trust-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(138,92,244,.14);
}
 
.wnu__trust-num {
  font-size: 36px;
  font-weight: 800;
  color: #8a5cf4;
  line-height: 1;
  margin-bottom: 8px;
}
 
.wnu__trust-star {
  font-size: 26px;
  color: #f59e0b;
}
 
.wnu__trust-lbl {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: #9ca3af;
}
 
/* Buttons */
.wnu__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
 
.wnu__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  transition: .3s;
}
 
.wnu__btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}
 
.wnu__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #8a5cf4, #c084fc);
}
 
.wnu__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(138,92,244,.35);
}
 
.wnu__btn--outline {
  color: #8a5cf4;
  border: 1px solid #d8ccff;
  background: #fff;
}
 
.wnu__btn--outline:hover {
  background: #f8f5ff;
}
 
/* Responsive */
@media (max-width: 991px) {
  .wnu__body {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .wnu__heading {
    font-size: 42px;
  }
}
 
@media (max-width: 576px) {
  .wnu {
    padding: 60px 0;
  }
  .wnu__heading {
    font-size: 34px;
  }
  .wnu__actions {
    flex-direction: column;
  }
  .wnu__btn {
    width: 100%;
    justify-content: center;
  }
}

  /* ── SERVICES ── */
  .services-preview {
    padding: 4rem 0 3.5rem;
  }

  .services-preview .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Extra inner padding for each service card */
  .service-card {
    padding: 1.75rem 1.5rem 1.75rem;
  }

  /* ── TESTIMONIALS: one card at a time, centered ── */
  .tst {
    padding: 60px 0 70px;
  }

  .tst__container {
    padding: 0 20px;
  }

  .tst__viewport {
    padding: 12px 0 16px;
  }

  /* Each card takes full viewport width (minus container padding) */
  .tst__card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Gap becomes 0 so only the active card shows */
  .tst__track {
    gap: 0;
  }

  .tst__arrow--prev { left: -12px; }
  .tst__arrow--next { right: -12px; }
  .tst__arrow { width: 40px; height: 40px; }
  .tst__trust-div { display: none; }
  .tst__heading { letter-spacing: -1px; }

  /* ── FAQ ── */
  .faq-section {
    padding: 70px 0;
  }

  .faq-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .faq-left {
    flex: none;
    position: static;
    width: 100%;
  }

  .faq-heading {
    font-size: 32px;
  }

  .faq-a-inner {
    padding-left: 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  /* Hero badge full width with wrap */
  .hero-badge {
    flex-wrap: wrap;
    font-size: 0.73rem;
  }

  .tst__header { flex-direction: column; align-items: flex-start; }
  .tst__sub { max-width: 100%; }

  .faq-heading { font-size: 28px; }
  .faq-q-text { font-size: 15px; }
}

@media (max-width: 960px) {
  .tst__arrow--prev { left: -16px; }
  .tst__arrow--next { right: -16px; }
}