/* ============================================================
   The Geeks Room V2: global stylesheet
   Single file by design: fewer requests, faster loads.
   Motion is CSS-driven (transform/opacity only) + a tiny JS
   observer. Everything degrades under prefers-reduced-motion.
   ============================================================ */

:root {
  --ink: #0a0d0b;
  --ink-800: #121613;
  --ink-700: #1b211d;
  --ink-600: #2a322d;
  --white: #ffffff;
  --green: #067640;
  --green-bright: #0a9d55;
  --green-dark: #04502b;
  --green-50: #eaf5ef;
  --green-100: #cfe9da;
  --gray-50: #f6f7f5;
  --gray-100: #ececea;
  --gray-200: #e0e0dc;
  --gray-300: #cfcfca;
  --gray-500: #6f6f6a;
  --gray-700: #3a3a37;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --max-width: 1200px;
  --shadow-sm: 0 1px 2px rgba(11,11,11,0.04), 0 2px 8px rgba(11,11,11,0.05);
  --shadow-md: 0 6px 14px rgba(11,11,11,0.06), 0 18px 40px rgba(11,11,11,0.09);
  --shadow-green: 0 8px 24px rgba(6,118,64,0.28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; top: 0; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Reveal on scroll ----------
   Progressive enhancement: content is visible by default, so it always
   shows if JS is disabled or fails. Only when the `js` class is present
   do we hide-then-reveal. app.js uses a scroll check (not Intersection
   Observer) and has failsafes, so content can never get stuck hidden. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--green); color: var(--white); box-shadow: var(--shadow-green); }
.btn-primary:hover { background: var(--green-bright); box-shadow: 0 12px 30px rgba(6,118,64,0.36); }
/* moving shine */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}
.btn-primary:hover::after { left: 130%; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }

.btn-ghost-light { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.22); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.5); }

.btn-sm { padding: 9px 18px; font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--gray-100);
  box-shadow: 0 1px 2px rgba(11,11,11,0.04), 0 10px 24px rgba(11,11,11,0.05);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.logo img { height: 38px; width: auto; display: block; }

.primary-nav ul { list-style: none; display: flex; gap: 30px; margin: 0; padding: 0; }
.primary-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.15s ease;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: width 0.22s ease;
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s ease; }

.mobile-nav { display: none; background: var(--white); border-bottom: 1px solid var(--gray-100); }
.mobile-nav ul { list-style: none; padding: 12px 0 20px; margin: 0; }
.mobile-nav li a { display: block; padding: 12px 0; font-family: var(--font-display); font-weight: 500; font-size: 17px; }

/* ============================================================
   HERO: dark "control room"
   ============================================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 92px 0 104px;
  overflow: hidden;
  isolation: isolate;
}
/* dot grid */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
  z-index: -2;
}
/* drifting aurora glows */
.hero .aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  z-index: -1;
}
.hero .aurora.a1 { width: 460px; height: 460px; background: #0a9d55; top: -140px; right: -80px; animation: drift1 16s ease-in-out infinite; }
.hero .aurora.a2 { width: 380px; height: 380px; background: #05683a; bottom: -160px; left: -60px; animation: drift2 20s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px,30px) scale(1.12); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px,-24px) scale(1.08); } }

.hero .container {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}

.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bff0d4;
  background: rgba(10,157,85,0.14);
  border: 1px solid rgba(10,157,85,0.3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 24px;
  padding: 8px 16px;
  border-radius: 999px;
}
.hero .eyebrow .dot, .inner-hero .eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0 rgba(10,157,85,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(10,157,85,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(10,157,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,157,85,0); }
}

.hero h1 {
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
/* rotating word: crossfade + vertical glide. Each word is stacked in the
   same spot; the active one sits in normal flow (so it sizes the box), the
   rest are absolutely overlaid. Smooth and snap-free. */
.rotator {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  white-space: nowrap;
}
.rotator .rot-word {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--green-bright);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(0.4em);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.rotator .rot-word.is-active {
  position: relative;
  opacity: 1;
  transform: none;
}
.rotator .rot-word.is-out {
  opacity: 0;
  transform: translateY(-0.4em);
}

.hero p.lede {
  font-size: 18.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 0 34px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { margin: 20px 0 0; font-size: 13.5px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.hero-note svg { width: 16px; height: 16px; color: var(--green-bright); }

/* ---- hero dashboard mockup ---- */
.hero-visual { position: relative; }
.dash {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  overflow: hidden;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.dash__bar { display: flex; align-items: center; gap: 6px; padding: 14px 16px; border-bottom: 1px solid var(--gray-100); }
.dash__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-200); }
.dash__bar span:first-child { background: var(--green); }
.dash__bar .url {
  margin-left: 10px; font-size: 12px; color: var(--gray-500);
  background: var(--gray-50); border-radius: 6px; padding: 5px 12px; flex: 1;
  font-family: var(--font-sans);
}
.dash__body { padding: 22px; }

/* abstract page-preview strip: evokes a real layout without faking a screenshot */
.dash__preview {
  height: 108px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-50), var(--gray-50));
  border: 1px solid var(--gray-100);
  padding: 16px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.dash__preview .pv-line { display: block; height: 9px; border-radius: 5px; background: rgba(6,118,64,0.18); }
.dash__preview .pv-1 { width: 55%; margin-bottom: 8px; }
.dash__preview .pv-2 { width: 80%; margin-bottom: 16px; background: rgba(10,10,10,0.08); }
.dash__preview .pv-grid { display: flex; gap: 8px; }
.dash__preview .pv-grid span { flex: 1; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.7); border: 1px solid rgba(6,118,64,0.14); }

.dash__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.dash__row .tag {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  color: var(--green); text-transform: uppercase; letter-spacing: 0.05em;
  background: var(--green-50); padding: 4px 10px; border-radius: 6px;
}
#showcaseName { font-size: 18px; margin: 0 0 8px; color: var(--ink); }
#showcaseDesc { font-size: 13.5px; color: var(--gray-500); margin: 0 0 16px; line-height: 1.55; min-height: 40px; }
.showcase-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 13.5px; font-weight: 600;
  color: var(--green);
}
.showcase-link svg { width: 14px; height: 14px; }
.dash__dots { display: flex; gap: 6px; margin-top: 18px; }
.dot-ind { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-200); transition: background 0.3s ease, width 0.3s ease; }
.dot-ind.is-active { background: var(--green); width: 18px; border-radius: 4px; }

#showcaseUrl, #showcaseTag, #showcaseName, #showcaseDesc {
  transition: opacity 0.35s ease;
}
.dash.is-switching #showcaseUrl,
.dash.is-switching #showcaseTag,
.dash.is-switching #showcaseName,
.dash.is-switching #showcaseDesc {
  opacity: 0;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  bottom: -20px; left: -24px;
  background: var(--ink-800);
  color: var(--white);
  border: 1px solid var(--ink-600);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px;
  font-size: 13.5px; font-weight: 600;
  font-family: var(--font-display);
  animation: floaty 7s ease-in-out infinite reverse;
}
.hero-badge .ic {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(10,157,85,0.18); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge .ic svg { width: 17px; height: 17px; }

/* ============================================================
   MARQUEE strip
   ============================================================ */
.marquee {
  background: var(--ink-800);
  border-top: 1px solid var(--ink-700);
  border-bottom: 1px solid var(--ink-700);
  overflow: hidden;
  padding: 18px 0;
}
.marquee__track { display: flex; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.marquee__item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
}
.marquee__item .sep { color: var(--green-bright); }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 96px 0; }
.section-head { max-width: 640px; margin: 0 0 56px; display: flex; gap: 18px; }
.section-head .num {
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  color: var(--green);
  border: 1px solid var(--green-100);
  background: var(--green-50);
  border-radius: 999px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 4px;
}
.section-head .eyebrow {
  color: var(--green); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 10px;
  font-family: var(--font-display);
}
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1.1; }
.section-head p { color: var(--gray-700); font-size: 17px; margin: 0; }

/* ---------- Services bento ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 18px;
}
.service-card {
  position: relative;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 26px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: var(--green-50); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.25s ease;
}
.service-card:hover .icon { transform: translateY(-2px) rotate(-4deg); }
.service-card .icon svg { width: 23px; height: 23px; }
.service-card h3 { font-size: 17px; margin: 0 0 8px; }
.service-card p { font-size: 14.5px; color: var(--gray-500); margin: 0 0 16px; }
.service-card .link { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--green); display: inline-flex; align-items: center; gap: 5px; }
.service-card .link svg { width: 15px; height: 15px; transition: transform 0.2s ease; }
.service-card:hover .link svg { transform: translateX(4px); }

.service-card.featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
  padding: 38px;
  display: flex; flex-direction: column; justify-content: flex-end;
  isolation: isolate;
}
.service-card.featured::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(10,157,85,0.4), transparent 45%),
    radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 100% 100%, 22px 22px;
}
.service-card.featured::before { display: none; }
.service-card.featured .icon { background: rgba(255,255,255,0.14); color: var(--white); width: 56px; height: 56px; margin-bottom: 28px; }
.service-card.featured .icon svg { width: 28px; height: 28px; }
.service-card.featured h3 { font-size: 26px; color: var(--white); margin-bottom: 12px; }
.service-card.featured p { color: rgba(255,255,255,0.78); font-size: 15.5px; max-width: 400px; }
.service-card.featured .link { color: #7ee0ac; }
.service-card.featured:hover { transform: translateY(-4px); border-color: var(--ink); }
.service-card.featured .pill {
  align-self: flex-start;
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: #bff0d4;
  background: rgba(10,157,85,0.2); border: 1px solid rgba(10,157,85,0.35);
  padding: 5px 12px; border-radius: 999px; margin-bottom: auto;
  font-family: var(--font-display);
}
.service-card.addon { background: var(--gray-50); border-style: dashed; box-shadow: none; }
.service-card.addon .icon { background: var(--white); }

/* ---------- How we work (chat-mockup layout) ---------- */
.work-process { background: var(--gray-50); }
.process-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.process-list { list-style: none; margin: 32px 0 0; padding: 0; }
.process-item { display: flex; gap: 18px; padding: 18px 4px; border-bottom: 1px solid var(--gray-100); }
.process-item:last-child { border-bottom: none; padding-bottom: 0; }
.process-item__num {
  flex-shrink: 0;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--green-50); border: 1px solid var(--green-100); color: var(--green);
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  display: flex; align-items: center; justify-content: center;
}
.process-item h3 { font-size: 16.5px; margin: 0 0 4px; }
.process-item p { font-size: 14px; color: var(--gray-500); margin: 0; line-height: 1.55; }

.chat-mock {
  max-width: 380px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.chat-mock__header {
  display: flex; align-items: center; gap: 12px;
  background: var(--ink); color: var(--white);
  padding: 16px 18px;
}
.chat-mock__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.chat-mock__avatar img { width: 22px; height: auto; }
.chat-mock__who strong { display: block; font-size: 14px; }
.chat-mock__status { display: flex; align-items: center; gap: 6px; font-size: 11.5px; color: var(--green-bright); }
.chat-mock__status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-bright); }
.chat-mock__body {
  background: var(--green-50);
  padding: 22px 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.chat-bubble {
  max-width: 82%;
  padding: 11px 15px 9px;
  border-radius: 15px;
  font-size: 13.5px;
  line-height: 1.5;
}
.chat-bubble--in { align-self: flex-start; background: var(--white); border: 1px solid var(--gray-100); border-bottom-left-radius: 4px; color: var(--gray-700); }
.chat-bubble--out { align-self: flex-end; background: var(--green); border-bottom-right-radius: 4px; color: var(--white); }
.chat-stage {
  display: block;
  font-family: var(--font-display); font-size: 10px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-bottom: 4px; opacity: 0.65;
}
.chat-bubble time { display: block; font-size: 10.5px; margin-top: 6px; text-align: right; opacity: 0.55; }
.chat-typing {
  align-self: flex-start;
  display: flex; gap: 4px;
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: 15px; border-bottom-left-radius: 4px;
  padding: 12px 14px;
}
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); animation: typing-bounce 1.2s ease-in-out infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* ---------- Why work with us (feature rows, deliberately distinct
   from the services bento so it doesn't read as a recycled component) ---------- */
.trust-list {
  border-top: 1px solid var(--gray-100);
}
.trust-row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 60px 1fr 28px;
  align-items: center;
  gap: 28px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s ease, padding-left 0.2s ease;
}
.trust-row:hover { background: var(--gray-50); padding-left: 18px; }
.trust-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-300);
}
.trust-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--ink); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 27px; height: 27px; }
.trust-content h3 { font-size: 19px; margin: 0 0 6px; }
.trust-content p { font-size: 15px; color: var(--gray-500); margin: 0; max-width: 560px; }
.trust-tick {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gray-200); color: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: 0.25s ease;
}
.trust-tick svg { width: 14px; height: 14px; }
.trust-row:hover .trust-tick { background: var(--green); border-color: var(--green); color: var(--white); }

/* ---------- Why work with us (head-to-head comparison, us vs the usual way) ---------- */
.compare-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-head {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 20px 28px;
  display: flex; align-items: center; gap: 10px;
}
.compare-head--old { background: var(--gray-100); color: var(--gray-500); }
.compare-head--us { background: var(--ink); color: var(--white); }
.compare-head__logo { height: 18px; width: auto; }
.compare-cell {
  padding: 20px 28px;
  font-size: 15px;
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--gray-100);
  line-height: 1.4;
}
.compare-cell svg { flex-shrink: 0; width: 18px; height: 18px; }
.compare-cell--old { background: var(--gray-50); color: var(--gray-500); }
.compare-cell--old svg { color: var(--gray-300); }
.compare-cell--us { background: var(--white); color: var(--ink); font-weight: 500; border-left: 1px solid var(--gray-100); }
.compare-cell--us svg { color: var(--green); }
.compare-cell--us a { color: var(--green); text-decoration: none; }
.compare-cell--us a:hover { text-decoration: underline; }

/* ---------- Work / portfolio ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.work-card {
  position: relative;
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-card .tag {
  display: inline-block; font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px;
  background: var(--green-50); padding: 4px 10px; border-radius: 6px;
}
.work-card h3 { font-size: 18px; margin: 0 0 8px; }
.work-card p { font-size: 14px; color: var(--gray-500); margin: 0 0 12px; line-height: 1.55; }
.work-card .work-domain {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--green);
}
.work-card__preview {
  height: 74px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-50), var(--gray-50));
  border: 1px solid var(--gray-100);
  padding: 12px;
  margin: -2px -2px 18px;
}
.work-card__preview .pv-line { display: block; height: 7px; border-radius: 4px; background: rgba(6,118,64,0.16); }
.work-card__preview .pv-1 { width: 45%; margin-bottom: 6px; }
.work-card__preview .pv-2 { width: 68%; margin-bottom: 10px; background: rgba(10,10,10,0.07); }
.work-card__preview .pv-grid { display: flex; gap: 6px; }
.work-card__preview .pv-grid span { flex: 1; height: 18px; border-radius: 5px; background: rgba(255,255,255,0.7); border: 1px solid rgba(6,118,64,0.12); }
.work-card .arrow {
  position: absolute; top: 24px; right: 24px;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--gray-200); color: var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  transition: 0.22s ease;
}
.work-card .arrow svg { width: 15px; height: 15px; }
.work-card:hover .arrow { background: var(--green); border-color: var(--green); color: var(--white); transform: rotate(-45deg); }
.work-note { margin-top: 30px; font-size: 14.5px; color: var(--gray-500); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.testimonial {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: var(--shadow-sm);
}
.testimonial .quote-mark {
  font-family: var(--font-display); font-size: 60px; line-height: 1;
  color: var(--green-100); position: absolute; top: 16px; right: 26px;
}
.testimonial p.quote, .google-review p.quote { font-size: 16px; color: var(--gray-700); margin: 0 0 22px; position: relative; }
.testimonial .attribution, .google-review .attribution { display: flex; align-items: center; gap: 13px; font-family: var(--font-display); font-size: 14px; font-weight: 600; }
.testimonial .avatar, .google-review .avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.testimonial .attribution .who span, .google-review .attribution .who span { display: block; font-family: var(--font-sans); font-weight: 400; color: var(--gray-500); font-size: 13px; margin-top: 2px; }
.google-review .attribution .who span a:hover { color: var(--green); text-decoration: underline; }

/* ---------- Google review (featured, full-width) ---------- */
.google-review {
  position: relative;
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  margin-top: 22px;
}
.google-review__badge {
  position: absolute; top: 36px; right: 40px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--gray-500); background: var(--gray-50);
  padding: 5px 12px; border-radius: 999px;
  letter-spacing: 0.02em;
}
.google-review p.quote { max-width: 760px; }
.google-review__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px;
  font-family: var(--font-display); font-size: 14px; font-weight: 600;
  color: var(--green);
}
.google-review__link svg { width: 14px; height: 14px; }
.google-review__link:hover { color: var(--green-dark); }

/* ---------- Inner-page hero (services, about, etc.) ----------
   Lighter than the homepage hero (no aurora/dashboard), same dark
   "control room" identity via the dot grid and ink background, so
   every page reads as one system. */
.inner-hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 44px 0 72px;
  overflow: hidden;
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 60% at 20% 20%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 20% 20%, #000 40%, transparent 100%);
  z-index: 0;
}
.inner-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  margin: 0 0 28px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.15s ease; }
.breadcrumb a:hover { color: var(--green-bright); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--white); font-weight: 500; }

.inner-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bff0d4;
  background: rgba(10,157,85,0.14);
  border: 1px solid rgba(10,157,85,0.3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 22px;
  padding: 8px 16px;
  border-radius: 999px;
}
.inner-hero h1 {
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 760px;
}
.inner-hero .lede {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 0 32px;
}

/* ---------- FAQ accordion (native details/summary: zero JS, fully
   accessible and keyboard-operable by default) ---------- */
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  transition: transform 0.25s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.faq-item summary .plus svg { width: 13px; height: 13px; }
.faq-item[open] summary .plus { transform: rotate(45deg); background: var(--green); border-color: var(--green); color: var(--white); }
.faq-item .faq-answer { padding: 0 4px 24px; font-size: 15px; color: var(--gray-500); line-height: 1.65; max-width: 640px; }

/* ---------- Legal / plain prose content ---------- */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: 21px; margin: 40px 0 14px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 16px; color: var(--gray-700); line-height: 1.7; margin: 0 0 16px; }
.legal-content ul { margin: 0 0 16px; padding-left: 22px; }
.legal-content li { font-size: 16px; color: var(--gray-700); line-height: 1.7; margin-bottom: 8px; }
.legal-content .updated { font-size: 13.5px; color: var(--gray-500); margin: 0 0 40px; }

/* ---------- Contact method cards ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
  display: block;
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.contact-card .icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--ink); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
}
.contact-card .icon svg { width: 27px; height: 27px; }
.contact-card h3 { font-size: 18px; margin: 0 0 8px; }
.contact-card p { font-size: 14.5px; color: var(--gray-500); margin: 0 0 18px; }
.contact-card .value { font-family: var(--font-display); font-weight: 600; color: var(--green); font-size: 15px; }

/* ---------- Benefits / included list (reused across service pages) ---------- */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.benefit {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}
.benefit .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-50); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.benefit .icon svg { width: 21px; height: 21px; }
.benefit h3 { font-size: 16px; margin: 0 0 6px; }
.benefit p { font-size: 14px; color: var(--gray-500); margin: 0; line-height: 1.55; }

/* ---------- Related services / cross-links ---------- */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

/* ---------- Pricing: plans ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card--featured { border: 2px solid var(--green); box-shadow: var(--shadow-md); }
.price-card__badge {
  position: absolute; top: -13px; right: 28px;
  background: var(--green); color: var(--white);
  font-family: var(--font-display); font-size: 11.5px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.price-card h3 { font-size: 21px; margin: 0 0 6px; }
.price-card .price-sub { font-size: 14px; color: var(--gray-500); margin: 0 0 20px; }
.price-card .price-amount { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.price-card .price-period { font-size: 14px; color: var(--gray-500); font-weight: 400; }
.price-card .price-note { font-size: 12.5px; color: var(--gray-500); margin: 4px 0 22px; }
.price-features { list-style: none; margin: 0; padding: 0; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: var(--gray-700); padding: 8px 0; border-top: 1px solid var(--gray-100); line-height: 1.5; }
.price-features li:first-child { border-top: none; }
.price-features .check { flex-shrink: 0; width: 18px; height: 18px; color: var(--green); margin-top: 1px; }
.price-card .btn { width: 100%; justify-content: center; margin-top: 24px; }

/* ---------- Pricing: one-time fixes ---------- */
.fix-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fix-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.fix-card h3 { font-size: 16.5px; margin: 0 0 8px; }
.fix-card p { font-size: 14px; color: var(--gray-500); margin: 0 0 16px; line-height: 1.55; flex-grow: 1; }
.fix-card .fix-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--green-dark); }
.fix-card .fix-price span { font-size: 12.5px; color: var(--gray-500); font-weight: 400; }

/* ---------- Pricing: quote callout (for unpriced services) ---------- */
.quote-band {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 20px;
  padding: 36px 44px;
}
.quote-band__inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.quote-band__icon {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 15px;
  background: var(--ink); color: var(--green-bright);
  display: flex; align-items: center; justify-content: center;
}
.quote-band__icon svg { width: 26px; height: 26px; }
.quote-band__text { flex: 1 1 320px; }
.quote-band h2 { font-size: clamp(20px, 2.4vw, 25px); margin: 0 0 8px; color: var(--ink); }
.quote-band p { color: var(--gray-700); font-size: 15.5px; max-width: 480px; margin: 0; line-height: 1.6; }
.quote-band .btn { flex-shrink: 0; }

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr; }
  .fix-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .fix-grid { grid-template-columns: 1fr; }
  .quote-band { padding: 28px; }
  .quote-band__inner { align-items: flex-start; }
  .quote-band .btn { width: 100%; justify-content: center; }
}

/* ---------- Page intro (answer-first copy block for GEO) ---------- */
.page-intro { max-width: 760px; font-size: 17px; color: var(--gray-700); line-height: 1.7; }
.page-intro p { margin: 0 0 18px; }

/* ---------- CTA band ---------- */
.cta-section { padding-top: 40px; }
.cta-band {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border-radius: 24px;
  padding: 64px 56px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(10,157,85,0.35), transparent 40%),
    radial-gradient(circle at 82% 80%, rgba(10,157,85,0.28), transparent 42%),
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 24px 24px;
}
.cta-band h2 { font-size: clamp(28px, 3.4vw, 42px); margin: 0 0 14px; letter-spacing: -0.02em; }
.cta-band p { color: rgba(255,255,255,0.7); margin: 0 auto 30px; font-size: 17px; max-width: 460px; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 52px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 14.5px; max-width: 320px; margin: 16px 0 0; }
.footer-col h4 { font-family: var(--font-display); font-size: 13px; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 16px; color: rgba(255,255,255,0.45); }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(255,255,255,0.72); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--green-bright); }
.footer-bottom {
  border-top: 1px solid var(--ink-700);
  padding-top: 26px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13.5px; color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--green-bright); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card.featured { grid-column: span 2; grid-row: span 1; }
  .process-layout { grid-template-columns: 1fr; gap: 44px; }
  .chat-mock { max-width: 460px; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .primary-nav { display: none; }
  .nav-toggle { display: block; }
  section { padding: 68px 0; }
  .hero { padding: 60px 0 76px; }
  .inner-hero { padding: 36px 0 56px; }
}

@media (max-width: 640px) {
  .site-header .container { height: 64px; }
  .logo img { height: 30px; }
  .header-cta a.btn-outline.btn-sm { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 48px 1fr; row-gap: 14px; padding: 24px 4px; }
  .trust-num { display: none; }
  .trust-icon { width: 48px; height: 48px; border-radius: 13px; }
  .trust-icon svg { width: 22px; height: 22px; }
  .trust-tick { display: none; }
  .compare-head { padding: 14px 14px; font-size: 13px; }
  .compare-head__logo { height: 15px; }
  .compare-cell { padding: 14px; font-size: 13px; gap: 8px; }
  .compare-cell svg { width: 15px; height: 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 24px; }
  .section-head { gap: 12px; }
}

@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion: kill all movement, keep everything visible
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
