:root {
  --bg: #222834;
  --bg-2: #2a3142;
  --bg-3: #2c3447;
  --card: #2e3649;
  --card-2: #353d52;
  --fg: #ffffff;
  --fg-2: #c5c9d4;
  --muted: #8a90a0;
  --yellow: #f5b638;
  --yellow-2: #ffc550;
  --border: rgba(255,255,255,0.06);
  --radius: 6px;
  --gutter: max(1.5rem, calc((100vw - 1300px) / 2));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  font-family: 'Poppins', sans-serif;
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: none; }
button, input, textarea { cursor: none; font-family: inherit; }
::selection { background: var(--yellow); color: #000; }

em { font-style: normal; color: var(--yellow); }

/* Cursor */
.cursor {
  position: fixed;
  width: 34px; height: 34px;
  border: 1.5px solid var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.35s, height 0.35s, background 0.35s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed;
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cursor.hover { width: 70px; height: 70px; background: rgba(245,182,56,0.2); }

.container { width: 100%; background: var(--bg); overflow: hidden; }

/* ============ HERO ============ */
.hero {
  background: var(--bg);
  padding: 1rem var(--gutter) 3rem;
  position: relative;
  overflow: hidden;
}
.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  top: -15%; right: -8%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(245,182,56,0.10), rgba(255,140,50,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow1 8s ease-in-out infinite;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.06), rgba(245,182,56,0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: heroGlow2 10s ease-in-out infinite 2s;
}
@keyframes heroGlow1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(-30px, 20px) scale(1.1); opacity: 0.7; }
}
@keyframes heroGlow2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 1; }
  50% { transform: translate(20px, -25px) scale(1.15); opacity: 0.6; }
}

.nav-row {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem var(--gutter);
  background: rgba(34, 40, 52, 0.75);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), background 0.3s;
}
.nav-row.scrolled {
  background: rgba(28, 33, 44, 0.9);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
.hero { padding-top: 5.5rem; }
.logo { position: relative; display: block; width: 50px; height: 50px; }
.logo-mark { width: 50px; height: 50px; }
.logo-mark.small { width: 32px; height: 32px; }
.logo-dot {
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
  margin-right: 2rem;
}
.nav-hire {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1.2rem 0.65rem 1rem;
  background: var(--yellow);
  color: #1a1f2c;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 4px 20px rgba(245,182,56,0.25);
}
.nav-hire:hover {
  background: var(--yellow-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245,182,56,0.4);
}
.nav-hire svg { transition: transform 0.3s; }
.nav-hire:hover svg { transform: translateX(3px); }
.nav-hire-dot {
  width: 7px; height: 7px;
  background: #0a7c00;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(10, 124, 0, 0.2);
  animation: pulse 2s infinite;
}

.nav-socials {
  display: flex;
  gap: 0.6rem;
  padding-left: 1.2rem;
  border-left: 1px solid var(--border);
}
.nav-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  transition: all 0.3s;
}
.nav-socials a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  transform: translateY(-2px);
}
.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--fg-2);
  padding: 0.5rem 0;
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.active-dot {
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--yellow);
  border-radius: 50%;
}
/* ============ STICKY SOCIAL RAIL ============ */
.social-rail {
  position: fixed;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.social-rail a {
  position: relative;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(28, 33, 44, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--fg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  cursor: none;
}
.social-rail a span {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translate(-10px, -50%);
  margin-left: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: var(--yellow);
  color: #1a1f2c;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.social-rail a span::before {
  content: '';
  position: absolute;
  left: -4px; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--yellow);
}
.social-rail a:hover {
  background: var(--yellow);
  color: #1a1f2c;
  border-color: var(--yellow);
  transform: translateX(3px) scale(1.08);
  box-shadow: 0 8px 25px rgba(245,182,56,0.4);
}
.social-rail a:hover span {
  opacity: 1;
  transform: translate(0, -50%);
}
.rail-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
  margin-top: 0.5rem;
}

@media (max-width: 1100px) {
  .social-rail { left: 0.75rem; }
  .social-rail a { width: 38px; height: 38px; }
}
@media (max-width: 820px) {
  .social-rail { display: none; }
}

/* ============ MOBILE BOTTOM NAV ============ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 1.5rem);
  max-width: 420px;
  height: 68px;
  background: rgba(28, 33, 45, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 0 1rem;
  z-index: 90;
  align-items: center;
  justify-content: space-around;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.05);
}
.bn-item {
  position: relative;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  border-radius: 50%;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
}
.bn-item:hover, .bn-item.active { color: var(--fg); }
.bn-item.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--yellow);
}

.bn-center {
  position: relative;
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-22px);
}
.bn-center-inner {
  position: relative;
  width: 58px; height: 58px;
  background: linear-gradient(145deg, var(--yellow), #e89e0f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1f2c;
  box-shadow:
    0 10px 30px rgba(245,182,56,0.45),
    0 0 0 6px rgba(245,182,56,0.12),
    inset 0 2px 4px rgba(255,255,255,0.3);
  z-index: 2;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
}
.bn-center:active .bn-center-inner { transform: scale(0.92); }
.bn-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(245,182,56,0.35), transparent 60%);
  border-radius: 50%;
  z-index: 1;
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}

/* ---- Hero Split Layout ---- */
.hero-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 1.5rem;
  align-items: center;
  min-height: 60vh;
  padding-top: 1rem;
}

/* ---- LEFT SIDE ---- */
.hero-left { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--fg);
  padding: 0.4rem 1rem 0.4rem 0.7rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.03em;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #06d6a0;
  border-radius: 50%;
  box-shadow: 0 0 10px #06d6a0;
  animation: pulse 2s infinite;
}
.hero-name {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1rem;
  white-space: nowrap;
}
.hero-name .dot { color: var(--yellow); }
.hero-role {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
.hero-desc {
  font-size: 0.95rem;
  color: var(--fg-2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.hero-desc em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.hero-social-row {
  display: flex;
  gap: 0.6rem;
}
.hero-social-row a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  transition: all 0.3s;
}
.hero-social-row a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245,182,56,0.25);
}

/* ---- RIGHT SIDE — Workflow ---- */
.hero-right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
}
.workflow-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 580px;
}

/* Subtle grid inside workflow */
.wf-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,182,56,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,182,56,0.025) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: 20px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 80%);
}

/* SVG connection lines */
.wf-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ---- Workflow Nodes ---- */
.wf-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.1rem 0.6rem 0.6rem;
  background: rgba(34,40,52,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  animation: nodeAppear 0.6s ease-out both;
  z-index: 2;
}
.wf-node:nth-child(2) { animation-delay: 0.1s; }
.wf-node:nth-child(3) { animation-delay: 0.25s; }
.wf-node:nth-child(4) { animation-delay: 0.4s; }
.wf-node:nth-child(5) { animation-delay: 0.55s; }
.wf-node:nth-child(6) { animation-delay: 0.7s; }
.wf-node:nth-child(7) { animation-delay: 0.85s; }
.wf-node:nth-child(8) { animation-delay: 1.0s; }
@keyframes nodeAppear {
  from { opacity: 0; transform: translateX(-50%) translateY(15px) scale(0.9); }
  to { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
.wf-node:hover {
  border-color: rgba(245,182,56,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,182,56,0.1);
  transform: translateX(-50%) translateY(-3px);
}

.wf-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-icon-trigger { background: rgba(245,182,56,0.12); border: 1px solid rgba(245,182,56,0.2); }
.wf-icon-design { background: rgba(167,139,250,0.12); border: 1px solid rgba(167,139,250,0.2); }
.wf-icon-code { background: rgba(56,189,248,0.12); border: 1px solid rgba(56,189,248,0.2); }
.wf-icon-wp { background: rgba(33,160,208,0.12); border: 1px solid rgba(33,160,208,0.2); }
.wf-icon-test { background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.2); }
.wf-icon-optimize { background: rgba(251,146,60,0.12); border: 1px solid rgba(251,146,60,0.2); }
.wf-icon-deploy { background: rgba(245,182,56,0.15); border: 1px solid rgba(245,182,56,0.25); }

.wf-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* Pulse ring on trigger & final */
.wf-pulse-ring {
  position: absolute;
  inset: -6px;
  border: 1.5px solid rgba(245,182,56,0.2);
  border-radius: 18px;
  animation: wfPulse 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes wfPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Trigger and final node active glow */
.wf-trigger { border-color: rgba(245,182,56,0.2); }
.wf-final { border-color: rgba(245,182,56,0.15); }
.wf-trigger::before,
.wf-final::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 50%, rgba(245,182,56,0.06), transparent 70%);
  pointer-events: none;
}

/* Active node animation — nodes light up sequentially */
.wf-node:nth-child(2) { animation: nodeGlow 8s ease-in-out infinite 0s; }
.wf-node:nth-child(3) { animation: nodeGlow 8s ease-in-out infinite 1.2s; }
.wf-node:nth-child(4) { animation: nodeGlow 8s ease-in-out infinite 2.4s; }
.wf-node:nth-child(5) { animation: nodeGlow 8s ease-in-out infinite 3.6s; }
.wf-node:nth-child(6) { animation: nodeGlow 8s ease-in-out infinite 4.8s; }
.wf-node:nth-child(7) { animation: nodeGlow 8s ease-in-out infinite 6.0s; }
.wf-node:nth-child(8) { animation: nodeGlow 8s ease-in-out infinite 7.2s; }
@keyframes nodeGlow {
  0%, 10% { border-color: rgba(255,255,255,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
  15%, 25% { border-color: rgba(245,182,56,0.35); box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(245,182,56,0.1); }
  30%, 100% { border-color: rgba(255,255,255,0.08); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
}

/* Status indicators */
.wf-status {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
  z-index: 1;
}
.ws-1 { bottom: 15px; left: 20px; }
.ws-2 { bottom: 15px; left: 50%; transform: translateX(-50%); }
.ws-3 { bottom: 15px; right: 20px; }
.ws-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
}
.ws-green { background: #06d6a0; box-shadow: 0 0 6px rgba(6,214,160,0.5); }
.ws-yellow { background: #f5b638; box-shadow: 0 0 6px rgba(245,182,56,0.5); animation: pulse 2s infinite; }
.ws-blue { background: #38bdf8; box-shadow: 0 0 6px rgba(56,189,248,0.5); }

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.btn-yellow, .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  position: relative;
  overflow: hidden;
}
.btn-yellow {
  background: linear-gradient(135deg, var(--yellow), #ffcf5a);
  color: #1a1f2c;
  box-shadow: 0 4px 20px rgba(245,182,56,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-yellow::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transition: left 0.5s;
}
.btn-yellow:hover::before { left: 100%; }
.btn-yellow:hover {
  background: linear-gradient(135deg, #ffc550, #ffd970);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245,182,56,0.35), 0 0 0 4px rgba(245,182,56,0.1);
}
.btn-yellow .arrow { background: #1a1f2c; color: var(--yellow); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,182,56,0.4);
  color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.social-mini { display: flex; gap: 0.8rem; }
.social-mini a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  transition: all 0.3s;
}
.social-mini a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  transform: translateY(-3px);
}

/* PORTRAIT */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.portrait {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
}
.portrait-bg {
  position: absolute;
  inset: -3px;
  border-radius: 18px;
  z-index: 0;
  background: linear-gradient(135deg, var(--yellow), rgba(245,182,56,0.05) 40%, rgba(99,102,241,0.15) 60%, var(--yellow));
  background-size: 300% 300%;
  animation: gradientShift 6s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.portrait-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #3a4256 0%, #222834 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.portrait-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(245,182,56,0.12), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(99,102,241,0.06), transparent 50%);
  z-index: 2;
}
.portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.8s cubic-bezier(.2,.8,.2,1), filter 0.8s;
}
.portrait:hover .portrait-img {
  transform: scale(1.05);
  filter: brightness(1.05);
}
.portrait::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(245,182,56,0.15), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(40px);
  animation: portraitGlow 4s ease-in-out infinite;
}
@keyframes portraitGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}
.portrait-tag {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(34,40,52,0.7);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.72rem;
  color: var(--fg);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}
.dot-live {
  width: 7px; height: 7px;
  background: #06d6a0;
  border-radius: 50%;
  box-shadow: 0 0 10px #06d6a0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:0.4} }

.floater {
  position: absolute;
  z-index: 4;
  background: rgba(34,40,52,0.75);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.floater:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.floater .f-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}
.floater .f-num em { color: var(--fg); }
.floater .f-label {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.3;
}
.f-top { top: 12%; right: -40px; animation: bob 4s ease-in-out infinite; }
.f-bottom { bottom: 20%; left: -50px; animation: bob 4s ease-in-out infinite 1.5s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Tech stack pill floating at bottom-right of portrait */
.portrait-stack {
  position: absolute;
  bottom: -18px;
  right: -18px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem 0.55rem 1rem;
  background: rgba(34,40,52,0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
  font-size: 0.7rem;
  color: var(--muted);
  animation: bob 5s ease-in-out infinite 0.7s;
}
.portrait-stack .stack-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.portrait-stack .stack-icons span {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(245,182,56,0.25), rgba(245,182,56,0.05));
  border: 1px solid rgba(245,182,56,0.35);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 0.68rem;
  font-weight: 700;
}

/* ARROW LINK */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--yellow);
  font-size: 0.9rem;
  font-weight: 500;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(245,182,56,0.4);
  transition: gap 0.3s, border-color 0.3s;
}
.arrow-link:hover { gap: 1.2rem; border-color: var(--yellow); }
.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  background: rgba(245,182,56,0.15);
  border-radius: 50%;
  font-size: 0.85rem;
}

/* ============ INFO STRIP ============ */
.info-strip {
  background: var(--bg-2);
  padding: 5rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
}
.info-left .eyebrow { color: var(--muted); }
.info-left h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
.info-left p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 360px;
}
.info-right .big-quote {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 3rem;
  letter-spacing: -0.01em;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.stat h4 {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.stat h4 em { color: var(--fg); }
.stat span {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
  display: block;
}

/* ============ SERVICES ============ */
.services {
  background: var(--bg);
  padding: 6rem var(--gutter);
}
.section-top { margin-bottom: 3rem; max-width: 700px; }
.section-top h2,
.works-top h2,
.contact-left h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  perspective: 1200px;
}
.service-card {
  background: var(--card);
  padding: 2.5rem 2rem;
  border-radius: 14px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(0) rotateY(0);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, background 0.4s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 20px 40px rgba(0,0,0,0.25),
    0 6px 12px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05);
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  background: var(--card-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 40px 80px rgba(0,0,0,0.5),
    0 15px 30px rgba(0,0,0,0.3);
}
.service-card > * {
  position: relative;
  transform: translateZ(40px);
}
.service-card .service-icon { transform: translateZ(60px); }
.service-card h3 { transform: translateZ(50px); }
.service-card.highlight {
  background: var(--yellow);
  color: #1a1f2c;
  box-shadow:
    0 20px 50px rgba(245,182,56,0.35),
    0 8px 16px rgba(245,182,56,0.25);
}
.service-card.highlight:hover {
  background: var(--yellow-2);
  box-shadow:
    0 40px 90px rgba(245,182,56,0.5),
    0 15px 30px rgba(245,182,56,0.35);
}
.service-card.highlight::before {
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.3), transparent 50%);
}
.service-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  opacity: 0.9;
}
.service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 2rem 0 0.6rem;
}
.service-desc { font-size: 0.88rem; opacity: 0.75; margin-bottom: 1rem; }
.service-card.highlight .service-desc { color: #1a1f2c; opacity: 0.75; }
.count { font-size: 0.82rem; font-weight: 500; opacity: 0.8; }
.count em { font-weight: 600; }
.service-card:not(.highlight) .count em { color: var(--yellow); }

/* ============ PRICING ============ */
.pricing {
  background: var(--bg-2);
  padding: 6rem var(--gutter);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,182,56,0.08), transparent 70%);
  pointer-events: none;
}
.pricing .section-top { margin-bottom: 3.5rem; }
.pricing .section-top h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.pricing-sub {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 560px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  position: relative;
}

.price-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.25rem 1.85rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.4s, background 0.4s;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.04) inset,
    0 20px 40px rgba(0,0,0,0.25);
}
.price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,182,56,0.25);
  background: var(--card-2);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 40px 80px rgba(0,0,0,0.5),
    0 15px 30px rgba(245,182,56,0.1);
}
.price-card:hover::before { opacity: 1; }

.price-card.highlight {
  background: linear-gradient(160deg, #2e3649 0%, #353d52 100%);
  border: 1px solid rgba(245,182,56,0.35);
  transform: translateY(-12px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 30px 70px rgba(0,0,0,0.45),
    0 15px 40px rgba(245,182,56,0.18);
}
.price-card.highlight::before { opacity: 1; }
.price-card.highlight:hover {
  transform: translateY(-16px);
  border-color: rgba(245,182,56,0.55);
}

.price-badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--yellow);
  color: #1a1f2c;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.75rem;
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(245,182,56,0.35);
}

.price-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.price-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--yellow);
  color: var(--yellow);
  border-radius: 12px;
  background: rgba(245,182,56,0.08);
}
.price-head h3 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.35rem;
}
.price-tag-label {
  font-size: 0.75rem;
  color: var(--muted);
}

.price-amount {
  padding: 1.25rem 0;
  border-top: 1px dashed rgba(255,255,255,0.1);
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.price-from {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.price-value {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}
.price-currency {
  font-size: 1.4rem;
  color: var(--yellow);
  font-weight: 600;
}
.price-value em {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-left: 0.25rem;
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.price-features li {
  font-size: 0.85rem;
  color: var(--fg-2);
  padding: 0.55rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-features li:last-child { border-bottom: none; }
.price-features .check {
  flex-shrink: 0;
  width: 18px; height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,182,56,0.15);
  color: var(--yellow);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

.price-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.95rem 1.5rem;
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s, border-color 0.3s, color 0.3s, gap 0.3s;
}
.price-btn:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a1f2c;
  gap: 1rem;
}
.price-btn .arrow {
  background: rgba(255,255,255,0.12);
}
.price-btn:hover .arrow {
  background: rgba(26,31,44,0.2);
}
.price-card.highlight .price-btn {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #1a1f2c;
}
.price-card.highlight .price-btn .arrow {
  background: rgba(26,31,44,0.2);
}
.price-card.highlight .price-btn:hover {
  background: var(--yellow-2);
  border-color: var(--yellow-2);
}

.pricing-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.pricing-note a {
  color: var(--yellow);
  font-weight: 500;
  border-bottom: 1px solid rgba(245,182,56,0.4);
  transition: border-color 0.3s;
}
.pricing-note a:hover { border-color: var(--yellow); }

/* ============ WORKS ============ */
.works {
  background: var(--bg-2);
  padding: 6rem var(--gutter);
}
.works-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.works-top p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  max-width: 440px;
}
.works-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.slider-nav { display: flex; gap: 0.6rem; }
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s;
}
.slider-btn:hover {
  background: var(--yellow);
  color: #1a1f2c;
  border-color: var(--yellow);
  transform: scale(1.05);
}
.slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.works-slider {
  position: relative;
  margin: 0 calc(var(--gutter) * -1);
  padding: 0 var(--gutter);
  overflow: hidden;
}
.works-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 0.5rem;
  cursor: grab;
}
.works-track::-webkit-scrollbar { display: none; }
.works-track.dragging { cursor: grabbing; scroll-behavior: auto; }
.works-track .work-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s;
}
.slider-progress {
  margin-top: 1.75rem;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  max-width: 300px;
}
.slider-bar {
  height: 100%;
  background: var(--yellow);
  width: 33%;
  border-radius: 2px;
  transition: width 0.3s, transform 0.3s;
  transform-origin: left;
}

.work-card {
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.4s;
  cursor: none;
}

/* ============ PROJECT MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 18, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.modal-content {
  position: relative;
  width: min(1100px, 100%);
  max-height: 92vh;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow-y: auto;
  overflow-x: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}
.modal-content::-webkit-scrollbar { width: 8px; }
.modal-content::-webkit-scrollbar-track { background: transparent; }
.modal-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}
.modal-content::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }
.modal.open .modal-content { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  width: 44px; height: 44px;
  background: rgba(10, 12, 18, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.modal-close:hover {
  background: var(--yellow);
  color: #1a1f2c;
  border-color: var(--yellow);
  transform: rotate(90deg);
}
.modal-image {
  width: 100%;
  background: var(--bg);
  flex-shrink: 0;
}
.modal-image img {
  width: 100%;
  height: auto;
  display: block;
}
.modal-body {
  padding: 1.75rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.modal-badge {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--yellow);
  background: rgba(245,182,56,0.12);
  border: 1px solid rgba(245,182,56,0.3);
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
  letter-spacing: 0.04em;
}
.modal-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.modal-body p {
  color: var(--muted);
  font-size: 0.9rem;
}
body.modal-open { overflow: hidden; }

/* ============ BOOKING MODAL ============ */
.book-content {
  position: relative;
  width: min(640px, 100%);
  max-height: 92vh;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow-y: auto;
  padding: 2.5rem 2.25rem 2rem;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}
.book-modal.open .book-content { transform: scale(1) translateY(0); }
.book-content::-webkit-scrollbar { width: 8px; }
.book-content::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
}

.book-header { margin-bottom: 1.75rem; }
.book-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--yellow);
  background: rgba(245,182,56,0.12);
  border: 1px solid rgba(245,182,56,0.3);
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  font-weight: 500;
  margin-bottom: 1rem;
}
.book-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.book-header p {
  color: var(--muted);
  font-size: 0.92rem;
}

.book-form { display: flex; flex-direction: column; gap: 1.2rem; }
.book-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.book-form .field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.book-form .field label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.book-form .field input,
.book-form .field select,
.book-form .field textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--fg);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  outline: none;
  transition: all 0.3s;
  font-family: inherit;
  resize: none;
}
.book-form .field input::placeholder,
.book-form .field textarea::placeholder { color: var(--muted); }
.book-form .field input:focus,
.book-form .field select:focus,
.book-form .field textarea:focus {
  border-color: var(--yellow);
  background: rgba(245,182,56,0.04);
}
.book-form .field select {
  appearance: none;
  -webkit-appearance: none;
  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='%238a90a0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.book-form .field select option {
  background: var(--card);
  color: var(--fg);
}
.book-form .field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) hue-rotate(10deg) saturate(5);
  cursor: pointer;
}

.book-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem 1.5rem;
  background: var(--yellow);
  color: #1a1f2c;
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.35s;
  margin-top: 0.5rem;
}
.book-submit:hover {
  background: var(--yellow-2);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245,182,56,0.35);
}
.book-note {
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 0.25rem;
}
.spinner {
  display: inline-block;
  width: 16px; height: 16px;
  border: 2px solid rgba(26,31,44,0.25);
  border-top-color: #1a1f2c;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.4rem;
}
@keyframes spin { to { transform: rotate(360deg); } }
.book-submit:disabled { opacity: 0.85; cursor: wait; }

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%, 100px);
  z-index: 999;
  padding: 1rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.2,.8,.2,1);
  max-width: calc(100% - 2rem);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast-success { border-color: rgba(34,197,94,0.5); background: rgba(34,197,94,0.12); color: #4ade80; }
.toast-error { border-color: rgba(239,68,68,0.5); background: rgba(239,68,68,0.12); color: #f87171; }
@media (max-width: 720px) {
  .toast { bottom: 100px; font-size: 0.82rem; padding: 0.85rem 1.25rem; }
}

@media (max-width: 720px) {
  .book-content { padding: 2rem 1.25rem 1.5rem; }
  .book-row { grid-template-columns: 1fr; gap: 1rem; }
  .book-header h2 { font-size: 1.5rem; }
}

@media (max-width: 720px) {
  .modal { padding: 0.75rem; }
  .modal-content { max-height: 90vh; }
  .modal-body { padding: 1.25rem 1.5rem 1.5rem; }
}
.work-card:hover { transform: translateY(-6px); }
.work-img {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.work-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.work-card:hover .work-img img { transform: scale(1.06); }
.work-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.72rem;
  border-radius: 100px;
  z-index: 2;
}

.work-meta {
  padding: 1.3rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.work-meta h3 { font-size: 1.15rem; font-weight: 600; }
.work-meta h3 span { color: var(--yellow); }
.work-meta > span { font-size: 0.82rem; color: var(--muted); }

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--bg);
  padding: 6rem var(--gutter);
}
.testi-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.testi-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.testi-pills {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s;
}
.pill-green {
  background: rgba(20, 168, 0, 0.15);
  color: #22c55e;
  border: 1px solid rgba(20, 168, 0, 0.3);
  font-weight: 600;
}
.pill-dark {
  background: rgba(255,255,255,0.04);
  color: var(--fg);
  border: 1px solid var(--border);
}
.pill-outline {
  background: transparent;
  color: var(--fg-2);
  border: 1px solid rgba(255,255,255,0.12);
}
.pill-outline:hover {
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  border-color: rgba(255,255,255,0.25);
}

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

.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  transition: all 0.35s cubic-bezier(.2,.8,.2,1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 197, 94, 0.3);
  background: var(--card-2);
}

.tc-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  position: relative;
}
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tc-name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.15rem;
  flex-wrap: wrap;
}
.verified {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
}
.tc-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.tc-meta .stars { color: var(--yellow); }
.tc-rating {
  color: var(--yellow);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  align-self: flex-start;
}
.tc-quote {
  position: absolute;
  top: 0; right: 0;
  opacity: 0.6;
}

.tc-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--fg-2);
  flex: 1;
}

.tc-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
}
.tc-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--fg-2);
}
.tc-source {
  font-size: 0.72rem;
  color: var(--muted);
  white-space: nowrap;
}

/* ============ CONTACT ============ */
.contact {
  background: var(--bg-2);
  padding: 6rem var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
}
.contact-left h2 { margin-bottom: 1rem; }
.contact-left > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  max-width: 380px;
}
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-info div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
}
.contact-info div:last-child { border-bottom: 1px solid var(--border); }
.contact-info strong {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info span { font-size: 1rem; color: var(--fg); }

.contact-form {
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field label { font-size: 0.78rem; color: var(--muted); font-weight: 500; }
.field input, .field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: var(--fg);
  font-size: 1rem;
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.3s;
  resize: none;
  font-family: inherit;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus { border-color: var(--yellow); }
.submit-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2rem;
  background: var(--yellow);
  color: #1a1f2c;
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.35s;
  margin-top: 0.5rem;
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(245,182,56,0.35); }
.submit-btn .arrow { background: #1a1f2c; color: var(--yellow); }

/* ============ FOOTER ============ */
.footer {
  background: var(--bg);
  padding: 2rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}
.foot-left { display: flex; align-items: center; gap: 1rem; }
.foot-left p { color: var(--muted); font-size: 0.85rem; }
.foot-right { display: flex; gap: 2rem; }
.foot-right a { font-size: 0.85rem; color: var(--fg-2); transition: color 0.3s; }
.foot-right a:hover { color: var(--yellow); }
.foot-socials {
  display: none;
  gap: 0.6rem;
}
.foot-socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-2);
  transition: all 0.3s;
}
.foot-socials a:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
  transform: translateY(-2px);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(.2,.8,.2,1), transform 1s cubic-bezier(.2,.8,.2,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */

/* ========= TABLET (≤1100px) ========= */
@media (max-width: 1100px) {
  :root { --gutter: 2rem; }

  .nav-socials { display: none; }
  .foot-socials { display: flex; }

  .hero { padding-top: 2rem; padding-bottom: 4rem; }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: auto;
    padding-top: 1rem;
  }
  .hero-left { max-width: 100%; text-align: center; }
  .hero-left .hero-cta { justify-content: center; }
  .hero-left .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-desc { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-right { justify-content: center; }
  .workflow-container { max-width: 520px; height: 500px; margin: 0 auto; }

  .info-strip, .contact { grid-template-columns: 1fr; gap: 3rem; }
  .contact-left > p, .info-left p { max-width: 100%; }
  .works-top { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; gap: 1.25rem; max-width: 480px; margin: 0 auto; }
  .price-card.highlight { transform: none; }
  .price-card.highlight:hover { transform: translateY(-8px); }
  .works-track .work-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }

  .info-strip, .services, .works, .testimonials, .contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ========= LARGE PHONES (≤820px) — disable cursor ========= */
@media (max-width: 820px) {
  body { cursor: auto; }
  a, button, input, textarea, .service-card, .work-card, .slider-btn { cursor: auto !important; }
  .cursor, .cursor-dot { display: none; }
}

/* ========= PHONES (≤768px) ========= */
@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }

  /* Show bottom nav, hide top nav links */
  .nav-links { display: none; }
  .bottom-nav { display: flex; }
  body { padding-bottom: 100px; }

  /* Section paddings */
  .hero { padding-top: 1rem; padding-bottom: 3.5rem; overflow: visible; }
  .hero::before, .hero::after { display: none; }
  .info-strip, .services, .works, .testimonials, .contact {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  /* NAV ROW */
  .nav-row {
    position: relative;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.75rem 0;
    margin-bottom: 2.5rem;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    box-shadow: none;
  }
  .hero { padding-top: 1rem; }
  .logo, .logo-mark { width: 38px; height: 38px; }
  .nav-hire {
    margin-left: auto;
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
    gap: 0.4rem;
    box-shadow: 0 3px 12px rgba(245,182,56,0.25);
  }
  .nav-hire svg { width: 12px; height: 12px; }
  .nav-hire-dot { width: 6px; height: 6px; }
  .nav-socials { display: none; }
  .foot-socials { display: flex; }
  .footer {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    text-align: center;
  }
  .foot-left { width: 100%; justify-content: center; }
  .foot-socials { width: 100%; justify-content: center; }
  .foot-right { width: 100%; justify-content: center; }

  /* HERO — phone layout */
  .hero-split { gap: 1.5rem; }
  .hero-left { text-align: center; }
  .hero-left .hero-cta { justify-content: center; }
  .hero-left .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-name {
    font-size: clamp(1.8rem, 8vw, 3rem);
    white-space: normal;
  }
  .hero-role { font-size: 0.95rem; }
  .hero-desc { font-size: 0.88rem; margin-left: auto; margin-right: auto; }
  .workflow-container { height: 380px; max-width: 100%; }
  .wf-lines { viewBox: 0 0 600 540; }
  .wf-node { padding: 0.4rem 0.75rem 0.4rem 0.4rem; border-radius: 11px; }
  .wf-icon { width: 30px; height: 30px; border-radius: 8px; }
  .wf-icon svg { width: 15px; height: 15px; }
  .wf-icon span { font-size: 0.7rem !important; }
  .wf-label { font-size: 0.65rem; }
  .wf-status { font-size: 0.55rem; }
  .wf-pulse-ring { inset: -4px; border-radius: 14px; }
  .hero-cta {
    flex-direction: row;
    gap: 0.6rem;
    flex-wrap: nowrap;
  }
  .btn-yellow, .btn-outline {
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  /* SECTION HEADINGS */
  .eyebrow { font-size: 0.72rem; }
  .section-top { margin-bottom: 2rem; }
  .section-top h2,
  .works-top h2,
  .contact-left h2,
  .testi-head h2 {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    line-height: 1.15;
  }

  /* INFO STRIP */
  .info-strip { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-left h3 { font-size: 1.3rem; }
  .info-left p { font-size: 0.9rem; }
  .info-right .big-quote {
    font-size: 1.05rem;
    line-height: 1.55;
    margin-bottom: 1.75rem;
  }
  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 0.5rem;
  }
  .stat {
    text-align: center;
    padding: 0.25rem 0.5rem;
    position: relative;
  }
  .stat + .stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: var(--border);
  }
  .stat h4 {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
    margin-bottom: 0.4rem;
    line-height: 1;
  }
  .stat span {
    font-size: 0.8rem;
    line-height: 1.35;
    color: var(--muted);
    display: block;
  }

  /* SERVICES */
  .service-cards { grid-template-columns: 1fr; gap: 1rem; }

  /* PRICING */
  .pricing { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .pricing .section-top { margin-bottom: 2.5rem; }
  .price-card { padding: 1.85rem 1.5rem; }
  .price-head h3 { font-size: 1.2rem; }
  .price-value { font-size: 2.35rem; }
  .price-features li { font-size: 0.82rem; }
  .service-card {
    min-height: auto;
    padding: 2rem 1.75rem;
    transform: none !important;
  }
  .service-card > * { transform: none !important; }
  .service-icon { width: 44px; height: 44px; }
  .service-icon svg { width: 22px; height: 22px; }
  .service-card h3 { font-size: 1.35rem; margin: 1.5rem 0 0.5rem; }
  .service-desc { font-size: 0.85rem; }

  /* WORKS SLIDER */
  .works-top { grid-template-columns: 1fr; gap: 1rem; align-items: start; }
  .works-top p { max-width: 100%; font-size: 0.88rem; }
  .works-actions {
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
  }
  .works-track { gap: 1rem; }
  .works-track .work-card { flex: 0 0 calc(100% - 2.5rem); }
  .slider-btn { width: 42px; height: 42px; }
  .slider-btn svg { width: 16px; height: 16px; }
  .work-meta { padding: 1rem 1.25rem; }
  .work-meta h3 { font-size: 1rem; }
  .slider-progress { margin-top: 1.25rem; }

  /* TESTIMONIALS */
  .testi-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  .testi-pills { width: 100%; gap: 0.5rem; }
  .testi-grid { grid-template-columns: 1fr; gap: 1rem; }
  .testi-card { padding: 1.35rem; gap: 1rem; }
  .tc-head { gap: 0.75rem; }
  .tc-avatar { width: 40px; height: 40px; font-size: 1rem; }
  .tc-name { font-size: 0.9rem; }
  .tc-meta { font-size: 0.72rem; }
  .tc-rating { font-size: 0.78rem; }
  .tc-quote { width: 22px; height: 18px; }
  .tc-text { font-size: 0.88rem; line-height: 1.55; }
  .tc-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding-top: 0.9rem;
  }
  .pill { font-size: 0.72rem; padding: 0.45rem 0.8rem; }

  /* CONTACT */
  .contact { grid-template-columns: 1fr; gap: 2.25rem; }
  .contact-left > p { margin-bottom: 1.5rem; font-size: 0.9rem; }
  .contact-info div { padding: 0.85rem 0; }
  .contact-info span { font-size: 0.92rem; }
  .contact-form { padding: 1.5rem; gap: 1.1rem; }
  .field label { font-size: 0.72rem; }
  .field input, .field textarea { font-size: 0.95rem; padding: 0.6rem 0; }
  .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.5rem;
    font-size: 0.9rem;
  }

  /* FOOTER */
  .footer {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .foot-right { gap: 1.25rem; flex-wrap: wrap; justify-content: center; }
}

/* ========= SMALL PHONES (≤480px) ========= */
@media (max-width: 480px) {
  :root { --gutter: 1.1rem; }

  .nav-row { margin-bottom: 2rem; }
  .hero { padding-bottom: 3rem; }
  .hero-name { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .hero-role { font-size: 0.88rem; }
  .hero-desc { font-size: 0.82rem; }
  .hero-badge { font-size: 0.68rem; }
  .workflow-container { height: 330px; }
  .wf-node { padding: 0.35rem 0.6rem 0.35rem 0.35rem; border-radius: 10px; }
  .wf-icon { width: 26px; height: 26px; border-radius: 7px; }
  .wf-icon svg { width: 13px; height: 13px; }
  .wf-icon span { font-size: 0.6rem !important; }
  .wf-label { font-size: 0.58rem; }
  .wf-status { display: none; }
  .wf-pulse-ring { inset: -3px; }
  .btn-yellow, .btn-outline { padding: 0.75rem 0.9rem; font-size: 0.78rem; gap: 0.5rem; }
  .btn-yellow svg { width: 14px; height: 14px; }

  .info-strip, .services, .works, .testimonials, .contact {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .info-right .big-quote { font-size: 0.98rem; }
  .stats { padding: 1.25rem 0.3rem; }
  .stat { padding: 0.25rem 0.4rem; }
  .stat h4 { font-size: clamp(1.65rem, 7vw, 2.1rem); }
  .stat span { font-size: 0.74rem; }

  .section-top h2,
  .works-top h2,
  .contact-left h2,
  .testi-head h2 { font-size: 1.55rem; }

  .service-card { padding: 1.6rem 1.4rem; }
  .service-card h3 { font-size: 1.25rem; }
  .testi-card { padding: 1.25rem; }
  .contact-form { padding: 1.35rem; }

  .bottom-nav {
    width: calc(100% - 1.25rem);
    bottom: 0.625rem;
    height: 64px;
  }
  .bn-center { width: 58px; height: 58px; transform: translateY(-20px); }
  .bn-center-inner { width: 52px; height: 52px; }

  .nav-hire {
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
  }
  .nav-hire svg { display: none; }
}

/* ========= TINY (≤360px) ========= */
@media (max-width: 360px) {
  :root { --gutter: 1rem; }
  .nav-hire { padding: 0.4rem 0.65rem; font-size: 0.68rem; }
  .nav-hire-dot { width: 5px; height: 5px; }
  .hero-name { font-size: 1.5rem; }
  .hero-role { font-size: 0.82rem; }
  .hero-desc { font-size: 0.78rem; }
  .workflow-container { height: 290px; }
  .wf-node { padding: 0.3rem 0.5rem 0.3rem 0.3rem; border-radius: 8px; }
  .wf-icon { width: 22px; height: 22px; border-radius: 6px; }
  .wf-icon svg { width: 11px; height: 11px; }
  .wf-label { font-size: 0.52rem; }
  .btn-yellow, .btn-outline { font-size: 0.75rem; padding: 0.7rem 0.85rem; }
  .section-top h2,
  .works-top h2,
  .contact-left h2,
  .testi-head h2 { font-size: 1.4rem; }
  .stats { padding: 1.1rem 0.2rem; }
  .stat { padding: 0.2rem 0.3rem; }
  .stat h4 { font-size: 1.55rem; margin-bottom: 0.3rem; }
  .stat span { font-size: 0.66rem; }
}
