/* =========================================================
   UTurn — Layout Components (Header, Footer, Hero, etc.)
   ========================================================= */

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: rgba(248, 250, 252, 0.85);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration), background var(--duration), box-shadow var(--duration);
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.site-header.is-dark-page {
  background: rgba(15, 23, 42, 0.85);
  border-bottom-color: var(--border-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  flex-wrap: nowrap;
}
.header-inner .nav-desktop {
  flex: 1 1 auto;
  justify-content: flex-end;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 40px;
}
.logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.logo-mark {
  display: none;
  height: 36px;
  width: 36px;
}
@media (max-width: 420px) {
  .logo-full { display: none; }
  .logo-mark { display: block; }
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

/* WP core menu list reset — keep desktop nav horizontal */
.nav-desktop ul,
.nav-desktop .nav-desktop-list,
.nav-desktop-list,
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
}
.nav-desktop .nav-desktop-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.15rem;
}
.nav-desktop .nav-desktop-list > li,
.nav-desktop ul > li {
  position: relative;
  margin: 0;
  list-style: none;
}
.nav-desktop .nav-desktop-list > li > a,
.nav-desktop ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--duration), background var(--duration);
}
.nav-desktop .nav-desktop-list > li > a:hover,
.nav-desktop .nav-desktop-list > li.current-menu-item > a,
.nav-desktop .nav-desktop-list > li.current_page_item > a,
.nav-desktop ul > li > a:hover {
  color: var(--brand-blue);
  background: rgba(27, 122, 248, 0.06);
}
/* Submenu as dropdown panel */
.nav-desktop .sub-menu,
.nav-desktop ul ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  z-index: var(--z-dropdown);
}
.nav-desktop li:hover > .sub-menu,
.nav-desktop li:focus-within > .sub-menu,
.nav-desktop li:hover > ul ul,
.nav-desktop li:focus-within > ul {
  display: flex;
}
.nav-desktop .sub-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--text);
  white-space: normal;
}
.nav-desktop .sub-menu a:hover { background: var(--ink-50); color: var(--brand-blue); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .header-cta { display: none; }
}

.mobile-nav-list li { list-style: none; }
.mobile-nav-list a {
  display: block;
  padding: 0.85rem 0;
  font-weight: var(--fw-medium);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-list .sub-menu {
  padding-left: 0.75rem;
}
.mobile-nav-list .sub-menu a {
  font-weight: var(--fw-normal);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.nav-desktop > a,
.nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: color var(--duration), background var(--duration);
}
.nav-desktop > a:hover,
.nav-desktop > a[aria-current="page"],
.nav-item > button:hover {
  color: var(--brand-blue);
  background: rgba(27, 122, 248, 0.06);
}
.nav-item { position: relative; }
.nav-item > button svg { width: 14px; height: 14px; opacity: 0.7; transition: transform var(--duration); }
.nav-item[aria-expanded="true"] > button svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out), visibility var(--duration);
  z-index: var(--z-dropdown);
}
.nav-item[aria-expanded="true"] .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-dropdown a {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--duration);
}
.nav-dropdown a:hover { background: var(--ink-50); }
.nav-dropdown .dd-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--brand-gradient-soft);
  color: var(--brand-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-dropdown .dd-icon svg { width: 18px; height: 18px; }
.nav-dropdown strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text);
  margin-bottom: 0.1rem;
}
.nav-dropdown span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.4;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: none;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
}
.header-phone:hover { color: var(--brand-blue); }
.header-phone svg { width: 16px; height: 16px; }
@media (min-width: 1100px) {
  .header-phone { display: inline-flex; }
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: var(--text);
}
.nav-toggle svg { width: 22px; height: 22px; }
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: grid; }
  .header-cta .btn { display: none; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  pointer-events: none;
  visibility: hidden;
}
.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}
.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity var(--duration-slow);
}
.mobile-nav.is-open .mobile-nav-backdrop { opacity: 1; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(100%, 380px);
  height: 100%;
  background: var(--white);
  padding: 1rem 1.25rem 2rem;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav.is-open .mobile-nav-panel { transform: none; }
.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
}
.mobile-nav-close {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: var(--radius-sm);
}
.mobile-nav-links a {
  display: block;
  padding: 0.85rem 0.5rem;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.mobile-nav-links a:hover { color: var(--brand-blue); }
.mobile-nav-sub {
  padding-left: 0.75rem;
  border-left: 2px solid var(--ink-200);
  margin: 0.25rem 0 0.5rem 0.5rem;
}
.mobile-nav-sub a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-normal);
  color: var(--text-secondary);
  border: none;
  padding: 0.5rem;
}
.mobile-nav-cta { margin-top: auto; display: flex; flex-direction: column; gap: 0.75rem; }

/* Top utility bar — location LEFT · phone RIGHT */
.top-bar {
  background: var(--ink-950);
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 38px;
  padding-block: 0.35rem;
}
.top-bar-loc,
.top-bar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}
.top-bar-loc svg,
.top-bar-phone svg {
  width: 14px;
  height: 14px;
  color: var(--brand-cyan);
  flex-shrink: 0;
}
.top-bar-loc span[data-location-text] {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(62vw, 420px);
}
.top-bar-loc .loc-sep {
  opacity: 0.45;
  margin: 0 0.1rem;
  flex-shrink: 0;
  user-select: none;
}
.top-bar-loc span[data-location-time] {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  opacity: 0.92;
  white-space: nowrap;
  flex-shrink: 0;
}

.top-bar-phone {
  color: rgba(255, 255, 255, 0.92);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  flex-shrink: 0;
  transition: color var(--duration);
}
.top-bar-phone:hover { color: var(--brand-cyan); }
.top-bar .loc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(16,185,129,0.25); }
  50% { box-shadow: 0 0 0 5px rgba(16,185,129,0.1); }
}
/* legacy alias if any page still uses it */
.location-bar { display: none; }

/* Phone removed from menu CTA cluster */
.header-phone { display: none !important; }

/* ---------- Hero — exclusive UTurn Orbit Core ---------- */
.hero {
  position: relative;
  padding-block: clamp(3rem, 8vw, 5.5rem) clamp(3.5rem, 7vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 88% 18%, rgba(0, 196, 224, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 45% at 8% 85%, rgba(27, 122, 248, 0.12), transparent 50%),
    linear-gradient(165deg, #f8fafc 0%, #eef5ff 42%, #ffffff 100%);
}
.hero--orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 122, 248, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 122, 248, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 70% 40%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.9;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
}

/* copy entrance */
.hero-enter {
  opacity: 0;
  transform: translateY(18px);
  animation: hero-rise 0.85s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 0.1s + 0.05s);
}
@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem 0.4rem 0.45rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  box-shadow: var(--shadow-xs);
  margin-bottom: var(--space-5);
  backdrop-filter: blur(8px);
}
.hero-badge .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(16,185,129,0.45);
  animation: pulse-live 2s ease infinite;
}
@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
  70% { box-shadow: 0 0 0 10px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hero h1 {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-tight);
  margin-bottom: var(--space-5);
  max-width: 16ch;
}
.hero h1 .grad {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero-lead {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  max-width: 38ch;
  margin-bottom: var(--space-8);
}
.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
@media (max-width: 640px) {
  .hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 0.75rem; }
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  transition: border-color var(--duration), box-shadow var(--duration), transform var(--duration);
}
.hero-meta-item:hover {
  border-color: rgba(27, 122, 248, 0.25);
  box-shadow: var(--shadow-xs);
  transform: translateY(-2px);
}
.hero-meta-item strong {
  font-size: var(--fs-xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-snug);
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.hero-meta-item span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  line-height: 1.3;
}

/* ===== Hero growth animation (related to agency work) ===== */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  aspect-ratio: 1 / 1.02;
}

.growth-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.gs-bg {
  position: absolute;
  inset: 8% 4% 4%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,196,224,0.16), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(27,122,248,0.14), transparent 40%),
    linear-gradient(160deg, #eef5ff, #f8fafc 50%, #ffffff);
  border: 1px solid rgba(27,122,248,0.1);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.gs-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,122,248,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,122,248,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
  animation: gs-grid-pan 18s linear infinite;
  opacity: 0.7;
}
@keyframes gs-grid-pan {
  from { background-position: 0 0, 0 0; }
  to { background-position: 28px 28px, 28px 28px; }
}

.gs-card {
  position: relative;
  z-index: 2;
  width: min(88%, 340px);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(27,122,248,0.12);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
  padding: 1rem 1rem 1.1rem;
  animation: gs-card-in 0.8s var(--ease-out) both;
}
@keyframes gs-card-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.gs-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}
.gs-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink-800);
}
.gs-brand img { width: 26px; height: 26px; object-fit: contain; }
.gs-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: #047857;
  background: rgba(16,185,129,0.12);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}
.gs-live i {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16,185,129,0.45);
  animation: gs-pulse 1.8s ease infinite;
}
@keyframes gs-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16,185,129,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

.gs-chart {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f8fafc, #eef5ff);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 0.9rem;
}
.gs-chart-svg { width: 100%; height: 100%; display: block; }
.gs-line {
  stroke-dasharray: 480;
  stroke-dashoffset: 480;
  animation: gs-draw 2.2s var(--ease-out) 0.25s forwards;
}
.gs-area {
  opacity: 0;
  animation: gs-fade 1.2s ease 0.9s forwards;
}
.gs-dot {
  opacity: 0;
  animation: gs-dot-in 0.45s ease 1.9s forwards, gs-dot-pulse 2s ease 2.3s infinite;
}
@keyframes gs-draw { to { stroke-dashoffset: 0; } }
@keyframes gs-fade { to { opacity: 1; } }
@keyframes gs-dot-in { to { opacity: 1; } }
@keyframes gs-dot-pulse {
  0%, 100% { r: 6; }
  50% { r: 8; }
}

.gs-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}
.gs-metric {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.gs-metric small {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.gs-metric-bar {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: var(--ink-100);
  position: relative;
  overflow: hidden;
}
.gs-metric-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  border-radius: inherit;
  background: var(--brand-gradient);
  animation: gs-bar 1.4s var(--ease-out) 1.1s forwards;
}
.gs-metric:nth-child(1) .gs-metric-bar::after { animation-delay: 1.1s; }
.gs-metric:nth-child(2) .gs-metric-bar::after { animation-delay: 1.25s; }
.gs-metric:nth-child(3) .gs-metric-bar::after { animation-delay: 1.4s; }
@keyframes gs-bar { from { width: 0; } to { width: var(--p); } }

.gs-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(27,122,248,0.14);
  box-shadow: 0 10px 24px rgba(15,23,42,0.1);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink-800);
  animation: gs-float 5.5s ease-in-out infinite;
}
.gs-float--a { top: 10%; left: 2%; animation-delay: 0s; }
.gs-float--b { right: 2%; bottom: 14%; animation-delay: 1.2s; }
.gs-ico {
  width: 18px; height: 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.65rem;
  background: rgba(27,122,248,0.1);
  color: var(--brand-blue);
}
.gs-float--b .gs-ico { color: #10b981; background: rgba(16,185,129,0.12); font-size: 0.45rem; }
@keyframes gs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero-visual { max-width: 380px; margin-top: 0.5rem; }
}
@media (max-width: 480px) {
  .gs-float { font-size: 0.65rem; padding: 0.4rem 0.6rem; }
  .gs-card { width: min(92%, 320px); }
}

@media (prefers-reduced-motion: reduce) {
  .gs-bg::before, .gs-card, .gs-line, .gs-area, .gs-dot,
  .gs-metric-bar::after, .gs-float, .gs-live i { animation: none !important; }
  .gs-line { stroke-dashoffset: 0; }
  .gs-area, .gs-dot { opacity: 1; }
  .gs-metric-bar::after { width: var(--p); }
}

/* ===== Proof strip (above trust marquee) ===== */
.proof-strip {
  padding: 1.25rem 0 0.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  z-index: 2;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
@media (max-width: 800px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 0.65rem; }
}
.proof-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1rem 1.05rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-xs);
  transition: transform var(--duration), box-shadow var(--duration), border-color var(--duration);
  position: relative;
  overflow: hidden;
}
.proof-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity var(--duration);
}
.proof-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(27,122,248,0.22);
}
.proof-card:hover::before { opacity: 1; }
.proof-card__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: var(--brand-gradient-soft);
  color: var(--brand-blue);
  margin-bottom: 0.45rem;
}
.proof-card__icon svg { width: 18px; height: 18px; }
.proof-card__value {
  font-size: clamp(1.45rem, 1.2rem + 1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.proof-card__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* tighten trust marquee under proof */
.trust-marquee { border-top: none; }

/* ---------- Animated trust marquee (logos + services) ---------- */
.trust-marquee {
  padding-block: 1.35rem 1.5rem;
  background: var(--white);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.trust-marquee__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding-inline: var(--gutter);
}
.trust-marquee__head .trust-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0;
}
.trust-marquee__head .trust-line {
  height: 1px;
  flex: 1;
  max-width: 120px;
  background: linear-gradient(90deg, transparent, var(--ink-200), transparent);
}
.marquee-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: trust-scroll 42s linear infinite;
  will-change: transform;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
  .marquee-viewport { mask-image: none; -webkit-mask-image: none; overflow: visible; }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  height: 44px;
  padding: 0 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  background: var(--ink-50);
  flex-shrink: 0;
  white-space: nowrap;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--ink-700);
  transition: border-color var(--duration), background var(--duration), color var(--duration);
}
.marquee-item:hover {
  border-color: rgba(27, 122, 248, 0.3);
  background: #fff;
  color: var(--brand-blue-deep);
}
.marquee-item img {
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: filter var(--duration);
}
.marquee-item:hover img { filter: none; }
.marquee-item--service {
  background: rgba(27, 122, 248, 0.06);
  border-color: rgba(27, 122, 248, 0.14);
  color: var(--brand-blue-deep);
}
.marquee-item--service .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-gradient);
  flex-shrink: 0;
}
.marquee-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ink-300);
  flex-shrink: 0;
  opacity: 0.7;
}

/* legacy */
.trust-bar, .client-logos { /* kept for safety */ }

/* ---------- Stats (proof strip) ---------- */
.stats-section {
  position: relative;
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(27, 122, 248, 0.06), transparent 55%),
    radial-gradient(ellipse 45% 80% at 100% 50%, rgba(0, 196, 224, 0.06), transparent 55%),
    var(--ink-50);
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
}
@media (max-width: 420px) {
  .stats-row { grid-template-columns: 1fr; }
}

.stat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.35rem 1.25rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition:
    border-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity var(--duration) var(--ease-out);
}
.stat-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 122, 248, 0.1), transparent 70%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity var(--duration), transform var(--duration) var(--ease-out);
}
.stat-card:hover {
  border-color: rgba(27, 122, 248, 0.28);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.stat-card:hover::before { opacity: 1; }
.stat-card:hover::after { opacity: 1; transform: scale(1.15); }

.stat-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}
.stat-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-gradient-soft);
  color: var(--brand-blue);
  flex-shrink: 0;
  border: 1px solid rgba(27, 122, 248, 0.12);
  transition: transform var(--duration) var(--ease-out), background var(--duration);
}
.stat-card:hover .stat-card__icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, rgba(27, 122, 248, 0.16), rgba(0, 196, 224, 0.12));
}
.stat-card__icon svg { width: 22px; height: 22px; }

.stat-card__badge {
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(27, 122, 248, 0.08);
  color: var(--brand-blue-deep);
  white-space: nowrap;
}
.stat-card__badge--soft {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}
.stat-card__badge--cms {
  background: var(--ink-100);
  color: var(--ink-500);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
}

.stat-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-height: 4.25rem;
}
.stat-card__value {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  font-size: clamp(1.85rem, 1.4rem + 1.6vw, 2.5rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
}
.stat-card__value .accent {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card__label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--ink-700);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.stat-card__hint {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  line-height: 1.35;
  margin-top: 0.15rem;
}

/* CMS-ready referral card */
.stat-card--cms .stat-card__value {
  font-size: clamp(1.55rem, 1.25rem + 1.1vw, 2rem);
}
.stat-card--cms .stat-card__value .accent {
  letter-spacing: var(--tracking-snug);
}
.stat-card__meter {
  margin-top: 0.55rem;
  height: 6px;
  border-radius: var(--radius-full);
  background: var(--ink-100);
  overflow: hidden;
  position: relative;
}
.stat-card__meter > span {
  display: block;
  height: 100%;
  width: 82%; /* visual only — replace via CMS when real % known */
  border-radius: inherit;
  background: var(--brand-gradient);
  box-shadow: 0 0 12px rgba(27, 122, 248, 0.35);
  transform-origin: left center;
  animation: meter-fill 1.1s var(--ease-out) 0.2s both;
}
@keyframes meter-fill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .stat-card__meter > span { animation: none; }
  .stat-card:hover { transform: none; }
}

/* Stagger reveal polish */
.stats-row .stat-card.reveal { transition-delay: 0ms; }
.stats-row .stat-card.reveal:nth-child(2) { transition-delay: 70ms; }
.stats-row .stat-card.reveal:nth-child(3) { transition-delay: 140ms; }
.stats-row .stat-card.reveal:nth-child(4) { transition-delay: 210ms; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: border-color var(--duration), box-shadow var(--duration), transform var(--duration);
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  border-color: rgba(27, 122, 248, 0.3);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-soft);
  color: var(--brand-blue);
  display: grid; place-items: center;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-snug);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
}
.service-outcome {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: var(--ink-50);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
  line-height: 1.4;
}
.service-outcome svg {
  width: 14px; height: 14px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card .link-arrow { margin-top: 0.25rem; }

/* ---------- Portfolio ---------- */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  justify-content: center;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  background: var(--white);
  border: 1.5px solid var(--border-strong);
  transition: all var(--duration) var(--ease-out);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.filter-btn.is-active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(27,122,248,0.3);
}
.portfolio-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--duration), transform var(--duration), opacity var(--duration), border-color var(--duration);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
}
.portfolio-card.is-hidden {
  display: none;
}
.portfolio-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(27,122,248,0.2);
}
.portfolio-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  color: inherit;
  text-decoration: none;
  min-height: 0;
}
.portfolio-card__link:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: 2px;
}
.portfolio-thumb {
  aspect-ratio: 16 / 10;
  flex: 0 0 auto;
  background: linear-gradient(135deg, var(--ink-800), var(--ink-900));
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.portfolio-thumb .thumb-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(27,122,248,0.4), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,196,224,0.3), transparent 45%);
}
.portfolio-thumb .thumb-label {
  position: relative;
  z-index: 1;
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: white;
  letter-spacing: var(--tracking-snug);
  text-align: center;
  padding: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.portfolio-thumb .cat-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--ink-800);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
  max-width: calc(100% - 1.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.portfolio-body {
  padding: 1.15rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1 1 auto;
  min-height: 11.5rem;
}
.portfolio-body h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.35em * 2);
  margin: 0;
}
.portfolio-meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  min-height: 1.25em;
  overflow: hidden;
}
.portfolio-meta span {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 55%;
}
.portfolio-meta span + span {
  max-width: 45%;
}
.portfolio-meta span + span::before {
  content: "·";
  margin-right: 0.5rem;
  opacity: 0.45;
}
.portfolio-outcome {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.45em * 2 + 0.5rem);
  flex: 1 1 auto;
}
.portfolio-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--brand-blue);
  letter-spacing: 0.01em;
}
.portfolio-card:hover .portfolio-more {
  gap: 0.5rem;
}
.portfolio-more svg {
  transition: transform var(--duration);
}
.portfolio-card:hover .portfolio-more svg {
  transform: translateX(3px);
}
.portfolio-card__link:visited,
.portfolio-card__link:hover { color: inherit; }


/* Equal-height grid items */



/* ---------- Case study pages ---------- */
.case-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  grid-template-areas:
    "visual facts"
    "content facts";
  gap: 1.5rem 2rem;
  align-items: start;
}
@media (max-width: 900px) {
  .case-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "visual" "facts" "content";
  }
}
.case-visual {
  grid-area: visual;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
}
.case-visual .thumb-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(27,122,248,0.4), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0,196,224,0.3), transparent 45%);
}
.case-visual .thumb-label {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  font-weight: var(--fw-bold);
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.case-visual .cat-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  background: rgba(255,255,255,0.95);
  color: var(--ink-800);
  font-size: 0.65rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-full);
}
.case-facts {
  grid-area: facts;
  position: sticky;
  top: 5.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.35rem 1.5rem;
  box-shadow: var(--shadow-xs);
}
.case-facts__title {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin: 0 0 1rem;
}
.case-dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}
.case-dl > div {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.case-dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.case-dl dt {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.case-dl dd {
  margin: 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--ink-800);
}
.case-content {
  grid-area: content;
}
.case-content h2 {
  font-size: var(--fs-lg);
  margin: 1.75rem 0 0.65rem;
}
.case-content h2:first-child { margin-top: 0; }
.case-content p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin: 0 0 0.5rem;
}
.case-results {
  margin: 0.35rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  display: grid;
  gap: 0.45rem;
}
.case-results li::marker { color: var(--brand-blue); }

/* ---------- Testimonials ---------- */
.testimonial-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.testimonial-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: marquee 45s linear infinite;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
  .testimonial-track-wrap { mask-image: none; -webkit-mask-image: none; overflow: visible; }
}
.testimonial-card {
  width: min(360px, 85vw);
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-card blockquote {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
}
.testimonial-card blockquote::before {
  content: "“";
  font-size: 2.5rem;
  line-height: 1;
  color: var(--brand-blue);
  opacity: 0.35;
  display: block;
  margin-bottom: 0.25rem;
  font-family: Georgia, serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: white;
  display: grid; place-items: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  flex-shrink: 0;
}
.author-info { flex: 1; min-width: 0; }
.author-info strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--text);
}
.author-info span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}
.author-logo {
  height: 22px;
  width: auto;
  max-width: 80px;
  object-fit: contain;
  opacity: 0.7;
}

/* ---------- Why / Process ---------- */

/* Why / Process — force two columns on desktop */
.why-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.why-col { min-width: 0; }
.why-lead {
  color: var(--text-secondary);
  margin: 1rem 0 0;
  line-height: 1.7;
  font-size: var(--fs-md);
}
.why-process-title {
  font-size: var(--fs-2xl);
  margin-bottom: 1.5rem;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr !important; }
}
.value-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
@media (max-width: 520px) {
  .value-pills { grid-template-columns: 1fr; }
}

.value-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.value-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.value-pill .vp-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--brand-gradient-soft);
  color: var(--brand-blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.value-pill .vp-icon svg { width: 20px; height: 20px; }
.value-pill strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  display: block;
}
.value-pill span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: step;
}
.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  position: relative;
  padding-bottom: 1.5rem;
  counter-increment: step;
}
.process-step:last-child { padding-bottom: 0; }
.process-step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--ink-200);
}
.process-step:last-child::before { display: none; }
.process-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--brand-blue);
  color: var(--brand-blue);
  display: grid; place-items: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--ink-50);
}
.process-step h4 {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  margin-bottom: 0.25rem;
  padding-top: 0.6rem;
}
.process-step p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0,196,224,0.2), transparent),
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(27,122,248,0.25), transparent),
    var(--ink-900);
  border-radius: var(--radius-2xl);
  padding: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: white;
  font-size: var(--fs-3xl);
  margin-bottom: 0.75rem;
  max-width: 20ch;
  margin-inline: auto;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  font-size: var(--fs-md);
  max-width: 42ch;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}
.cta-band .btn-group { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-950);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(3rem, 5vw, 4.5rem);
  padding-bottom: 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  margin: 1rem 0 1.25rem;
  max-width: 32ch;
}
.footer-brand .logo img { height: 32px; filter: brightness(0) invert(1); }
.footer-social {
  display: flex;
  gap: 0.5rem;
}
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: grid; place-items: center;
  color: white;
  transition: background var(--duration), border-color var(--duration);
}
.footer-social a:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 {
  color: white;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: var(--fs-sm);
  padding: 0.3rem 0;
  color: rgba(255,255,255,0.65);
  transition: color var(--duration);
}
.footer-col a:hover { color: white; }
.footer-contact-item {
  display: flex;
  gap: 0.65rem;
  font-size: var(--fs-sm);
  margin-bottom: 0.85rem;
  line-height: 1.45;
}
.footer-contact-item svg {
  width: 16px; height: 16px;
  color: var(--brand-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a:hover { color: white; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(0,196,224,0.08), transparent),
    linear-gradient(180deg, var(--ink-50), var(--white));
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-size: var(--fs-4xl);
  margin-bottom: 0.75rem;
}
.page-hero .lead {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 52ch;
  line-height: var(--lh-relaxed);
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--brand-blue); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }

/* ---------- Modal ---------- */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  pointer-events: none;
}
.modal-root.is-open {
  visibility: visible;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  opacity: 0;
  transition: opacity var(--duration-slow);
}
.modal-root.is-open .modal-backdrop { opacity: 1; }
.modal-panel {
  position: relative;
  width: min(100%, 520px);
  max-height: min(90vh, 720px);
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform var(--duration-slow) var(--ease-out), opacity var(--duration-slow);
}
.modal-root.is-open .modal-panel {
  transform: none;
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: background var(--duration);
}
.modal-close:hover { background: var(--ink-100); color: var(--text); }
.modal-panel h2 {
  font-size: var(--fs-2xl);
  margin-bottom: 0.35rem;
  padding-right: 2rem;
}
.modal-panel .modal-sub {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 520px) {
  .form-grid { grid-template-columns: 1fr; }
}
.form-grid .field--full { grid-column: 1 / -1; }
.form-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.form-note {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  text-align: center;
}

/* ---------- FAQ accordion (service + faq pages) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  cursor: pointer;
  list-style: none;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  width: 18px; height: 18px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--duration);
}
.faq-item[open] summary svg { transform: rotate(45deg); color: var(--brand-blue); }
.faq-item .faq-body {
  padding: 0 1.25rem 1.25rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ---------- Pricing (service pages) ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.price-card.is-featured {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-glow);
}
.price-card .popular {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: white;
  font-size: 0.65rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.price-card h3 {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
}
.price-card .price {
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  color: var(--text);
}
.price-card .price small {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: 1.4;
}
.price-card li svg {
  width: 16px; height: 16px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Content prose ---------- */
.prose { max-width: 720px; }
.prose h2 { font-size: var(--fs-2xl); margin: 2rem 0 0.75rem; }
.prose h3 { font-size: var(--fs-xl); margin: 1.5rem 0 0.5rem; }
.prose p { color: var(--text-secondary); margin-bottom: 1rem; line-height: var(--lh-relaxed); }
.prose ul { margin: 0.75rem 0 1.25rem; display: flex; flex-direction: column; gap: 0.45rem; }
.prose li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: var(--fs-sm);
  line-height: var(--lh-normal);
}
.prose li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.contact-card .cc-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--brand-gradient-soft);
  color: var(--brand-blue);
  display: grid; place-items: center;
  margin-bottom: 1rem;
}
.contact-card .cc-icon svg { width: 22px; height: 22px; }
.contact-card h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.5rem;
}
.contact-card p, .contact-card a {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}
.contact-card a:hover { color: var(--brand-blue); }

/* Values list on about */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.value-card {
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.value-card h3 {
  font-size: var(--fs-md);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.value-card h3 svg { width: 18px; height: 18px; color: var(--brand-blue); }
.value-card p {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* ---------- Founder feature ---------- */
.founder-feature {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
@media (max-width: 800px) {
  .founder-feature { grid-template-columns: 1fr; }
}
.founder-photo-wrap {
  position: relative;
  max-width: 380px;
  margin-inline: auto;
}
.founder-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 12% -8% -8% 12%;
  border-radius: var(--radius-2xl);
  background: var(--brand-gradient);
  opacity: 0.9;
  z-index: 0;
}
.founder-photo-wrap::after {
  content: "";
  position: absolute;
  inset: -6% 10% 18% -10%;
  border-radius: var(--radius-2xl);
  border: 1.5px solid rgba(27, 122, 248, 0.25);
  z-index: 0;
}
.founder-photo {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--ink-100);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.founder-chip {
  position: absolute;
  z-index: 2;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  max-width: calc(100% - 2rem);
}
.founder-chip strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--text);
}
.founder-chip span {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}
.founder-quote {
  margin-top: 1.25rem;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid transparent;
  border-image: var(--brand-gradient) 1;
  background: var(--ink-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ---------- Team cards ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--duration), box-shadow var(--duration), transform var(--duration);
  display: flex;
  flex-direction: column;
}
.team-card:hover {
  border-color: rgba(27, 122, 248, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.team-card__photo {
  aspect-ratio: 1 / 1;
  background: var(--ink-100);
  position: relative;
  overflow: hidden;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card__photo .demo-tag {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  font-size: 0.6rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
}
.team-card__body {
  padding: 1.1rem 1.15rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.team-card__body h3 {
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-snug);
}
.team-card__role {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--brand-blue);
}
.team-card__bio {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 0.35rem;
}

/* Portfolio + testimonials combined */
.portfolio-with-voice .section-split {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.75rem);
  border-top: 1px solid var(--border);
}

/* ---------- Graphic works gallery ---------- */
.graphics-section { padding-block: clamp(2.5rem, 5vw, 4rem); }
.graphics-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.graphics-toolbar .section-head { margin-bottom: 0; max-width: 520px; }
.graphics-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.graphics-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}
.graphic-card {
  position: relative;
  grid-column: span 4;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-900);
  border: 1px solid var(--border);
  isolation: isolate;
  cursor: zoom-in;
  min-height: 220px;
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration);
}
.graphic-card:nth-child(1),
.graphic-card:nth-child(6) { grid-column: span 5; min-height: 280px; }
.graphic-card:nth-child(2),
.graphic-card:nth-child(7) { grid-column: span 3; }
.graphic-card:nth-child(4) { grid-column: span 6; min-height: 240px; }
.graphic-card:nth-child(5) { grid-column: span 6; min-height: 240px; }
.graphic-card:nth-child(8) { grid-column: span 4; }
@media (max-width: 900px) {
  .graphic-card,
  .graphic-card:nth-child(n) { grid-column: span 6; min-height: 220px; }
}
@media (max-width: 560px) {
  .graphic-card,
  .graphic-card:nth-child(n) { grid-column: span 12; min-height: 210px; }
}
.graphic-card.is-hidden { display: none; }
.graphic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-out);
}
.graphic-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.graphic-card:hover img { transform: scale(1.05); }
.graphic-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(15,23,42,0.88));
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 1;
}
.graphic-card__overlay strong {
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: #fff;
}
.graphic-card__overlay span {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.75);
}
.graphic-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  font-size: 0.62rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.95);
  color: var(--ink-800);
}
.graphic-card__zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(15,23,42,0.55);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity var(--duration);
}
.graphic-card:hover .graphic-card__zoom { opacity: 1; }
.graphic-card__zoom svg { width: 16px; height: 16px; }
.graphics-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* Lightbox for graphic cards */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
  pointer-events: none;
}
.lightbox.is-open { visibility: visible; pointer-events: auto; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 32, 0.82);
  opacity: 0;
  transition: opacity var(--duration-slow);
}
.lightbox.is-open .lightbox-backdrop { opacity: 1; }
.lightbox-panel {
  position: relative;
  width: min(100%, 920px);
  max-height: min(90vh, 860px);
  background: var(--ink-950);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform var(--duration-slow) var(--ease-out), opacity var(--duration-slow);
  display: flex;
  flex-direction: column;
}
.lightbox.is-open .lightbox-panel { transform: none; opacity: 1; }
.lightbox-panel img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #0b1220;
}
.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
}
.lightbox-meta strong { display: block; font-size: var(--fs-md); }
.lightbox-meta span { font-size: var(--fs-xs); color: var(--text-muted); }
.lightbox-close {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(15,23,42,0.7);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 2;
}
.lightbox-close:hover { background: rgba(15,23,42,0.9); }

/* Icon rendering — consistent stroke icons */
.service-icon svg,
.proof-card__icon svg,
.vp-icon svg,
.gs-ico svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.service-icon svg {
  width: 24px;
  height: 24px;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.proof-card__icon svg { width: 18px; height: 18px; }
.vp-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--brand-gradient-soft);
  color: var(--brand-blue);
  flex-shrink: 0;
}
.vp-icon svg { width: 20px; height: 20px; }
.footer-social a svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Force visible stroke icons (never collapse) */
.service-icon,
.proof-card__icon,
.vp-icon {
  color: var(--brand-blue, #1B7AF8);
}
.service-icon svg,
.proof-card__icon svg,
.vp-icon svg,
.gs-ico svg,
.service-outcome svg,
.link-arrow svg,
.footer-social svg {
  display: block !important;
  flex-shrink: 0;
  overflow: visible;
  color: inherit;
  stroke: currentColor;
}
.service-icon svg { width: 24px !important; height: 24px !important; min-width: 24px; min-height: 24px; }
.proof-card__icon svg { width: 18px !important; height: 18px !important; min-width: 18px; min-height: 18px; }
.vp-icon svg { width: 20px !important; height: 20px !important; min-width: 20px; min-height: 20px; }
