/* =========================================================
   Bluefield Media — AI Automation & Web Design Agency
   Sleek, premium, modern tech aesthetic
   ========================================================= */

:root {
  /* Palette */
  --white: #ffffff;
  --soft-bg: #f7fbff;
  --soft-bg-2: #eef6ff;
  --light-blue: #38bdf8;
  --sky-blue: #5ac8fa;
  --brand-blue: #0284c7;
  --deep-blue: #075985;
  --black: #050505;
  --ink: #0a0a0a;
  --slate: #1a1f2e;
  --grey-100: #f1f5f9;
  --grey-200: #e5e7eb;
  --grey-300: #cbd5e1;
  --grey-500: #64748b;
  --text: #475569;
  --text-strong: #0f172a;

  /* Effects */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 40px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.12);
  --shadow-blue: 0 18px 50px rgba(2, 132, 199, 0.18);
  --glass: rgba(255, 255, 255, 0.7);
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);

  /* Type */
  --heading: 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --body: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.hidden { display: none !important; }

h1, h2, h3, h4, h5 {
  font-family: var(--heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-strong);
  line-height: 1.1;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--ink);
  color: rgba(255,255,255,0.85);
  padding: 11px 16px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.announce::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(56,189,248,0.18), transparent 70%);
  pointer-events: none;
}
.announce a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  transition: color .2s ease;
}
.announce a:hover { color: var(--light-blue); }
.announce a svg { width: 14px; height: 14px; transition: transform .25s ease; }
.announce a:hover svg { transform: translateX(3px); }
.announce strong {
  background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-xs);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform .3s ease;
}
.brand:hover { transform: translateY(-1px); }
.brand-mark {
  width: 56px;
  height: auto;
  display: block;
  flex-shrink: 0;
}
.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  font-family: var(--heading);
  letter-spacing: -0.02em;
}
.brand-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
}
.brand-suffix {
  font-size: 26px;
  font-weight: 400;
  color: var(--brand-blue);
  letter-spacing: -0.01em;
}
/* Footer (dark bg) variants */
.footer .brand { gap: 16px; }
.footer .brand-mark { width: 72px; }
.footer .brand-name { font-size: 32px; color: var(--white); }
.footer .brand-suffix { font-size: 32px; color: var(--light-blue); }
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--light-blue), var(--brand-blue));
  border-radius: 2px;
}
.nav-actions { display: flex; gap: 12px; align-items: center; }

.icon-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all .25s ease;
}
.icon-btn:hover {
  border-color: var(--light-blue);
  color: var(--brand-blue);
  transform: translateY(-1px);
}
.icon-btn svg { width: 18px; height: 18px; }
.menu-btn { display: none; }
.menu-btn.open {
  color: var(--brand-blue);
  border-color: rgba(2,132,199,0.24);
  background: var(--soft-bg-2);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--ink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--brand-blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn-blue {
  background-color: var(--brand-blue);
  background-image: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  border-color: var(--brand-blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
  overflow: hidden;
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(2,132,199,0.30); }
.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.btn-sm { padding: 11px 20px; font-size: 13px; }

/* ---------- Sections ---------- */
section { padding: clamp(72px, 10vw, 130px) 0; }
.section-head { text-align: center; margin-bottom: 64px; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); margin-bottom: 18px; letter-spacing: -0.025em; }
.section-head p { color: var(--text); font-size: 17px; max-width: 580px; margin: 0 auto; line-height: 1.7; }

.bg-soft { background: var(--soft-bg); }
.bg-dark { background: var(--ink); color: rgba(255,255,255,0.8); }

/* Gradient text */
.grad-text {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--brand-blue) 50%, var(--deep-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Hero (light glassmorphism) ---------- */
@property --beam-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.hero {
  position: relative;
  padding: clamp(56px, 6vw, 84px) 0 clamp(72px, 8vw, 112px);
  overflow: hidden;
  background: linear-gradient(160deg, #edf6ff 0%, var(--white) 45%, #f4f9ff 100%);
  isolation: isolate;
}
.hero::before, .hero::after { display: none; }

/* Animated background orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  z-index: 0;
}
.hero-orb-1 {
  width: 680px; height: 680px;
  top: -220px; right: -140px;
  background: radial-gradient(circle, rgba(56,189,248,0.18) 0%, rgba(2,132,199,0.08) 40%, transparent 68%);
  filter: blur(80px);
  animation: orbFloat1 22s ease-in-out infinite;
}
.hero-orb-2 {
  width: 560px; height: 560px;
  bottom: -220px; left: -100px;
  background: radial-gradient(circle, rgba(2,132,199,0.13) 0%, rgba(7,89,133,0.06) 50%, transparent 70%);
  filter: blur(80px);
  animation: orbFloat2 28s ease-in-out infinite;
}
.hero-orb-3 {
  width: 340px; height: 340px;
  top: 45%; left: 38%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(56,189,248,0.10) 0%, transparent 65%);
  filter: blur(60px);
  animation: orbFloat3 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-50px, 32px) scale(1.06); }
  66%       { transform: translate(28px, -24px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(58px, -50px) scale(1.10); }
  70%       { transform: translate(-22px, 26px) scale(0.93); }
}
@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, -50%); opacity: 0.55; }
  50%       { transform: translate(calc(-50% + 28px), calc(-50% - 32px)); opacity: 1; }
}

/* Dot-grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(2,132,199,0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 85% 85% at 50% 50%, black 10%, transparent 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy {
  text-align: center;
  max-width: 1020px;
  margin: 0 auto;
}

/* Badge pill wrapper — spinning border-beam ring */
.hero-lede-wrap {
  display: inline-flex;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 1.5px;
  background: conic-gradient(
    from var(--beam-angle),
    rgba(56,189,248,0)    0deg,
    rgba(56,189,248,0.90) 40deg,
    rgba(2,132,199,0.72)  65deg,
    rgba(56,189,248,0)    100deg,
    rgba(56,189,248,0)    360deg
  );
  position: relative;
  animation:
    heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s both,
    beamSpin 3s linear 0.9s infinite;
}
.hero-lede-wrap::before,
.hero-lede-wrap::after {
  content: none;
}
@keyframes beamSpin {
  to { --beam-angle: 360deg; }
}
@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: 0.9; }
  70%  { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.08); opacity: 0; }
}

/* Badge pill */
.hero-lede {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 34px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-lede-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 8px rgba(2,132,199,0.70), 0 0 18px rgba(56,189,248,0.35);
  flex-shrink: 0;
  animation: ledePulse 2.2s ease-in-out infinite;
}
@keyframes ledePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(2,132,199,0.70), 0 0 18px rgba(56,189,248,0.35); }
  50%       { opacity: 0.38; box-shadow: 0 0 4px rgba(56,189,248,0.18); }
}

.hero h1 {
  font-size: clamp(48px, 6.4vw, 84px);
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  font-weight: 700;
  line-height: 0.98;
  color: var(--text-strong);
  animation: heroFadeUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.25s both;
}
.hero h1 .grad-text {
  display: inline-block;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--brand-blue) 50%, var(--deep-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(18px, 2.1vw, 22px);
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 30px;
  line-height: 1.65;
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.42s both;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  animation: heroFadeUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.58s both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero visual wrapper */
.hero-visual {
  position: relative;
  max-width: 780px;
  width: min(100%, 780px);
  margin: 0 auto;
  padding: 8px 32px 28px;
}

/* Glow halo behind the card */
.hv-glow {
  position: absolute;
  inset: -40px;
  background:
    radial-gradient(circle at 70% 30%, rgba(56,189,248,0.26), transparent 50%),
    radial-gradient(circle at 25% 72%, rgba(2,132,199,0.16), transparent 50%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.80; transform: scale(1); }
  50%       { opacity: 1.00; transform: scale(1.05); }
}

/* Main dashboard card — white glassmorphism */
.hv-dashboard {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.95);
  border-top-color: rgba(255,255,255,1);
  border-left-color: rgba(255,255,255,0.98);
  border-radius: 26px;
  padding: 26px;
  box-shadow:
    0 24px 80px rgba(2,132,199,0.12),
    0 8px 30px rgba(15,23,42,0.07),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 0 0 0 1px rgba(56,189,248,0.07);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.hv-dashboard::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: dashShimmer 9s ease-in-out infinite 2s;
  pointer-events: none;
  z-index: 0;
}
@keyframes dashShimmer {
  0%        { left: -100%; opacity: 0; }
  5%        { opacity: 1; }
  40%, 100% { left: 160%; opacity: 0; }
}
.hv-dashboard > * { position: relative; z-index: 1; }

.hv-dash-head { display: flex; align-items: center; gap: 12px; }
.hv-mark {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 6px 20px rgba(2,132,199,0.45), 0 0 0 1px rgba(56,189,248,0.25);
}
.hv-mark::after {
  content: ''; width: 14px; height: 14px;
  background: var(--white); border-radius: 4px; position: relative;
}
.hv-mark::before {
  content: ''; position: absolute;
  width: 7px; height: 7px;
  background: var(--brand-blue); border-radius: 50%;
}

.hv-dash-title { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.hv-dash-title strong {
  font-family: var(--heading); font-size: 14px; font-weight: 700;
  color: var(--text-strong); letter-spacing: -0.01em;
}
.hv-dash-title span { font-size: 11px; color: var(--grey-500); letter-spacing: 0.02em; }

.hv-live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  background: rgba(34,197,94,0.08);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.20);
  border-radius: 999px;
  font-size: 11px; font-weight: 600; flex-shrink: 0;
}
.hv-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.20);
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Chart */
.hv-chart {
  height: 80px; border-radius: 12px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  padding: 10px; position: relative; overflow: hidden;
}
.hv-chart svg { width: 100%; height: 100%; display: block; }

/* Animated line draw on scroll-into-view */
.hv-chart .chart-line {
  stroke-dasharray: 380;
  stroke-dashoffset: 380;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
}
.hv-chart.is-animated .chart-line { stroke-dashoffset: 0; }
.hv-chart .chart-fill { opacity: 0; transition: opacity 0.7s ease 1.6s; }
.hv-chart.is-animated .chart-fill { opacity: 1; }

/* Stats row */
.hv-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px; padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hv-stat { display: flex; flex-direction: column; gap: 3px; }
.hv-num {
  font-family: var(--heading); font-size: 22px; font-weight: 700;
  color: var(--text-strong); letter-spacing: -0.025em; line-height: 1;
}
.hv-num em {
  font-style: normal;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--brand-blue) 50%, var(--deep-blue) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hv-lbl {
  font-size: 10px; color: var(--grey-500);
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}

/* Flow nodes */
.hv-flow { display: flex; align-items: center; gap: 6px; }
.hv-node {
  flex: 1;
  background: var(--soft-bg);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 9px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.hv-node:hover {
  transform: translateY(-2px);
  border-color: rgba(56,189,248,0.35);
  background: var(--soft-bg-2);
}
.hv-node svg { width: 16px; height: 16px; color: var(--brand-blue); }
.hv-node span {
  font-size: 10.5px; font-weight: 600;
  color: var(--text-strong); letter-spacing: 0.02em;
}
.hv-node-ai {
  background: rgba(56,189,248,0.06);
  border-color: rgba(56,189,248,0.20);
  box-shadow: 0 0 18px rgba(56,189,248,0.07);
  position: relative;
}
.hv-node-ai::before {
  content: ''; position: absolute; inset: -1px; border-radius: 10px;
  background: linear-gradient(135deg, rgba(56,189,248,0.35), rgba(2,132,199,0.35));
  z-index: -1; opacity: 0; transition: opacity .3s ease;
}
.hv-node-ai:hover::before { opacity: 0.28; }
.hv-flow-line {
  flex: 0 0 14px; height: 1.5px;
  background: linear-gradient(90deg, rgba(56,189,248,0.55), rgba(2,132,199,0.55));
  position: relative; border-radius: 1px;
}
.hv-flow-line::after {
  content: ''; position: absolute;
  right: -3px; top: 50%;
  width: 5px; height: 5px;
  border-top: 1.5px solid rgba(56,189,248,0.75);
  border-right: 1.5px solid rgba(56,189,248,0.75);
  transform: translateY(-50%) rotate(45deg);
}

/* Floating notification pills — white glass */
.hv-float {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,1);
  border-radius: 14px;
  padding: 11px 16px 11px 12px;
  box-shadow: 0 12px 40px rgba(15,23,42,0.12), 0 0 0 1px rgba(56,189,248,0.07);
  display: flex; align-items: center; gap: 11px;
  z-index: 3;
  animation: hvFloat 5s ease-in-out infinite;
}
.hv-float strong {
  display: block; font-family: var(--heading);
  font-size: 13px; font-weight: 700;
  color: var(--text-strong); letter-spacing: -0.01em; white-space: nowrap;
}
.hv-float span {
  display: block; font-size: 10.5px;
  color: var(--grey-500); margin-top: 1px; letter-spacing: 0.02em;
}
.hv-float-icon { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0; }
.hv-float-icon.tone-soft {
  background: rgba(56,189,248,0.10);
  border: 1px solid rgba(56,189,248,0.16);
  color: var(--brand-blue);
}
.hv-float-icon.tone-blue {
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(2,132,199,0.45);
}
.hv-float-icon svg { width: 15px; height: 15px; }

.hv-float-top  { top: -18px; left: -8px; animation-delay: -1s; }
.hv-float-bottom { bottom: 4px; right: -8px; animation-delay: -2.5s; }

@keyframes hvFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-orb, .hv-glow, .hero-lede-wrap,
  .hero-lede-wrap::before, .hero-lede-wrap::after,
  .hv-float, .hv-live-dot, .hero-lede-dot, .hv-dashboard::after {
    animation: none !important;
  }
  .hero-lede-wrap {
    background: rgba(56,189,248,0.22);
  }
  .hv-chart .chart-line { stroke-dashoffset: 0 !important; transition: none !important; }
  .hv-chart .chart-fill { opacity: 1 !important; transition: none !important; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--soft-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 0;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: clamp(30px, 6vw, 60px);
  flex-wrap: wrap;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-strong);
  font-weight: 600;
}
.trust-item .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.trust-item .ic svg { width: 14px; height: 14px; color: var(--brand-blue); }

/* ---------- Services ---------- */
#services {
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: min(860px, 88%);
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.55) 35%, rgba(2,132,199,0.55) 65%, transparent 100%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* Stagger card entrance */
.services-grid .service-card.reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  transition:
    transform .4s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    box-shadow .4s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Cursor spotlight */
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    700px circle at var(--mx, 200%) var(--my, 50%),
    rgba(56,189,248,0.11),
    transparent 42%
  );
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}

/* Top-edge light sweep on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: -1px; left: -70%;
  width: 60%; height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(56,189,248,0.95) 40%,
    rgba(2,132,199,0.75) 70%,
    transparent);
  pointer-events: none;
  z-index: 3;
  border-radius: 2px;
  opacity: 0;
}
.service-card:hover::after {
  animation: scTopSweep 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes scTopSweep {
  0%   { left: -62%; opacity: 0; }
  8%   { opacity: 1; }
  100% { left: 112%; opacity: 0; }
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(56,189,248,0.42);
  box-shadow:
    0 0 0 1px rgba(56,189,248,0.10),
    0 28px 70px rgba(2,132,199,0.15),
    0 8px 24px rgba(15,23,42,0.07);
}
.service-card:hover::before { opacity: 1; }

/* All direct children above spotlight layer */
.service-card > * { position: relative; z-index: 1; }

/* Service icon */
.service-icon {
  width: 62px; height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--soft-bg-2), var(--soft-bg));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 22px;
  align-self: center;
  transition:
    transform .35s cubic-bezier(.2,.8,.2,1),
    box-shadow .35s ease,
    background .35s ease,
    border-color .35s ease;
  flex-shrink: 0;
}
.service-icon svg { width: 28px; height: 28px; color: var(--brand-blue); }
.service-icon--lg svg { width: 34px; height: 34px; }
.service-card:hover .service-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, rgba(56,189,248,0.13), rgba(2,132,199,0.05));
  box-shadow: 0 6px 24px rgba(2,132,199,0.22), 0 0 0 1px rgba(56,189,248,0.22);
  border-color: rgba(56,189,248,0.22);
}

/* Title */
.service-card h3 {
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.022em;
  line-height: 1.15;
  text-align: center;
}

/* Description */
.service-card .desc {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 22px;
  line-height: 1.72;
  flex-shrink: 0;
}

/* Stats strip */
.sc-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 26px;
  background: var(--soft-bg);
  transition: border-color .35s ease;
  flex-shrink: 0;
}
.service-card:hover .sc-stats { border-color: rgba(56,189,248,0.22); }
.sc-stat {
  padding: 14px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--border);
  transition: background .3s ease, border-color .3s ease;
}
.sc-stat:last-child { border-right: none; }
.service-card:hover .sc-stat { background: rgba(56,189,248,0.04); border-right-color: rgba(56,189,248,0.12); }
.service-card:hover .sc-stat:last-child { border-right: none; }
.sc-stat-val {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.sc-stat-lbl {
  font-size: 9.5px;
  color: var(--grey-500);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Feature list */
.service-card ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
  margin-bottom: 28px;
  flex: 1;
}
.service-card ul li {
  font-size: 13.5px;
  color: var(--text-strong);
  padding-left: 20px;
  position: relative;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}
/* Stagger reveal when card becomes visible */
.service-card.visible ul li { opacity: 1; transform: none; }
.service-card ul li:nth-child(1) { transition-delay: 0.10s; }
.service-card ul li:nth-child(2) { transition-delay: 0.16s; }
.service-card ul li:nth-child(3) { transition-delay: 0.22s; }
.service-card ul li:nth-child(4) { transition-delay: 0.28s; }
.service-card ul li:nth-child(5) { transition-delay: 0.34s; }
.service-card ul li:nth-child(6) { transition-delay: 0.40s; }
.service-card ul li:nth-child(7) { transition-delay: 0.46s; }
.service-card ul li:nth-child(8) { transition-delay: 0.52s; }

/* Checkmark bullets */
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 13px; height: 13px;
  background: linear-gradient(135deg, rgba(56,189,248,0.22), rgba(2,132,199,0.22));
  border-radius: 50%;
}
.service-card ul li::after {
  content: '';
  position: absolute;
  left: 3.5px; top: 5.5px;
  width: 3.5px; height: 6px;
  border-right: 1.5px solid var(--brand-blue);
  border-bottom: 1.5px solid var(--brand-blue);
  transform: rotate(45deg);
  opacity: 0.88;
}

/* CTA link */
.service-card a.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-blue);
  padding-top: 18px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  transition: color .22s ease, gap .25s ease, border-color .3s ease;
}
.service-card a.link svg {
  width: 15px; height: 15px;
  transition: transform .25s ease;
}
.service-card:hover a.link { border-top-color: rgba(56,189,248,0.22); }
.service-card a.link:hover { color: var(--deep-blue); gap: 14px; }
.service-card a.link:hover svg { transform: translateX(4px); }

/* Reduced motion overrides */
@media (prefers-reduced-motion: reduce) {
  .service-card::after { animation: none !important; }
  .service-card ul li {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .service-card { transition: box-shadow .3s ease, border-color .3s ease !important; }
}

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all .3s ease;
}
.process-step:hover {
  border-color: rgba(56,189,248,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-num {
  font-family: var(--heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  letter-spacing: 0.06em;
}
.process-num::before {
  content: '';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  display: inline-block;
}
.process-step h3 { font-size: 22px; margin-bottom: 10px; letter-spacing: -0.015em; }
.process-step p { font-size: 14.5px; line-height: 1.7; color: var(--text); }

/* ---------- Why Us ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s ease;
}
.why-card:hover {
  border-color: rgba(56,189,248,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--soft-bg-2), var(--soft-bg));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.why-icon svg { width: 20px; height: 20px; color: var(--brand-blue); }
.why-card h4 { font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; font-weight: 600; }
.why-card p { font-size: 14px; line-height: 1.6; color: var(--text); }

/* ---------- Testimonials preview ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all .3s ease;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.4);
  box-shadow: var(--shadow-md);
}
.t-rating { color: var(--brand-blue); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-strong);
  margin-bottom: 26px;
  font-weight: 400;
}
.t-foot { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 700;
  font-size: 16px;
}
.t-foot strong { display: block; font-size: 14px; color: var(--text-strong); font-weight: 600; }
.t-foot span { font-size: 12.5px; color: var(--grey-500); }

/* ---------- CTA section ---------- */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.cta-section::before, .cta-section::after {
  content: ''; position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-section::before {
  top: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56,189,248,0.30), transparent 60%);
}
.cta-section::after {
  bottom: -200px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(2,132,199,0.30), transparent 60%);
}
.cta-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-content .eyebrow { color: var(--light-blue); }
.cta-content h2 {
  font-size: clamp(38px, 5.5vw, 64px);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.cta-content h2 em { font-style: normal; }
.cta-content h2 .grad-text {
  background: linear-gradient(135deg, var(--sky-blue), var(--light-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-content .btn-blue { box-shadow: 0 18px 50px rgba(56,189,248,0.35); }

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand {
  margin-bottom: 24px;
  display: inline-block;
}
.footer p { font-size: 14px; line-height: 1.7; max-width: 320px; margin-bottom: 24px; }
.footer h5 {
  color: var(--white);
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer ul a {
  font-size: 14px;
  transition: color .2s ease;
}
.footer ul a:hover { color: var(--light-blue); }
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: rgba(255,255,255,0.7);
  transition: all .25s ease;
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  border-color: transparent;
  color: var(--white);
  transform: translateY(-2px);
}
.social-btn svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}
.footer-bottom span { color: rgba(255,255,255,0.5); }

/* ---------- Page header (interior pages) ---------- */
.page-header {
  position: relative;
  text-align: center;
  padding: clamp(80px, 9vw, 130px) 0 clamp(50px, 6vw, 80px);
  background: linear-gradient(180deg, var(--soft-bg) 0%, var(--white) 100%);
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  background: radial-gradient(circle, rgba(56,189,248,0.18), transparent 60%);
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(44px, 6.5vw, 78px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  position: relative;
}
.page-header p {
  color: var(--text);
  max-width: 620px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  position: relative;
}
.crumbs {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 18px;
  font-weight: 600;
  position: relative;
}
.crumbs a:hover { color: var(--ink); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Portfolio grid ---------- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .35s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56,189,248,0.4);
  box-shadow: var(--shadow-lg);
}
.portfolio-thumb {
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
}
.portfolio-thumb::before {
  content: ''; position: absolute; inset: 0;
  z-index: 0;
}
.portfolio-card.p1 .portfolio-thumb::before { background: linear-gradient(135deg, #1e3a8a, #0284c7, #38bdf8); }
.portfolio-card.p2 .portfolio-thumb::before { background: linear-gradient(135deg, #075985, #0284c7); }
.portfolio-card.p3 .portfolio-thumb::before { background: linear-gradient(135deg, #0284c7, #5ac8fa); }
.portfolio-card.p4 .portfolio-thumb::before { background: linear-gradient(135deg, #0a0a0a, #1a1f2e, #075985); }
.portfolio-card.p5 .portfolio-thumb::before { background: linear-gradient(135deg, #38bdf8, #075985); }
.portfolio-card.p6 .portfolio-thumb::before { background: linear-gradient(135deg, #1a1f2e, #0284c7); }

.portfolio-thumb .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 1;
}
.portfolio-thumb .label {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  font-family: var(--heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.portfolio-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,0.92);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  z-index: 2;
}
.portfolio-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.portfolio-body h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -0.015em; }
.portfolio-body .desc { font-size: 14.5px; color: var(--text); margin-bottom: 18px; line-height: 1.6; flex: 1; }
.portfolio-body .metric {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--brand-blue); font-weight: 500;
  padding: 10px 14px;
  background: var(--soft-bg);
  border-radius: 10px;
  margin-bottom: 18px;
}
.portfolio-body .metric svg { width: 14px; height: 14px; }
.portfolio-body .case-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  align-self: flex-start;
}
.portfolio-body .case-btn svg { width: 14px; height: 14px; transition: transform .25s ease; }
.portfolio-body .case-btn:hover svg { transform: translateX(3px); }
.portfolio-body .case-btn.coming { color: var(--grey-500); cursor: default; }

/* ---------- Transformation section ---------- */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.transform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  transition: all .3s ease;
}
.transform-card:hover { border-color: rgba(56,189,248,0.4); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.transform-state {
  text-align: center;
  padding: 18px;
  border-radius: var(--radius);
}
.transform-state.before {
  background: var(--grey-100);
}
.transform-state.after {
  background: linear-gradient(135deg, var(--soft-bg), var(--soft-bg-2));
  border: 1px solid rgba(56,189,248,0.2);
}
.transform-state .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey-500);
  margin-bottom: 6px;
}
.transform-state.after .label { color: var(--brand-blue); }
.transform-state .text {
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.transform-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.transform-arrow svg { width: 18px; height: 18px; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 5vw, 70px);
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-strong);
  margin-bottom: 8px;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--white);
  font-family: inherit;
  font-size: 15px;
  color: var(--text-strong);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--light-blue);
  box-shadow: 0 0 0 4px rgba(56,189,248,0.12);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.form-error {
  min-height: 20px;
  margin-top: 12px;
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.form-help { font-size: 12.5px; color: var(--grey-500); margin-top: 8px; text-align: center; }

.contact-side { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: all .3s ease;
}
.contact-card:hover { border-color: rgba(56,189,248,0.3); transform: translateY(-2px); }
.contact-card .ic {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--soft-bg-2), var(--soft-bg));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.contact-card .ic svg { width: 18px; height: 18px; color: var(--brand-blue); }
.contact-card h4 { font-size: 17px; margin-bottom: 6px; font-weight: 600; }
.contact-card p { font-size: 14px; line-height: 1.6; color: var(--text); }
.contact-card a { color: var(--brand-blue); font-weight: 500; }
.contact-card a:hover { color: var(--deep-blue); }

/* ---------- Booking strip ---------- */
.book-strip {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  position: relative;
  overflow: hidden;
  margin-top: 22px;
}
.book-strip::before {
  content: ''; position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(60px);
  background: radial-gradient(circle, rgba(56,189,248,0.30), transparent 60%);
  top: -120px; right: -100px;
  pointer-events: none;
}
.book-strip-content { position: relative; z-index: 1; }
.book-strip h3 { font-size: 28px; color: var(--white); margin-bottom: 8px; letter-spacing: -0.02em; }
.book-strip p { font-size: 15px; color: rgba(255,255,255,0.7); }
.book-strip .btn { position: relative; z-index: 1; }

/* ---------- Thank-you / booking confirmation ---------- */
.thanks {
  text-align: center;
  padding: clamp(80px, 11vw, 150px) 0 clamp(60px, 7vw, 90px);
  background: linear-gradient(180deg, var(--soft-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.thanks::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.20), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}
.thanks-icon {
  width: 108px; height: 108px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  display: grid;
  place-items: center;
  margin: 0 auto 36px;
  position: relative;
  box-shadow: 0 22px 60px rgba(2,132,199,0.35);
  animation: thankPop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.thanks-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(56,189,248,0.30);
  animation: thankPulse 2.4s ease-in-out infinite;
}
.thanks-icon svg {
  width: 48px; height: 48px;
  color: white;
  stroke-width: 3;
  position: relative;
  z-index: 1;
}
@keyframes thankPop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes thankPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%      { transform: scale(1.18); opacity: 0; }
}
.thanks h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  position: relative;
}
.thanks h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.thanks .container > p {
  font-size: 18px;
  color: var(--text);
  max-width: 760px;
  margin: 0 auto 60px;
  line-height: 1.7;
  position: relative;
}
.thanks-detail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 38px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-strong);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.thanks-detail svg {
  width: 16px; height: 16px;
  color: var(--brand-blue);
  flex-shrink: 0;
}
.thanks-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 26px;
  position: relative;
}

/* Steps timeline */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s ease;
}
.step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(56,189,248,0.4);
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-bg-2), var(--soft-bg));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-blue);
  margin-bottom: 18px;
}
.step-card h3 { font-size: 20px; margin-bottom: 8px; letter-spacing: -0.015em; }
.step-card p { font-size: 14.5px; color: var(--text); line-height: 1.65; }

/* While you wait cards */
.wait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wait-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
}
.wait-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56,189,248,0.4);
  box-shadow: var(--shadow-md);
}
.wait-card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--soft-bg-2), var(--soft-bg));
  border: 1px solid var(--border);
  display: grid; place-items: center;
}
.wait-card .ic svg { width: 22px; height: 22px; color: var(--brand-blue); }
.wait-card h4 { font-size: 19px; letter-spacing: -0.015em; }
.wait-card p { font-size: 14px; color: var(--text); line-height: 1.6; flex: 1; margin: 0; }
.wait-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-top: 2px;
}
.wait-card .arrow svg { width: 14px; height: 14px; transition: transform .25s ease; }
.wait-card:hover .arrow svg { transform: translateX(4px); }

@media (max-width: 980px) {
  .steps-grid, .wait-grid { grid-template-columns: 1fr; }
}

/* ---------- Calendly embed ---------- */
.calendly-wrap {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.calendly-wrap::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(56,189,248,0.40), rgba(2,132,199,0.40), rgba(7,89,133,0.30));
  border-radius: 26px;
  z-index: -1;
  filter: blur(28px);
  opacity: 0.55;
  pointer-events: none;
}
.calendly-inline-widget {
  min-width: 320px;
  width: 100%;
  height: 720px;
  border: 0;
  display: block;
}
.calendly-meta {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  margin-top: 32px;
  font-size: 13px;
  color: var(--grey-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.calendly-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.calendly-meta svg {
  width: 14px; height: 14px;
  color: #16a34a;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .calendly-inline-widget { height: 660px; }
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  cursor: pointer;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--brand-blue); }
.faq-toggle {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-size: 16px;
  color: var(--text-strong);
  transition: all .25s ease;
}
.faq-item.open .faq-toggle {
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  color: var(--white);
  transform: rotate(45deg);
  border-color: transparent;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding-top: 14px;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Services page deep-dive ---------- */
.svc-section {
  position: relative;
  padding: clamp(80px, 9vw, 120px) 0;
  scroll-margin-top: 96px;
}
.svc-section + .svc-section { border-top: 1px solid var(--border); }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  align-items: center;
}
.svc-grid.reverse { direction: rtl; }
.svc-grid.reverse > * { direction: ltr; }
.svc-copy .tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--soft-bg-2);
  color: var(--brand-blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.svc-copy h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
  letter-spacing: -0.025em;
}
.svc-copy > p {
  color: var(--text);
  font-size: 17px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.svc-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 22px;
  margin-bottom: 36px;
}
.svc-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.svc-feature .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--soft-bg-2), var(--soft-bg));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.svc-feature .ic svg { width: 14px; height: 14px; color: var(--brand-blue); }
.svc-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 2px;
  letter-spacing: -0.005em;
}
.svc-feature span {
  font-size: 12.5px;
  color: var(--grey-500);
  line-height: 1.5;
}

/* Service visual mockups */
.svc-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
}
.svc-grid.reverse .svc-visual { margin-left: 0; margin-right: auto; }
.svc-visual::before {
  content: '';
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 50%, rgba(56,189,248,0.20), transparent 60%);
  filter: blur(50px);
  z-index: -1;
}
.svc-mock {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(15,23,42,0.10);
  padding: 22px;
}
.svc-mock-1 {
  top: 6%; left: 0;
  width: 78%;
  z-index: 2;
}
.svc-mock-2 {
  bottom: 4%; right: 0;
  width: 64%;
  z-index: 3;
}

.mock-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--soft-bg);
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--text-strong);
  font-weight: 500;
}
.mock-row:last-child { margin-bottom: 0; }
.mock-row .ic-sm {
  width: 24px; height: 24px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  display: grid; place-items: center;
  flex-shrink: 0;
}
.mock-row .ic-sm svg { width: 12px; height: 12px; color: white; }
.mock-row .ic-sm.alt {
  background: var(--white);
  border: 1px solid var(--border);
}
.mock-row .ic-sm.alt svg { color: var(--brand-blue); }
.mock-row .meta {
  margin-left: auto;
  font-size: 10.5px;
  color: var(--grey-500);
  font-weight: 500;
}
.mock-row .check {
  margin-left: auto;
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
}

.mock-page {
  border-radius: 12px;
  background: var(--soft-bg);
  padding: 14px;
  margin-bottom: 14px;
}
.mock-page-bar {
  height: 6px;
  background: linear-gradient(90deg, var(--light-blue), var(--brand-blue));
  border-radius: 3px;
  margin-bottom: 10px;
  width: 60%;
}
.mock-page-line {
  height: 4px;
  background: var(--border-strong);
  border-radius: 2px;
  margin-bottom: 6px;
}
.mock-page-line:nth-child(2) { width: 95%; }
.mock-page-line:nth-child(3) { width: 80%; }
.mock-page-line:nth-child(4) { width: 88%; }
.mock-cta {
  background: var(--ink);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: inline-block;
  margin-top: 6px;
}

.svc-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Services page — premium section revamp
   ============================================================ */

/* Tag pill dot indicator */
.svc-copy .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(56,189,248,0.22);
}
.svc-copy .tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  box-shadow: 0 0 6px rgba(56,189,248,0.6);
  flex-shrink: 0;
  animation: tagDotPulse 2.4s ease-in-out infinite;
}
@keyframes tagDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.55; transform: scale(0.85); }
}

/* Feature card tiles */
.svc-feature {
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition:
    border-color .25s ease,
    transform .25s cubic-bezier(.2,.8,.2,1),
    box-shadow .25s ease;
  cursor: default;
}
.svc-feature:hover {
  border-color: rgba(56,189,248,0.40);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(2,132,199,0.10);
}
.svc-feature .ic {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(2,132,199,0.06));
  border: 1px solid rgba(56,189,248,0.18);
}
.svc-feature .ic svg { width: 15px; height: 15px; }
.svc-feature strong { font-size: 13.5px; }
.svc-feature span { font-size: 12px; }

/* ---- Service panel (glassmorphism card) ---- */
.svc-panel {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.90);
  border-radius: 22px;
  box-shadow:
    0 20px 60px rgba(2,132,199,0.10),
    0 4px 20px rgba(15,23,42,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  padding: 24px;
  position: absolute;
  top: 5%; left: 0;
  width: 80%;
  z-index: 2;
}

/* Panel header */
.svc-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.svc-ph-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(56,189,248,0.14), rgba(2,132,199,0.08));
  border: 1px solid rgba(56,189,248,0.20);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.svc-ph-icon svg { width: 18px; height: 18px; color: var(--brand-blue); }
.svc-ph-text { flex: 1; min-width: 0; }
.svc-ph-text strong {
  display: block;
  font-family: var(--heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.svc-ph-text span { font-size: 11px; color: var(--grey-500); }

/* ---- Pipeline ---- */
.svc-pipeline { display: flex; flex-direction: column; }

.svc-pipe-step { display: flex; gap: 10px; }

.pipe-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22px;
  flex-shrink: 0;
  padding-top: 11px;
}
.pipe-node {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pipe-node--done {
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  box-shadow: 0 0 0 3px rgba(56,189,248,0.18);
}
.pipe-node--done svg { width: 10px; height: 10px; color: white; }
.pipe-node--active {
  background: rgba(56,189,248,0.10);
  border: 2px solid rgba(56,189,248,0.60);
}
.pipe-pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  animation: pipePulse 1.8s ease-in-out infinite;
}
@keyframes pipePulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.6; }
}
.pipe-line {
  width: 2px;
  flex: 1;
  min-height: 10px;
  background: linear-gradient(180deg, rgba(56,189,248,0.35), rgba(56,189,248,0.08));
  border-radius: 1px;
  margin: 3px 0;
}
.svc-pipe-step--active .pipe-line {
  background: linear-gradient(180deg, rgba(56,189,248,0.55), rgba(56,189,248,0.12));
}
.svc-pipe-step--last .pipe-line { display: none; }

.pipe-body {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--soft-bg);
  margin-bottom: 8px;
  flex: 1;
  min-width: 0;
  transition: background .25s ease, border-color .25s ease;
  border: 1px solid transparent;
}
.svc-pipe-step--active .pipe-body {
  background: rgba(56,189,248,0.06);
  border-color: rgba(56,189,248,0.18);
}
.svc-pipe-step--last .pipe-body { margin-bottom: 0; }

.pipe-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pipe-icon svg { width: 13px; height: 13px; color: white; }
.pipe-icon--alt {
  background: var(--white);
  border: 1px solid var(--border);
}
.pipe-icon--alt svg { color: var(--brand-blue); }
.pipe-icon--ai {
  background: linear-gradient(135deg, rgba(56,189,248,0.16), rgba(2,132,199,0.08));
  border: 1px solid rgba(56,189,248,0.25);
}
.pipe-icon--ai svg { color: var(--brand-blue); width: 14px; height: 14px; }

.pipe-label {
  flex: 1;
  font-size: 12.5px;
  color: var(--text-strong);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.svc-pipe-step--active .pipe-label { color: var(--brand-blue); font-weight: 600; }

.pipe-meta {
  margin-left: auto;
  font-size: 11px;
  color: var(--grey-500);
  font-weight: 500;
  flex-shrink: 0;
}
.pipe-meta--live {
  color: var(--brand-blue);
  background: rgba(56,189,248,0.12);
  padding: 2px 8px;
  border-radius: 999px;
  font-weight: 600;
  animation: liveBlip 2s ease-in-out infinite;
}
@keyframes liveBlip {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}
.pipe-check {
  margin-left: auto;
  color: #16a34a;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Floating stat card ---- */
.svc-float-card {
  position: absolute;
  bottom: 2%; right: 0;
  width: 58%;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 18px;
  box-shadow:
    0 16px 50px rgba(2,132,199,0.12),
    0 4px 16px rgba(15,23,42,0.07),
    inset 0 1px 0 rgba(255,255,255,0.9);
  padding: 16px 18px;
  z-index: 3;
  animation: floatCard 6s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}
.svc-float-card--web {
  bottom: 5%; right: 0;
  width: 54%;
  text-align: center;
  animation-delay: 1.2s;
}
.svc-float-head {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 11px;
  color: var(--grey-500);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.svc-float-period { letter-spacing: 0.02em; }
.svc-float-nums {
  display: flex;
  align-items: center;
  gap: 14px;
}
.svc-float-num-wrap { flex: 1; }
.svc-float-val {
  font-family: var(--heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.03em;
  line-height: 1;
}
.svc-float-val em {
  font-style: normal;
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.svc-float-val--lg {
  font-size: 32px;
  display: block;
  margin-bottom: 4px;
}
.svc-float-lbl {
  font-size: 11px;
  color: var(--grey-500);
  margin-top: 3px;
  font-weight: 500;
}
.svc-float-divider {
  width: 1px;
  height: 34px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- Browser chrome panel ---- */
.svc-browser-panel {
  top: 3%; left: 0;
  width: 86%;
  padding: 0;
  overflow: hidden;
}
.svc-browser-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  background: rgba(247,251,255,0.98);
  border-bottom: 1px solid var(--border);
}
.svc-browser-dots { display: flex; gap: 5px; flex-shrink: 0; }
.bw-dot { width: 10px; height: 10px; border-radius: 50%; }
.bw-dot--red   { background: #ff5f57; }
.bw-dot--amber { background: #febc2e; }
.bw-dot--green { background: #28c840; }
.svc-browser-url {
  flex: 1;
  font-size: 11px;
  color: var(--grey-500);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  text-align: center;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.svc-browser-body { padding: 14px 16px 12px; }

/* Simulated nav */
.sbp-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.sbp-logo {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  flex-shrink: 0;
}
.sbp-nav-links { display: flex; gap: 8px; flex: 1; }
.sbp-nav-links span {
  height: 6px;
  border-radius: 3px;
  background: var(--border-strong);
  opacity: 0.7;
}
.sbp-nav-links span:nth-child(1) { width: 28px; }
.sbp-nav-links span:nth-child(2) { width: 34px; }
.sbp-nav-links span:nth-child(3) { width: 26px; }
.sbp-nav-btn {
  width: 56px; height: 20px;
  border-radius: 999px;
  background: var(--ink);
  flex-shrink: 0;
}

/* Simulated hero */
.sbp-hero { margin-bottom: 14px; }
.sbp-h1 {
  height: 12px; width: 78%; border-radius: 4px;
  background: var(--text-strong); opacity: 0.85; margin-bottom: 7px;
}
.sbp-h2 {
  height: 12px; width: 62%; border-radius: 4px;
  background: var(--text-strong); opacity: 0.85; margin-bottom: 10px;
}
.sbp-sub {
  height: 7px; width: 90%; border-radius: 3px;
  background: var(--border-strong); margin-bottom: 12px;
}
.sbp-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

/* Simulated cards */
.sbp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.sbp-card {
  padding: 9px 10px;
  border-radius: 9px;
  background: var(--soft-bg);
  border: 1px solid var(--border);
}
.sbp-card-line {
  height: 6px; border-radius: 3px;
  background: var(--border-strong);
  margin-bottom: 5px;
}
.sbp-card-line--sm { width: 70%; margin-bottom: 0; }

/* Browser footer */
.svc-browser-footer {
  padding: 9px 16px;
  border-top: 1px solid var(--border);
  background: rgba(247,251,255,0.98);
  display: flex;
  gap: 14px;
}
.svc-bcheck {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--brand-blue);
  font-weight: 600;
}
.svc-bcheck svg {
  width: 12px; height: 12px;
  color: #16a34a;
  flex-shrink: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .svc-float-card { animation: none !important; }
  .pipe-pulse      { animation: none !important; }
  .pipe-meta--live { animation: none !important; }
  .svc-copy .tag::before { animation: none !important; }
}

/* ============================================================
   Service sections v2 — Apple-inspired centred layout
   ============================================================ */

/* Section shell */
.svc2-section {
  position: relative;
  padding: clamp(80px, 9vw, 130px) 0;
  scroll-margin-top: 96px;
  overflow: hidden;
}
.svc2-section + .svc2-section {
  border-top: 1px solid var(--border);
}
.svc2-section .container { position: relative; z-index: 1; }

/* Dot-grid overlay */
.svc2-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(2,132,199,0.065) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 0%, transparent 65%);
  z-index: 0;
}
/* Ambient glow centre */
.svc2-section::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 560px;
  background: radial-gradient(circle, rgba(56,189,248,0.07), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* ── Centred headline ──────────────────────────────────── */
.svc2-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(52px, 6.5vw, 84px);
}
.svc2-head h2 {
  font-size: clamp(38px, 5.6vw, 68px);
  letter-spacing: -0.032em;
  line-height: 1.04;
  margin-bottom: 18px;
}
.svc2-head > p {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text);
  line-height: 1.72;
  max-width: 640px;
  margin: 0 auto;
}

/* ── Showcase wrapper ──────────────────────────────────── */
.svc2-showcase {
  max-width: 740px;
  margin: 0 auto clamp(52px, 6vw, 80px);
}

/* ── AI Automation: Live Event Feed Card ───────────────── */
.aif-card {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(32px) saturate(160%);
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.92);
  border-radius: 28px;
  box-shadow:
    0 32px 80px rgba(2,132,199,0.14),
    0 8px 28px rgba(15,23,42,0.07),
    inset 0 1px 0 rgba(255,255,255,1);
  overflow: hidden;
  position: relative;
}
/* Top gradient accent line */
.aif-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(56,189,248,0.80) 20%,
    rgba(2,132,199,0.90) 50%,
    rgba(56,189,248,0.80) 80%,
    transparent 100%);
  border-radius: 28px 28px 0 0;
  z-index: 4;
}
/* Shimmer sweep */
.aif-card::after {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.44) 50%, transparent);
  transform: skewX(-18deg);
  animation: aifShimmer 11s ease-in-out 4s infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes aifShimmer {
  0%        { left: -110%; opacity: 0; }
  4%        { opacity: 1; }
  42%, 100% { left: 160%;  opacity: 0; }
}

/* Header */
.aif-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 26px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 3;
}
.aif-hicon {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(56,189,248,0.14), rgba(2,132,199,0.08));
  border: 1px solid rgba(56,189,248,0.22);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.aif-hicon svg { width: 20px; height: 20px; color: var(--brand-blue); }
.aif-htitle { flex: 1; min-width: 0; }
.aif-htitle strong {
  display: block;
  font-family: var(--heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
.aif-htitle span { font-size: 12px; color: var(--grey-500); }

/* Event feed */
.aif-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 3;
}
.aif-event {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--soft-bg);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(22px);
  transition:
    opacity .5s ease,
    transform .5s cubic-bezier(.2,.8,.2,1),
    background .25s ease,
    border-color .25s ease;
  transition-delay: var(--ai-delay, 0s);
}
.svc2-showcase.visible .aif-event {
  opacity: 1;
  transform: translateX(0);
}
.aif-event--active {
  background: rgba(56,189,248,0.07);
  border-color: rgba(56,189,248,0.22);
}
/* Event icons */
.aif-ev-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.aif-ev-icon svg { width: 15px; height: 15px; color: var(--brand-blue); }
.aif-ev-icon--ai {
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  border-color: transparent;
}
.aif-ev-icon--ai svg { color: var(--white); }
/* Event text */
.aif-ev-body { flex: 1; min-width: 0; }
.aif-ev-body strong {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-strong);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.aif-ev-body span {
  display: block;
  font-size: 11.5px;
  color: var(--grey-500);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* Status chips */
.aif-ev-chip {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 999px;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}
.aif-ev-chip--done {
  background: rgba(22,163,74,0.09);
  color: #16a34a;
  border: 1px solid rgba(22,163,74,0.20);
}
.aif-ev-chip--active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,189,248,0.12);
  color: var(--brand-blue);
  border: 1px solid rgba(56,189,248,0.26);
  animation: liveBlip 2s ease-in-out infinite;
}
.aif-ev-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-blue);
  animation: pipePulse 1.8s ease-in-out infinite;
}

/* Footer metrics */
.aif-footer {
  display: flex;
  align-items: center;
  padding: 22px 30px;
  border-top: 1px solid var(--border);
  background: rgba(247,251,255,0.92);
  position: relative;
  z-index: 3;
}
.aif-metric {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.aif-m-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1px;
}
.aif-m-val {
  font-family: var(--heading);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}
.aif-m-sym {
  font-family: var(--heading);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.aif-m-lbl {
  font-size: 10.5px;
  color: var(--grey-500);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.aif-mdivider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Web Design: 3-Card Site Preview ───────────────────── */
.web-preview-grid {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}
.web-preview-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 24px 60px rgba(15,23,42,0.18),
    0 6px 20px rgba(15,23,42,0.10);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    box-shadow .45s ease;
  cursor: default;
  width: 200px;
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  flex-shrink: 0;
  position: relative;
}
.svc2-showcase.visible .web-preview-card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-duration: .6s;
  transition-delay: var(--wpc-delay, 0s);
}
.web-preview-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 36px 80px rgba(2,132,199,0.22),
    0 10px 28px rgba(15,23,42,0.12);
}
/* Featured centre card */
.web-preview-card--featured {
  width: 252px;
  z-index: 2;
}
/* Screen area */
.wpc-screen {
  position: relative;
  height: 268px;
  overflow: hidden;
}
.web-preview-card--featured .wpc-screen { height: 348px; }

/* Screen backgrounds */
.wpc-screen--blue {
  background: linear-gradient(160deg, #1e3a8a 0%, #0369a1 55%, #0284c7 100%);
}
.wpc-screen--dark {
  background: linear-gradient(160deg, #050505 0%, #0f172a 40%, #1a1f2e 75%, #075985 100%);
}
.wpc-screen--soft {
  background: linear-gradient(160deg, #edf6ff 0%, #dbeafe 50%, #bfdbfe 100%);
}
/* Grid lines overlay */
.wpc-screen::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  z-index: 0;
  pointer-events: none;
}
/* Soft card grid lines are darker */
.wpc-screen--soft::before {
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
}
/* Simulated nav */
.wpc-nav {
  position: relative; z-index: 1;
  display: flex; align-items: center;
  gap: 5px; padding: 9px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.wpc-screen--soft .wpc-nav { border-bottom-color: rgba(15,23,42,0.06); }
.wpc-dots { display: flex; gap: 4px; }
.wpc-dots span { width: 6px; height: 6px; border-radius: 50%; }
.wpc-dots span:nth-child(1) { background: #ff5f57; }
.wpc-dots span:nth-child(2) { background: #febc2e; }
.wpc-dots span:nth-child(3) { background: #28c840; }
/* Website content */
.wpc-body { padding: 14px 13px; position: relative; z-index: 1; }
.wpc-ln { border-radius: 3px; margin-bottom: 7px; }
.wpc-ln--h1 { height: 9px; width: 75%; background: rgba(255,255,255,0.82); }
.wpc-ln--h2 { height: 9px; width: 58%; background: rgba(255,255,255,0.72); }
.wpc-ln--p  { height: 5px; width: 88%; background: rgba(255,255,255,0.32); margin-bottom: 12px; }
.wpc-screen--soft .wpc-ln--h1 { background: rgba(15,23,42,0.75); }
.wpc-screen--soft .wpc-ln--h2 { background: rgba(15,23,42,0.65); }
.wpc-screen--soft .wpc-ln--p  { background: rgba(15,23,42,0.22); }
.wpc-cta-mock {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.07em; margin-bottom: 14px;
}
.wpc-screen--blue .wpc-cta-mock,
.wpc-screen--dark .wpc-cta-mock { background: rgba(255,255,255,0.92); color: #050505; }
.wpc-screen--soft .wpc-cta-mock { background: #0f172a; color: #fff; }
.wpc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.wpc-tile { border-radius: 6px; height: 38px; }
.wpc-screen--blue .wpc-tile { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.10); }
.wpc-screen--dark .wpc-tile { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.07); }
.wpc-screen--soft .wpc-tile { background: rgba(15,23,42,0.07); border: 1px solid rgba(15,23,42,0.08); }
/* Shine on featured card */
.web-preview-card--featured .wpc-screen::after {
  content: '';
  position: absolute; top: 0; left: -120%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12) 50%, transparent);
  transform: skewX(-18deg);
  animation: wpcShine 9s ease-in-out 3s infinite;
  z-index: 2;
  pointer-events: none;
}
@keyframes wpcShine {
  0%, 100% { left: -120%; opacity: 0; }
  4%        { opacity: 1; }
  50%       { left: 160%; opacity: 0; }
}
/* Card label */
.wpc-label {
  padding: 11px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-align: center;
  background: var(--white);
  color: var(--text-strong);
  border-top: 1px solid var(--border);
}
/* ══════════════════════════════════════════════════════
   WEB PREVIEW CARDS — Real Site Mockups
   ══════════════════════════════════════════════════════ */

/* ── Service Business card ─────────────────────────────── */
.wpc-sb-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  position: relative; z-index: 1;
}
.wpc-sb-logo {
  width: 32px; height: 5px; border-radius: 2px;
  background: rgba(255,255,255,0.88);
  flex-shrink: 0;
}
.wpc-sb-links { display: flex; gap: 5px; }
.wpc-sb-links span {
  display: block; width: 12px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.38);
}
.wpc-sb-call {
  font-size: 5.5px; font-weight: 700; letter-spacing: 0.02em;
  background: rgba(255,255,255,0.16); color: rgba(255,255,255,0.90);
  padding: 3px 7px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.24);
  white-space: nowrap;
}
.wpc-sb-hero {
  padding: 12px 11px 8px;
  position: relative; z-index: 1;
}
.wpc-sb-h1 {
  font-family: var(--heading); font-weight: 700;
  font-size: 9px; line-height: 1.35; color: #fff;
  margin-bottom: 6px;
}
.wpc-sb-sub {
  font-size: 5.5px; color: rgba(255,255,255,0.62); line-height: 1.6;
  margin-bottom: 9px;
}
.wpc-sb-cta {
  display: inline-block;
  font-size: 6px; font-weight: 700; letter-spacing: 0.02em;
  background: rgba(255,255,255,0.96); color: #1e3a8a;
  padding: 4.5px 11px; border-radius: 99px; margin-bottom: 8px;
}
.wpc-sb-stars {
  display: flex; align-items: center; gap: 4px;
}
.wpc-sb-stars em { font-style: normal; font-size: 7.5px; color: #febc2e; letter-spacing: 0.5px; }
.wpc-sb-stars span { font-size: 5px; color: rgba(255,255,255,0.55); }
.wpc-sb-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px;
  padding: 0 10px 10px; position: relative; z-index: 1;
}
.wpc-sb-card {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.14);
  border-radius: 7px; padding: 7px 5px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 5px;
}
.wpc-sb-cic {
  width: 14px; height: 14px; border-radius: 4px;
  background: rgba(255,255,255,0.26);
}
.wpc-sb-clbl {
  font-size: 5px; font-weight: 700; color: rgba(255,255,255,0.80); text-align: center;
}

/* ── Landing Page card ─────────────────────────────────── */
.wpc-lp-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative; z-index: 1;
}
.wpc-lp-logo {
  width: 36px; height: 5px; border-radius: 2px;
  background: rgba(255,255,255,0.78);
}
.wpc-lp-bookbtn {
  font-size: 5.5px; font-weight: 700; letter-spacing: 0.02em;
  background: #0284c7; color: #fff;
  padding: 3.5px 9px; border-radius: 20px;
  white-space: nowrap;
}
.wpc-lp-hero {
  padding: 14px 14px 10px;
  text-align: center;
  position: relative; z-index: 1;
}
.wpc-lp-badge {
  display: inline-block;
  font-size: 5px; font-weight: 600; letter-spacing: 0.05em;
  background: rgba(56,189,248,0.18); color: rgba(56,189,248,0.90);
  border: 1px solid rgba(56,189,248,0.24);
  padding: 2.5px 8px; border-radius: 99px; margin-bottom: 9px;
}
.wpc-lp-h1 {
  font-family: var(--heading); font-weight: 700;
  font-size: 11px; line-height: 1.25; color: #fff;
  margin-bottom: 8px;
}
.wpc-lp-sub {
  font-size: 5.5px; color: rgba(255,255,255,0.50); line-height: 1.7;
  margin-bottom: 12px;
}
.wpc-lp-cta {
  display: inline-block;
  font-size: 6.5px; font-weight: 700; letter-spacing: 0.02em;
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #fff; padding: 6px 16px; border-radius: 99px;
  box-shadow: 0 4px 16px rgba(2,132,199,0.50);
}
.wpc-lp-trust {
  padding: 10px 14px 0; position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 10px;
}
.wpc-lp-trustlbl {
  font-size: 5px; color: rgba(255,255,255,0.32); font-weight: 500;
  text-align: center; margin-bottom: 7px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.wpc-lp-logos {
  display: flex; gap: 6px; justify-content: center; align-items: center;
}
.wpc-lp-logos div { height: 5px; border-radius: 2px; background: rgba(255,255,255,0.18); }
.wpc-lp-logos div:nth-child(1) { width: 28px; }
.wpc-lp-logos div:nth-child(2) { width: 22px; }
.wpc-lp-logos div:nth-child(3) { width: 26px; }
.wpc-lp-logos div:nth-child(4) { width: 18px; }
.wpc-lp-features {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 5px; padding: 10px 10px 0; position: relative; z-index: 1;
  margin-top: 10px;
}
.wpc-lp-features div {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px; padding: 6px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 5px; color: rgba(255,255,255,0.60);
}
.wpc-lp-features div span { font-size: 7px; color: #38bdf8; line-height: 1; }

/* ── Portfolio card ────────────────────────────────────── */
.wpc-pf-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(15,23,42,0.07);
  position: relative; z-index: 1;
}
.wpc-pf-name {
  font-size: 6.5px; font-weight: 700; font-family: var(--heading);
  color: rgba(15,23,42,0.80); letter-spacing: 0.02em;
}
.wpc-pf-links { display: flex; gap: 7px; }
.wpc-pf-links span { font-size: 5px; color: rgba(15,23,42,0.45); }
.wpc-pf-hero {
  padding: 11px 10px 9px;
  position: relative; z-index: 1;
}
.wpc-pf-tag {
  display: inline-block;
  font-size: 5px; font-weight: 600; letter-spacing: 0.04em;
  background: rgba(2,132,199,0.10); color: rgba(2,132,199,0.85);
  border: 1px solid rgba(2,132,199,0.18);
  padding: 2px 7px; border-radius: 99px; margin-bottom: 7px;
}
.wpc-pf-h1 {
  font-family: var(--heading); font-weight: 700;
  font-size: 9px; line-height: 1.3; color: rgba(15,23,42,0.88);
  margin-bottom: 9px;
}
.wpc-pf-cta {
  display: inline-block;
  font-size: 6px; font-weight: 700; letter-spacing: 0.02em;
  background: rgba(15,23,42,0.88); color: #fff;
  padding: 4.5px 11px; border-radius: 99px;
}
.wpc-pf-grid {
  display: grid; grid-template-columns: 7fr 5fr;
  gap: 5px; padding: 8px 9px 0;
  position: relative; z-index: 1;
}
.wpc-pf-thumb { border-radius: 7px; overflow: hidden; }
.wpc-pf-thumbcol { display: flex; flex-direction: column; gap: 5px; }
.wpc-pf-thumbcol .wpc-pf-thumb { flex: 1; }
.wpc-pf-thumb--1 {
  height: 72px;
  background: linear-gradient(135deg, #1e3a8a 0%, #0284c7 55%, #38bdf8 100%);
}
.wpc-pf-thumb--2 {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}
.wpc-pf-thumb--3 {
  background: linear-gradient(135deg, #0369a1 0%, #0ea5e9 100%);
}

/* ── Service Business card extras ─────────────────────────── */
.wpc-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}
.wpc-stars span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #febc2e;
  box-shadow: 0 0 4px rgba(254,188,46,0.55);
}
.wpc-svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
.wpc-svc-tile {
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 7px;
  padding: 8px 8px 9px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.wpc-svc-ic {
  width: 14px; height: 14px;
  border-radius: 4px;
  background: rgba(255,255,255,0.32);
}
.wpc-svc-lns { display: flex; flex-direction: column; gap: 3px; }
.wpc-svc-lns div { height: 4px; border-radius: 2px; background: rgba(255,255,255,0.45); }
.wpc-svc-lns div:last-child { width: 65%; background: rgba(255,255,255,0.25); }

/* ── Portfolio card gallery layout ──────────────────────── */
.wpc-nav--minimal {
  justify-content: center;
}
.wpc-nav-logo {
  height: 5px;
  width: 42%;
  border-radius: 3px;
  background: rgba(15,23,42,0.45);
}
.wpc-portfolio-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
.wpc-hero-img {
  height: 148px;
  background: linear-gradient(150deg, rgba(15,23,42,0.11) 0%, rgba(56,189,248,0.09) 55%, rgba(2,132,199,0.07) 100%);
  border-bottom: 1px solid rgba(15,23,42,0.07);
  position: relative;
  overflow: hidden;
}
/* Two faint text-line mocks overlaid on hero image */
.wpc-hero-img::before {
  content: '';
  position: absolute;
  bottom: 22px; left: 12px;
  width: 62%; height: 7px;
  border-radius: 3px;
  background: rgba(15,23,42,0.32);
}
.wpc-hero-img::after {
  content: '';
  position: absolute;
  bottom: 10px; left: 12px;
  width: 44%; height: 5px;
  border-radius: 3px;
  background: rgba(15,23,42,0.18);
}
.wpc-gallery-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  padding: 8px 10px;
}
.wpc-gal-tile {
  height: 36px;
  border-radius: 6px;
  background: rgba(15,23,42,0.08);
  border: 1px solid rgba(15,23,42,0.07);
}

/* Metrics strip */
.web-metrics-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(15,23,42,0.06);
  max-width: 620px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease .42s, transform .5s cubic-bezier(.2,.8,.2,1) .42s;
}
.svc2-showcase.visible .web-metrics-strip {
  opacity: 1;
  transform: translateY(0);
}
.web-ms-item {
  flex: 1;
  padding: clamp(14px, 1.8vw, 22px) 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.web-ms-val {
  font-family: var(--heading);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.web-ms-val em {
  font-style: normal;
  background: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.web-ms-lbl {
  font-size: 10.5px;
  color: var(--grey-500);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.web-ms-divider {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Feature Bento Grid ──────────────────────────────────── */
.svc2-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: clamp(44px, 5vw, 68px);
}
.svc2-feat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition:
    border-color .3s ease,
    transform .4s cubic-bezier(.2,.8,.2,1),
    box-shadow .4s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(24px);
}
/* Reveal stagger */
.svc2-bento.visible .svc2-feat {
  opacity: 1;
  transform: translateY(0);
  transition-duration: .55s;
}
.svc2-bento .svc2-feat:nth-child(1) { transition-delay: .06s; }
.svc2-bento .svc2-feat:nth-child(2) { transition-delay: .14s; }
.svc2-bento .svc2-feat:nth-child(3) { transition-delay: .22s; }
.svc2-bento .svc2-feat:nth-child(4) { transition-delay: .30s; }
/* Zero-out delay on hover so interaction is instant */
.svc2-bento .svc2-feat:hover { transition-delay: 0s !important; }

/* ── Hover Group A: top-edge blue glow (::before — all cards) */
.svc2-feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(56,189,248,0.80) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 2px 2px 0 0;
}

/* ── Hover Group B: left-edge blue accent (::after) for right-column cards (3,5,7) */
.svc2-feat:nth-child(odd):not(.svc2-feat--wide)::after {
  content: '';
  position: absolute;
  left: 0; top: 14%; bottom: 14%; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(56,189,248,0.80) 50%, transparent);
  opacity: 0;
  transition: opacity .3s ease;
  border-radius: 0 2px 2px 0;
}

/* ── Left column (2,4,6): lift up + top edge glow */
.svc2-feat:nth-child(even):not(.svc2-feat--wide):hover {
  border-color: rgba(56,189,248,0.38);
  transform: translateY(-7px);
  box-shadow: 0 22px 54px rgba(2,132,199,0.15), 0 4px 16px rgba(15,23,42,0.06);
}
.svc2-feat:nth-child(even):not(.svc2-feat--wide):hover::before { opacity: 1; }
.svc2-feat:nth-child(even):not(.svc2-feat--wide):hover .svc2-feat-ic {
  transform: scale(1.10) rotate(-5deg);
  background: linear-gradient(135deg, rgba(56,189,248,0.20), rgba(2,132,199,0.12));
}

/* ── Right column (3,5,7): scale outward + left edge accent */
.svc2-feat:nth-child(odd):not(.svc2-feat--wide):hover {
  border-color: rgba(56,189,248,0.28);
  transform: translateY(-3px) scale(1.016);
  box-shadow: 0 14px 42px rgba(2,132,199,0.11), 0 3px 14px rgba(15,23,42,0.05);
}
.svc2-feat:nth-child(odd):not(.svc2-feat--wide):hover::before { opacity: 0; }
.svc2-feat:nth-child(odd):not(.svc2-feat--wide):hover::after  { opacity: 1; }
.svc2-feat:nth-child(odd):not(.svc2-feat--wide):hover .svc2-feat-ic {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(56,189,248,0.18), rgba(2,132,199,0.10));
}

/* ── Wide cards (1,8): gentle lift + background tint, no edge glow */
.svc2-feat--wide:hover {
  border-color: rgba(2,132,199,0.26);
  transform: translateY(-4px);
  background: rgba(245,251,255,0.90);
  box-shadow: 0 28px 70px rgba(2,132,199,0.12), 0 6px 20px rgba(15,23,42,0.05);
}
.svc2-feat--wide:hover::before { opacity: 0; }
.svc2-feat--wide:hover .svc2-feat-ic {
  transform: scale(1.13);
  background: linear-gradient(135deg, rgba(56,189,248,0.22), rgba(2,132,199,0.14));
}
/* Wide variant — full-row, horizontal layout */
.svc2-feat--wide {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
}
.svc2-feat--wide .svc2-feat-ic { flex-shrink: 0; margin-top: 2px; }
/* Icon */
.svc2-feat-ic {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(2,132,199,0.06));
  border: 1px solid rgba(56,189,248,0.18);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .3s ease, background .3s ease;
}
.svc2-feat-ic svg { width: 21px; height: 21px; color: var(--brand-blue); }
/* Text content */
.svc2-feat-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.svc2-feat-text strong {
  display: block;
  font-family: var(--heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-strong);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.svc2-feat-text span {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.65;
}
.svc2-feat--wide .svc2-feat-text strong { font-size: 18px; }
.svc2-feat--wide .svc2-feat-text span   { font-size: 14px; }

/* ── CTA row ─────────────────────────────────────────────── */
.svc2-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Responsive overrides ──────────────────────────────── */
@media (max-width: 980px) {
  .web-preview-grid { gap: 10px; }
  .web-preview-card { width: 170px; }
  .web-preview-card--featured { width: 215px; }
  .wpc-screen { height: 230px; }
  .web-preview-card--featured .wpc-screen { height: 296px; }
  .wpc-hero-img { height: 122px; }
  .wpc-pf-thumb--1 { height: 58px; }
  .wpc-lp-h1 { font-size: 9.5px; }
}
@media (max-width: 720px) {
  .svc2-head h2 { font-size: clamp(34px, 10.5vw, 44px); }
  .svc2-showcase { max-width: 100%; }
  /* AI feed — hide subtitles to save space */
  .aif-ev-body span { display: none; }
  .aif-ev-body strong { font-size: 12.5px; white-space: normal; }
  .aif-event { padding: 10px 12px; gap: 10px; }
  .aif-header { padding: 15px 18px 13px; }
  .aif-body { padding: 12px 14px; gap: 8px; }
  .aif-footer { padding: 12px 10px; align-items: center; }
  .aif-metric { align-items: center; }
  .aif-m-row { height: 24px; }
  .aif-m-val { font-size: 20px; }
  .aif-m-sym { font-size: 14px; line-height: 1; }
  .aif-m-lbl { font-size: 7.5px; letter-spacing: 0.03em; white-space: nowrap; }
  .aif-mdivider { height: 28px; }
  /* AI feed — hide events 3 & 4 on mobile, keep 1, 2 and the live active event */
  .aif-body .aif-event:nth-child(3),
  .aif-body .aif-event:nth-child(4) { display: none; }
  /* Web previews — stack */
  .web-preview-grid { flex-wrap: wrap; gap: 8px; }
  .web-preview-card { width: calc(50% - 8px); }
  .web-preview-card--featured { width: 100%; order: -1; }
  .web-preview-card--featured .wpc-screen { height: 228px; }
  .wpc-screen { height: 180px; }
  .wpc-hero-img { height: 95px; }
  .wpc-gallery-row { padding: 6px 8px; gap: 4px; }
  .wpc-gal-tile { height: 28px; }
  /* Portfolio card — smaller thumbnails to fit in taller screen */
  .wpc-pf-thumb--1 { height: 34px; }
  .wpc-pf-grid { padding: 4px 8px 0; gap: 3px; }
  .wpc-pf-hero { padding: 8px 10px 6px; }
  .wpc-pf-h1 { font-size: 8px; margin-bottom: 7px; }
  .wpc-pf-tag { margin-bottom: 5px; }
  /* Taller non-featured card screen to fit nav + hero + thumbnails */
  .web-preview-card:not(.web-preview-card--featured) .wpc-screen { height: 210px; }
  .wpc-lp-hero { padding: 10px 12px 8px; }
  .wpc-lp-h1 { font-size: 8.5px; }
  .wpc-lp-features { display: none; } /* save space on tiny mobile stacked cards */
  .web-metrics-strip { max-width: 100%; }
  .web-ms-item { padding: 12px 6px; }
  .web-ms-val { font-size: clamp(20px, 5.5vw, 26px); }
  .web-ms-lbl { font-size: 7.5px; letter-spacing: 0.02em; }
  .web-ms-divider { height: 32px; }
  /* Bento */
  .svc2-bento { grid-template-columns: 1fr; gap: 12px; }
  .svc2-feat--wide {
    grid-column: span 1;
    flex-direction: column;
    gap: 12px;
    padding: 22px;
  }
  .svc2-feat--wide .svc2-feat-ic { margin-top: 0; }
  .svc2-cta { flex-direction: column; align-items: center; }
  .svc2-cta .btn { width: 100%; max-width: 340px; min-height: 52px; }
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .aif-card::after,
  .web-preview-card--featured .wpc-screen::after { animation: none !important; }
  .aif-ev-chip--active { animation: none !important; }
  .aif-ev-dot { animation: none !important; }
  .svc2-showcase.visible .aif-event { transition-delay: 0s !important; }
  .svc2-bento .svc2-feat {
    transition: border-color .3s ease, box-shadow .35s ease !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .web-metrics-strip { transition: none !important; opacity: 1 !important; transform: none !important; }
  .svc2-showcase.visible .web-preview-card { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Use-case strip */
.usecase-strip {
  background: var(--soft-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.usecase {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: all .3s ease;
}
.usecase:hover { border-color: rgba(56,189,248,0.4); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.usecase .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--soft-bg-2), var(--soft-bg));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.usecase .ic svg { width: 18px; height: 18px; color: var(--brand-blue); }
.usecase strong {
  display: block;
  font-family: var(--heading);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-strong);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.usecase span {
  font-size: 12.5px;
  color: var(--grey-500);
  line-height: 1.5;
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 360px;
  background: var(--white);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease;
  padding: 94px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: none;
  border-left: 1px solid var(--border);
}
.mobile-menu.open { transform: translateX(0); box-shadow: var(--shadow-lg); }
.mobile-menu a {
  font-family: var(--heading);
  font-size: 19px;
  font-weight: 600;
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text-strong);
  transition: background .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.mobile-menu a:hover { color: var(--brand-blue); background: var(--soft-bg); transform: translateX(2px); }
.mobile-menu a.active,
.mobile-menu a[aria-current="page"] {
  color: var(--white);
  background-color: var(--brand-blue);
  background-image: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-blue);
}
.mobile-menu a.active:hover,
.mobile-menu a[aria-current="page"]:hover {
  color: var(--white);
  background-color: var(--brand-blue);
  background-image: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
  transform: translateX(2px);
}
.mobile-menu .btn,
.mobile-menu a.btn {
  width: 100%;
  margin-top: auto;
  align-self: stretch;
  border-radius: 999px;
  border-bottom: 1px solid transparent;
  padding: 15px 22px;
  font-size: 15px;
  font-family: var(--body);
}
.mobile-menu a.btn-primary,
.mobile-menu a.btn-blue {
  background-color: var(--brand-blue) !important;
  background-image: linear-gradient(135deg, var(--light-blue), var(--brand-blue)) !important;
  color: var(--white) !important;
  border-color: var(--brand-blue) !important;
  box-shadow: var(--shadow-blue) !important;
}
.mobile-menu a.btn-primary:hover,
.mobile-menu a.btn-blue:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(2,132,199,0.30);
}
body.menu-open { overflow: hidden; }
body.menu-open .header {
  z-index: 100;
  background: rgba(255,255,255,0.96);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .services-grid, .transform-grid, .contact-grid, .svc-grid { grid-template-columns: 1fr; }
  .svc-grid.reverse { direction: ltr; }
  .svc-visual { max-width: 420px; margin: 0 auto; }
  .process-grid, .why-grid, .usecase-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
  .book-strip { grid-template-columns: 1fr; padding: 40px 32px; }
  .contact-form { padding: 32px; }
  .service-card { padding: 36px; }
  .svc-features { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  section { padding: 64px 0; }
  .brand { gap: 10px; }
  .brand-mark { width: 42px; }
  .brand-name, .brand-suffix { font-size: 23px; }
  .nav { min-height: 74px; }
  .nav-links { display: none; }
  .menu-btn { display: grid; position: relative; z-index: 90; }
  .mobile-menu {
    max-width: none;
    padding-top: 118px;
  }
  .nav-actions .btn { display: none; }
  .hero {
    padding: 58px 0 64px;
  }
  .hero-grid {
    gap: 34px;
  }
  .hero-copy {
    max-width: 350px;
  }
  .hero-lede-wrap {
    margin-bottom: 18px;
  }
  .hero-lede {
    min-height: 30px;
    padding: 6px 12px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }
  .hero h1 {
    font-size: clamp(42px, 13vw, 54px);
    line-height: 1;
    margin-bottom: 20px;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 26px;
  }
  .hero-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-ctas .btn {
    width: 100%;
    min-height: 52px;
  }
  .hero-visual {
    width: 100%;
    max-width: 360px;
    padding: 8px 0 14px;
  }
  .hv-dashboard {
    border-radius: 20px;
    padding: 18px;
    gap: 16px;
  }
  .hv-float {
    display: none;
  }
  .hv-stats {
    gap: 10px;
    padding: 12px 0;
  }
  .hv-num {
    font-size: 18px;
  }
  .hv-lbl {
    font-size: 8.5px;
    letter-spacing: 0.05em;
  }
  .hv-flow {
    gap: 4px;
  }
  /* Service cards — mobile */
  .service-card { padding: 26px 22px 22px; }
  .service-card ul { grid-template-columns: 1fr; }
  .sc-stats { border-radius: 12px; }
  .sc-stat { padding: 11px 8px; }
  .sc-stat-val { font-size: 16px; }
  .sc-stat-lbl { font-size: 8px; letter-spacing: 0.04em; }
  .services-grid .service-card.reveal:nth-child(2) { transition-delay: 0s; }
  .hv-node {
    padding: 8px 3px;
  }
  .page-header {
    padding: 58px 0 44px;
    text-align: center;
  }
  .page-header h1 {
    font-size: clamp(38px, 12vw, 48px);
    line-height: 1.02;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-header p {
    font-size: 16px;
    line-height: 1.65;
    max-width: 330px;
  }
  .crumbs {
    justify-content: center;
    margin-bottom: 22px;
  }
  .svc-section { padding: 52px 0 60px; }
  .svc-grid { gap: 32px; }
  .svc-copy {
    text-align: center;
    max-width: 360px;
    margin: 0 auto;
  }
  .svc-copy .tag {
    display: inline-flex;
    max-width: 100%;
    white-space: normal;
    line-height: 1.4;
    letter-spacing: 0.1em;
    justify-content: center;
  }
  .svc-copy h2 {
    font-size: clamp(31px, 9.8vw, 40px);
    line-height: 1.06;
    margin-bottom: 16px;
  }
  .svc-copy > p {
    font-size: 15.5px;
    line-height: 1.68;
    margin: 0 auto 24px;
    max-width: 340px;
  }
  .svc-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 auto 26px;
    max-width: 350px;
  }
  .svc-feature {
    min-height: 118px;
    padding: 15px 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    box-shadow: var(--shadow-xs);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
  .svc-feature:nth-child(n+5) { display: none; }
  .bg-soft .svc-feature { background: rgba(255,255,255,0.82); }
  .svc-feature .ic {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }
  .svc-feature .ic svg {
    width: 16px;
    height: 16px;
  }
  .svc-feature strong {
    font-size: 13.5px;
    line-height: 1.25;
    margin: 0;
  }
  .svc-feature span { display: none; }
  .svc-features::after {
    content: attr(data-mobile-more);
    grid-column: 1 / -1;
    color: var(--grey-500);
    font-size: 13px;
    line-height: 1.5;
    padding: 6px 12px 0;
    text-align: center;
  }
  .svc-cta-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 350px;
    margin: 0 auto;
  }
  .svc-cta-row .btn {
    width: 100%;
    min-height: 52px;
    white-space: normal;
    text-align: center;
  }
  .svc-cta-row .btn-primary {
    background-color: var(--brand-blue);
    background-image: linear-gradient(135deg, var(--light-blue), var(--brand-blue));
    border-color: var(--brand-blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
  }
  .svc-visual {
    aspect-ratio: auto;
    max-width: none;
    min-height: 340px;
    margin: 4px auto 0;
  }
  .svc-mock {
    border-radius: 18px;
    padding: 18px;
  }
  .svc-mock-1 { top: 0; left: 0; width: 88%; }
  .svc-mock-2 { bottom: 0; right: 0; width: 68%; }
  .mock-row { gap: 8px; padding: 9px 10px; font-size: 11.5px; }
  /* New panel components — mobile */
  .svc-panel { width: 88%; padding: 18px; top: 0; border-radius: 18px; }
  .svc-ph-icon { width: 30px; height: 30px; }
  .svc-ph-icon svg { width: 15px; height: 15px; }
  .svc-ph-text strong { font-size: 12px; }
  .pipe-body { padding: 9px 10px; }
  .pipe-label { font-size: 11.5px; }
  .svc-float-card { width: 66%; padding: 12px 14px; border-radius: 14px; }
  .svc-float-card--web { width: 60%; }
  .svc-float-val { font-size: 18px; }
  .svc-float-val--lg { font-size: 26px; }
  .svc-browser-panel { width: 92%; top: 0; }
  .sbp-cards { gap: 5px; }
  .sbp-card { padding: 7px 8px; }
  .usecase-strip { padding: 54px 0; }
  .usecase {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 18px;
  }
  .usecase .ic {
    margin-bottom: 0;
    grid-row: span 2;
  }
  .section-head {
    margin-bottom: 34px;
  }
  .section-head h2 {
    font-size: clamp(30px, 9vw, 38px);
  }
  .cta-section {
    padding: 68px 0;
  }
  .cta-content .btn {
    width: 100%;
    min-height: 54px;
    white-space: normal;
  }
  .process-grid, .why-grid, .portfolio-grid, .usecase-grid { grid-template-columns: 1fr; }
  .why-card:nth-child(n+5) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .announce .sep { display: none; }
  .announce { font-size: 11px; }
  .transform-card { grid-template-columns: 1fr; }
  .transform-arrow { transform: rotate(90deg); justify-self: center; }
  .trust-row { gap: 18px; }
  .trust-item { font-size: 11px; }
}
