/* ===================================
   SrankTech Page Styles
   =================================== */
:root {
  --color-bg:      #03020a;
  --color-surface: rgba(255,255,255,0.03);
  --color-border:  rgba(255,255,255,0.07);
  --color-text:    rgba(255,255,255,0.85);
  --color-muted:   rgba(255,255,255,0.4);
  --color-purple:  #818cf8;
  --color-pink:    #c084fc;
  --color-rose:    #fb7185;
  --color-orange:  #fb923c;
  --color-teal:    #2dd4bf;
  --gradient-main: linear-gradient(135deg,#818cf8,#c084fc);
  --gradient-full: linear-gradient(135deg,#818cf8,#c084fc,#fb7185,#fb923c);
  --font-display:  '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; }

/* Navbar */
#mainNav { background: rgba(3,2,10,0.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--color-border); padding: 14px 0; }
#mainNav .nav-link { color: var(--color-muted); font-size: 13px; letter-spacing: 0.05em; transition: color 0.2s; }
#mainNav .nav-link:hover { color: #fff; }
#mainNav .navbar-brand { font-family: var(--font-display); font-size: 22px; font-weight: 800; }

/* 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); }

/* Page-specific styles below */

 
/* ── 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: center;
  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: #f97316;
  font-weight: 600;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
 
/* ── Title ── */
.hero-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  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;
}

.hero-title span{
  background: linear-gradient(
    135deg,
    #00c8ff,
    #818cf8,
    #c084fc
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.5em;
}
 
/* ── 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;
}
 
/* Fade edges — match your bg color */
.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%);
}
 
/* The scrolling track */
.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%); }
}
 
/* ── Responsive ── */
@media (max-width: 768px) {
  .hero-content { padding: 5rem 1.5rem 2.5rem; }
  .hero-logo-item { padding: 0 2rem; }
  .hero-logos-track-wrap::before,
  .hero-logos-track-wrap::after { width: 60px; }
}

.services-preview {
  position: relative;
  background: #2f2f79;
  padding: 6rem 0 5rem;
  overflow: hidden;
}
 
/* Subtle top border glow */
.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%
  );
}
 
/* Background radial glow */
.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;
}
 
/* ── Section header ── */
.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: 'Syne', 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;
}
 
/* ── 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;
}
 
/* Top accent line — hidden by default, slides in on hover */
.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;
}
 
/* Corner glow */
.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; }
 
/* Per-card accent colors */
.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; }
 
/* Icon container */
.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);
}
 
/* Card text */
.service-card h4 {
  font-family: 'Syne', 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;
}
 
/* Learn more link */
.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);
}
 
/* Number label */
.service-number {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  font-family: 'Syne', 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
========================== */

/* tokens */
.wnu {
  --blue:       #1a3fde;
  --blue-bg:    #e8eeff;
  --blue-dark:  #1230c8;
  --text:       #0a0f1e;
  --muted:      #5a6070;
  --border:     #e2e6f0;
  --bg:         #ffffff;
  --bg-alt:     #f5f6fa;
  --radius:     14px;
  background: var(--bg);
  padding: 90px 0 100px;
  overflow: hidden;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
}
 
/* ── Header ── */
.wnu__header {
  max-width: 640px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.wnu__header.on { opacity:1; transform:none; }
 
.wnu__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.wnu__eyebrow-line {
  display: block;
  width: 26px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  flex-shrink: 0;
}
 
.wnu__heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -.04em;
  color: var(--text);
  margin: 0 0 16px;
}
.wnu__blue { 
  color: var(--blue);
  font-size: 0.65em;
 }
 
.wnu__sub {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 540px;
  margin: 0;
}
 
/* ── Body grid ── */
.wnu__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
 
/* ── Video col ── */
.wnu__video-col {
  opacity: 0;
  transform: translateX(-26px);
  transition: opacity .65s .08s ease, transform .65s .08s ease;
}
.wnu__video-col.on { opacity:1; transform:none; }
 
.wnu__video-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
  border: 1px solid var(--border);
  box-shadow: 0 20px 56px rgba(26,63,222,.1), 0 4px 14px rgba(0,0,0,.07);
}
.wnu__video { width:100%; height:100%; object-fit:cover; display:block; }
 
@keyframes wnuBlink { 0%,100%{opacity:1} 50%{opacity:.2} }
 
/* progress bar */
.wnu__progress {
  position: absolute; bottom:0; left:0;
  height: 3px; width:0%;
  background: var(--blue);
  border-radius: 0 2px 0 0;
  transition: width .08s linear;
}
 
/* corners */
.wnu__brkt { position:absolute; width:20px; height:20px; pointer-events:none; }
.wnu__brkt--tl { top:8px; left:8px; border-top:2.5px solid var(--blue); border-left:2.5px solid var(--blue); border-radius:3px 0 0 0; }
.wnu__brkt--br { bottom:8px; right:8px; border-bottom:2.5px solid var(--blue); border-right:2.5px solid var(--blue); border-radius:0 0 3px 0; }
 
/* stats strip */
.wnu__stats {
  display: flex; align-items: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 18px;
  padding: 18px 15px;
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s .3s ease, transform .55s .3s ease;
}
.wnu__stats.on { opacity:1; transform:none; }
.wnu__stat { flex:1; display:flex; flex-direction:column; align-items:center; gap:3px; }
.wnu__stat-top { display:flex; align-items:baseline; gap:1px; }
.wnu__stat-num { font-family:'Outfit',sans-serif; font-size:24px; font-weight:800; color:var(--blue); line-height:1; }
.wnu__stat-suf { font-family:'Outfit',sans-serif; font-size:16px; font-weight:700; color:var(--blue); }
.wnu__stat-lbl { font-size:9.5px; font-weight:500; text-transform:uppercase; letter-spacing:.09em; color:var(--muted); text-align:center; line-height:1.4; }
.wnu__stat-div { width:1px; height:32px; background:var(--border); flex-shrink:0; }
 
/* ── Right col ── */
.wnu__right {
  opacity: 0; transform: translateX(26px);
  transition: opacity .65s .15s ease, transform .65s .15s ease;
}
.wnu__right.on { opacity:1; transform:none; }
 
/* Stat cards */
.wnu__cards { position:relative; }
 
.wnu__card {
  display: none;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 22px;
  animation: wnuFadeCard .35s ease;
}
.wnu__card.is-active { display: block; }
 
@keyframes wnuFadeCard { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
 
.wnu__card-num-wrap {
  margin-bottom: 12px;
}
.wnu__card-pct {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -.03em;
}
.wnu__card-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 18px;
}
.wnu__card-text strong { color: var(--text); font-weight: 600; }
 
/* progress bar inside card */
.wnu__card-bar {
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.wnu__card-fill {
  display: block;
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
  width: 0%;
  transition: width 1s cubic-bezier(.16,1,.3,1);
}
 
/* Nav */
.wnu__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.wnu__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer; padding: 0;
  transition: background .2s, transform .2s;
}
.wnu__dot.is-active { background: var(--blue); transform: scale(1.25); }
 
.wnu__nav-arrows { display:flex; gap:8px; margin-left:auto; }
.wnu__arr {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: background .2s, border-color .2s, color .2s;
}
.wnu__arr svg { width:16px; height:16px; }
.wnu__arr:hover { background: var(--blue); border-color: var(--blue); color: #fff; }
 
/* About text */
.wnu__about {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.wnu__about-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.wnu__about-num {
  width: 20px; height: 20px;
  background: var(--blue);
  color: #fff;
  font-size: 10px; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.wnu__about-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin: 0 0 10px; line-height: 1.4;
}
.wnu__about-body {
  font-size: 13.5px; line-height: 1.72;
  color: var(--muted); margin: 0;
}
 
/* CTAs */
.wnu__actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 24px;
}
.wnu__btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 600; font-family: 'Outfit', sans-serif;
  padding: 12px 24px; border-radius: 50px;
  text-decoration: none; letter-spacing: .01em;
  transition: background .2s, transform .2s, box-shadow .2s, color .2s, border-color .2s;
}
.wnu__btn svg { width:15px; height:15px; transition: transform .2s; }
.wnu__btn:hover svg { transform: translateX(4px); }
 
.wnu__btn--primary { background: var(--blue); color: #fff; }
.wnu__btn--primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,63,222,.3); color:#fff; text-decoration:none; }
 
.wnu__btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.wnu__btn--outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); text-decoration:none; }
 
/* ── Responsive ── */
@media (max-width: 1024px) {
  .wnu__body { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 640px) {
  .wnu { padding: 60px 0 70px; }
  .wnu__stats { flex-wrap: wrap; gap: 14px; }
  .wnu__stat-div { display:none; }
  .wnu__stat { flex: 0 0 calc(50% - 7px); }
}
/* testimonials */
.tst {
  padding: 80px 0 90px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
 
/* subtle background decoration */
.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: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.8;
  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: 'Syne', 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;
}
 
/* floating arrows */
.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; }
 
/* slider viewport */
.tst__viewport {
  overflow: hidden;
  border-radius: 16px;
  padding: 12px 16px 16px; /* horizontal padding lets peek cards be visible */
}
 
/* track — moved by transform */
.tst__track {
  display: flex;
  gap: 20px;
  transition: transform .52s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
 
/* ============================================================
   CARDS
============================================================ */
.tst__card {
  flex: 0 0 340px; /* fixed width — surrounding cards peek naturally */
  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;
  /* reveal animation */
  opacity: 0;
  transform: translateY(20px);
  animation: cardReveal .5s ease forwards;
}
@keyframes cardReveal {
  to { opacity: 1; transform: translateY(0); }
}
.tst__card:nth-child(1) { animation-delay: .05s; }
.tst__card:nth-child(2) { animation-delay: .12s; }
.tst__card:nth-child(3) { animation-delay: .19s; }
.tst__card:nth-child(4) { animation-delay: .26s; }
 
.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);
}
 
/* card top row */
.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;
}
 
/* quote text */
.tst__quote {
  font-size: .92rem;
  line-height: 1.7;
  color: #334155;
  flex-grow: 1;
  margin-bottom: 22px;
}
 
/* author row */
.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: 56px;
  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: 20px;
}
.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
============================================================ */
@media (max-width: 960px) {
  .tst__card { flex: 0 0 300px; }
  .tst__arrow--prev { left: -16px; }
  .tst__arrow--next { right: -16px; }
}
@media (max-width: 640px) {
  .tst { padding: 60px 0 70px; }
  .tst__card { flex: 0 0 260px; }
  .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; }
}
@media (max-width: 480px) {
  .tst__header { flex-direction: column; align-items: flex-start; }
  .tst__sub { max-width: 100%; }
  .tst__card { flex: 0 0 240px; }
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */

.faq-section {
  padding: 110px 0;
  background: #ffffff;
  border-top: 2px dotted #878686;
}

/* ── LAYOUT ── */
.faq-wrap {
  display: flex;
  gap: 90px;
  align-items: flex-start;
}

/* ── LEFT ── */
.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: 'Syne', 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;
}

/* ── RIGHT ── */
.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: 'Syne', 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;
}

/* ── ANSWER ── */
.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;
}

/* ── OPEN STATE ── */
.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;
}

/* ── HOVER ── */
.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;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .faq-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .faq-left {
    flex: none;
    position: static;
    width: 100%;
  }

  .faq-heading {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 70px 0;
  }

  .faq-heading {
    font-size: 28px;
  }

  .faq-q-text {
    font-size: 15px;
  }

  .faq-a-inner {
    padding-left: 0;
    font-size: 14px;
  }
}