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

:root {
  --purple: #7C3AED;
  --pink: #EC4899;
  --lavender: #A78BFA;
  --orange: #f97316;
  --green: #34d399;
  --bg: #07070F;
  --surface: #0E0E1A;
  --surface2: #141425;
  --border: rgba(124, 58, 237, 0.18);
  --border-hi: rgba(124, 58, 237, 0.45);
  --bpk: rgba(236, 72, 153, 0.35);
  --text: #F0EEFF;
  --muted: #8B87A8;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --glow-sm: 0 0 20px rgba(124, 58, 237, 0.25);
  --glow-md: 0 0 40px rgba(124, 58, 237, 0.35);
  --glow-pk: 0 0 30px rgba(236, 72, 153, 0.3);
  --radius: 50px;
  --nav-h: 68px;
  /* Short aliases */
  --lav: var(--lavender);
  --s1: var(--surface);
  --s2: var(--surface2);
  --bhi: var(--border-hi);
  --fh: var(--font-head);
  --fb: var(--font-body);
  --r: var(--radius);
  --gs: var(--glow-sm);
  --gm: var(--glow-md);
  --gp: var(--glow-pk);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* dot-grid background */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ─── SCROLLBAR ─────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--purple);
  border-radius: 3px;
}

/* ─── UTILITY ───────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.stop-cut-off {
  margin-right: 0;
}

/* pages are individual HTML files */
.section {
  padding: 96px 0;
}

.tag {
  display: inline-block;
  font-size: max(11px, 0.72rem);
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lavender);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-head);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  font-weight: 700;
}

h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.accent {
  color: var(--lavender);
}

.pink {
  color: var(--pink);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: all .25s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transition: opacity .2s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), #5b21b6);
  color: #fff;
  box-shadow: var(--glow-sm);
}

.btn-primary:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--lavender);
  border: 1px solid var(--border-hi);
}

.btn-outline:hover {
  border-color: var(--lavender);
  box-shadow: var(--glow-sm);
}

.btn-pink {
  background: linear-gradient(135deg, var(--pink), #be185d);
  color: #fff;
  box-shadow: var(--glow-pk);
}

.btn-pink:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 50px rgba(236, 72, 153, 0.45);
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}

/* section-heading */
.sh {
  margin-bottom: 56px;
}

.sh h2 {
  margin-bottom: 12px;
}

.sh p {
  max-width: 560px;
}

.sh.center {
  text-align: center;
}

.sh.center p {
  margin: 0 auto;
}

/* divider line accent */
.line-accent {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  border-radius: 2px;
  margin: 0 0 20px;
}

.center .line-accent {
  margin: 0 auto 20px;
}

/* grid */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* fade-in on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVBAR ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  height: var(--nav-h);
  background: rgba(7, 7, 15, 0.97);
  /* solid fallback when backdrop-filter unavailable */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)) {
  #navbar {
    background: rgba(7, 7, 15, 0.88);
    /* semi-transparent only when blur works */
  }
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* ── Logo — never wraps ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .95rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -.01em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo img {
  width: 43px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-logo .logo-text {
  white-space: nowrap;
}

.nav-logo .logo-text .logo-accent {
  color: var(--lavender);
}

/* ── Links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: .8rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: .02em;
  color: var(--muted);
  padding: 6px 11px;
  border-radius: 7px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.1);
}

.nav-links a.active {
  color: var(--lavender);
  background: rgba(124, 58, 237, 0.12);
}

/* ── CTA ── */
.nav-cta {
  flex-shrink: 0;
  padding: 10px 22px;
  font-size: .8rem;
  border-radius: 10px;
}

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* animated X when open */
#mobile-menu.open~* .hamburger span:nth-child(1),
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(7, 7, 15, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 24px 28px 36px;
  z-index: 998;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu a:not(.btn) {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s, padding-left .2s;
}

.mobile-menu a:not(.btn):hover {
  color: var(--lavender);
  padding-left: 6px;
}

.mobile-menu a.active-mobile {
  color: var(--lavender);
}

.mobile-menu .mob-cta {
  display: flex;
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  padding: 14px 28px;
  font-size: .95rem;
}

/* ── Breakpoints ── */
@media(max-width:960px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media(min-width:961px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ─── HOME ──────────────────────────────────────────────────── */
#page-home {
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* grain overlay on body — safe cross-browser */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

/* ── HERO ── */
.c-hero {
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* ambient glow layers */
.c-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
  top: -200px;
  right: -200px;
  animation: glow-breathe 7s ease-in-out infinite;
}

.c-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.09) 0%, transparent 65%);
  bottom: -100px;
  left: -100px;
  animation: glow-breathe 9s ease-in-out infinite reverse;
}

@keyframes glow-breathe {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: .7;
  }
}

/* horizontal scan line */
.c-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanline {
  0% {
    top: 20%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: .4;
  }

  100% {
    top: 80%;
    opacity: 0;
  }
}

.c-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: center;
  padding: 80px 0 100px;
}

/* eyebrow */
.c-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease, transform .5s ease;
}

.c-eyebrow.in {
  opacity: 1;
  transform: translateY(0);
}

.c-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink), 0 0 20px rgba(236, 72, 153, 0.4);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
    box-shadow: 0 0 16px var(--pink), 0 0 32px rgba(236, 72, 153, 0.5);
  }
}

.c-eyebrow-text {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.c-eyebrow-line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, var(--lavender), transparent);
}

/* big headline */
.c-headline {
  margin-bottom: 28px;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.c-hl-row {
  display: block;
  overflow: hidden;
  line-height: 1.15;
}

.c-hl-inner {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  letter-spacing: -.04em;
  transform: translateY(115%);
  transition: transform .75s cubic-bezier(0.22, 1, 0.36, 1);
}

.c-hl-row.in .c-hl-inner {
  transform: translateY(0);
}

.c-hl-inner.outline {
  color: rgba(167, 139, 250, 0.55);
  /* visible fallback for all browsers */
}

@supports (-webkit-text-stroke: 1px transparent) {
  .c-hl-inner.outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(167, 139, 250, 0.55);
  }
}

.c-hl-inner.grad {
  background: linear-gradient(100deg, var(--lavender) 0%, var(--pink) 60%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* subtext */
.c-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .8s, transform .6s ease .8s;
}

.c-sub.in {
  opacity: 1;
  transform: translateY(0);
}

/* CTAs */
.c-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease 1s, transform .6s ease 1s;
}

.c-actions.in {
  opacity: 1;
  transform: translateY(0);
}

/* bottom meta bar */
.c-meta-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  opacity: 0;
  transition: opacity .6s ease 1.2s;
}

.c-meta-bar.in {
  opacity: 1;
}

.c-meta-label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.c-meta-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.c-meta-stars {
  font-family: 'Segoe UI Symbol', 'Apple Color Emoji', Arial, sans-serif;
  color: #FBBF24;
  font-size: .8rem;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}

.c-meta-quote {
  font-size: .8rem;
  color: var(--muted);
  font-style: italic;
}

/* right side logo */
.c-logo-side {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .9s ease .3s, transform .9s cubic-bezier(0.22, 1, 0.36, 1) .3s;
}

.c-logo-side.in {
  opacity: 1;
  transform: scale(1);
}

.c-logo-wrap {
  position: relative;
  width: 380px;
  height: 380px;
}

.c-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  z-index: 3;
  animation: logo-breathe 6s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(124, 58, 237, 0.5)) drop-shadow(0 0 120px rgba(124, 58, 237, 0.25));
}

@keyframes logo-breathe {

  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 60px rgba(124, 58, 237, 0.5)) drop-shadow(0 0 120px rgba(124, 58, 237, 0.25));
  }

  50% {
    transform: translateY(-12px) scale(1.02);
    filter: drop-shadow(0 0 80px rgba(124, 58, 237, 0.7)) drop-shadow(0 0 150px rgba(124, 58, 237, 0.35));
  }
}

/* orbit rings */
.c-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(124, 58, 237, 0.2);
  pointer-events: none;
}

.c-orbit-1 {
  inset: -30px;
  animation: orbit-spin 18s linear infinite;
}

.c-orbit-2 {
  inset: -60px;
  border-color: rgba(236, 72, 153, 0.12);
  animation: orbit-spin 28s linear infinite reverse;
}

.c-orbit-3 {
  inset: -90px;
  border-color: rgba(167, 139, 250, 0.08);
  animation: orbit-spin 40s linear infinite;
}

.c-orbit-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lavender);
  box-shadow: 0 0 12px var(--lavender);
}

.c-orbit-dot-pk {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  bottom: -3px;
  right: 20%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

/* coord label (top-right corner of logo) */
.c-coord {
  position: absolute;
  top: -36px;
  right: 0;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .5;
}

/* ── MARQUEE ── */
.c-marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.c-marquee-track {
  display: flex;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.c-marquee:hover .c-marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

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

.c-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.c-marquee-item .m-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lavender);
  box-shadow: 0 0 6px var(--lavender);
  flex-shrink: 0;
}

.c-marquee-item.hi {
  color: var(--lavender);
}

/* ── STATS STRIP ── */
.c-stats {
  padding: 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.c-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.c-stat-col {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.c-stat-col:last-child {
  border-right: none;
}

.c-stat-col:hover {
  background: rgba(124, 58, 237, 0.04);
}

.c-stat-col::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}

.c-stat-col:hover::before {
  transform: scaleX(1);
}

.c-stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--text) 40%, var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 8px;
}

.c-stat-label {
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.c-stat-sub {
  font-size: .72rem;
  color: rgba(139, 135, 168, 0.6);
  margin-top: 3px;
}

/* ── SERVICES (numbered list) ── */
.c-services {
  padding: 72px 0 80px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.c-services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 56px;
}

.c-services-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
}

.c-services-head p {
  font-size: 1rem;
  max-width: 380px;
  padding-bottom: 4px;
}

.c-svc-list {
  list-style: none;
  border-top: 1px solid var(--border);
}

.c-svc-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background .2s;
  position: relative;
}

.c-svc-item::before {
  content: '';
  position: absolute;
  left: -24px;
  right: -24px;
  top: 0;
  bottom: 0;
  background: rgba(124, 58, 237, 0.04);
  opacity: 0;
  transition: opacity .25s;
  pointer-events: none;
}

.c-svc-item:hover::before {
  opacity: 1;
}

.c-svc-num {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--muted);
  transition: color .25s;
}

.c-svc-item:hover .c-svc-num {
  color: var(--lavender);
}

.c-svc-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  transition: color .25s;
}

.c-svc-item:hover .c-svc-name {
  color: var(--lavender);
}

.c-svc-desc {
  font-size: .875rem;
  color: var(--muted);
  margin-top: 4px;
}

.c-svc-arrow {
  font-size: 1.2rem;
  color: var(--muted);
  transition: transform .25s, color .25s;
  opacity: 0;
}

.c-svc-item:hover .c-svc-arrow {
  opacity: 1;
  color: var(--lavender);
  transform: translate(4px, -4px);
}

/* ── WORK GRID ── */
.c-work {
  padding: 0 0 88px;
  position: relative;
  z-index: 2;
}

.c-work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.c-work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.c-proj {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  /* Link colour reset — <a> tags inherit browser blue otherwise */
  color: var(--text);
  text-decoration: none;
  display: block;
}

.c-proj:hover {
  border-color: var(--border-hi);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
  color: var(--text);
}

.c-proj-main {
  grid-row: span 2;
}

.c-proj-thumb {
  background: linear-gradient(145deg, var(--surface2), rgba(124, 58, 237, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}

.c-proj-main .c-proj-thumb {
  height: 280px;
}

.c-proj:not(.c-proj-main) .c-proj-thumb {
  height: 130px;
}

.c-proj-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 7, 15, .85));
}

.c-proj-body {
  padding: 18px 22px 22px;
}

.c-proj-tag {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 6px;
  display: block;
}

.c-proj-body h3 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--text);
}

.c-proj-body p {
  font-size: .82rem;
}

.c-proj-main .c-proj-body {
  padding: 22px 26px 26px;
}

.c-proj-main .c-proj-body h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

/* ── QUOTE ── */
.c-quote {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.c-quote-bg-num {
  position: absolute;
  right: -20px;
  top: -60px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22rem;
  line-height: 1;
  color: rgba(124, 58, 237, 0.04);
  pointer-events: none;
  user-select: none;
}

.c-quote-inner {
  max-width: 820px;
}

.c-quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--lavender);
  line-height: .6;
  margin-bottom: 20px;
  display: block;
  opacity: .6;
}

.c-quote-text {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 32px;
  font-style: italic;
}

.c-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.c-quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  color: #fff;
}

.c-quote-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--text);
}

.c-quote-author span {
  font-size: .82rem;
  color: var(--muted);
}

/* Quote stars — explicit font stack for reliable Unicode ★ rendering */
.c-quote-stars {
  font-family: 'Segoe UI Symbol', 'Apple Color Emoji', Arial, sans-serif;
  color: #FBBF24;
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: 3px;
  display: block;
  line-height: 1;
}

/* ── CTA ── */
.c-cta {
  padding: 96px 0;
  position: relative;
  z-index: 2;
}

.c-cta-inner {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 80px;
  overflow: hidden;
  background: var(--surface);
}

.c-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

.c-cta-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--lavender), var(--pink), transparent);
}

.c-cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.c-cta-grid h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.c-cta-grid p {
  max-width: 480px;
  font-size: 1rem;
}

.c-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  flex-shrink: 0;
}

.c-cta-note {
  font-size: .78rem;
  color: var(--muted);
  text-align: right;
}

/* ── RESPONSIVE ── */
@media(max-width:1000px) {
  .c-hero-inner {
    grid-template-columns: 1fr;
    padding: 64px 0 80px;
  }

  .c-logo-side {
    display: none;
  }

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

  .c-stat-col {
    padding: 36px 28px;
  }

  .c-stat-col:nth-child(2) {
    border-right: none;
  }

  .c-stat-col:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .c-stat-col:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  .c-work-grid {
    grid-template-columns: 1fr 1fr;
  }

  .c-proj-main {
    grid-column: span 2;
    grid-row: span 1;
  }

  .c-services-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .c-cta-actions {
    align-items: flex-start;
  }

  .c-cta-note {
    text-align: left;
  }
}

@media(max-width:640px) {
  .c-hero {
    min-height: auto;
  }

  .c-hero-inner {
    padding: 52px 0 68px;
  }

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

  .c-work-grid {
    grid-template-columns: 1fr;
  }

  .c-proj-main {
    grid-column: span 1;
  }

  .c-svc-item {
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
  }

  .c-svc-name {
    font-size: 1rem;
  }

  .c-cta-inner {
    padding: 40px 24px;
  }

  .c-hl-inner {
    font-size: clamp(2.4rem, 9vw, 3.8rem);
  }

  .c-sub {
    font-size: .95rem;
  }

  .c-actions {
    flex-direction: column;
    width: 100%;
  }

  .c-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .c-meta-bar {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
  }
}

/* cta banner (other pages) */
.cta-banner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  max-width: 500px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── ABOUT: MISSION/VISION — handled by .about-statement-* rules below ── */
/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════════════════════════════ */
#page-about {
  overflow: hidden;
}

/* ── Hero ── */
.ab-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 0 80px;
}

.ab-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.16) 0%, transparent 65%);
  top: -200px;
  right: -160px;
  animation: glow-breathe 7s ease-in-out infinite;
}

.ab-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.09) 0%, transparent 65%);
  bottom: -80px;
  left: -80px;
  animation: glow-breathe 10s ease-in-out infinite reverse;
}

.ab-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

.ab-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: flex-start;
}

/* Left */
.ab-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 28px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}

.ab-hero-sub.in {
  opacity: 1;
  transform: translateY(0);
}

.ab-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .8s, transform .6s ease .8s;
}

.ab-hero-actions.in {
  opacity: 1;
  transform: translateY(0);
}

/* Right: elevated founder card */
.ab-founder-card {
  background: linear-gradient(145deg, rgba(20, 20, 37, .98), rgba(14, 14, 26, .98));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease .3s, transform .8s cubic-bezier(.22, 1, .36, 1) .3s;
}

.ab-founder-card.in {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient top border */
.ab-founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--lavender), var(--pink));
}

/* Ambient glow */
.ab-founder-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 80% 0%, rgba(124, 58, 237, 0.08), transparent 60%);
}

.ab-founder-top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 32px 24px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
}

.ab-founder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .78rem;
  color: #fff;
  letter-spacing: .04em;
}

.ab-founder-top h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ab-founder-role {
  font-size: .78rem;
  color: var(--lavender);
  font-family: var(--font-head);
  font-weight: 600;
  display: block;
}

.ab-founder-card>p {
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
  padding: 20px 32px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
}

.ab-founder-stats {
  display: flex;
  gap: 0;
  position: relative;
  z-index: 1;
}

.ab-founder-stat {
  flex: 1;
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.ab-founder-stat:last-child {
  border-right: none;
}

.ab-founder-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 30%, var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.ab-founder-stat span {
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ab-founder-location {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: .8rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

/* ── Mission / Vision ── */
.about-statement-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.about-statement-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(124, 58, 237, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.about-statement-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-statement-divider {
  background: var(--border);
  height: 100%;
  min-height: 80px;
  align-self: stretch;
}

.about-statement-item {
  min-width: 0;
}

.about-statement-eyebrow {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-statement-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--lavender);
  border-radius: 2px;
}

.about-statement-text {
  font-family: var(--font-head);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

.about-statement-text em {
  font-style: normal;
  color: var(--lavender);
}

/* ── Tech Stack ── */
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tech-group {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .3s, box-shadow .3s;
}

.tech-group:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
}

.tech-group-label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
}

.tech-tag:hover {
  background: rgba(124, 58, 237, 0.16);
  border-color: var(--border-hi);
  color: var(--lavender);
}

.tech-tag.hi {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.3);
  color: var(--lavender);
}

.tech-tag.pk {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.25);
  color: var(--pink);
}

/* ── Values ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.val-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
}

.val-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity .3s;
}

.val-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}

.val-card:hover::before {
  opacity: 1;
}

.val-icon {
  font-size: 1.5rem;
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}

.val-card:hover .val-icon {
  background: rgba(124, 58, 237, 0.2);
}

.val-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.val-card p {
  font-size: .875rem;
  margin: 0;
}

/* ── Why Choose Us ── */
.why-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.why-section-grid>div>p {
  font-size: 1.05rem;
  margin-top: 16px;
}

/* Trust strip inside why */
.about-trust-strip {
  display: flex;
  gap: 0;
  margin-top: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.about-trust-item {
  flex: 1;
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
}

.about-trust-item:last-child {
  border-right: none;
}

.about-trust-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 30%, var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.about-trust-item span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Why list */
.why-list {
  list-style: none;
}

.why-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.why-list li:last-child {
  border-bottom: none;
}

.why-check {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--lavender);
  margin-top: 1px;
}

.why-list li strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  margin-bottom: 4px;
}

.why-list li p {
  font-size: .875rem;
  margin: 0;
}

/* ── About responsive ── */
@media(max-width:960px) {
  .ab-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media(max-width:900px) {
  .about-statement-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-statement-divider {
    display: none;
  }

  .why-section-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media(max-width:640px) {
  .ab-hero {
    padding: calc(var(--nav-h) + 48px) 0 56px;
  }

  .ab-hero-actions {
    flex-direction: column;
  }

  .ab-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .tech-stack-grid {
    grid-template-columns: 1fr;
  }

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

  .about-trust-strip {
    flex-direction: column;
  }

  .about-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .about-trust-item:last-child {
    border-bottom: none;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════════════ */
#page-services {
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* ── Hero — same DNA as index/pricing ── */
.sv-hero {
  min-height: calc(100vh - var(--nav-h));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
}

.sv-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.16) 0%, transparent 65%);
  top: -220px;
  right: -200px;
  animation: glow-breathe 7s ease-in-out infinite;
}

.sv-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 65%);
  bottom: -100px;
  left: -100px;
  animation: glow-breathe 10s ease-in-out infinite reverse;
}

.sv-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

.sv-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 48px;
  align-items: center;
}

.sv-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}

.sv-hero-sub.in {
  opacity: 1;
  transform: translateY(0);
}

.sv-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .8s, transform .6s ease .8s;
}

.sv-hero-actions.in {
  opacity: 1;
  transform: translateY(0);
}

.sv-hero-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease .25s, transform .7s cubic-bezier(.22, 1, .36, 1) .25s;
}

.sv-hero-right.in {
  opacity: 1;
  transform: translateY(0);
}

.sv-service-index {
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
}

.sv-service-index li {
  border-bottom: 1px solid var(--border);
}

.sv-service-index li:last-child {
  border-bottom: none;
}

.sv-service-index li a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  transition: background .2s, padding-left .2s;
  color: var(--text);
}

.sv-service-index li a:hover {
  background: rgba(124, 58, 237, 0.06);
  padding-left: 30px;
}

.sv-si-num {
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--lavender);
  flex-shrink: 0;
  width: 24px;
}

.sv-si-name {
  flex: 1;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
}

.sv-si-arrow {
  color: var(--muted);
  font-size: 1rem;
  transition: transform .2s, color .2s;
  opacity: 0;
}

.sv-service-index li a:hover .sv-si-arrow {
  opacity: 1;
  color: var(--lavender);
  transform: translate(4px, -4px);
}

/* Offset anchor scroll targets by navbar height */
.sv-svc-row[id],
.faq-group[id],
.pf-grid[id],
.bl-grid-section[id],
[id^="panel-"] {
  scroll-margin-top: var(--nav-h);
}

/* ── Editorial service rows ── */
.sv-services-wrap {
  position: relative;
}

.sv-svc-row {
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.sv-svc-row:nth-child(even),
.sv-svc-row--alt {
  background: rgba(14, 14, 26, 0.5);
}

.sv-svc-bg-num {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(14rem, 20vw, 22rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(124, 58, 237, 0.035);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.sv-svc-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual column reversal — uses order instead of direction:rtl
   so screen readers and keyboard navigation follow DOM order */
.sv-svc-inner--flip>*:last-child {
  order: -1;
}

.sv-svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.sv-svc-num-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 100px;
}

.sv-svc-icon {
  font-size: 1.8rem;
}

.sv-svc-left h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.sv-svc-left>p {
  font-size: 1rem;
  max-width: 420px;
  margin-bottom: 36px;
}

.sv-svc-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sv-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.sv-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

.sv-feat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--lavender);
  box-shadow: 0 0 8px var(--lavender);
  margin-top: 7px;
}

.sv-feat-dot--pk {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

.sv-result-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.sv-result-item {
  flex: 1;
  padding: 16px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.03);
  transition: background .2s;
}

.sv-result-item:last-child {
  border-right: none;
}

.sv-result-item:hover {
  background: rgba(124, 58, 237, 0.08);
}

.sv-result-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 4px;
}

.sv-result-item span {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── Process ── */
.sv-process-section {
  background: linear-gradient(180deg, transparent, rgba(14, 14, 26, 0.6), transparent);
}

.sv-process-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 72px;
}

.sv-process-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
}

.sv-process-head>p {
  font-size: 1rem;
  padding-bottom: 4px;
}

.sv-process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.sv-process-row::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 52px;
  right: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: .25;
  z-index: 0;
}

.sv-proc-step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.sv-proc-num-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.sv-proc-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: var(--lavender);
  transition: background .3s, box-shadow .3s;
  position: relative;
  z-index: 1;
}

.sv-proc-step:hover .sv-proc-num {
  background: rgba(124, 58, 237, 0.2);
  box-shadow: var(--glow-sm);
}

.sv-proc-step h4 {
  font-size: .95rem;
  margin-bottom: 10px;
}

.sv-proc-step p {
  font-size: .8rem;
  line-height: 1.65;
}

/* ── Services responsive ── */
@media(max-width:1000px) {
  .sv-hero-inner {
    grid-template-columns: 1fr;
  }

  .sv-hero-right {
    display: none;
  }

  .sv-process-row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sv-process-row::before {
    display: none;
  }

  .sv-proc-step--last {
    grid-column: span 2;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media(max-width:900px) {
  .sv-svc-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sv-svc-inner--flip {
    direction: ltr;
  }

  .sv-svc-bg-num {
    font-size: 30vw;
    right: -20px;
  }

  .sv-process-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media(max-width:640px) {
  .sv-hero {
    padding: 60px 0 80px;
    min-height: auto;
  }

  .sv-svc-row {
    padding: 64px 0;
  }

  .sv-svc-left h2 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .sv-svc-actions {
    flex-direction: column;
  }

  .sv-svc-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .sv-result-strip {
    flex-direction: column;
  }

  .sv-result-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sv-result-item:last-child {
    border-bottom: none;
  }

  .sv-process-row {
    grid-template-columns: 1fr;
  }

  .sv-proc-step--last {
    grid-column: span 1;
    max-width: none;
  }

  .sv-hero-actions {
    flex-direction: column;
  }

  .sv-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO PAGE
═══════════════════════════════════════════════════════════════ */
#page-portfolio {
  overflow: hidden;
}

/* ── Hero ── */
.pf-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}

.pf-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 65%);
  top: -200px;
  right: -180px;
  animation: glow-breathe 8s ease-in-out infinite;
}

.pf-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 65%);
  bottom: -80px;
  left: -80px;
  animation: glow-breathe 11s ease-in-out infinite reverse;
}

.pf-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

.pf-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: flex-end;
}

.pf-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}

.pf-hero-sub.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stats cluster — bottom-right of hero */
.pf-hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-end;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .8s, transform .6s ease .8s;
}

.pf-hero-stats.in {
  opacity: 1;
  transform: translateY(0);
}

.pf-stat-item {
  padding: 20px 28px;
  text-align: center;
  background: var(--surface);
}

.pf-stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 30%, var(--lavender));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.pf-stat-item span {
  font-size: .7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.pf-stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Sticky filter nav — same DNA as pricing cat-nav ── */
.pf-filter-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(7, 7, 15, .94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.pf-filter-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.pf-filter-inner::-webkit-scrollbar {
  display: none;
}

.pf-filter-btn {
  flex-shrink: 0;
  padding: 18px 28px;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}

.pf-filter-btn:hover {
  color: var(--text);
}

.pf-filter-btn.active {
  color: var(--lavender);
  border-bottom-color: var(--lavender);
}

/* ── Project grid ── */
.pf-grid-section {
  padding: 60px 0 88px;
}

.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* All cards */
.pf-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  cursor: default;
}

.pf-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

/* Featured card — spans first 2 rows and 2 columns */
.pf-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* Thumbnail */
.pf-thumb {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface2), rgba(124, 58, 237, 0.14));
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-card--featured .pf-thumb {
  height: 340px;
}

.pf-card:not(.pf-card--featured) .pf-thumb {
  height: 160px;
}

.pf-thumb-emoji {
  font-size: 3rem;
  opacity: .45;
  transition: opacity .3s, transform .3s;
  z-index: 1;
  position: relative;
}

.pf-card:hover .pf-thumb-emoji {
  opacity: .7;
  transform: scale(1.1);
}

.pf-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 7, 15, .9));
  z-index: 2;
}

/* Result badge — reveals on hover */
.pf-thumb-result {
  position: absolute;
  bottom: 16px;
  left: 20px;
  z-index: 3;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}

.pf-card:hover .pf-thumb-result {
  opacity: 1;
  transform: translateY(0);
}

.pf-thumb-result strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pf-card--featured .pf-thumb-result strong {
  font-size: 1.8rem;
}

.pf-thumb-result span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .7);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Body */
.pf-body {
  padding: 20px 24px 24px;
}

.port-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.ptag {
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 100px;
}

.pf-body h3 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--text);
}

.pf-card--featured .pf-body h3 {
  font-size: 1.35rem;
}

.pf-body p {
  font-size: .85rem;
}

.pf-card--featured .pf-body p {
  font-size: .9rem;
  max-width: 480px;
}

.port-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--lavender);
  letter-spacing: .04em;
  transition: color .2s;
}

.port-link:hover {
  color: var(--pink);
}

/* ── Portfolio responsive ── */
@media(max-width:900px) {
  .pf-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: flex-start;
  }

  .pf-hero-stats {
    align-self: flex-start;
  }

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

  .pf-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .pf-card--featured .pf-thumb {
    height: 220px;
  }
}

@media(max-width:640px) {
  .pf-hero {
    padding: calc(var(--nav-h) + 48px) 0 56px;
  }

  .pf-hero-stats {
    flex-direction: column;
    width: 100%;
  }

  .pf-stat-divider {
    width: 100%;
    height: 1px;
  }

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

  .pf-card--featured {
    grid-column: span 1;
  }

  .pf-card--featured .pf-thumb {
    height: 180px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS PAGE
═══════════════════════════════════════════════════════════════ */
#page-testimonials {
  overflow: hidden;
}

/* ── Hero ── */
.tm-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 0 80px;
}

.tm-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 65%);
  top: -180px;
  left: -120px;
  animation: glow-breathe 8s ease-in-out infinite;
}

.tm-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.09) 0%, transparent 65%);
  bottom: -100px;
  right: -100px;
  animation: glow-breathe 11s ease-in-out infinite reverse;
}

.tm-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

.tm-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* Left */
.tm-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}

.tm-hero-sub.in {
  opacity: 1;
  transform: translateY(0);
}

.tm-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  opacity: 0;
  transition: opacity .6s ease 1s;
}

.tm-hero-meta.in {
  opacity: 1;
}

.tm-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

.tm-meta-divider {
  width: 1px;
  height: 16px;
  background: var(--border);
}

.tm-stars {
  font-family: 'Segoe UI Symbol', 'Apple Color Emoji', Arial, sans-serif;
  color: #FBBF24;
  font-size: .85rem;
  letter-spacing: 2px;
  display: block;
  line-height: 1;
}

/* Right: featured pull-quote */
.tm-hero-quote {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease .35s, transform .8s cubic-bezier(.22, 1, .36, 1) .35s;
}

.tm-hero-quote.in {
  opacity: 1;
  transform: translateY(0);
}

.tm-hero-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(ellipse at top left, rgba(124, 58, 237, 0.08), transparent 60%);
  pointer-events: none;
}

.tm-hero-quote::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, var(--purple), var(--lavender), var(--pink));
}

.tm-fquote-mark {
  font-family: var(--font-head);
  font-size: 5rem;
  font-weight: 800;
  color: var(--lavender);
  line-height: .5;
  margin-bottom: 20px;
  display: block;
  opacity: .5;
  position: relative;
  z-index: 1;
}

.tm-fquote-text {
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.tm-fquote-author {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.tm-fquote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
}

.tm-fquote-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--text);
}

.tm-fquote-author span {
  font-size: .78rem;
  color: var(--muted);
}

/* ── Sticky tab nav ── */
.tm-tab-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(7, 7, 15, .94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.tm-tab-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.tm-tab-inner::-webkit-scrollbar {
  display: none;
}

.tm-tab-btn {
  flex-shrink: 0;
  padding: 18px 32px;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}

.tm-tab-btn:hover {
  color: var(--text);
}

.tm-tab-btn.active {
  color: var(--lavender);
  border-bottom-color: var(--lavender);
}

.tm-tab-count {
  display: inline-block;
  background: rgba(124, 58, 237, .15);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 1px 8px;
  font-size: .65rem;
  margin-left: 6px;
  vertical-align: middle;
}

.tm-tab-btn.active .tm-tab-count {
  background: rgba(124, 58, 237, .3);
  border-color: var(--bhi);
}

.testi-panel {
  display: none;
}

.testi-panel.active {
  display: block;
}

/* ── Reviews grid ── */
.tm-reviews-section {
  padding-bottom: 88px;
}

.tm-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
  align-items: stretch;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity .3s;
}

.review-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
}

.review-card:hover::before {
  opacity: 1;
}

/* Featured review spans 2 cols */
.tm-review-featured {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.06), rgba(14, 14, 26, 0.97));
}

.tm-review-featured blockquote {
  font-size: 1.05rem !important;
}

.stars {
  font-family: 'Segoe UI Symbol', 'Apple Color Emoji', Arial, sans-serif;
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}

.review-card blockquote {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
  flex: 1;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .82rem;
  color: #fff;
}

.reviewer strong {
  display: block;
  font-size: .875rem;
  font-family: var(--font-head);
  color: var(--text);
}

.reviewer span {
  font-size: .78rem;
  color: var(--muted);
}

/* ── Case study editorial rows ── */
.tm-cs-row {
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.tm-cs-row:nth-child(even) {
  background: rgba(14, 14, 26, 0.5);
}

.tm-cs-bg-num {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(12rem, 18vw, 20rem);
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(124, 58, 237, 0.04);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.tm-cs-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}

/* Visual column reversal — uses order instead of direction:rtl
   so screen readers and keyboard navigation follow DOM order */
.tm-cs-row--flip .tm-cs-inner>*:last-child {
  order: -1;
}

.tm-cs-eyebrow {
  margin-bottom: 20px;
}

.cs-industry {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--lavender);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 100px;
}

.tm-cs-left h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.1;
}

.tm-cs-left>p {
  font-size: 1rem;
  max-width: 400px;
  margin-bottom: 36px;
}

/* Result stats */
.tm-cs-results {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.tm-cs-stat {
  flex: 1;
  padding: 16px 12px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.03);
  transition: background .2s;
}

.tm-cs-stat:last-child {
  border-right: none;
}

.tm-cs-stat:hover {
  background: rgba(124, 58, 237, 0.08);
}

.tm-cs-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--lavender);
  line-height: 1;
  margin-bottom: 4px;
}

.tm-cs-stat span {
  font-size: .68rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Right: content blocks */
.tm-cs-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tm-cs-block {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .3s;
}

.tm-cs-block:hover {
  border-color: var(--border-hi);
}

.tm-cs-block-label {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}

.tm-cs-block p {
  font-size: .875rem;
  margin: 0;
}

/* ── Testimonials responsive ── */
@media(max-width:900px) {
  .tm-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .tm-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tm-review-featured {
    grid-column: span 2;
  }

  .tm-cs-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-cs-row--flip .tm-cs-inner {
    direction: ltr;
  }
}

@media(max-width:640px) {
  .tm-hero {
    padding: calc(var(--nav-h) + 48px) 0 56px;
  }

  .tm-hero-quote {
    padding: 28px;
  }

  .tm-fquote-text {
    font-size: 1rem;
  }

  .tm-reviews-grid {
    grid-template-columns: 1fr;
  }

  .tm-review-featured {
    grid-column: span 1;
  }

  .tm-cs-results {
    flex-wrap: wrap;
  }

  .tm-cs-stat {
    min-width: calc(50% - 1px);
  }

  .tm-cs-bg-num {
    font-size: 30vw;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAQS PAGE
═══════════════════════════════════════════════════════════════ */
#page-faqs {
  overflow: hidden;
}

/* ── Hero ── */
.fq-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 72px) 0 80px;
}

.fq-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 65%);
  top: -200px;
  right: -160px;
  animation: glow-breathe 8s ease-in-out infinite;
}

.fq-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 65%);
  bottom: -80px;
  left: -80px;
  animation: glow-breathe 11s ease-in-out infinite reverse;
}

.fq-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

.fq-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.fq-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}

.fq-hero-sub.in {
  opacity: 1;
  transform: translateY(0);
}

/* Quick-answer cards */
.fq-hero-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease .35s, transform .7s cubic-bezier(.22, 1, .36, 1) .35s;
}

.fq-hero-cards.in {
  opacity: 1;
  transform: translateY(0);
}

.fq-quick-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  transition: border-color .25s, box-shadow .25s;
}

.fq-quick-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
}

.fq-quick-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fq-quick-card strong {
  display: block;
  font-family: var(--font-head);
  font-size: .9rem;
  margin-bottom: 5px;
  color: var(--text);
}

.fq-quick-card p {
  font-size: .82rem;
  margin: 0;
  line-height: 1.6;
}

/* ── Two-column content layout ── */
.fq-content-section {
  padding-top: 72px;
}

.fq-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* Sidebar */
.fq-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.fq-sidebar-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.fq-sidebar-label {
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  background: rgba(124, 58, 237, 0.03);
}

.fq-cat-nav {
  display: flex;
  flex-direction: column;
}

.fq-cat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  transition: background .2s;
  position: relative;
}

.fq-cat-btn:last-child {
  border-bottom: none;
}

.fq-cat-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity .25s;
}

.fq-cat-btn.active::before {
  opacity: 1;
}

.fq-cat-btn:hover {
  background: rgba(124, 58, 237, 0.04);
}

.fq-cat-btn.active {
  background: rgba(124, 58, 237, 0.06);
}

.fq-cat-num {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--muted);
  flex-shrink: 0;
  width: 20px;
  transition: color .2s;
}

.fq-cat-btn.active .fq-cat-num {
  color: var(--lavender);
}

.fq-cat-name {
  flex: 1;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--muted);
  transition: color .2s;
  line-height: 1.3;
}

.fq-cat-btn.active .fq-cat-name {
  color: var(--text);
}

.fq-cat-count {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 700;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 2px 8px;
  color: var(--muted);
  flex-shrink: 0;
  transition: all .2s;
}

.fq-cat-btn.active .fq-cat-count {
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--border-hi);
  color: var(--lavender);
}

.fq-sidebar-cta {
  padding: 20px;
  border-top: 1px solid var(--border);
}

.fq-sidebar-cta p {
  font-size: .8rem;
  text-align: center;
  margin-bottom: 0;
}

/* ── FAQ groups ── */
.fq-panels {
  min-width: 0;
}

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

.fq-group-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.fq-group-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  color: var(--lavender);
}

.fq-group-head h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin: 0;
}

.fq-accordions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Accordions ── */
.accordion-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.accordion-item.open {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color .2s;
}

.accordion-trigger:hover {
  color: var(--lavender);
}

.acc-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-left: 16px;
  border: 1px solid var(--border-hi);
  border-radius: 50%;
  position: relative;
  background: transparent;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), background .3s;
}

.acc-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--lavender);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.acc-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 10px;
  background: var(--lavender);
  border-radius: 2px;
  transform: translate(-50%, -50%) scaleY(1);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1), opacity .3s;
}

.accordion-item.open .acc-icon {
  transform: rotate(180deg);
  background: rgba(124, 58, 237, 0.2);
}

.accordion-item.open .acc-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4, 0, .2, 1);
  padding: 0 26px;
}

.accordion-body>*:last-child {
  margin-bottom: 24px;
}

.accordion-body p {
  font-size: .9rem;
  line-height: 1.8;
}

/* ── FAQ responsive ── */
@media(max-width:900px) {
  .fq-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fq-sidebar {
    position: static;
  }

  .fq-cat-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px;
  }

  .fq-cat-btn {
    border-bottom: none;
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px 16px;
  }

  .fq-cat-btn::before {
    display: none;
  }

  .fq-cat-btn.active {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--border-hi);
  }

  .fq-sidebar-cta {
    display: none;
  }
}

@media(max-width:640px) {
  .fq-hero {
    padding: calc(var(--nav-h) + 48px) 0 56px;
  }

  .fq-hero-cards {
    gap: 10px;
  }

  .fq-quick-card {
    padding: 16px;
  }

  .fq-cat-name {
    font-size: .75rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════════ */
#page-contact {}

/* ── Hero (form above the fold) ── */
.ct-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 80px;
}

.ct-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 65%);
  top: -220px;
  left: -200px;
  animation: glow-breathe 8s ease-in-out infinite;
}

.ct-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.09) 0%, transparent 65%);
  bottom: -100px;
  right: -100px;
  animation: glow-breathe 11s ease-in-out infinite reverse;
}

.ct-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

.ct-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: flex-start;
  width: 100%;
}

/* Prevent either column from blowing past its grid track */
.ct-hero-grid>* {
  min-width: 0;
}

/* Constrain about hero headline — DRIVEN BY RESULTS. is long */
.ab-hero-left .c-hl-inner {
  font-size: clamp(2.8rem, 4vw, 4rem);
}

/* Constrain services hero headline — ONE PARTNER. */
.sv-hero-left .c-hl-inner {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

/* Constrain faqs hero headline — WE HAVE ANSWERS. */
.fq-hero-left .c-hl-inner {
  font-size: clamp(2.6rem, 4vw, 3.8rem);
}

/* Constrain testimonials hero headline — same 1fr/1fr split */
.tm-hero-left .c-hl-inner {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

/* Constrain the headline — global c-hl-inner is too large for a 2-col layout */
.ct-hero-left .c-hl-inner {
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
}

/* Left column */
.ct-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  line-height: 1.75;
  margin-top: 28px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .6s, transform .6s ease .6s;
}

.ct-hero-sub.in {
  opacity: 1;
  transform: translateY(0);
}

/* Contact detail rows */
.ct-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease .8s, transform .6s ease .8s;
}

.ct-details.in {
  opacity: 1;
  transform: translateY(0);
}

.ct-detail-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  transition: background .2s, padding-left .2s;
  color: var(--text);
}

.ct-detail-row:last-child {
  border-bottom: none;
}

.ct-detail-row:hover {
  background: rgba(124, 58, 237, 0.05);
  padding-left: 28px;
}

.ct-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  transition: background .2s;
}

.ct-detail-row:hover .ct-detail-icon {
  background: rgba(124, 58, 237, 0.2);
}

.ct-detail-row strong {
  display: block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.ct-detail-row span {
  font-size: .82rem;
  color: var(--muted);
  word-break: break-all;
}

/* Promise badge */
.ct-promise {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  padding: 20px 22px;
  background: rgba(124, 58, 237, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s ease 1s, transform .6s ease 1s;
}

.ct-promise.in {
  opacity: 1;
  transform: translateY(0);
}

.ct-promise-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ct-promise p {
  font-size: .85rem;
  margin: 0;
  line-height: 1.65;
}

/* Right column: elevated form card */
.ct-form-wrap {
  background: linear-gradient(145deg, rgba(20, 20, 37, .98), rgba(14, 14, 26, .98));
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease .3s, transform .8s cubic-bezier(.22, 1, .36, 1) .3s;
}

.ct-form-wrap.in {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient top border */
.ct-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--lavender), var(--pink));
}

/* Ambient glow inside */
.ct-form-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 70% 0%, rgba(124, 58, 237, 0.07), transparent 60%);
}

.ct-form-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.ct-form-header .tag {
  margin-bottom: 10px;
}

.ct-form-header h3 {
  font-size: 1.25rem;
  margin: 0;
}

.ct-form-wrap form {
  padding: 28px 36px 36px;
  position: relative;
  z-index: 1;
}

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: .72rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(7, 7, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: .9rem;
  outline: none;
  transition: .25s;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--border-hi);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
  background: rgba(7, 7, 15, 0.8);
}

.form-group textarea {
  min-height: 130px;
}

.form-group select option {
  background: var(--surface2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(139, 135, 168, 0.4);
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 28px;
  font-size: 1rem;
  border-radius: var(--radius);
  margin-bottom: 14px;
}

.ct-form-note {
  text-align: center;
  font-size: .75rem;
  color: rgba(139, 135, 168, 0.45);
  margin: 0;
  font-family: var(--font-head);
  letter-spacing: .04em;
}

/* ── What happens next ── */
.ct-next-section {
  padding-bottom: 96px;
}

.ct-next-head {
  margin-bottom: 64px;
}

.ct-next-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-top: 8px;
}

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

/* Connecting line */
.ct-next-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 52px;
  right: 52px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: .25;
  z-index: 0;
}

.ct-next-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.ct-next-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: var(--lavender);
  margin: 0 auto 20px;
  transition: background .3s, box-shadow .3s;
  position: relative;
  z-index: 1;
}

.ct-next-step:hover .ct-next-num {
  background: rgba(124, 58, 237, 0.2);
  box-shadow: var(--glow-sm);
}

.ct-next-step h4 {
  font-size: .95rem;
  margin-bottom: 10px;
}

.ct-next-step p {
  font-size: .82rem;
  line-height: 1.7;
}

/* ── Contact responsive ── */
@media(max-width:960px) {
  .ct-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ct-next-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .ct-next-steps::before {
    display: none;
  }

  .ct-next-step--last {
    grid-column: span 1;
  }
}

@media(max-width:640px) {
  .ct-form-header {
    padding: 24px 24px 20px;
  }

  .ct-form-wrap form {
    padding: 20px 24px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .ct-next-steps {
    grid-template-columns: 1fr;
  }

  .ct-next-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  .ct-next-num {
    flex-shrink: 0;
    margin: 0;
  }

  .ct-next-step h4 {
    margin-top: 0;
    text-align: left;
  }
}

/* ─── FOOTER ────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: .875rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer-col h5 {
  font-size: .75rem;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: .875rem;
  color: var(--muted);
  transition: color .2s;
}

.footer-col ul li a:hover {
  color: var(--lavender);
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .82rem;
  color: var(--muted);
}

/* ── New: right-side group ── */
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-right a {
  font-size: .78rem;
  color: var(--muted);
  transition: color .2s;
}

.footer-bottom-right a:hover {
  color: var(--lavender);
}

.footer-bottom-sep {
  color: var(--border-hi);
  font-size: .7rem;
}

/* ─── RESPONSIVE ────────────────────────────────────────────── */
@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

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


  .cs-cols {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

@media(max-width:640px) {

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .port-grid,
  .values-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cs-results {
    gap: 20px;
  }

  .cs-header {
    flex-direction: column;
    gap: 12px;
  }

  .section {
    padding: 64px 0;
  }

  .c-svc-list .c-svc-item {
    grid-template-columns: 44px 1fr auto;
    gap: 10px;
  }

  .contact-grid {
    gap: 32px;
  }

  .cta-banner {
    padding: 40px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRICING PAGE
═══════════════════════════════════════════════════════════════ */

/* ── Section divider with glow dot ── */
.sdiv {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), rgba(124, 58, 237, .35), var(--border), transparent);
  position: relative;
  overflow: visible;
}

.sdiv::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lav);
  box-shadow: 0 0 12px var(--lav), 0 0 24px rgba(167, 139, 250, .4);
}

/* ── Pricing hero ── */
.pricing-hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  position: relative;
  overflow: hidden;
}

.hga {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .16) 0%, transparent 65%);
  top: -240px;
  right: -180px;
  pointer-events: none;
  animation: breathe 7s ease-in-out infinite;
}

.hgb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, .09) 0%, transparent 65%);
  bottom: -120px;
  left: -80px;
  pointer-events: none;
  animation: breathe 10s ease-in-out infinite reverse;
}

@keyframes breathe {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.hscan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, .3), rgba(167, 139, 250, .5), rgba(124, 58, 237, .3), transparent);
  animation: scan 9s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scan {
  0% {
    top: 15%;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: .3;
  }

  100% {
    top: 85%;
    opacity: 0;
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.hero-ey {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-ey .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 10px var(--pink);
  animation: pdot 2.4s ease-in-out infinite;
}

@keyframes pdot {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.6);
    box-shadow: 0 0 18px var(--pink);
  }
}

.hero-ey span {
  font-family: var(--fh);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.pricing-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.15;
}

.pricing-hero h1 .ln {
  display: block;
  overflow: hidden;
}

.pricing-hero h1 .li {
  display: block;
  transform: translateY(115%);
  animation: reveal .75s cubic-bezier(.22, 1, .36, 1) forwards;
}

.pricing-hero h1 .d1 {
  animation-delay: .08s;
}

.pricing-hero h1 .d2 {
  animation-delay: .24s;
}

.pricing-hero h1 .d3 {
  animation-delay: .4s;
}

@keyframes reveal {
  to {
    transform: translateY(0);
  }
}

.pricing-hero h1 .out {
  color: rgba(167, 139, 250, 0.5);
  /* visible fallback for all browsers */
}

@supports (-webkit-text-stroke: 1px transparent) {
  .pricing-hero h1 .out {
    color: transparent;
    -webkit-text-stroke: 2px rgba(167, 139, 250, .5);
  }
}

.pricing-hero h1 .gr {
  background: linear-gradient(100deg, var(--lav) 0%, var(--pink) 55%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-r {
  padding-top: 20px;
  animation: heroRIn .7s cubic-bezier(.22, 1, .36, 1) .45s both;
}

@keyframes heroRIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-r p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 440px;
}

.hprom {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hpi {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .875rem;
  color: var(--muted);
}

.hpi-ic {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(124, 58, 237, .1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
}

/* ── Pricing category tabs ── */
.cat-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(7, 7, 15, .94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.cat-nav-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.cat-nav-inner::-webkit-scrollbar {
  display: none;
}

.cat-btn {
  flex-shrink: 0;
  padding: 18px 24px;
  font-family: var(--fh);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}

.cat-btn:hover {
  color: var(--text);
}

.cat-btn.active {
  color: var(--lav);
  border-bottom-color: var(--lav);
}

.ccount {
  display: inline-block;
  background: rgba(124, 58, 237, .15);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 1px 8px;
  font-size: .65rem;
  margin-left: 6px;
  vertical-align: middle;
}

.cat-btn.active .ccount {
  background: rgba(124, 58, 237, .3);
  border-color: var(--bhi);
}

.cat-panel {
  display: none;
}

.cat-panel.active {
  display: block;
}

/* ── Panel header ── */
.ph {
  padding: 64px 0 52px;
  text-align: center;
}

.ph h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 10px;
}

.ph p {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ── Pricing cards ── */
.cards-area {
  padding: 0 0 88px;
}

.pg3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pgc {
  margin-top: 20px;
}

.pc {
  background: linear-gradient(145deg, rgba(20, 20, 37, .97) 0%, rgba(14, 14, 26, .97) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.pc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--lav), var(--pink));
  opacity: 0;
  transition: opacity .3s;
  z-index: 1;
}

.pc:hover {
  border-color: var(--bhi);
  box-shadow: var(--gs), inset 0 0 80px rgba(124, 58, 237, .03);
  transform: translateY(-4px);
}

.pc:hover::before,
.pc.feat::before,
.pc.fpk::before {
  opacity: 1;
}

.pc.feat {
  border-color: rgba(124, 58, 237, .38);
  box-shadow: 0 0 0 1px rgba(124, 58, 237, .12), 0 8px 40px rgba(124, 58, 237, .16);
}

.pc.fpk {
  border-color: rgba(236, 72, 153, .32);
  box-shadow: 0 0 0 1px rgba(236, 72, 153, .1), 0 8px 40px rgba(236, 72, 153, .12);
}

.pc.fpk::before {
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--pink));
}

.pcblob {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, .1) 0%, transparent 70%);
  top: -70px;
  right: -70px;
  pointer-events: none;
  opacity: .5;
  transition: opacity .3s;
}

.pc:hover .pcblob,
.pc.feat .pcblob {
  opacity: 1;
}

.pc.fpk .pcblob {
  background: radial-gradient(circle, rgba(236, 72, 153, .1) 0%, transparent 70%);
}

.pcbadge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  font-family: var(--fh);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.bval {
  background: rgba(124, 58, 237, .22);
  border: 1px solid var(--bhi);
  color: var(--lav);
}

.bpop {
  background: rgba(236, 72, 153, .18);
  border: 1px solid var(--bpk);
  color: var(--pink);
}

.pc-h {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.pc-name {
  font-family: var(--fh);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.pc-for {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
  min-height: 54px;
}

.pc-old {
  font-size: .8rem;
  color: rgba(139, 135, 168, .4);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.pc-price {
  font-family: var(--fh);
  font-size: clamp(2.4rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  background: linear-gradient(135deg, #fff 20%, var(--lav) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.pc.fpk .pc-price {
  background: linear-gradient(135deg, #fff 20%, var(--pink) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pc-cad {
  font-size: .74rem;
  color: var(--muted);
}

.pc-b {
  padding: 18px 28px 24px;
  position: relative;
}

.pc-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(139, 135, 168, .45);
  margin-bottom: 14px;
  transition: color .25s;
}

.pc-hint svg {
  width: 14px;
  height: 14px;
  transition: transform .35s;
}

.pc:hover .pc-hint {
  color: var(--lav);
}

.pc.expanded .pc-hint svg {
  transform: rotate(180deg);
}

.pc.expanded .pc-hint {
  color: var(--lav);
}

.peek {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.peek li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.45;
}

.peek li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
  background: var(--lav);
  box-shadow: 0 0 7px var(--lav);
}

.pc.fpk .peek li::before {
  background: var(--pink);
  box-shadow: 0 0 7px var(--pink);
}

.full {
  display: none;
  flex-direction: column;
  gap: 9px;
}

.chk {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(124, 58, 237, .18);
  border: 1px solid var(--bhi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  color: var(--lav);
}

.pc.fpk .chk {
  background: rgba(236, 72, 153, .14);
  border-color: var(--bpk);
  color: var(--pink);
}

.full li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .83rem;
  color: var(--text);
  line-height: 1.45;
}

.pcnote {
  font-size: .72rem;
  color: rgba(139, 135, 168, .45);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  line-height: 1.55;
}

.pc.expanded .peek {
  display: none;
}

.pc.expanded .full {
  display: flex;
}

.pc-cta {
  margin-top: 18px;
}

.pc-cta .btn {
  width: 100%;
}

.pc-cust-body {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 32px 36px;
}

.pc-cust-r {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  flex-shrink: 0;
}

.cust-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.ctag {
  font-family: var(--fh);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  background: rgba(124, 58, 237, .1);
  border: 1px solid var(--border);
  color: var(--muted);
}

.cust-full {
  display: none;
  padding: 0 36px 28px;
}

.cust-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cust-full-grid li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .82rem;
  color: var(--text);
  line-height: 1.4;
}

.pc.expanded .cust-full {
  display: block;
}

/* ── Calculator ── */
.calc-area {
  padding: 0 0 88px;
}

.calc-wrap {
  background: linear-gradient(145deg, var(--s1) 0%, var(--s2) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.calc-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--lav), var(--pink), transparent);
}

.calc-bgnum {
  position: absolute;
  right: -10px;
  top: -30px;
  font-family: var(--fh);
  font-weight: 800;
  font-size: 16rem;
  line-height: 1;
  color: rgba(124, 58, 237, .028);
  pointer-events: none;
  user-select: none;
  letter-spacing: -.06em;
}

.calc-head {
  padding: 44px 52px 36px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.calc-head h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 8px;
}

.calc-head p {
  max-width: 520px;
}

.calc-body {
  display: grid;
  grid-template-columns: 1fr 360px;
}

.calc-l {
  padding: 40px 52px;
  border-right: 1px solid var(--border);
}

.calc-r {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  background: rgba(7, 7, 15, .3);
}

.cstep {
  margin-bottom: 36px;
}

.cstep:last-child {
  margin-bottom: 0;
}

.cslbl {
  font-family: var(--fh);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.csnum {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(124, 58, 237, .15);
  border: 1px solid var(--bhi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  color: var(--lav);
  flex-shrink: 0;
}

.csopts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.csopt {
  padding: 9px 18px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  font-family: var(--fb);
  font-size: .84rem;
  color: var(--muted);
  transition: all .2s;
}

.csopt:hover {
  border-color: var(--bhi);
  color: var(--text);
}

.csopt.sel {
  background: rgba(124, 58, 237, .15);
  border-color: var(--bhi);
  color: var(--lav);
}

.csopt.spk {
  background: rgba(236, 72, 153, .1);
  border-color: var(--bpk);
  color: var(--pink);
}

.crlbl {
  font-family: var(--fh);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.crempty {
  text-align: center;
  padding: 48px 0;
  color: var(--muted);
}

.crempty-ic {
  font-size: 2.2rem;
  margin-bottom: 12px;
  opacity: .3;
}

.crempty p {
  font-size: .85rem;
}

#crres {
  display: none;
}

.crname {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--text) 40%, var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crwhy {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.65;
}

.crpbox {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.crpbox::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(124, 58, 237, .07), transparent 60%);
  pointer-events: none;
}

.crplbl {
  font-family: var(--fh);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.crpval {
  font-family: var(--fh);
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text) 30%, var(--lav));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.crpnote {
  font-size: .73rem;
  color: var(--muted);
  margin-top: 4px;
}

.cradw {
  margin-bottom: 20px;
}

.cradlbl {
  font-family: var(--fh);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.crad {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.crad li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
}

.crad li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}

.crcta .btn {
  width: 100%;
  margin-bottom: 8px;
}

.crfoot {
  font-size: .71rem;
  color: rgba(139, 135, 168, .4);
  text-align: center;
}

/* ── Compare table ── */
.cmp-area {
  padding: 0 0 88px;
}

.cmptog {
  display: flex;
  gap: 4px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 44px;
}

.ctbtn {
  padding: 10px 28px;
  border-radius: 100px;
  font-family: var(--fh);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--muted);
  transition: .25s;
  cursor: pointer;
}

.ctbtn.active {
  background: var(--purple);
  color: #fff;
  box-shadow: var(--gs);
}

.ctbtn:hover:not(.active) {
  color: var(--lav);
}

.ctp {
  display: none;
}

.ctp.active {
  display: block;
}

.cmpwrap {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow-x: auto;
  transition: border-color .3s;
}

.cmpwrap:hover {
  border-color: var(--bhi);
  box-shadow: var(--gs);
}

.pricing-page table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .84rem;
}

.pricing-page th,
.pricing-page td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-page tbody tr:last-child td {
  border-bottom: none;
}

.pricing-page thead th {
  font-family: var(--fh);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--s1);
}

.pricing-page thead th.hi {
  color: var(--lav);
  background: rgba(124, 58, 237, .07);
}

.pricing-page thead th.hpk {
  color: var(--pink);
  background: rgba(236, 72, 153, .05);
}

.pricing-page tbody tr {
  background: var(--bg);
  transition: background .2s;
}

.pricing-page tbody tr:hover {
  background: rgba(124, 58, 237, .04);
}

.pricing-page td:first-child {
  color: var(--muted);
  font-size: .8rem;
}

.pricing-page td.hi {
  background: rgba(124, 58, 237, .03);
}

.pricing-page td.hpk {
  background: rgba(236, 72, 153, .02);
}

.yes {
  color: #34d399;
  font-size: 1rem;
}

.no {
  color: rgba(139, 135, 168, .22);
  font-size: 1rem;
}

.tv {
  color: var(--text);
  font-weight: 600;
  font-family: var(--fh);
}

/* ── Bottom CTA ── */
.bcta {
  padding: 0 0 100px;
}

.bcta-in {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bcta-in::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% -10%, rgba(124, 58, 237, .18) 0%, transparent 60%);
  pointer-events: none;
}

.bcta-in::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), var(--lav), var(--pink), transparent);
}

.bcta-in h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
  position: relative;
}

.bcta-in p {
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  position: relative;
}

.bcta-acts {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.bcta-note {
  margin-top: 14px;
  font-size: .76rem;
  color: rgba(139, 135, 168, .38);
  position: relative;
}

/* ── Pricing responsive ── */
@media(max-width:720px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-r {
    padding-top: 0;
  }
}

@media(max-width:960px) {
  .pg3 {
    grid-template-columns: 1fr 1fr;
  }

  .pc-cust-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pc-cust-r {
    align-items: flex-start;
  }

  .calc-body {
    grid-template-columns: 1fr;
  }

  .calc-l {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cust-full-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:640px) {
  .pg3 {
    grid-template-columns: 1fr;
  }

  .calc-head,
  .calc-l,
  .calc-r {
    padding: 24px;
  }

  .bcta-in {
    padding: 40px 24px;
  }

  .cat-btn {
    padding: 16px 14px;
    font-size: .68rem;
  }

  .cust-full-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE
═══════════════════════════════════════════════════════════════ */
#page-blog {
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* ── Hero ── */
/* ═══════════════════════════════════════════════════════════════
   BLOG PAGE
   Replaces lines 5946 – 6385 in style.css
═══════════════════════════════════════════════════════════════ */

/* ── Hero shell ── */
.bl-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 80px) 0 80px;
}

.bl-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.15) 0%, transparent 65%);
  top: -200px;
  right: -180px;
  animation: glow-breathe 8s ease-in-out infinite;
}

.bl-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 65%);
  bottom: -80px;
  left: -80px;
  animation: glow-breathe 11s ease-in-out infinite reverse;
}

.bl-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

/* 1fr auto — headline takes everything, card only as wide as it needs */
.bl-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: stretch;
}

.bl-hero-inner>* {
  min-width: 0;
}

.bl-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Sub & pills ── */
.bl-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}

.bl-hero-sub.in {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   HERO CARD — same .bl-card DNA, two overrides
══════════════════════════════════════════════ */

/* Reveal animation — slides in from the right */
.bl-hero-card {
  opacity: 0;
  transform: translateX(20px);
  transition:
    opacity .8s cubic-bezier(.22, 1, .36, 1) .35s,
    transform .8s cubic-bezier(.22, 1, .36, 1) .35s,
    border-color .3s,
    box-shadow .3s,
    transform .3s;
}

.bl-hero-card.in {
  opacity: 1;
  transform: translateX(0);
}

/* Override 1: thumb fills all available vertical space */
.bl-hero-thumb {
  flex: 1;
  height: auto;
  /* override the fixed 160px from .bl-thumb */
  min-height: 200px;
}

/* Override 2: emoji scales up to suit the larger thumb */
.bl-hero-thumb .bl-thumb-emoji {
  font-size: 4.5rem;
}

/* The twist: accent line is always visible, not just on hover */
.bl-hero-card::before {
  opacity: 1;
}

/* Badge — top-left of the thumb */
.bl-hero-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lavender);
  background: rgba(124, 58, 237, 0.22);
  border: 1px solid var(--border-hi);
  padding: 4px 11px;
  border-radius: 100px;
}

/* ── Category tags ── */
.bl-cat-tag {
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid transparent;
  white-space: nowrap;
}

.bl-cat--web {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.35);
  color: var(--lavender);
}

.bl-cat--mobile {
  background: rgba(236, 72, 153, 0.12);
  border-color: rgba(236, 72, 153, 0.3);
  color: var(--pink);
}

.bl-cat--seo {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
  color: var(--orange);
}

.bl-cat--business {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.3);
  color: #34d399;
}

.bl-read-time {
  font-size: .72rem;
  color: var(--muted);
  font-family: var(--font-head);
}

.bl-author {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  color: var(--lavender);
}

.bl-date {
  font-size: .72rem;
  color: var(--muted);
  font-family: var(--font-head);
}

/* ── Sticky filter nav ── */
.bl-filter-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  background: rgba(7, 7, 15, .94);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
}

.bl-filter-inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.bl-filter-inner::-webkit-scrollbar {
  display: none;
}

.bl-filter-btn {
  flex-shrink: 0;
  padding: 18px 28px;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: all .25s;
  white-space: nowrap;
}

.bl-filter-btn:hover {
  color: var(--text);
}

.bl-filter-btn.active {
  color: var(--lavender);
  border-bottom-color: var(--lavender);
}

/* ── Article grid ── */
.bl-grid-section {
  padding-bottom: 88px;
}

.bl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bl-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  color: var(--text);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
}

.bl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  opacity: 0;
  transition: opacity .3s;
}

.bl-card:hover {
  border-color: var(--border-hi);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.bl-card:hover::before {
  opacity: 1;
}

.bl-card:hover .bl-thumb-emoji {
  transform: scale(1.1);
  opacity: .7;
}

.bl-thumb {
  height: 160px;
  background: linear-gradient(145deg, var(--surface2), rgba(124, 58, 237, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.bl-thumb-emoji {
  font-size: 2.6rem;
  opacity: .4;
  position: relative;
  z-index: 1;
  transition: opacity .3s, transform .3s;
}

.bl-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 7, 15, .85));
}

.bl-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bl-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.bl-body h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text);
}

.bl-body p {
  font-size: .85rem;
  flex: 1;
  margin-bottom: 16px;
}

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

.bl-read-more {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  color: var(--lavender);
  letter-spacing: .04em;
  transition: color .2s;
}

.bl-card:hover .bl-read-more {
  color: var(--pink);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .bl-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bl-hero-card {
    display: none;
  }

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

@media (max-width: 640px) {
  .bl-hero {
    padding: calc(var(--nav-h) + 48px) 0 56px;
  }

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

/* ═══════════════════════════════════════════════════════════════
   ARTICLE / BLOG POST PAGE
═══════════════════════════════════════════════════════════════ */
#page-article {
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* ── Hero ── */
.art-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 56px) 0 0;
}

.art-hero-glow-a {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 65%);
  top: -180px;
  right: -120px;
  animation: glow-breathe 8s ease-in-out infinite;
}

.art-hero-glow-b {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.08) 0%, transparent 65%);
  bottom: 0;
  left: -80px;
  animation: glow-breathe 11s ease-in-out infinite reverse;
}

.art-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 0;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), rgba(167, 139, 250, 0.5), rgba(124, 58, 237, 0.3), transparent);
  animation: scanline 9s ease-in-out infinite;
  pointer-events: none;
}

.art-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 0;
}

/* Breadcrumb */
.art-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}

.art-breadcrumb.in {
  opacity: 1;
  transform: translateY(0);
}

.art-breadcrumb a {
  color: var(--muted);
  transition: color .2s;
}

.art-breadcrumb a:hover {
  color: var(--lavender);
}

.art-breadcrumb span:not(.bl-cat-tag) {
  color: var(--border-hi);
}

/* Title */
#art-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease .2s, transform .7s cubic-bezier(.22, 1, .36, 1) .2s;
}

#art-title.in {
  opacity: 1;
  transform: translateY(0);
}

/* Meta bar */
.art-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  opacity: 0;
  transition: opacity .6s ease .4s;
}

.art-meta.in {
  opacity: 1;
}

.art-meta-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.art-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .72rem;
  color: #fff;
}

.art-meta-author strong {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  color: var(--text);
}

.art-meta-author span {
  font-size: .75rem;
  color: var(--muted);
}

.art-meta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.art-meta-item {
  font-size: .78rem;
  color: var(--muted);
  font-family: var(--font-head);
}

.art-meta-sep {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* Hero thumbnail */
.art-hero-thumb {
  width: 100%;
  height: 320px;
  background: linear-gradient(145deg, var(--surface2), rgba(124, 58, 237, 0.18));
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease .5s, transform .8s cubic-bezier(.22, 1, .36, 1) .5s;
}

.art-hero-thumb.in {
  opacity: 1;
  transform: translateY(0);
}

.art-hero-emoji {
  font-size: 5rem;
  opacity: .35;
  position: relative;
  z-index: 1;
}

.art-hero-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7, 7, 15, .95));
}

.art-hero-thumb-caption {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
  font-family: var(--font-head);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Two-column reading layout ── */
.art-layout {
  padding: 64px 0 88px;
}

.art-columns {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  align-items: flex-start;
}

/* TOC sidebar */
.art-toc {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity .6s ease .7s, transform .6s ease .7s;
}

.art-toc.in {
  opacity: 1;
  transform: translateX(0);
}

.art-toc-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.art-toc-label {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(124, 58, 237, 0.03);
}

.art-toc-nav {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}

.art-toc-link {
  padding: 8px 18px;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
  transition: color .2s, background .2s, padding-left .2s;
  border-left: 2px solid transparent;
}

.art-toc-link:hover {
  color: var(--text);
  background: rgba(124, 58, 237, 0.04);
  padding-left: 24px;
}

.art-toc-link.active {
  color: var(--lavender);
  border-left-color: var(--lavender);
  background: rgba(124, 58, 237, 0.06);
}

.art-toc-cta {
  display: flex;
  justify-content: center;
  margin: 16px 16px 16px;
  font-size: .78rem;
  padding: 11px 20px;
  width: calc(100% - 32px);
}

/* ── Article body typography ── */
.art-body {
  min-width: 0;
}

.art-lead {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 400;
}

.art-body p {
  font-size: .975rem;
  line-height: 1.85;
  margin-bottom: 20px;
  color: var(--muted);
}

.art-body strong {
  color: var(--text);
  font-weight: 700;
}

.art-body h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 800;
  color: var(--text);
  margin: 52px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.art-body h2:first-of-type {
  margin-top: 32px;
}

.art-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 14px;
}

/* Table */
.art-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  margin: 28px 0;
}

.art-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .875rem;
  min-width: 500px;
}

.art-table th {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(124, 58, 237, 0.05);
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.art-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.art-table tbody tr:last-child td {
  border-bottom: none;
}

.art-table tbody tr:hover td {
  background: rgba(124, 58, 237, 0.03);
}

.art-tr-highlight td {
  background: rgba(124, 58, 237, 0.06);
  color: var(--text);
}

.art-tr-highlight:hover td {
  background: rgba(124, 58, 237, 0.1) !important;
}

.art-td-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--lavender);
}

/* Callouts */
.art-callout {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 14px;
  margin: 20px 0;
  font-size: .9rem;
}

.art-callout-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 800;
}

.art-callout strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.art-callout p,
.art-callout div {
  color: var(--muted);
  margin: 0;
  font-size: .88rem;
  line-height: 1.65;
}

.art-callout--good {
  background: rgba(52, 211, 153, 0.07);
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.art-callout--good .art-callout-icon {
  background: rgba(52, 211, 153, 0.15);
  color: #34d399;
}

.art-callout--bad {
  background: rgba(236, 72, 153, 0.07);
  border: 1px solid rgba(236, 72, 153, 0.25);
}

.art-callout--bad .art-callout-icon {
  background: rgba(236, 72, 153, 0.15);
  color: var(--pink);
}

.art-callout--neutral {
  background: rgba(124, 58, 237, 0.07);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.art-callout--neutral .art-callout-icon {
  background: rgba(124, 58, 237, 0.15);
  color: var(--lavender);
}

/* Pull quote */
.art-pullquote {
  border-left: 3px solid var(--lavender);
  padding: 24px 28px;
  margin: 36px 0;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 0 14px 14px 0;
  position: relative;
}

.art-pullquote--pink {
  border-left-color: var(--pink);
  background: rgba(236, 72, 153, 0.05);
}

.art-pullquote--pink .art-pullquote-mark {
  color: var(--pink);
}

.art-pullquote-mark {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--lavender);
  line-height: .4;
  display: block;
  margin-bottom: 16px;
  opacity: .5;
}

.art-pullquote p {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* Lists */
.art-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 28px;
}

.art-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .925rem;
  color: var(--muted);
  line-height: 1.65;
}

.art-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--lavender);
  box-shadow: 0 0 8px var(--lavender);
  margin-top: 8px;
}

.art-list--warn li::before {
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
}

/* Numbered factors */
.art-factors {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}

.art-factor {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.art-factor:last-child {
  border-bottom: none;
}

.art-factor-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .78rem;
  color: var(--lavender);
  margin-top: 2px;
}

.art-factor strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--text);
  margin-bottom: 6px;
}

.art-factor p {
  font-size: .875rem;
  margin: 0;
}

/* Decision framework */
.art-decision {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0 32px;
}

.art-decision-item {
  padding: 18px 20px;
  border: 1px solid var(--border);
  background: var(--surface);
  margin-bottom: -1px;
  transition: background .2s, border-color .2s;
}

.art-decision-item:first-child {
  border-radius: 14px 14px 0 0;
}

.art-decision-item:last-child {
  border-radius: 0 0 14px 14px;
  margin-bottom: 0;
}

.art-decision-item:hover {
  background: rgba(124, 58, 237, 0.05);
  border-color: var(--border-hi);
  z-index: 1;
  position: relative;
}

.art-decision-q {
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.art-decision-a {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Author bio */
.art-author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-top: 56px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.art-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .8rem;
  color: #fff;
}

.art-author-bio strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 2px;
}

.art-author-bio>div>span {
  font-size: .78rem;
  color: var(--lavender);
  font-family: var(--font-head);
  display: block;
  margin-bottom: 10px;
}

.art-author-bio p {
  font-size: .875rem;
  margin: 0;
  line-height: 1.7;
}

/* Related posts section */
.art-related {
  padding-top: 72px;
}

/* ── Article responsive ── */
@media(max-width:960px) {
  .art-columns {
    grid-template-columns: 1fr;
  }

  .art-toc {
    position: static;
    opacity: 1;
    transform: none;
    order: -1;
  }

  .art-toc-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    padding: 12px;
  }

  .art-toc-link {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: .72rem;
  }

  .art-toc-link.active {
    border-bottom-color: var(--lavender);
    border-left: none;
    border-radius: 100px;
  }

  .art-toc-cta {
    display: none;
  }

  .art-hero-thumb {
    height: 220px;
    border-radius: 16px;
  }
}

@media(max-width:640px) {
  .art-hero {
    padding: calc(var(--nav-h) + 40px) 0 0;
  }

  #art-title {
    font-size: clamp(1.7rem, 6vw, 2.4rem);
  }

  .art-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .art-hero-thumb {
    height: 160px;
  }

  .art-lead {
    font-size: 1rem;
  }

  .art-table-wrap {
    border-radius: 10px;
  }

  .art-pullquote {
    padding: 18px 20px;
  }

  .art-author-bio {
    flex-direction: column;
    gap: 16px;
  }

  .art-decision-item:first-child {
    border-radius: 10px 10px 0 0;
  }

  .art-decision-item:last-child {
    border-radius: 0 0 10px 10px;
  }
}

/* ── Blog: wide featured card ── */
.bl-card--wide {
  display: grid;
  grid-template-columns: 380px 1fr;
  margin-bottom: 24px;
  border-radius: 20px;
}

.bl-thumb--wide {
  height: auto;
  min-height: 220px;
  border-radius: 20px 0 0 20px;
}

.bl-body--wide {
  padding: 32px 36px;
}

.bl-body--wide h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--text);
}

.bl-body--wide p {
  font-size: .95rem;
  margin-bottom: 24px;
}

.bl-wide-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* Hero category pills */
.bl-hero-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .5s ease .65s, transform .5s ease .65s;
}

.bl-hero-cats.in {
  opacity: 1;
  transform: translateY(0);
}

.bl-filter-pill {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all .2s;
}

.bl-filter-pill:hover {
  border-color: var(--border-hi);
  color: var(--lavender);
}

.bl-filter-pill.active {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--border-hi);
  color: var(--lavender);
}

/* Filter count badges */
.bl-filter-count {
  display: inline-block;
  background: rgba(124, 58, 237, .12);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 1px 7px;
  font-size: .62rem;
  margin-left: 4px;
  vertical-align: middle;
}

.bl-filter-btn.active .bl-filter-count {
  background: rgba(124, 58, 237, .28);
  border-color: var(--border-hi);
}

/* Wide card responsive */
@media(max-width:900px) {
  .bl-card--wide {
    grid-template-columns: 1fr;
  }

  .bl-thumb--wide {
    min-height: 180px;
    border-radius: 20px 20px 0 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE FIXES — Applied after all page-specific rules
   Covers: hero min-height, hero padding, service rows, CTA blocks,
   grid watermarks, footer, and misc cut-off fixes.
═══════════════════════════════════════════════════════════════ */

/* ── Ensure all page wrappers clip horizontal overflow ── */
#page-home,
#page-about,
#page-services,
#page-portfolio,
#page-testimonials,
#page-faqs,
#page-contact,
#page-blog,
#page-article,
.pricing-page {
  overflow-x: clip;
}

/* ── Large watermark glyphs: scale down, never overflow ── */
.idx-glyph,
.sv-svc-bg-num,
.tm-cs-bg-num,
.c-quote-bg-num,
.calc-bgnum {
  overflow: hidden;
}

/* ─────────────── 960px tablet ─────────────── */
@media (max-width: 960px) {

  /* About hero grid */
  .ab-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Services hero — collapse to 1 col earlier on tablets */
  .sv-hero-inner {
    grid-template-columns: 1fr;
  }

  .sv-hero-right {
    display: none;
  }

  /* Testimonials hero */
  .tm-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* FAQ hero */
  .fq-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Contact hero */
  .ct-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Blog hero */
  .bl-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bl-hero-card {
    display: none;
  }

  /* Pricing hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-r {
    padding-top: 0;
  }

  /* Process strips */
  .sv-process-row,
  .ct-next-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .sv-process-row::before,
  .ct-next-steps::before {
    display: none;
  }

  /* Section spacings */
  .sv-svc-row {
    padding: 72px 0;
  }

  .tm-cs-row {
    padding: 72px 0;
  }
}

/* ─────────────── 768px small tablet ─────────────── */
@media (max-width: 768px) {

  /* Stats strip: 2 cols instead of 4 */
  .c-stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .c-stat-col:nth-child(2) {
    border-right: none;
  }

  .c-stat-col:nth-child(3) {
    border-top: 1px solid var(--border);
  }

  .c-stat-col:nth-child(4) {
    border-top: 1px solid var(--border);
  }

  /* Portfolio hero stats row */
  .pf-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pf-hero-stats {
    align-self: flex-start;
    flex-wrap: wrap;
  }

  /* Testimonials review grid */
  .tm-reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tm-review-featured {
    grid-column: span 2;
  }

  /* Service rows: single column */
  .sv-svc-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Case study rows */
  .tm-cs-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* About why section */
  .why-section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Values grid */
  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Tech stack */
  .tech-stack-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Blog grid */
  .bl-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Portfolio grid */
  .pf-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pf-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  /* Footer bottom row */
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-right {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ─────────────── 640px mobile ─────────────── */
@media (max-width: 640px) {

  /* Hero min-heights: always auto on mobile — never clip content */
  .c-hero,
  .sv-hero,
  .pricing-hero {
    min-height: auto;
  }

  /* Hero section paddings */
  .ab-hero {
    padding: calc(var(--nav-h) + 44px) 0 52px;
  }

  .sv-hero {
    padding: 52px 0 68px;
  }

  .pf-hero {
    padding: calc(var(--nav-h) + 44px) 0 52px;
  }

  .tm-hero {
    padding: calc(var(--nav-h) + 44px) 0 52px;
  }

  .fq-hero {
    padding: calc(var(--nav-h) + 44px) 0 52px;
  }

  .ct-hero {
    padding: calc(var(--nav-h) + 44px) 0 52px;
  }

  .bl-hero {
    padding: calc(var(--nav-h) + 44px) 0 52px;
  }

  .pricing-hero {
    padding: calc(var(--nav-h) + 44px) 0 52px;
  }

  /* Grids: full-width on mobile */
  .pf-grid,
  .bl-grid,
  .tm-reviews-grid,
  .values-grid,
  .tech-stack-grid {
    grid-template-columns: 1fr;
  }

  .pf-card--featured,
  .tm-review-featured {
    grid-column: span 1;
  }

  .pf-card--featured .pf-thumb {
    height: 180px;
  }

  /* Process / steps strips: single column */
  .sv-process-row,
  .ct-next-steps,
  .idx-process-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sv-proc-step--last {
    grid-column: span 1;
    max-width: none;
  }

  /* Contact: step items stack horizontally */
  .ct-next-step {
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  .ct-next-num {
    flex-shrink: 0;
    margin: 0;
  }

  .ct-next-step h4 {
    margin-top: 0;
    text-align: left;
  }

  /* Service result strips: vertical */
  .sv-result-strip {
    flex-direction: column;
  }

  .sv-result-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .sv-result-item:last-child {
    border-bottom: none;
  }

  /* Testimonials case study stats */
  .tm-cs-results {
    flex-wrap: wrap;
  }

  .tm-cs-stat {
    min-width: calc(50% - 1px);
  }

  /* About trust strip: vertical */
  .about-trust-strip {
    flex-direction: column;
  }

  .about-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .about-trust-item:last-child {
    border-bottom: none;
  }

  /* Portfolio hero stats: vertical */
  .pf-hero-stats {
    flex-direction: column;
    width: 100%;
  }

  .pf-stat-divider {
    width: 100%;
    height: 1px;
  }

  /* Hero sub text */
  .ab-hero-sub,
  .sv-hero-sub,
  .pf-hero-sub,
  .tm-hero-sub,
  .fq-hero-sub,
  .ct-hero-sub,
  .bl-hero-sub {
    font-size: .95rem;
  }

  /* Hero action buttons: full-width stack */
  .ab-hero-actions,
  .sv-hero-actions {
    flex-direction: column;
  }

  .ab-hero-actions .btn,
  .sv-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Testimonials hero quote */
  .tm-hero-quote {
    padding: 28px 24px;
  }

  .tm-fquote-text {
    font-size: 1rem;
  }

  /* FAQ quick cards */
  .fq-hero-cards {
    gap: 10px;
  }

  .fq-quick-card {
    padding: 16px;
  }

  /* Contact form */
  .ct-form-header {
    padding: 22px 22px 18px;
  }

  .ct-form-wrap form {
    padding: 20px 22px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Pricing calc */
  .calc-head,
  .calc-l,
  .calc-r {
    padding: 22px;
  }

  .bcta-in {
    padding: 40px 20px;
  }

  /* CTA banners */
  .cta-banner {
    padding: 40px 20px;
  }

  /* Blog: wide featured card */
  .bl-card--wide {
    grid-template-columns: 1fr;
  }

  .bl-thumb--wide {
    min-height: 160px;
    border-radius: 20px 20px 0 0;
  }

  /* Pricing cards grid */
  .pg3 {
    grid-template-columns: 1fr;
  }

  /* Section padding reduction */
  .section,
  .sv-svc-row,
  .tm-cs-row {
    padding: 56px 0;
  }

  /* Footer columns stack */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ─────────────── 480px small mobile ─────────────── */
@media (max-width: 480px) {

  /* Container padding tighter */
  .container {
    padding: 0 16px;
  }

  /* Watermark numbers: hide on tiny screens */
  .sv-svc-bg-num,
  .tm-cs-bg-num,
  .c-quote-bg-num,
  .calc-bgnum {
    display: none;
  }

  /* Nav logo text: hide on very small */
  .nav-logo .logo-text {
    display: none;
  }

  .nav-logo img {
    width: 36px;
    height: 34px;
  }

  /* Hero headline: tighten further */
  .c-hl-inner {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }

  .ab-hero-left .c-hl-inner,
  .sv-hero-left .c-hl-inner,
  .ct-hero-left .c-hl-inner,
  .tm-hero-left .c-hl-inner,
  .fq-hero-left .c-hl-inner {
    font-size: clamp(2rem, 8.5vw, 3rem);
  }

  /* Pricing hero h1 */
  .pricing-hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
  }

  /* Stats: stack fully */
  .c-stats-inner {
    grid-template-columns: 1fr;
  }

  .c-stat-col {
    border-right: none;
    border-top: 1px solid var(--border);
    padding: 28px 20px;
  }

  .c-stat-col:first-child {
    border-top: none;
  }

  /* Founder card padding */
  .ab-founder-top {
    padding: 22px 20px 18px;
  }

  .ab-founder-card>p {
    padding: 16px 20px;
  }

  .ab-founder-location {
    padding: 12px 20px;
  }

  /* Service index list in hero */
  .sv-service-index li a {
    padding: 16px 18px;
  }

  /* Buttons in hero meta bar */
  .c-meta-bar {
    display: none;
  }
}

/* ─── REDUCED MOTION ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  /* Marquee — freeze in place */
  .c-marquee-track {
    animation: none;
  }

  /* Scan lines */
  .c-hero-scan,
  .ab-hero-scan,
  .sv-hero-scan,
  .hscan {
    animation: none;
    display: none;
  }

  /* Orbit rings */
  .c-orbit-1,
  .c-orbit-2,
  .c-orbit-3 {
    animation: none;
  }

  /* Logo float */
  .c-logo-img {
    animation: none;
  }

  /* Floating badges */
  .h-float-badge {
    animation: none;
    opacity: 1;
  }

  /* Pulsing dots */
  .c-eyebrow-dot,
  .idx-pill-dot,
  .h-badge-live-dot {
    animation: none;
  }

  /* Glow blobs */
  .c-hero-glow-a,
  .c-hero-glow-b,
  .ab-hero-glow-a,
  .ab-hero-glow-b,
  .sv-hero-glow-a,
  .sv-hero-glow-b,
  .hga,
  .hgb {
    animation: none;
  }

  /* Scroll fade-ups — show immediately, skip transition */
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Hero stagger reveals — show immediately */
  .c-eyebrow,
  .c-sub,
  .c-actions,
  .c-meta-bar,
  .c-logo-side,
  .ab-founder-card,
  .ab-hero-sub,
  .ab-hero-actions,
  .sv-hero-sub,
  .sv-hero-actions,
  .sv-hero-right,
  .tm-hero-quote,
  .fq-hero-cards,
  .bl-hero-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Pricing hero line reveals */
  .pricing-hero h1 .li {
    animation: none;
    transform: none;
  }

  /* Card hover transforms — keep border/shadow, skip lift */
  .card:hover,
  .c-proj:hover,
  .idx-proj:hover,
  .idx-svc-card:hover,
  .pc:hover,
  .bl-card:hover,
  .val-card:hover {
    transform: none;
  }
}