/* ================================================================
   Dnet v3 — Cinema Dark Agency
   DigitalSilk-inspired: deep black · electric blue · bold type
   ================================================================ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Design Tokens ────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:        #06060F;
  --bg-1:      #08081a;
  --bg-2:      #0d0d24;
  --bg-3:      #12122e;
  --surface:   rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.07);
  --surface-3: rgba(255,255,255,0.10);

  /* Borders */
  --border:    rgba(255,255,255,0.08);
  --border-2:  rgba(255,255,255,0.14);
  --border-3:  rgba(255,255,255,0.22);

  /* Text */
  --text:      #FFFFFF;
  --text-2:    rgba(255,255,255,0.60);
  --text-3:    rgba(255,255,255,0.35);
  --text-4:    rgba(255,255,255,0.18);

  /* Accent — Electric Blue */
  --blue:      #2563EB;
  --blue-2:    #3B82F6;
  --blue-3:    #60A5FA;
  --blue-soft: rgba(37,99,235,0.12);
  --blue-glow: rgba(37,99,235,0.40);

  /* Accent — Cyan */
  --cyan:      #06B6D4;
  --cyan-soft: rgba(6,182,212,0.12);
  --cyan-glow: rgba(6,182,212,0.35);

  /* Gradients */
  --grad:         linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  --grad-text:    linear-gradient(135deg, var(--blue-2) 0%, var(--cyan) 100%);
  --grad-surface: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(6,182,212,0.08) 100%);
  --grad-border:  linear-gradient(135deg, rgba(37,99,235,0.3) 0%, rgba(6,182,212,0.3) 100%);

  /* Glows */
  --glow-sm:   0 0 32px -8px var(--blue-glow);
  --glow-md:   0 0 64px -12px var(--blue-glow);
  --glow-lg:   0 0 120px -20px var(--blue-glow);
  --card-glow: 0 24px 80px -16px rgba(37,99,235,0.22), 0 4px 24px -6px rgba(0,0,0,0.7);

  /* Typography */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --container:  1280px;
  --gutter:     clamp(20px, 5vw, 64px);
  --section-y:  clamp(80px, 12vw, 160px);
  --header-h:   76px;

  /* Radii */
  --r-xs:  6px;
  --r-sm:  10px;
  --r:     16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 48px;

  /* Motion */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-base: 220ms;
  --dur-slow: 400ms;
  --dur-xslow:700ms;

  /* Status */
  --success: #10B981;
  --error:   #EF4444;
  --warning: #F59E0B;
}

/* ── Reset ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
::selection { background: rgba(37,99,235,0.35); color: #fff; }
::-webkit-scrollbar { width: 6px; background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; background: none; border: none; }
input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--blue-2); outline-offset: 3px; border-radius: 4px; }

/* ── Layout Utilities ─────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section-y { padding-block: var(--section-y); }

/* ── Typography Scale ─────────────────────────────────────────── */
.display {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display--xl  { font-size: clamp(3rem, 7vw, 6.5rem); }
.display--lg  { font-size: clamp(2.4rem, 5.5vw, 5rem); }
.display--md  { font-size: clamp(2rem, 4vw, 3.5rem); }
.display--sm  { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.display--xs  { font-size: clamp(1.2rem, 2.2vw, 1.8rem); }

.label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-2);
}

.lead {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text-2);
}

/* Gradient text */
.grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-sm);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all var(--dur-base) var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast) var(--ease);
}
.btn:hover::before { background: rgba(255,255,255,0.06); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 24px -6px rgba(37,99,235,0.5);
}
.btn--primary:hover {
  background: var(--blue-2);
  box-shadow: 0 8px 40px -6px rgba(37,99,235,0.7);
  transform: translateY(-1px);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 1px solid var(--border-2);
  color: var(--text);
  background: var(--surface);
}
.btn--outline:hover {
  border-color: var(--border-3);
  background: var(--surface-2);
  transform: translateY(-1px);
}

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

.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }

.btn .arr {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}
.btn:hover .arr { transform: translateX(3px); }

/* ── Section Header ───────────────────────────────────────────── */
.sh {
  margin-bottom: clamp(48px, 7vw, 80px);
}
.sh--center { text-align: center; }
.sh--center .sh__desc { margin-inline: auto; }
.sh__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.sh__label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--grad);
  border-radius: 1px;
}
.sh__title { margin-bottom: 20px; }
.sh__desc {
  max-width: 560px;
  color: var(--text-2);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
}

/* ── Cards ────────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-surface);
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease);
  border-radius: inherit;
}
.card:hover {
  border-color: var(--border-2);
  box-shadow: var(--card-glow);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }

/* ── Noise texture overlay ────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Scroll Reveal ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-xslow) var(--ease), transform var(--dur-xslow) var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-d="1"] { transition-delay: 80ms; }
[data-d="2"] { transition-delay: 160ms; }
[data-d="3"] { transition-delay: 240ms; }
[data-d="4"] { transition-delay: 320ms; }
[data-d="5"] { transition-delay: 400ms; }
[data-d="6"] { transition-delay: 480ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 200;
  transition: background var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.site-header.scrolled {
  background: rgba(6,6,15,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.nav__logo-mark {
  width: 32px; height: 32px;
  background: var(--grad);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--glow-sm);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  border-radius: var(--r-xs);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav__links a:hover {
  color: var(--text);
  background: var(--surface-2);
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__lang {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--text-3);
  padding: 6px 10px;
  border-radius: var(--r-xs);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}
.nav__lang:hover { color: var(--text); border-color: var(--border-2); }
.nav__lang.active { color: var(--blue-2); border-color: rgba(59,130,246,0.3); }

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-xs);
  border: 1px solid var(--border);
  transition: background var(--dur-fast) var(--ease);
}
.nav__hamburger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text-2);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}
.nav__hamburger:hover { background: var(--surface-2); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
  z-index: 199;
  display: flex;
  flex-direction: column;
  padding: 32px var(--gutter);
  gap: 8px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur-base) var(--ease);
  overflow-y: auto;
}
.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.nav__mobile a {
  font-size: 18px;
  font-weight: 600;
  padding: 14px 0;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-fast) var(--ease);
}
.nav__mobile a:hover { color: var(--text); }
.nav__mobile .btn { margin-top: 16px; justify-content: center; }

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__actions .btn { display: none; }
  .nav__hamburger { display: flex; }
}

/* ── Nav Dropdown ──────────────────────────────────────────────── */
.nav__dropdown { position: relative; }
.nav__dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__dropdown > a::after {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff99' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform var(--dur-fast) var(--ease);
}
.nav__dropdown:hover > a::after,
.nav__dropdown.open > a::after { transform: rotate(180deg); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--bg-1);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease), transform var(--dur-base) var(--ease);
  z-index: 300;
  box-shadow: 0 24px 64px -12px rgba(0,0,0,0.7);
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.nav__dropdown-menu a:hover { color: var(--text); background: var(--surface-2); }
.nav__dropdown-menu a span.ddicon {
  width: 30px; height: 30px;
  background: var(--blue-soft);
  border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--blue-3);
}
.nav__dropdown-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 8px;
}

/* Mobile dropdown items */
.nav__mobile-sub {
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  border-left: 1px solid var(--border);
  margin: 4px 0 8px;
  gap: 2px;
}
.nav__mobile-sub a {
  font-size: 15px !important;
  padding: 8px 0 !important;
  border-bottom: none !important;
  color: var(--text-2);
}

/* ── Service page hero ─────────────────────────────────────────── */
.service-hero {
  padding-top: calc(var(--header-h) + clamp(48px,8vw,100px));
  padding-bottom: clamp(64px,10vw,120px);
  position: relative;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 30%, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100svh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* BG Orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  top: -200px; right: -200px;
}
.hero-orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}

/* Grid lines bg — hidden per design decision */
.hero-grid { display: none; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  padding-block: clamp(64px, 10vw, 120px);
  position: relative;
  z-index: 1;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Copy */
.hero-copy {}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-label__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
  animation: pulse-dot 2.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-label__text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-2);
}
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
}
.hero-sub {
  max-width: 500px;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}
.hero-metrics {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-metric {}
.hero-metric__val {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
}
.hero-metric__val span { color: var(--blue-2); }
.hero-metric__lbl {
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}
.hero-metric-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Visual */
.hero-visual {
  position: relative;
  height: 520px;
}

/* Browser mockup main */
.hero-browser {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px -16px rgba(0,0,0,0.8), var(--glow-sm);
  animation: float-main 6s ease-in-out infinite;
}
@keyframes float-main {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.hero-browser__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-browser__dot:nth-child(1) { background: #FF5F57; }
.hero-browser__dot:nth-child(2) { background: #FEBC2E; }
.hero-browser__dot:nth-child(3) { background: #28C840; }
.hero-browser__url {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 5px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 8px;
}
.hero-browser__url::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
}
.hero-browser__screen {
  padding: 20px;
  min-height: 300px;
  background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}
.hero-browser__hero-stripe {
  height: 80px;
  background: linear-gradient(135deg, var(--blue-soft) 0%, var(--cyan-soft) 100%);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.hero-browser__hero-stripe::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  animation: shimmer 2.4s ease-in-out infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.hero-browser__row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.hero-browser__line {
  height: 8px;
  background: var(--surface-2);
  border-radius: 4px;
  flex: 1;
}
.hero-browser__line--sm { max-width: 60%; }
.hero-browser__line--xs { max-width: 40%; }
.hero-browser__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}
.hero-browser__col {
  height: 60px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}

/* Floating stat cards */
.hero-float {
  position: absolute;
  background: rgba(6,6,15,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px -8px rgba(0,0,0,0.6);
  z-index: 2;
}
.hero-float__icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-float__icon--blue { background: var(--blue-soft); color: var(--blue-2); }
.hero-float__icon--cyan { background: var(--cyan-soft); color: var(--cyan); }
.hero-float__icon--green { background: rgba(16,185,129,0.12); color: var(--success); }
.hero-float__val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-float__lbl { font-size: 11px; color: var(--text-3); margin-top: 1px; }

.hero-float--1 {
  bottom: 80px; right: -24px;
  animation: float-b1 5s ease-in-out infinite;
}
.hero-float--2 {
  top: 120px; right: -32px;
  animation: float-b2 5.5s ease-in-out infinite 0.5s;
}
.hero-float--3 {
  bottom: 20px; left: -20px;
  animation: float-b1 4.5s ease-in-out infinite 1s;
}
@keyframes float-b1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes float-b2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-10px) rotate(-1deg); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-right { gap: 0; }
  .hero-metrics { flex-wrap: wrap; gap: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
}

/* ================================================================
   MARQUEE
   ================================================================ */
.marquee-section {
  padding-block: 40px;
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-4);
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee-run 28s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee-run {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-family: var(--font-display);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: -0.02em;
  transition: color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.marquee-item:hover { color: var(--text-2); }
.marquee-item__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 40px);
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-slow) var(--ease);
}
.service-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--card-glow);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-4);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blue-2);
  transition: all var(--dur-base) var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--glow-sm);
}
.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 24px;
}
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-card__tag {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-3);
}

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

/* ================================================================
   STATS
   ================================================================ */
.stats-section {
  background: var(--bg-1);
  border-block: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-x: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.stat-item {
  padding: clamp(32px, 5vw, 64px) clamp(20px, 3vw, 40px);
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--border);
}
.stat-item__val {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 12px;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item__lbl {
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--text-2);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { }
  .stat-item:not(:nth-child(1)):not(:nth-child(3)) + .stat-item { border-top: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none !important; }
  .stat-item { border-bottom: 1px solid var(--border); }
}

/* ================================================================
   WORK / PORTFOLIO
   ================================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.work-grid .work-card:first-child {
  grid-column: 1 / -1;
}
.work-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-2);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: all var(--dur-slow) var(--ease);
}
.work-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--card-glow);
}
.work-card:first-child { aspect-ratio: 21/8; }

/* Mock website screen inside card */
.work-card__screen {
  position: absolute;
  inset: 0;
  background: var(--bg-3);
  overflow: hidden;
}
.work-card__screen-inner {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.work-card__screen-bar {
  height: 24px;
  background: var(--bg-2);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
}
.work-card__screen-bar-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border-2);
}
.work-card__screen-hero {
  flex: 1;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--blue-soft), var(--cyan-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(20px, 3vw, 40px);
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.04em;
}

.work-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,6,15,0.95) 0%, rgba(6,6,15,0.4) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 36px);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.work-card:hover .work-card__overlay { opacity: 1; }
.work-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.work-card__tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 100px;
  color: var(--blue-2);
}
.work-card__name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.work-card__desc {
  font-size: 13px;
  color: var(--text-2);
}
.work-card__arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transform: scale(0.8);
  opacity: 0;
  transition: all var(--dur-base) var(--ease);
}
.work-card:hover .work-card__arrow {
  transform: scale(1);
  opacity: 1;
}

.work-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 700px) {
  .work-grid { grid-template-columns: 1fr; }
  .work-grid .work-card:first-child { grid-column: auto; }
  .work-card { aspect-ratio: 4/3; }
  .work-card:first-child { aspect-ratio: 4/3; }
  .work-card__overlay { opacity: 1; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-section { position: relative; overflow: hidden; }
.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(6,182,212,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  transition: all var(--dur-slow) var(--ease);
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--card-glow);
  transform: translateY(-4px);
}
.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: #F59E0B;
}
.testi-card__quote {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 28px;
  position: relative;
}
.testi-card__quote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-soft);
  color: rgba(37,99,235,0.25);
  position: absolute;
  top: -12px; left: -4px;
  line-height: 1;
}
.testi-card__quote p { position: relative; z-index: 1; }
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-card__name {
  font-weight: 700;
  font-size: 14px;
}
.testi-card__role { font-size: 12px; color: var(--text-3); margin-top: 2px; }

@media (max-width: 1024px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .testi-grid { grid-template-columns: 1fr; } }

/* ================================================================
   PROCESS
   ================================================================ */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
}
.process-step:first-child { border-top: 1px solid var(--border); }
.process-step:hover .process-step__icon { background: var(--blue); color: #fff; box-shadow: var(--glow-sm); }
.process-step__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text-4);
  letter-spacing: 0.08em;
  margin-top: 4px;
  min-width: 24px;
}
.process-step__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blue-soft);
  color: var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
}
.process-step__content {}
.process-step__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.process-step__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
.process-visual {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}
.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--card-glow);
}
.process-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.process-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: var(--glow-sm);
}
.process-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.process-card__sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.process-card__items { display: flex; flex-direction: column; gap: 12px; }
.process-card__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--text-2);
}
.process-card__item-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .process-layout { grid-template-columns: 1fr; }
  .process-visual { position: static; }
}

/* ================================================================
   INDUSTRIES
   ================================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.industry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--dur-base) var(--ease);
  cursor: default;
}
.industry-card:hover {
  border-color: rgba(37,99,235,0.3);
  background: var(--blue-soft);
  transform: translateY(-3px);
}
.industry-card__icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  filter: grayscale(1);
  transition: filter var(--dur-base) var(--ease);
}
.industry-card:hover .industry-card__icon { filter: none; }
.industry-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.industry-card:hover .industry-card__name { color: var(--text); }

@media (max-width: 860px) { .industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   TEAM
   ================================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur-slow) var(--ease);
}
.team-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--card-glow);
  transform: translateY(-4px);
}
.team-card__avatar {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.team-card__avatar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-2) 0%, transparent 100%);
}
.team-card__avatar-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 1;
}
.team-card__body {
  padding: 20px;
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 12px;
  color: var(--blue-2);
  font-weight: 500;
  margin-bottom: 12px;
}
.team-card__social {
  display: flex;
  gap: 8px;
}
.team-card__social-link {
  width: 30px; height: 30px;
  border-radius: var(--r-xs);
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all var(--dur-fast) var(--ease);
}
.team-card__social-link:hover { color: var(--text); background: var(--surface-3); }

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .team-grid { grid-template-columns: 1fr; } }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}
.pricing-toggle__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
}
.pricing-toggle__label.active { color: var(--text); }
.pricing-switch {
  position: relative;
  width: 48px; height: 26px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--dur-base) var(--ease);
}
.pricing-switch.on { background: var(--blue); border-color: var(--blue); }
.pricing-switch__thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--dur-base) var(--ease);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.pricing-switch.on .pricing-switch__thumb { transform: translateX(22px); }
.pricing-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 100px;
  color: var(--success);
  letter-spacing: 0.04em;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
  transition: all var(--dur-slow) var(--ease);
  position: relative;
}
.pricing-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
}
.pricing-card--featured {
  background: linear-gradient(135deg, rgba(37,99,235,0.12) 0%, rgba(6,182,212,0.08) 100%);
  border-color: rgba(37,99,235,0.3);
  box-shadow: var(--glow-md);
}
.pricing-card--featured:hover { border-color: rgba(37,99,235,0.5); }
.pricing-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  background: var(--grad);
  border-radius: 100px;
  color: #fff;
  white-space: nowrap;
  box-shadow: var(--glow-sm);
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}
.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-card__currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
}
.pricing-card__period { font-size: 13px; color: var(--text-3); margin-bottom: 6px; }
.pricing-card__desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-2);
}
.pricing-card__feature-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-card__cta { width: 100%; justify-content: center; }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ================================================================
   BLOG
   ================================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--dur-slow) var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--card-glow);
  transform: translateY(-4px);
}
.blog-card__img {
  aspect-ratio: 16/8;
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  position: relative;
  overflow: hidden;
}
.blog-card__img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
}
.blog-card__cat {
  position: absolute;
  bottom: 12px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--blue);
  border-radius: 100px;
  color: #fff;
}
.blog-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--text-4);
  margin-bottom: 14px;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.blog-card__meta-dot { color: var(--text-4); }
.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
  transition: color var(--dur-fast) var(--ease);
  flex: 1;
}
.blog-card:hover .blog-card__title { color: var(--blue-2); }
.blog-card__excerpt {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-2);
  transition: gap var(--dur-fast) var(--ease);
}
.blog-card:hover .blog-card__link { gap: 10px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .blog-grid { grid-template-columns: 1fr; } }

/* ================================================================
   FAQ
   ================================================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.faq-sidebar { position: sticky; top: calc(var(--header-h) + 40px); }
.faq-sidebar__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 28px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: color var(--dur-fast) var(--ease);
}
.faq-q:hover { color: var(--blue-2); }
.faq-q__icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all var(--dur-base) var(--ease);
}
.faq-item.open .faq-q__icon {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease), padding var(--dur-slow) var(--ease);
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 22px;
}

@media (max-width: 860px) {
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info {}
.contact-info__desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
  flex-shrink: 0;
}
.contact-detail__label { font-size: 11px; color: var(--text-4); margin-bottom: 4px; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; }
.contact-detail__val { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 48px);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group:last-of-type { margin-bottom: 0; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  transition: all var(--dur-fast) var(--ease);
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-4); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.3)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.form-group select option { background: var(--bg-2); color: var(--text); }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  padding-top: clamp(60px, 8vw, 100px);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-bottom: 1px solid var(--border);
}
.footer-brand__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand__logo-mark {
  width: 30px; height: 30px;
  background: var(--grad);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
}
.footer-brand__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 300px;
}
.footer-brand__social {
  display: flex;
  gap: 8px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all var(--dur-fast) var(--ease);
}
.footer-social-btn:hover { color: var(--text); background: var(--surface-2); border-color: var(--border-2); }
.footer-col__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-col__links { display: flex; flex-direction: column; gap: 12px; }
.footer-col__links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--dur-fast) var(--ease);
}
.footer-col__links a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 28px;
  flex-wrap: wrap;
}
.footer-bottom__copy {
  font-size: 13px;
  color: var(--text-4);
}
.footer-bottom__links {
  display: flex;
  gap: 20px;
}
.footer-bottom__links a {
  font-size: 12px;
  color: var(--text-4);
  transition: color var(--dur-fast) var(--ease);
}
.footer-bottom__links a:hover { color: var(--text-2); }

@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ================================================================
   SCROLL-TO-TOP
   ================================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 44px; height: 44px;
  background: var(--blue);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--dur-base) var(--ease);
  box-shadow: var(--glow-sm);
  border: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--blue-2); transform: translateY(-2px); box-shadow: var(--glow-md); }

/* ================================================================
   SERVICE PAGES — New Components
   ================================================================ */

/* ── Section utilities ──────────────────────────────────────────── */
.section      { padding-block: var(--section-y); }
.section--alt { background: var(--bg-1); }

.section-head { max-width: 680px; margin-bottom: clamp(40px,6vw,64px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue-2);
  margin-bottom: 16px;
}
.eyebrow--cyan { color: var(--cyan); }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: currentColor; flex-shrink: 0; }

.section-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-sub { font-size: clamp(15px,1.8vw,18px); color: var(--text-2); line-height: 1.7; }

/* ── Service hero stats ─────────────────────────────────────────── */
.srv-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); margin: 32px 0;
}
@media (max-width: 720px) { .srv-stats { grid-template-columns: repeat(2,1fr); gap: 20px; } }
.srv-stat__val {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.03em;
  background: var(--grad-text); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.1;
}
.srv-stat__lbl { font-size: 12px; color: var(--text-3); margin-top: 5px; line-height: 1.4; }

/* ── Pain point grid ────────────────────────────────────────────── */
.pain-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
@media (max-width: 640px) { .pain-grid { grid-template-columns: 1fr; } }

.pain-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.pain-card:hover { border-color: rgba(239,68,68,0.25); box-shadow: 0 0 32px -8px rgba(239,68,68,0.12); }

.pain-card__icon {
  width: 44px; height: 44px; background: rgba(239,68,68,0.1);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; color: #F87171; flex-shrink: 0;
}
.pain-card__title { font-family: var(--font-display); font-size: 17px; font-weight: 700; }
.pain-card__desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }

/* ── Method phases ──────────────────────────────────────────────── */
.method-phases { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: clamp(40px,6vw,64px); }
@media (max-width: 860px) { .method-phases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .method-phases { grid-template-columns: 1fr; } }

.method-phase {
  background: var(--surface); border: 1px solid var(--border);
  padding: 28px 24px; position: relative;
  transition: background var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.method-phase:first-child { border-radius: var(--r) 0 0 var(--r); }
.method-phase:last-child  { border-radius: 0 var(--r) var(--r) 0; }
.method-phase:not(:first-child) { border-left: none; }
@media (max-width: 860px) {
  .method-phase:first-child { border-radius: var(--r) var(--r) 0 0; }
  .method-phase:nth-child(2) { border-radius: 0; border-left: 1px solid var(--border); }
  .method-phase:nth-child(3) { border-top: none; }
  .method-phase:last-child   { border-radius: 0 0 var(--r) var(--r); border-left: 1px solid var(--border); border-top: none; }
}
@media (max-width: 480px) {
  .method-phase { border-radius: 0!important; border-left: 1px solid var(--border)!important; }
  .method-phase:first-child  { border-radius: var(--r) var(--r) 0 0!important; }
  .method-phase:last-child   { border-radius: 0 0 var(--r) var(--r)!important; border-top: none; }
  .method-phase:not(:first-child) { border-top: none; }
}
.method-phase:hover { background: var(--surface-2); border-color: var(--border-2)!important; z-index: 1; }

.method-phase__num { font-family: var(--font-mono); font-size: 11px; color: var(--blue-2); letter-spacing: 0.1em; margin-bottom: 16px; }
.method-phase__icon {
  width: 40px; height: 40px; background: var(--blue-soft);
  border-radius: var(--r-sm); display: flex; align-items: center;
  justify-content: center; color: var(--blue-3); margin-bottom: 16px;
}
.method-phase__title { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.method-phase__desc  { font-size: 14px; color: var(--text-2); line-height: 1.65; }
.method-phase__tag {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--cyan); background: var(--cyan-soft); padding: 5px 10px; border-radius: 100px;
}

/* ── Deliverables split ─────────────────────────────────────────── */
.deliverables-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: clamp(40px,6vw,64px); }
@media (max-width: 720px) { .deliverables-layout { grid-template-columns: 1fr; } }

.deliverables-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: clamp(24px,4vw,40px);
}
.deliverables-block--featured { border-color: rgba(37,99,235,0.3); background: var(--grad-surface); }
.deliverables-block__title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.deliverable-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--border); }
.deliverable-item:last-child { border-bottom: none; }
.deliverable-item__icon {
  width: 20px; height: 20px; background: var(--blue-soft);
  border-radius: var(--r-xs); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--blue-3); margin-top: 1px;
}
.deliverable-item__text { font-size: 14px; color: var(--text-2); line-height: 1.6; }
.deliverable-item__text strong { color: var(--text); font-weight: 600; }

/* ── Decision guide ─────────────────────────────────────────────── */
.decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .decision-grid { grid-template-columns: 1fr; } }

.decision-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 24px;
  display: grid; grid-template-columns: auto 1fr; gap: 0 14px; align-items: start;
  transition: border-color var(--dur-base) var(--ease), background var(--dur-base) var(--ease);
}
.decision-card:hover { border-color: rgba(37,99,235,0.3); background: var(--surface-2); }
.decision-card--highlight { grid-column: 1/-1; border-color: rgba(6,182,212,0.3); background: rgba(6,182,212,0.04); }

.decision-card__if {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--blue-3); background: var(--blue-soft);
  padding: 4px 8px; border-radius: var(--r-xs); white-space: nowrap;
  margin-top: 2px; align-self: start;
}
.decision-card--highlight .decision-card__if { background: var(--cyan-soft); color: var(--cyan); }

.decision-card__body {}
.decision-card__condition { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.decision-card__then { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.decision-card--highlight .decision-card__then { color: var(--cyan); font-weight: 500; }

/* ── Case study highlight ───────────────────────────────────────── */
.case-highlight {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  display: grid; grid-template-columns: 1fr 1.2fr;
  margin-top: clamp(32px,5vw,48px);
}
@media (max-width: 760px) { .case-highlight { grid-template-columns: 1fr; } }

.case-highlight__visual {
  background: var(--bg-2); border-right: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  padding: 48px 40px; min-height: 280px; position: relative; overflow: hidden;
}
@media (max-width: 760px) { .case-highlight__visual { border-right: none; border-bottom: 1px solid var(--border); min-height: 160px; } }
.case-highlight__visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,235,0.18) 0%, transparent 70%);
}
.case-highlight__brand {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(28px,5vw,52px); letter-spacing: -0.04em;
  color: rgba(255,255,255,0.12); position: relative; z-index: 1; text-align: center;
}
.case-highlight__content { padding: clamp(28px,4vw,48px); }
.case-highlight__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-3); background: var(--blue-soft);
  padding: 5px 10px; border-radius: 100px; margin-bottom: 16px;
}
.case-highlight__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(18px,2.5vw,24px); margin-bottom: 10px; line-height: 1.3; }
.case-highlight__desc  { font-size: 14px; color: var(--text-2); margin-bottom: 24px; line-height: 1.65; }
.case-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.case-metric__val {
  font-family: var(--font-display); font-size: clamp(22px,3vw,30px);
  font-weight: 800; background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1.1;
}
.case-metric__lbl { font-size: 12px; color: var(--text-3); margin-top: 4px; }

/* ── Expect timeline ────────────────────────────────────────────── */
.expect-track { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: clamp(40px,6vw,64px); }
@media (max-width: 800px) { .expect-track { grid-template-columns: 1fr 1fr; } }
@media (max-width: 440px) { .expect-track { grid-template-columns: 1fr; } }

.expect-step {
  background: var(--surface); border: 1px solid var(--border);
  padding: 26px 22px; position: relative;
}
.expect-step:first-child { border-radius: var(--r) 0 0 var(--r); }
.expect-step:last-child  { border-radius: 0 var(--r) var(--r) 0; }
.expect-step:not(:first-child) { border-left: none; }
@media (max-width: 800px) {
  .expect-step:nth-child(2) { border-left: 1px solid var(--border); }
  .expect-step:nth-child(3) { border-top: none; border-left: 1px solid var(--border); }
  .expect-step:nth-child(4) { border-top: none; }
  .expect-step:first-child  { border-radius: var(--r) 0 0 0; }
  .expect-step:nth-child(2) { border-radius: 0 var(--r) 0 0; }
  .expect-step:nth-child(3) { border-radius: 0 0 0 var(--r); }
  .expect-step:last-child   { border-radius: 0 0 var(--r) 0; }
}
@media (max-width: 440px) {
  .expect-step { border-radius: 0!important; border-left: 1px solid var(--border)!important; }
  .expect-step:first-child { border-radius: var(--r) var(--r) 0 0!important; }
  .expect-step:last-child  { border-radius: 0 0 var(--r) var(--r)!important; border-top: none; }
  .expect-step:not(:first-child) { border-top: none; }
}

.expect-step__when { font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--cyan); margin-bottom: 10px; }
.expect-step__title { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin-bottom: 14px; }
.expect-step__items { display: flex; flex-direction: column; gap: 7px; }
.expect-step__item {
  font-size: 13px; color: var(--text-2); display: flex; align-items: flex-start; gap: 8px; line-height: 1.45;
}
.expect-step__item::before { content: '·'; color: var(--blue-3); font-weight: 700; flex-shrink: 0; }

/* ── Service page service-hero additions ────────────────────────── */
.service-hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-3);
  background: var(--blue-soft); border: 1px solid rgba(37,99,235,0.2);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 28px;
}
.service-hero__h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 20px;
}
.service-hero__h1 .line { display: block; }
.service-hero__sub { max-width: 640px; font-size: clamp(16px,1.8vw,19px); color: var(--text-2); line-height: 1.7; margin-bottom: 32px; }
.service-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

/* ── Related services strip ─────────────────────────────────────── */
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: clamp(32px,5vw,48px); }
@media (max-width: 720px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px;
  transition: border-color var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  display: flex; flex-direction: column; gap: 10px;
}
.related-card:hover { border-color: rgba(37,99,235,0.3); box-shadow: var(--glow-sm); }
.related-card__icon { width: 36px; height: 36px; background: var(--blue-soft); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--blue-3); }
.related-card__title { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.related-card__desc  { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.related-card__link  { font-size: 13px; color: var(--blue-3); font-weight: 600; margin-top: auto; }

/* ── CTA Box (service pages) ────────────────────────────────────── */
.cta-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
}
.cta-box__badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-3); background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.2);
  padding: 7px 14px; border-radius: 100px; margin-bottom: 32px;
}
.cta-box__body {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
@media (max-width: 900px) { .cta-box__body { grid-template-columns: 1fr; gap: 40px; } }

.cta-box__content {}
.cta-box__h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.cta-box__sub { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.cta-box__perks { display: flex; flex-direction: column; gap: 10px; }
.cta-box__perks li {
  font-size: 14px; color: var(--text-2);
  display: flex; align-items: center; gap: 10px;
}
.cta-box__perks li::before {
  content: '✓'; width: 20px; height: 20px; background: var(--blue-soft);
  border-radius: var(--r-xs); display: inline-flex; align-items: center;
  justify-content: center; color: var(--blue-3); font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* Form aliases for service pages */
.form-label {
  font-size: 13px; font-weight: 500; color: var(--text-2); display: block; margin-bottom: 6px;
}
.form-input {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border-2);
  border-radius: var(--r-sm); padding: 11px 14px; color: var(--text);
  font-size: 15px; transition: border-color var(--dur-fast) var(--ease);
}
.form-input:focus { outline: none; border-color: var(--blue-2); }
.form-input::placeholder { color: var(--text-4); }
.form-textarea { resize: vertical; min-height: 100px; }

/* ================================================================
   NEWSLETTER BAND
   ================================================================ */
.newsletter-band {
  background: var(--grad-surface);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: var(--r-xl);
  padding: clamp(36px,5vw,64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.newsletter-band::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  pointer-events: none;
}
@media (max-width: 720px) { .newsletter-band { grid-template-columns: 1fr; gap: 28px; } }
.newsletter-band__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem,3vw,2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.newsletter-band__copy p { font-size: 15px; color: var(--text-2); line-height: 1.65; }
.newsletter-band__form { display: flex; gap: 12px; }
.newsletter-band__form input {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--dur-fast) var(--ease);
}
.newsletter-band__form input::placeholder { color: var(--text-4); }
.newsletter-band__form input:focus { outline: none; border-color: var(--blue); }
@media (max-width: 500px) { .newsletter-band__form { flex-direction: column; } }

/* ================================================================
   VALUES / MISSION CARDS
   ================================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .values-grid { grid-template-columns: 1fr; } }

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(24px,3vw,36px);
  transition: all var(--dur-slow) var(--ease);
}
.value-card:hover {
  border-color: rgba(37,99,235,0.3);
  box-shadow: var(--glow-sm);
  transform: translateY(-3px);
}
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-3);
  margin-bottom: 20px;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem,1.8vw,1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.value-card__desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* ================================================================
   DIFFERENTIATORS
   ================================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
@media (max-width: 640px) { .diff-grid { grid-template-columns: 1fr; } }

.diff-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: border-color var(--dur-base) var(--ease);
}
.diff-item:hover { border-color: var(--border-2); }
.diff-item__num {
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; color: var(--blue-3);
  background: var(--blue-soft);
  padding: 6px 8px; border-radius: var(--r-xs);
  white-space: nowrap; margin-top: 2px; flex-shrink: 0;
}
.diff-item__title { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.diff-item__desc { font-size: 13px; color: var(--text-2); line-height: 1.65; }
.btn--full { width: 100%; justify-content: center; margin-top: 4px; }

/* ================================================================
   BLOG ARTICLE
   ================================================================ */

/* Breadcrumb */
.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 0;
  font-size: 13px;
  color: var(--text-3);
  flex-wrap: wrap;
}
.article-breadcrumb a {
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}
.article-breadcrumb a:hover { color: var(--text); }
.article-breadcrumb__sep { color: var(--border-2); }
.article-breadcrumb__cur { color: var(--text-2); }

/* Article hero */
.article-hero {
  padding: clamp(48px,7vw,88px) 0 clamp(40px,5vw,60px);
  border-bottom: 1px solid var(--border);
}
.article-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-3);
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.15);
  padding: 5px 10px;
  border-radius: var(--r-xs);
  margin-bottom: 20px;
}
.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem,5vw,3.4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 28px;
  max-width: 820px;
}
.article-hero__desc {
  font-size: clamp(15px,2vw,17px);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 32px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.article-meta__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-meta__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-3);
  flex-shrink: 0;
}
.article-meta__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.article-meta__role {
  font-size: 12px;
  color: var(--text-3);
}
.article-meta__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--border-2);
}
.article-meta__date,
.article-meta__read {
  font-size: 13px;
  color: var(--text-3);
}

/* Two-column layout */
.article-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  align-items: start;
  padding: clamp(40px,5vw,72px) 0;
}
@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Table of Contents */
.article-toc {
  position: sticky;
  top: 96px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 20px;
}
.article-toc__title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.article-toc__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.article-toc__link {
  display: block;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-xs);
  border-left: 2px solid transparent;
  transition: all var(--dur-fast) var(--ease);
  line-height: 1.4;
}
.article-toc__link:hover {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-left-color: var(--border-2);
}
.article-toc__link.active {
  color: var(--blue-3);
  background: var(--blue-soft);
  border-left-color: var(--blue);
  font-weight: 500;
}
.article-toc__link--h3 {
  padding-left: 20px;
  font-size: 12px;
}
@media (max-width: 900px) { .article-toc { position: static; } }

/* Article body / prose */
.article-body {
  min-width: 0;
}
.article-body > * + * { margin-top: 24px; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem,2.5vw,1.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
  padding-top: 12px;
  margin-top: 52px !important;
  scroll-margin-top: 100px;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.05rem,1.8vw,1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--text);
  margin-top: 36px !important;
  scroll-margin-top: 100px;
}
.article-body p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.8;
}
.article-body a {
  color: var(--blue-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(37,99,235,0.35);
  transition: color var(--dur-fast) var(--ease);
}
.article-body a:hover { color: var(--cyan); }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body ul,
.article-body ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-body li {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
}
.article-body ul li::marker { color: var(--blue-3); }
.article-body ol li::marker { color: var(--blue-3); font-weight: 600; font-size: 14px; }

/* Blockquote */
.article-body blockquote {
  border-left: 3px solid var(--blue);
  background: var(--surface);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 24px;
  margin: 32px 0 !important;
}
.article-body blockquote p {
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin: 0 !important;
}

/* Inline code & code block */
.article-body code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: rgba(37,99,235,0.1);
  color: var(--blue-3);
  padding: 2px 6px;
  border-radius: 4px;
}
.article-body pre {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 22px 24px;
  overflow-x: auto;
}
.article-body pre code {
  background: none;
  padding: 0;
  font-size: 14px;
  color: var(--text-2);
}

/* Table */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
}
.article-body th {
  background: rgba(37,99,235,0.08);
  color: var(--text);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 13px;
}
.article-body td {
  padding: 12px 16px;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:hover td { background: rgba(255,255,255,0.02); }

/* Article image placeholder */
.article-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-4);
  letter-spacing: 0.06em;
  margin: 36px 0 !important;
  overflow: hidden;
  position: relative;
}
.article-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(37,99,235,0.06) 0%, transparent 70%);
}

/* Callout boxes */
.article-callout {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  margin: 28px 0 !important;
}
.article-callout--tip { border-left: 3px solid var(--cyan); background: rgba(6,182,212,0.05); }
.article-callout--warn { border-left: 3px solid #f59e0b; background: rgba(245,158,11,0.05); }
.article-callout__icon { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.article-callout__body { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.article-callout__body strong { color: var(--text); }

/* Article divider */
.article-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0 !important;
}

/* Author bio card */
.author-bio {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: clamp(24px,3vw,32px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-top: 56px;
}
.author-bio__avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--blue-soft);
  border: 1px solid rgba(37,99,235,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--blue-3);
  flex-shrink: 0;
}
.author-bio__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}
.author-bio__role { font-size: 13px; color: var(--text-3); margin-bottom: 10px; }
.author-bio__desc { font-size: 14px; color: var(--text-2); line-height: 1.7; }
@media (max-width: 520px) { .author-bio { flex-direction: column; } }

/* Related articles */
.related-section { padding: clamp(40px,6vw,72px) 0; border-top: 1px solid var(--border); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 900px) { .related-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .related-grid { grid-template-columns: 1fr; } }

/* Share bar */
.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 48px;
  flex-wrap: wrap;
}
.article-share__label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
  margin-right: 4px;
}
.article-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-xs);
  border: 1px solid var(--border-2);
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
}
.article-share__btn:hover {
  border-color: var(--blue);
  color: var(--blue-3);
  background: var(--blue-soft);
}

/* ================================================================
   HERO WIDGETS — page-specific decorative elements
   ================================================================ */

/* ── Layout helpers ──────────────────────────────────────────── */
.service-hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: center;
}
.service-hero__text { min-width: 0; }
.service-hero__widget { display: flex; align-items: center; justify-content: center; }
@media (max-width: 960px) {
  .service-hero__inner--split { grid-template-columns: 1fr; }
  .service-hero__widget { display: none; }
}

.sh-widget-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: clamp(32px,5vw,56px);
}
.sh-widget-layout .sh { flex: 1; min-width: 0; margin-bottom: 0; }
.sh-widget-layout .hw { flex-shrink: 0; }
@media (max-width: 900px) {
  .sh-widget-layout { flex-wrap: wrap; }
  .sh-widget-layout .hw { display: none; }
}

/* ── Base card ───────────────────────────────────────────────── */
.hw {
  background: rgba(6,6,15,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  padding: 22px 24px;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,0.7);
  position: relative;
  width: 290px;
  animation: hw-float 5s ease-in-out infinite;
}
@keyframes hw-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-7px); }
}

/* ── Shared sub-components ───────────────────────────────────── */
.hw__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}
.hw__bigval {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--text-1);
}
.hw__smallcap {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 8px;
}
.hw__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.hw__dot--green  { background: var(--success); }
.hw__dot--blue   { background: var(--blue-2); }
.hw__dot--blue   { background: var(--blue-2); }
.hw__dot--cyan   { background: var(--cyan); }
.hw__dot--pulse  {
  box-shadow: 0 0 0 0 currentColor;
  animation: hw-pulse 2s ease-out infinite;
}
@keyframes hw-pulse {
  0%  { box-shadow: 0 0 0 0 rgba(59,130,246,.6); }
  70% { box-shadow: 0 0 0 8px rgba(59,130,246,0); }
  100%{ box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

/* ================================================================
   1. SEO — Animated SERP rank card
   ================================================================ */
.hw--serp { padding: 0; overflow: hidden; }
.hw__serp-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px 14px;
  border-bottom: 1px solid var(--border);
}
.hw__serp-rank-wrap {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.hw__serp-rank-num {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--blue-2);
}
.hw__serp-meta { flex: 1; }
.hw__serp-domain {
  font-size: 11px;
  color: var(--blue-3);
  margin-bottom: 2px;
}
.hw__serp-title-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
}
.hw__serp-url-text { font-size: 10px; color: var(--text-3); }
.hw__serp-bottom {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-3);
}
.hw__serp-badge {
  background: rgba(59,130,246,0.15);
  color: var(--blue-2);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: auto;
}

/* ================================================================
   2. Web — Lighthouse performance card
   ================================================================ */
.hw--perf { text-align: center; }
.hw__perf-ring-wrap {
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto 14px;
}
.hw__perf-ring-wrap svg { width: 88px; height: 88px; transform: rotate(-90deg); }
.hw__perf-ring-bg  { fill: none; stroke: rgba(255,255,255,0.06); stroke-width: 6; }
.hw__perf-ring-bar {
  fill: none;
  stroke: var(--blue-2);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 244;
  stroke-dashoffset: 244;
  animation: perf-ring 1.8s cubic-bezier(.4,0,.2,1) 0.4s forwards;
}
@keyframes perf-ring {
  to { stroke-dashoffset: 2; } /* 244 * (1 - 99/100) ≈ 2 */
}
.hw__perf-score-num {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--blue-2);
  animation: count-to-99 1.8s linear 0.4s both;
}
@keyframes count-to-99 {
  from { content: '0'; }
}
.hw__perf-name { font-size: 12px; font-weight: 700; color: var(--text-2); margin-bottom: 14px; }
.hw__perf-metrics { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.hw__perf-metric {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: var(--text-2);
}

/* ================================================================
   3. Marketing — ROAS animated bar chart
   ================================================================ */
.hw--roas {}
.hw__roas-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hw__roas-title-text { font-size: 11px; font-weight: 600; color: var(--text-3); letter-spacing:.05em; text-transform: uppercase; }
.hw__roas-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--blue-3);
}
.hw__roas-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 10px;
}
.hw__roas-bar {
  flex: 1;
  background: rgba(59,130,246,0.25);
  border-radius: 4px 4px 0 0;
  height: var(--roas-h, 30%);
  transform-origin: bottom;
  animation: bar-rise 0.8s cubic-bezier(.4,0,.2,1) both;
}
.hw__roas-bar:nth-child(1) { animation-delay: 0.1s; }
.hw__roas-bar:nth-child(2) { animation-delay: 0.2s; }
.hw__roas-bar:nth-child(3) { animation-delay: 0.3s; }
.hw__roas-bar:nth-child(4) { animation-delay: 0.4s; }
.hw__roas-bar:nth-child(5) { animation-delay: 0.5s; }
.hw__roas-bar--hi { background: var(--blue-2); }
@keyframes bar-rise {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
.hw__roas-caption { font-size: 10px; color: var(--text-3); }

/* ================================================================
   4. E-commerce — Cart recovery notification
   ================================================================ */
.hw--cart {}
.hw__cart-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.hw__cart-pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--success);
  animation: hw-pulse-green 1.5s ease-out infinite;
  flex-shrink: 0;
}
@keyframes hw-pulse-green {
  0%  { box-shadow: 0 0 0 0 rgba(16,185,129,.6); }
  70% { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
  100%{ box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hw__cart-status { font-size: 12px; font-weight: 600; color: var(--success); }
.hw__cart-amount {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--text-1);
  margin-bottom: 4px;
}
.hw__cart-detail { font-size: 11px; color: var(--text-3); margin-bottom: 14px; }
.hw__cart-progress {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.hw__cart-bar {
  height: 100%;
  width: 70%;
  background: var(--grad);
  border-radius: 2px;
  animation: cart-fill 3s ease-in-out infinite;
}
@keyframes cart-fill {
  0%,100% { width: 30%; }
  50%      { width: 90%; }
}

/* ================================================================
   5. Branding — Brand identity preview
   ================================================================ */
.hw--brand { text-align: center; }
.hw__brand-mark {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1E40AF, #3B82F6);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  margin: 0 auto 10px;
  animation: brand-spin 8s ease-in-out infinite;
}
@keyframes brand-spin {
  0%,100% { border-radius: 14px; transform: rotate(0deg); }
  25%     { border-radius: 50%; transform: rotate(5deg); }
  50%     { border-radius: 8px; transform: rotate(-5deg); }
  75%     { border-radius: 30% 70% 70% 30%/30% 30% 70% 70%; transform: rotate(3deg); }
}
.hw__brand-name { font-size: 13px; font-weight: 700; color: var(--text-1); margin-bottom: 14px; }
.hw__brand-colors {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 14px;
}
.hw__brand-swatch {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c, var(--blue));
  border: 2px solid rgba(255,255,255,0.1);
  animation: swatch-in 0.4s ease both;
}
.hw__brand-swatch:nth-child(1){ animation-delay:.1s; }
.hw__brand-swatch:nth-child(2){ animation-delay:.2s; }
.hw__brand-swatch:nth-child(3){ animation-delay:.3s; }
.hw__brand-swatch:nth-child(4){ animation-delay:.4s; }
.hw__brand-swatch:nth-child(5){ animation-delay:.5s; }
@keyframes swatch-in {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.hw__brand-type {
  display: flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}
.hw__brand-font { font-family: serif; font-size: 22px; font-weight: 700; color: var(--text-2); }
.hw__brand-font-name { font-size: 10px; color: var(--text-3); }

/* ================================================================
   6. Social — Engagement card
   ================================================================ */
.hw--social { padding: 0; overflow: hidden; }
.hw__social-post {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.hw__social-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.hw__social-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.hw__social-name { font-size: 12px; font-weight: 700; color: var(--text-1); }
.hw__social-time { font-size: 10px; color: var(--text-3); }
.hw__social-image {
  height: 80px;
  background: linear-gradient(135deg, rgba(59,130,246,.15), rgba(0,212,255,.15));
  border-radius: var(--r-sm);
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}
.hw__social-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  animation: shimmer 2.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.hw__social-stats {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--text-3);
}
.hw__social-stat { display: flex; align-items: center; gap: 4px; }
.hw__social-likes { animation: like-pop 2s ease-in-out infinite; }
@keyframes like-pop {
  0%,90%,100% { transform: scale(1); }
  95%          { transform: scale(1.3); color: #ef4444; }
}
.hw__social-growth {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
}

/* ================================================================
   7. Work — Project card stack
   ================================================================ */
.hw--work {}
.hw__work-count {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--text-1);
  line-height: 1;
  margin-bottom: 2px;
}
.hw__work-count-label { font-size: 11px; color: var(--text-3); margin-bottom: 16px; }
.hw__work-cards { display: flex; flex-direction: column; gap: 8px; }
.hw__work-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hw__work-card-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--text-1);
}
.hw__work-card-tags { display: flex; gap: 4px; }
.hw__work-card-tag {
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  background: var(--blue-soft);
  color: var(--blue-3);
}
.hw__work-card-tag--alt { background: rgba(0,212,255,0.08); color: var(--cyan); }
.hw__work-card-tag--sec { background: rgba(245,158,11,0.08); color: #F59E0B; }

/* ================================================================
   8. Process — Step progress indicator
   ================================================================ */
.hw--process {}
.hw__process-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.hw__process-label { font-size: 11px; color: var(--text-3); font-weight: 600; letter-spacing:.05em; text-transform: uppercase; }
.hw__process-step-indicator {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--blue-3);
}
.hw__process-steps-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 14px; }
.hw__process-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  color: var(--text-3);
  transition: color 0.3s;
}
.hw__process-item:last-child { border-bottom: none; }
.hw__process-num {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s;
}
.hw__process-item--done .hw__process-num { background: var(--success); border-color: var(--success); color: #fff; }
.hw__process-item--done { color: var(--text-2); }
.hw__process-item--active { color: var(--text-1); font-weight: 600; }
.hw__process-item--active .hw__process-num { background: var(--blue-2); border-color: var(--blue-2); color: #fff; }
.hw__process-track {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.hw__process-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
  width: 60%;
  animation: proc-fill 8s linear infinite;
}
@keyframes proc-fill {
  0%  { width: 0%; }
  20% { width: 20%; }
  40% { width: 40%; }
  60% { width: 60%; }
  80% { width: 80%; }
  95% { width: 100%; }
  100%{ width: 100%; }
}

/* ================================================================
   9. About — Market presence
   ================================================================ */
.hw--markets {}
.hw__markets-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.hw__market-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.hw__market-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-2);
  flex-shrink: 0;
}
.hw__market-dot--pulse {
  animation: hw-pulse 2s ease-out infinite;
}
.hw__market-dot--pulse:nth-child(1) { animation-delay: 0s; }
.hw__market-flag { font-size: 11px; font-weight: 700; color: var(--text-2); }
.hw__market-name { font-size: 10px; color: var(--text-3); }
.hw__markets-stat {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* ================================================================
   10. Pricing — Plan highlight widget
   ================================================================ */
.hw--pricing {}
.hw__pricing-plans { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.hw__pricing-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  font-size: 12px;
}
.hw__pricing-plan--active {
  border-color: var(--blue-2);
  background: rgba(59,130,246,0.08);
  animation: plan-glow 3s ease-in-out infinite;
}
@keyframes plan-glow {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
  50%      { box-shadow: 0 0 16px 2px rgba(59,130,246,0.2); }
}
.hw__pricing-plan-name { font-weight: 600; color: var(--text-2); }
.hw__pricing-plan--active .hw__pricing-plan-name { color: var(--blue-3); font-weight: 700; }
.hw__pricing-plan-price { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-1); }
.hw__pricing-plan-price span { font-size: 10px; font-weight: 400; color: var(--text-3); }
.hw__pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
}

/* ================================================================
   11. Servicios hub — srv-grid widget
   ================================================================ */
.hw--srv-grid { padding: 20px; }
.hw__srvgrid-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 14px;
}
.hw__srvgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.hw__srvgrid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  padding: 12px 6px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateY(8px);
  animation: srv-item-in 0.4s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes srv-item-in {
  to { opacity: 1; transform: translateY(0); }
}
.hw__srvgrid-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-xs);
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
}
.hw__srvgrid-name {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-align: center;
  letter-spacing: 0.03em;
}
.hw__srvgrid-footer {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-4);
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* ================================================================
   12. Servicios hub — linkable service cards
   ================================================================ */
.service-card--link {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service-card--link .service-card__desc { margin-bottom: 16px; }
.service-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-2);
  margin-top: 18px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all var(--dur-base) var(--ease);
}
.service-card--link:hover .service-card__cta {
  opacity: 1;
  transform: translateX(0);
}
.service-card--link:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 4px;
}

/* ================================================================
   13. Servicios hub — why-grid section
   ================================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: all var(--dur-slow) var(--ease);
}
.why-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--card-glow);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-2);
  margin-bottom: 20px;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.why-card__desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 16px; } }
@media (max-width: 600px) { .why-grid { grid-template-columns: 1fr; } }

