:root {
  /* Brand */
  --blue: #0052e0;
  --blue-d: #0040c0;
  --blue-l: #e8f0ff;
  --blue-m: #93c5fd;

  /* Dark section backgrounds */
  --dark-blue: #003494;
  --dark-char: #1a1a2e;
  --dark-slate: #0f172a;

  /* Light section backgrounds */
  --light-1: #ffffff;
  --light-2: #f5f7ff;
  --light-3: #f8faff;

  /* Text */
  --text: #0f172a;
  --text2: #475569;
  --text3: #94a3b8;

  /* Utils */
  --border: #e2e8f0;
  --green: #22c55e;
  --amber: #f59e0b;
  --purple: #6d28d9;
  --font: "Plus Jakarta Sans", sans-serif;
}

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── SHARED UTILITIES ─── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4.5vw, 40px);
}

.sec {
  padding: 4rem 30px;
}

.sec-sm {
  padding: 2.5rem 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue);
  margin-bottom: 0.875rem;
}

.section-tag svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
  vertical-align: middle;
}

.section-tag.light {
  color: rgba(148, 187, 255, 0.85);
}

h2.sec-title {
  font-size: clamp(1.75rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 0.875rem;
}

h2.sec-title.white {
  color: #fff;
}

p.sec-sub {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text2);
  max-width: 50ch;
}

p.sec-sub.light {
  color: rgba(255, 255, 255, 0.55);
}

.row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.15s;
}

.link-more:hover {
  gap: 0.65rem;
}

.link-more svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-more.white {
  color: rgba(148, 187, 255, 0.9);
}

/* ─── REVEAL ANIMATIONS ─── */
.rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.rv.in {
  opacity: 1;
  transform: none;
}

.rv-l {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.rv-l.in {
  opacity: 1;
  transform: none;
}

.rv-r {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.rv-r.in {
  opacity: 1;
  transform: none;
}

/* ─── KEYFRAMES ─── */
@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.35;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 82, 224, 0.35);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(0, 82, 224, 0);
  }
}

/* ─── BUTTONS (Global) ─── */
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 82, 224, 0.4), 0 0 0 1px rgba(0, 82, 224, 0.5);
  transition: background 0.15s, transform 0.12s, box-shadow 0.2s;
}

.btn-p:hover {
  background: var(--blue-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 82, 224, 0.5);
}

.btn-p svg {
  width: 15px;
  height: 15px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-s {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}

.btn-s:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.btn-s svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ===========================================
   HOME PAGE — Section: 1. HERO
=========================================== */
.hero-wrap {
  background: #060d1a;
  position: relative;
  overflow: hidden;
}

.hero-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-wrap::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -150px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 224, 0.22) 0%, rgba(99, 102, 241, 0.1) 40%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 65%);
  pointer-events: none;
}

.hero-glow3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 82, 224, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54% 46%;
  gap: 3rem;
  align-items: center;
  padding: 5rem clamp(1.125rem, 5vw, 2.5rem) 3rem;
  max-width: 1320px;
  margin: 0 auto;
  min-height: min(calc(80vh - 70px), 860px);
}

.hero-left>* {
  animation: fadeUp 0.6s ease both;
}

.hero-left>*:nth-child(1) {
  animation-delay: 0.06s;
}

.hero-left>*:nth-child(2) {
  animation-delay: 0.14s;
}

.hero-left>*:nth-child(3) {
  animation-delay: 0.22s;
}

.hero-left>*:nth-child(4) {
  animation-delay: 0.3s;
}

.hero-left>*:nth-child(5) {
  animation-delay: 0.38s;
}

.hero-right {
  animation: fadeUp 0.65s 0.2s ease both;
  position: relative;
  padding-bottom: 2.5rem;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(0, 82, 224, 0.15);
  border: 1px solid rgba(0, 82, 224, 0.35);
  border-radius: 100px;
  padding: 0.32rem 1rem 0.32rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(148, 196, 255, 0.9);
  margin-bottom: 1rem;
  box-shadow: 0 0 20px rgba(0, 82, 224, 0.1);
  backdrop-filter: blur(6px);
}

.badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.badge-icon svg {
  width: 10px;
  height: 10px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* H1 */
h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 1rem;
}

.hl {
  position: relative;
  display: inline;
  white-space: nowrap;
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.58);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

/* Social Proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.avatars {
  display: flex;
}

.avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  margin-left: -9px;
}

.avatars span:first-child {
  margin-left: 0;
}

.av1 {
  background: #0052e0;
}

.av2 {
  background: #0891b2;
}

.av3 {
  background: #059669;
}

.av4 {
  background: #7c3aed;
}

.av5 {
  background: #dc2626;
}

.sp-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.45;
}

.sp-text strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.sp-stars {
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

/* Hero Dashboard Card */
.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 82, 224, 0.2), transparent 65%);
}

.hc-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.1rem;
}

.hc-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.35);
}

.hc-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4ade80;
}

.hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  animation: blink 2s infinite;
}

.hc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.hc-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.8rem 0.75rem;
}

.hc-snum {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hc-slbl {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
}

.hc-schg {
  font-size: 0.65rem;
  color: #4ade80;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 2px;
}

.hc-schg svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.hc-ranks {
  margin-bottom: 1.1rem;
}

.hc-rlbl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.6rem;
}

.hc-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.35rem;
}

.hc-pos {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.hc-kw {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

.hc-up {
  font-size: 0.65rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 1px;
}

.hc-up svg {
  width: 8px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.hc-bars {
  margin-bottom: 0.25rem;
}

.hc-blbl {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 0.6rem;
}

.hc-brow {
  margin-bottom: 0.45rem;
}

.hc-bhead {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.hc-bname {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}

.hc-bval {
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.hc-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  overflow: hidden;
}

.hc-fill {
  height: 100%;
  border-radius: 100px;
}

/* Floating badge */
.hero-float {
  position: absolute;
  bottom: -2rem;
  left: 1rem;
  background: rgba(15, 25, 45, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 2;
  backdrop-filter: blur(16px);
  min-width: 220px;
}

.hf-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hf-icon svg {
  width: 16px;
  height: 16px;
  stroke: #4ade80;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hf-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
}

.hf-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1px;
}


/* ===========================================
   HOME PAGE — Section: 2. LOGOS
=========================================== */
.logos-sec {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.logos-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
}

.logos-lbl {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text3);
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logos-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.logo-txt {
  font-size: 0.9rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: default;
}

.logo-txt:hover {
  color: #94a3b8;
}


/* ===========================================
   HOME PAGE — Section: 3. Client Logo
=========================================== */
.clients-section.rank {
  background: linear-gradient(135deg, #f0f4ff 0%, #f8fafc 50%, #eff6ff 100%);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
}

.clients-section.rank::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0052e0 30%, #00bfa8 70%, transparent);
}

.rank .clients-heading-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.rank .clients-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 82, 224, 0.15), transparent);
}

.rank .clients-line.right {
  background: linear-gradient(270deg, rgba(0, 82, 224, 0.15), transparent);
}

.rank .clients-heading {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  color: #0052e0;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
}

.rank .clients-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 10px;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
}

.client-logo:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(0, 82, 224, 0.12);
  transition: opacity 0.25s ease;
}

.client-logo:hover {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}

.client-logo:hover::after {
  opacity: 0;
}

.client-logo img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(100%) opacity(45%);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(100%);
}

/* ── Marquee Animation ── */
@keyframes marquee-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.desktop-logos {
  display: block;
}

.mobile-marquee {
  display: none;
}

.marquee-row {
  overflow: hidden;
  position: relative;
  margin-bottom: 8px;
}

.marquee-row::before,
.marquee-row::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.marquee-row::before {
  left: 0;
  background: linear-gradient(to right, #f0f4ff, transparent);
}

.marquee-row::after {
  right: 0;
  background: linear-gradient(to left, #f0f4ff, transparent);
}

.marquee-track {
  display: flex;
  gap: 8px;
  width: max-content;
}

.marquee-track.left {
  animation: marquee-left 18s linear infinite;
}

.marquee-track.right {
  animation: marquee-right 18s linear infinite;
}

.marquee-track .client-logo {
  width: 110px;
  padding: 8px 12px;
  filter: none;
}

.marquee-track .client-logo img {
  height: 28px;
  filter: grayscale(100%) opacity(45%);
}

.marquee-track .client-logo:hover img {
  filter: grayscale(0%) opacity(100%);
}

/* Ye line change karo */
.client-logo img {
  filter: grayscale(100%) opacity(45%);
  /* Purana */
  filter: grayscale(0%) opacity(100%);
  /* Naya - hamesha color */
}

/* Ye bhi */
.marquee-track .client-logo img {
  filter: grayscale(0%) opacity(100%);
  /* Naya */
}

/* ── Tablet ── */
@media (max-width: 1024px) {
  .clients-section.rank {
    padding: 28px 24px;
  }

  .client-logo img {
    height: 30px;
    max-width: 90px;
  }
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .clients-section.rank {
    padding: 22px 0;
  }

  .rank .clients-heading-wrap {
    padding: 0 16px;
  }

  .desktop-logos {
    display: none;
  }

  .mobile-marquee {
    display: block;
  }
}

/* ===========================================
   HOME PAGE — Section: 4. SERVICES
=========================================== */
.services-sec {
  background: #f0f5ff;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.svc-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, box-shadow 0.22s, transform 0.2s;
}

.svc-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 32px rgba(0, 82, 224, 0.1);
  transform: translateY(-3px);
}

.svc-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background 0.2s;
}

.svc-icon svg {
  width: 21px;
  height: 21px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}

.svc-card:hover .svc-icon {
  background: var(--blue);
}

.svc-card:hover .svc-icon svg {
  stroke: #fff;
}

.svc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.svc-desc {
  font-size: 0.85rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.svc-lnk {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.15s;
}

.svc-lnk svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svc-card:hover .svc-lnk {
  gap: 0.5rem;
}


/* ===========================================
   HOME PAGE — Section: 5. WHY US
=========================================== */
.why-sec {
  background: #fff;
  border-top: 1px solid var(--border);
}

.why-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.why-top-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-stat-pill {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f5f7ff;
  border: 1.5px solid #e0e8ff;
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.why-stat-pill:hover {
  background: #eef2ff;
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(0, 82, 224, 0.08);
}

.wsp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 82, 224, 0.3);
}

.wsp-icon svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wsp-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 60px;
  flex-shrink: 0;
}

.wsp-copy strong {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  margin-bottom: 2px;
}

.wsp-copy span {
  font-size: 0.76rem;
  color: var(--text3);
  line-height: 1.4;
}

.why-bands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.wb {
  padding: 2rem 1.5rem 1.75rem;
  border-right: 1.5px solid var(--border);
  transition: background 0.18s;
  cursor: default;
}

.wb:last-child {
  border-right: none;
}

.wb:hover {
  background: #f8f9ff;
}

.wb-ico {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: background 0.18s;
}

.wb-ico svg {
  width: 19px;
  height: 19px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.18s;
}

.wb:hover .wb-ico {
  background: var(--blue);
}

.wb:hover .wb-ico svg {
  stroke: #fff;
}

.wb-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.wb-desc {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 0.875rem;
}

.wb-tag {
  display: inline-flex;
  align-items: center;
  background: var(--blue-l);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  transition: background 0.18s, color 0.18s;
}

.wb:hover .wb-tag {
  background: var(--blue);
  color: #fff;
}


/* ===========================================
   HOME PAGE — Section: 6. PROCESS
=========================================== */
.proc-sec {
  background: #fff;
  border-top: 1px solid var(--border);
}

.proc-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.proc-header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #f5f7ff;
  border: 1.5px solid #e0e8ff;
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.phr-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phr-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.phr-text {
  font-size: 0.875rem;
  color: var(--text2);
  line-height: 1.5;
}

.phr-text strong {
  color: var(--text);
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.proc-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.proc-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(12.5% + 1px);
  right: calc(12.5% + 1px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue) 20%, var(--blue) 80%, transparent);
  z-index: 0;
  opacity: 0.3;
}

.ps {
  padding: 0 1.5rem 0 0;
  position: relative;
}

.ps:last-child {
  padding-right: 0;
}

.ps-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: border-color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.ps-circle.done {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 0 5px rgba(0, 82, 224, 0.12);
}

.ps-circle.done svg {
  stroke: #fff;
}

.ps-circle svg {
  width: 18px;
  height: 18px;
  stroke: var(--text3);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ps-step-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}

.ps-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.ps-desc {
  font-size: 0.825rem;
  color: var(--text2);
  line-height: 1.65;
}

.ps-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--blue-l);
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 100px;
  margin-top: 0.75rem;
}

.ps-tag svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}


/* ===========================================
   HOME PAGE — Section: 7. RESULTS
=========================================== */
.results-sec {
  background: #f0f5ff;
}

.res-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.res-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.res-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(-2px);
}

.res-ind {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.28rem 0.72rem;
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.res-ind svg {
  width: 9px;
  height: 9px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

.res-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.res-t {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.res-d {
  font-size: 0.8rem;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 1.1rem;
}

.res-by {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.res-av {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.ra1 {
  background: linear-gradient(135deg, #0052e0, #4f46e5);
}

.ra2 {
  background: linear-gradient(135deg, #059669, #0891b2);
}

.ra3 {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
}

.res-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
}

.res-role {
  font-size: 0.7rem;
  color: var(--text3);
}


/* ===========================================
   HOME PAGE — Section: 8. INDUSTRIES
=========================================== */
.ind-sec {
  background: #fff;
}

.ind-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.75rem;
  align-items: start;
}

.ind-nav {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: sticky;
  top: 96px;
}

.ind-nav-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.1rem;
  cursor: pointer;
  font-size: 0.855rem;
  font-weight: 500;
  color: var(--text2);
  border-left: 3px solid transparent;
  border-bottom: 1px solid var(--border);
  transition: all 0.15s;
}

.ind-nav-item:last-child {
  border-bottom: none;
}

.ind-nav-item:hover {
  background: #f8f9ff;
  color: var(--text);
}

.ind-nav-item.on {
  background: var(--blue-l);
  color: var(--blue);
  border-left-color: var(--blue);
  font-weight: 600;
}

.ind-nav-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.ind-nav-item.on .ind-nav-ico {
  background: var(--blue);
}

.ind-nav-ico svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.15s;
}

.ind-nav-item.on .ind-nav-ico svg {
  stroke: #fff;
}

.ind-content {
  display: none;
}

.ind-content.on {
  display: block;
}

.ind-content-inner {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.ind-ct-top {
  background: linear-gradient(130deg, #0052e0 0%, #1a56db 60%, #2563eb 100%);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.ind-ct-top::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 65%);
}

.ind-ct-top::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.ind-ct-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.ind-ct-title {
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.ind-ct-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
  max-width: 50ch;
  position: relative;
  z-index: 1;
}

.ind-ct-body {
  padding: 1.75rem 2rem;
}

.ind-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.ind-metric {
  background: #f8f9ff;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: border-color 0.15s;
}

.ind-metric:hover {
  border-color: var(--blue);
}

.im-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}

.im-lbl {
  font-size: 0.7rem;
  color: var(--text3);
  margin-top: 3px;
}

.ind-kws-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text3);
  margin-bottom: 0.65rem;
}

.ind-kw-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.ind-kw-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9ff;
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 0.5rem 0.875rem;
}

.ikw {
  font-size: 0.79rem;
  color: var(--text2);
}

.ikw-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.ikw-pos {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  color: #fff;
}

.ikw-up {
  font-size: 0.68rem;
  color: #16a34a;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1px;
}

.ikw-up svg {
  width: 8px;
  height: 8px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}


/* ===========================================
   HOME PAGE — Section: 9. TESTIMONIALS
=========================================== */
.testi-sec {
  background: #f0f5ff;
  border-top: 1px solid #dce8ff;
}

.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.testi-summary-pills {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.tsp {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text2);
}

.tsp svg {
  width: 13px;
  height: 13px;
  fill: var(--amber);
  stroke: none;
  flex-shrink: 0;
}

.tsp-divider {
  width: 1px;
  height: 18px;
  background: var(--border);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tcard {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
  position: relative;
  overflow: hidden;
}

.tcard::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  opacity: 0;
  transition: opacity 0.2s;
}

.tcard:hover {
  border-color: rgba(0, 82, 224, 0.25);
  box-shadow: 0 10px 30px rgba(0, 82, 224, 0.08);
  transform: translateY(-3px);
}

.tcard:hover::before {
  opacity: 1;
}

.tcard.highlight {
  border-color: rgba(0, 82, 224, 0.3);
  background: linear-gradient(160deg, #f0f5ff 0%, #fff 60%);
}

.tcard.highlight::before {
  opacity: 1;
}

.tc-quote {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue-l);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.tc-quote svg {
  width: 15px;
  height: 15px;
  fill: var(--blue);
  stroke: none;
}

.tc-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.875rem;
}

.tc-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--amber);
  stroke: none;
}

.tc-body {
  font-size: 0.88rem;
  line-height: 1.78;
  color: var(--text2);
  flex: 1;
  margin-bottom: 1.25rem;
}

.tcard.highlight .tc-body {
  font-size: 0.93rem;
  color: #334155;
}

.tc-person {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}

.tc-av {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.tav1 {
  background: linear-gradient(135deg, #0052e0, #4f46e5);
}

.tav2 {
  background: linear-gradient(135deg, #0891b2, #0052e0);
}

.tav3 {
  background: linear-gradient(135deg, #059669, #0891b2);
}

.tc-name {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text);
}

.tc-role {
  font-size: 0.73rem;
  color: var(--text3);
  margin-top: 1px;
}

.testi-platforms {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.testi-pl-label {
  font-size: 0.75rem;
  color: var(--text3);
  font-weight: 500;
}

.testi-pl-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.tpl {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.15s;
}

.tpl:hover {
  color: var(--text2);
}

.tpl svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.tpl-stars {
  color: var(--amber);
  font-size: 0.7rem;
  letter-spacing: 0.5px;
  margin-left: 2px;
}


/* ===========================================
   HOME PAGE — Section: BLOG
=========================================== */
.blog-sec {
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.22s, border-color 0.2s;
  text-decoration: none;
  will-change: transform;
}

.blog-card:hover {
  box-shadow: 0 20px 48px rgba(0, 82, 224, 0.1), 0 8px 16px rgba(0, 0, 0, 0.04);
  transform: translateY(-5px);
  border-color: rgba(0, 82, 224, 0.25);
}

.blog-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.blog-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 1.25rem;
  position: relative;
}

.blog-img-inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.blog-img-meta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-img-icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.blog-img-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255, 255, 255, 0.85);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-img-mins {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.bc1 .blog-img-inner {
  background: linear-gradient(145deg, #003494 0%, #0052e0 45%, #4f46e5 100%);
}

.bc2 .blog-img-inner {
  background: linear-gradient(145deg, #0c4a6e 0%, #0369a1 45%, #0891b2 100%);
}

.bc3 .blog-img-inner {
  background: linear-gradient(145deg, #3b0764 0%, #7c3aed 50%, #4f46e5 100%);
}

.blog-cat {
  position: absolute;
  top: 0.875rem;
  left: 0.875rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
}

.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: var(--text3);
  margin-bottom: 0.75rem;
}

.blog-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text3);
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  transition: color 0.15s;
}

.blog-card:hover .blog-title {
  color: var(--blue);
}

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.bav1 {
  background: #0052e0;
}

.bav2 {
  background: #0891b2;
}

.bav3 {
  background: #7c3aed;
}

.blog-author-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text2);
}

.blog-read {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.15s;
}

.blog-read svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-card:hover .blog-read {
  gap: 0.5rem;
}


/* ===========================================
   HOME PAGE — STICKY CTA BAR
=========================================== */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 999;
  background: rgba(6, 13, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.65rem 0.65rem 0.65rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 82, 224, 0.2);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
}

.sticky-cta.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.sticky-cta-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.sticky-cta-text strong {
  color: #fff;
  font-weight: 700;
}

.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 82, 224, 0.4);
  transition: background 0.15s, transform 0.12s;
}

.sticky-cta-btn:hover {
  background: var(--blue-d);
  transform: scale(1.03);
}

.sticky-cta-btn svg {
  width: 13px;
  height: 13px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-cta-close {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  line-height: 1;
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}

.sticky-cta-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}


/* ===========================================
   RESPONSIVE — All Breakpoints
=========================================== */
@media (max-width: 1280px) {
  h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
  }

  .hero {
    grid-template-columns: 52% 48%;
  }
}

@media (max-width: 1024px) {
  .sec {
    padding: 3.5rem 0;
  }

  h1 {
    font-size: 2.6rem;
  }

  h2.sec-title {
    font-size: 1.85rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 3.5rem 16px 4.5rem;
    gap: 2.5rem;
  }

  .hero-right {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-box {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1.75rem 1.25rem;
  }

  .stat-box:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .stat-box:nth-child(3),
  .stat-box:nth-child(4) {
    border-bottom: none;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-top {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-bands {
    grid-template-columns: repeat(2, 1fr);
  }

  .wb:nth-child(1),
  .wb:nth-child(2) {
    border-bottom: 1.5px solid var(--border);
  }

  .wb:nth-child(2) {
    border-right: none;
  }

  .wb:nth-child(3) {
    border-right: 1.5px solid var(--border);
  }

  .wb:nth-child(3),
  .wb:nth-child(4) {
    border-bottom: none;
  }

  .proc-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .proc-timeline::before {
    display: none;
  }

  .proc-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .ps {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border);
  }

  .ps:nth-child(1),
  .ps:nth-child(2) {
    border-right: 1px solid var(--border);
  }

  .ps:nth-child(3),
  .ps:nth-child(4) {
    border-bottom: none;
  }

  .res-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-layout {
    grid-template-columns: 1fr;
  }

  .ind-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .ind-nav-item {
    border-left: none;
    border-bottom: 2px solid transparent;
    flex-direction: column;
    text-align: center;
    gap: 0.3rem;
    padding: 0.65rem 0.4rem;
    justify-content: center;
    font-size: 0.78rem;
  }

  .ind-nav-item:not(:last-child) {
    border-right: 1px solid var(--border);
  }

  .ind-nav-item.on {
    background: var(--blue-l);
    border-bottom-color: var(--blue);
    border-left: none;
  }

  .ind-ct-body {
    padding: 1.5rem;
  }

  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .cta-left {
    padding: 2.5rem clamp(1.5rem, 4vw, 3rem) 1.5rem;
  }

  .cta-right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 2rem clamp(1.5rem, 4vw, 3rem);
  }
}

@media (max-width: 768px) {
  .sec {
    padding: 3rem 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2.sec-title {
    font-size: 1.65rem;
  }

  .hero {
    padding: 3rem 16px 4rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .btn-p,
  .btn-s {
    width: 100%;
    justify-content: center;
  }

  .logos-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .logos-list {
    gap: 1rem 1.5rem;
    flex-wrap: wrap;
  }

  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-timeline {
    grid-template-columns: 1fr 1fr;
  }

  .ps {
    padding: 1rem;
  }

  .res-grid {
    grid-template-columns: 1fr;
  }

  .row-head {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .link-more {
    align-self: flex-start;
  }

  .ind-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .ind-ct-top {
    padding: 1.5rem;
  }

  .ind-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .tcard {
    padding: 1.5rem;
  }

  .testi-summary-pills {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-img {
    height: 160px;
  }

  .cta-t {
    font-size: 1.75rem;
  }

  .cta-left,
  .cta-right {
    padding: 2rem 1.25rem;
  }

  .cta-proof {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .sticky-cta {
    left: 1rem;
    right: 1rem;
    transform: translateY(120px);
    border-radius: 14px;
    padding: 0.875rem 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    white-space: normal;
  }

  .sticky-cta.show {
    transform: translateY(0);
  }

  .sticky-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

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

  .sec {
    padding: 2.5rem 0;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2.sec-title {
    font-size: 1.5rem;
  }

  .hero {
    padding: 2.5rem 16px 3.5rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .stat-num {
    font-size: 2rem;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .why-bands {
    grid-template-columns: 1fr 1fr;
  }

  .wb {
    padding: 1.25rem;
  }

  .wb:nth-child(1),
  .wb:nth-child(2) {
    border-bottom: 1.5px solid var(--border);
  }

  .wb:nth-child(1),
  .wb:nth-child(3) {
    border-right: 1.5px solid var(--border);
  }

  .wb:nth-child(2),
  .wb:nth-child(4) {
    border-right: none;
  }

  .wb:nth-child(3),
  .wb:nth-child(4) {
    border-bottom: none;
  }

  .proc-timeline {
    grid-template-columns: 1fr;
    position: relative;
  }

  .proc-timeline::after {
    content: "";
    position: absolute;
    left: 21px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--blue), rgba(0, 82, 224, 0.1));
  }

  .ps {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
    padding: 0.875rem;
    padding-left: 3.5rem;
    position: relative;
  }

  .ps-circle {
    position: absolute;
    left: 0;
    top: 0;
  }

  .ps:last-child {
    border-bottom: none !important;
  }

  .res-grid {
    grid-template-columns: 1fr;
  }

  .ind-nav {
    grid-template-columns: repeat(3, 1fr);
  }

  .ind-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .ind-ct-title {
    font-size: 1.25rem;
  }

  .ind-kw-list {
    display: none;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  .tcard {
    padding: 1.25rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-img {
    height: 150px;
  }

  .cta-t {
    font-size: 1.6rem;
  }

  .cta-left,
  .cta-right {
    padding: 1.75rem 1rem;
  }

  .cta-proof {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 16px 16px;
  }

  .sec {
    padding: 2rem 16px;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2.sec-title {
    font-size: 1.35rem;
  }

  .badge {
    font-size: 0.7rem;
    margin-top: 27px;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .stat-box {
    padding: 1.25rem 1rem;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .svc-card {
    padding: 1.25rem;
  }

  .svc-icon {
    width: 38px;
    height: 38px;
  }

  .svc-icon svg {
    width: 17px;
    height: 17px;
  }

  .why-bands {
    grid-template-columns: 1fr;
  }

  .wb {
    border-right: none !important;
    border-bottom: 1.5px solid var(--border) !important;
    padding: 1.1rem;
  }

  .wb:last-child {
    border-bottom: none !important;
  }

  .ind-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-nav-ico {
    display: none;
  }

  .ind-nav-item {
    font-size: 0.75rem;
    padding: 0.6rem 0.4rem;
  }

  .ind-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .ind-ct-body {
    padding: 1.25rem;
  }

  .res-card,
  .tcard,
  .blog-body {
    padding: 1.1rem;
  }

  .blog-img {
    height: 130px;
  }

  .cta-bp,
  .cta-bs {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 2.3rem;
  }

  h2.sec-title {
    font-size: 1.2rem;
  }

  .hero {
    padding: 2rem 0.875rem 3rem;
  }

  .hero-sub {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
  }

  .hero-btns {
    gap: 0.5rem;
    margin-bottom: 1.75rem;
  }

  .btn-p,
  .btn-s {
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .ind-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .ind-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .cta-bp,
  .cta-bs {
    font-size: 0.82rem;
  }
}

/* ════════════════════════════════════════════
   RANKSBREATHE FOOTER — footer.css
   All classes prefixed with .rb-ft- or .rb-footer
   Zero conflict with header.css
   Usage: <link rel="stylesheet" href="footer.css">
════════════════════════════════════════════ */