/* ===== Design tokens ===== */
:root {
  --blue: #4285F4;
  --red: #EA4335;
  --yellow: #FBBC05;
  --green: #34A853;

  --ink: #16181d;
  --ink-soft: #4b5160;
  --line: #e6e8ec;
  --surface: #ffffff;
  --surface-alt: #f7f8fa;
  --shadow: 0 8px 24px rgba(20, 20, 30, 0.06);
  --shadow-lg: 0 20px 48px rgba(20, 20, 30, 0.10);

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1160px;

  --grad-google: linear-gradient(90deg, var(--blue) 0%, var(--green) 33%, var(--yellow) 66%, var(--red) 100%);
  --grad-blue-green: linear-gradient(135deg, var(--blue), var(--green));
  --grad-yellow-red: linear-gradient(135deg, var(--yellow), var(--red));

  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-head: 'Poppins', 'Inter', system-ui, sans-serif;
}

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

/* Base reveal-on-scroll state — kept low-specificity and early in the
   cascade so component :hover rules (declared further down) always win. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--font-head); line-height: 1.2; margin: 0 0 14px; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0 0 12px; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.center.section-lede, h2.center { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: var(--grad-google);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.grad-text-blue { color: var(--blue); font-weight: 700; }
.grad-text-red { color: var(--red); font-weight: 700; }

.footnote-star {
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: color .15s ease;
}
.footnote-star:hover, .footnote-star:focus-visible { color: var(--red); }

/* Portaled to <body> and positioned via JS (getBoundingClientRect) so it can
   never be clipped by a card's `overflow: hidden`, and stays inside the
   viewport near screen edges — a plain CSS ::after tooltip can't do either. */
.star-tooltip {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  max-width: 220px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  padding: 7px 12px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.star-tooltip.show { opacity: 1; transform: translateY(0); }
.star-tooltip::after {
  content: '';
  position: absolute;
  left: var(--arrow-x, 50%);
  top: 100%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}
.star-tooltip.flip::after {
  top: auto; bottom: 100%;
  border-top-color: transparent;
  border-bottom-color: var(--ink);
}
@media (prefers-reduced-motion: reduce) {
  .star-tooltip { transition: opacity .18s ease; }
}

.eyebrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.eyebrow.center { align-items: center; width: 100%; }
.eyebrow .dot {
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  height: 5px;
  border-radius: 99px;
  background: var(--grad-google);
  order: 1;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              min-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease;
}
.eyebrow.center .dot { align-self: center; }
.eyebrow:hover .dot {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  box-shadow: 0 0 12px rgba(66, 133, 244, 0.35),
              0 0 24px rgba(251, 188, 5, 0.2);
  filter: brightness(1.1);
}

.section { padding: 72px 0; position: relative; scroll-margin-top: 90px; }
.section-alt { background: var(--surface-alt); }
.section-lede {
  max-width: 640px;
  font-size: 17px;
  margin-left: auto; margin-right: auto;
  margin-bottom: 40px;
}
h2 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.center h2, h2.center { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-google);
  color: #fff;
  box-shadow: 0 10px 24px rgba(66, 133, 244, 0.25);
}
.btn-primary:hover { box-shadow: 0 14px 30px rgba(234, 67, 53, 0.28); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  width: 100%;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-block { width: 100%; }

/* ===== Topbar marquee ===== */
.topbar {
  background: var(--ink);
  overflow: hidden;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}
.marquee-strip-track {
  display: inline-flex;
  width: max-content;
  animation: topbar-marquee 48s linear infinite;
}
.topbar:hover .marquee-strip-track { animation-play-state: paused; }
.marquee-group { display: inline-flex; align-items: center; padding: 13px 0; }
.marquee-item {
  font-family: var(--font-head);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f4f5f7;
  padding: 0 20px;
}
.marquee-sep {
  color: var(--yellow);
  font-size: 11px;
  opacity: 0.85;
}
@keyframes topbar-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-strip-track { animation: none; }
}

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 38px; height: 38px; }
.brand-mark.nav-logo { width: auto; height: 44px; max-width: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: var(--font-head); font-size: 15px; letter-spacing: 0.02em; }
.brand-text small { font-size: 11px; color: var(--ink-soft); }

.nav-links { display: flex; align-items: center; gap: 4px; font-size: 14px; font-weight: 500; }
.nav-item-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-soft); transition: color .15s;
  background: none; border: none; cursor: pointer;
  font: inherit; padding: 10px 12px; border-radius: 8px;
}
.nav-item-link:hover { color: var(--blue); }

/* ===== Services mega menu ===== */
.nav-dropdown { position: static; }
.nav-caret { transition: transform .25s ease; width: 13px; height: 13px; }
.nav-dropdown.open .nav-caret { transform: rotate(180deg); }
.nav-dropdown.open .nav-dropdown-trigger { color: var(--blue); }
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  width: min(920px, calc(100vw - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  z-index: 120;
}
.mega-menu::before {
  content: ''; position: absolute; top: -3px; left: 24px; right: 24px; height: 3px;
  border-radius: 3px; background: var(--grad-google);
}
/* Invisible bridge across the nav's bottom padding. Without it the pointer
   leaves .nav-dropdown while crossing the gap between the trigger and the
   panel, firing mouseleave and snapping the menu shut mid-travel. */
.mega-menu::after {
  content: '';
  position: absolute;
  top: -20px; left: 0; right: 0; height: 20px;
}
.nav-dropdown.open .mega-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 0);
}
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.mega-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 12px;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.mega-item:hover { background: var(--surface-alt); border-color: var(--line); transform: translateX(3px); }
.mega-icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.mega-icon img { width: 100%; height: 100%; object-fit: contain; }
.mega-icon.ring { border: 2px solid currentColor; }
.mega-icon .icon { width: 19px; height: 19px; }
.mega-item.accent-blue .mega-icon { color: var(--blue); }
.mega-item.accent-green .mega-icon { color: var(--green); }
.mega-item.accent-yellow .mega-icon { color: #d6a400; }
.mega-item.accent-red .mega-icon { color: var(--red); }
.mega-text { display: flex; flex-direction: column; min-width: 0; }
.mega-text strong { font-size: 13.5px; color: var(--ink); line-height: 1.3; }
.mega-text small { font-size: 11.5px; color: var(--ink-soft); line-height: 1.4; }
.mega-footer {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line);
}
.mega-footer span { font-size: 12.5px; color: var(--ink-soft); }
.mega-footer a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--blue);
}
.mega-footer a:hover { color: var(--red); }
@media (prefers-reduced-motion: reduce) {
  .mega-menu, .mega-item, .nav-caret { transition: opacity .22s ease; }
}

.nav-login {
  display: inline-flex; align-items: center; gap: 7px;
  margin-left: 10px;
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  transition: border-color .18s, color .18s, background .18s;
}
.nav-login:hover { border-color: var(--blue); color: var(--blue); background: rgba(66,133,244,0.06); }

.nav-cta {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-google);
  color: #fff !important;
  padding: 10px 22px;
  margin-left: 10px;
  border-radius: 999px;
  font-weight: 600;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(66, 133, 244, 0.28);
  transition: transform .22s ease, box-shadow .22s ease;
}
.nav-cta::after {
  content: "";
  position: absolute; top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-20deg);
  transition: left .5s ease;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(234, 67, 53, 0.32); }
.nav-cta:hover::after { left: 130%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); }

/* ===== Icon utilities ===== */
.icon { width: 20px; height: 20px; flex-shrink: 0; }
.icon-sm { width: 16px; height: 16px; flex-shrink: 0; }
.icon-lg { width: 28px; height: 28px; flex-shrink: 0; }

/* ===== Smart nav (hide on scroll down, show on scroll up / near top) ===== */
.nav {
  transition: transform .38s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, background .3s ease;
  transform: translateY(0);
}
.nav.nav-hidden { transform: translateY(-100%); }
.nav.nav-scrolled {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 6px 28px rgba(20,20,30,0.08);
}

/* ===== Hero ===== */
.hero { position: relative; padding: 96px 0 64px; overflow: hidden; }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.18; z-index: 0; }
.blob-a { width: 420px; height: 420px; background: var(--blue); top: -140px; left: -140px; }
.blob-b { width: 420px; height: 420px; background: var(--yellow); bottom: -160px; right: -140px; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: clamp(32px, 4.4vw, 50px); margin-bottom: 20px; }
.hero-lede { font-size: 17px; max-width: 520px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 480px; }
.stat-card {
  position: relative;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 22px 12px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.stat-num { display: block; font-family: var(--font-head); font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 13px; color: var(--ink-soft); }

.grad-blue { color: var(--blue); }
.grad-yellow { color: #f8aa0b; }
.grad-green { color: var(--green); }
/* .grad-blue-bg { background: linear-gradient(135deg, var(--blue), #7bb0ff); color: #fff; }
.grad-red-bg { background: linear-gradient(135deg, var(--red), #ff8a7a); color: #fff; }
.grad-yellow-bg { background: linear-gradient(135deg, var(--yellow), #ffd966); color: #fff; }
.grad-green-bg { background: linear-gradient(135deg, var(--green), #7bdca0); color: #fff; } */

/* ===== Hero showcase (vertical multi-column scrolling wall) ===== */
.showcase-wrap {
  position: relative; z-index: 1;
  display: flex; gap: 18px;
  height: 560px; overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}
.showcase-col { flex: 1; min-width: 0; overflow: hidden; }
.showcase-col.third { display: block; }
.showcase-track {
  display: flex; flex-direction: column; gap: 18px;
  animation: showcase-up var(--dur, 30s) linear infinite;
}
.col-down .showcase-track { animation-name: showcase-down; }
.showcase-wrap:hover .showcase-track { animation-play-state: paused; }
.showcase-card {
  width: 100%; display: block; object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
}
.showcase-card:hover {
  transform: scale(1.06);
  box-shadow: 0 24px 48px rgba(20, 20, 30, 0.22);
  position: relative; z-index: 2;
}
.showcase-card.h-short { aspect-ratio: 4 / 2.7; }
.showcase-card.h-med { aspect-ratio: 4 / 3.4; }
.showcase-card.h-tall { aspect-ratio: 4 / 4.6; }
@keyframes showcase-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes showcase-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .showcase-track { animation: none; }
}

/* ===== Our Work ===== */
.filter-row {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin: 36px 0 40px;
}
.filter-pill {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-soft); font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: all .15s;
}
.filter-pill:hover { border-color: var(--blue); color: var(--blue); }
.filter-pill.active { background: var(--grad-google); border-color: transparent; color: #fff; }

.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.work-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.work-card.hidden { display: none; }
.work-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.work-card:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.work-thumb {
  aspect-ratio: 4/3; position: relative; overflow: hidden; background: var(--surface-alt);
  cursor: zoom-in;
}
.work-thumb img, .work-thumb video {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.work-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(16, 17, 22, 0); transition: background .25s ease;
}
.work-card:hover .work-thumb::after { background: rgba(16, 17, 22, 0.22); }
.work-card:hover .work-thumb img, .work-card:hover .work-thumb video { transform: scale(1.06); }
.work-thumb .play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20, 20, 30, 0.55); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  color: #fff; pointer-events: none; z-index: 1;
}
.work-thumb .play-badge .icon { width: 18px; height: 18px; }
.work-card h3 { font-size: 14.5px; padding: 16px 16px 2px; margin: 0; }
.work-card p { font-size: 12.5px; padding: 0 16px 16px; margin: 0; color: var(--ink-soft); }

.work-empty {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 6px; padding: 48px 24px;
  border: 1.5px dashed var(--line); border-radius: var(--radius);
  background: var(--surface);
}
.work-empty[hidden] { display: none; }
.work-empty .icon-lg { width: 40px; height: 40px; color: var(--ink-soft); opacity: 0.45; }
.work-empty p { font-size: 14.5px; color: var(--ink-soft); margin: 4px 0 14px; }
.work-empty strong { color: var(--ink); }
.work-empty .btn { width: auto; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center;
  background: rgba(10, 10, 14, 0.88);
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  padding: 56px 24px 24px;
}
.lightbox.open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox-inner {
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  max-width: min(1000px, 92vw);
  transform: scale(0.94); transition: transform .25s ease;
}
.lightbox.open .lightbox-inner { transform: scale(1); }
.lightbox-body {
  display: flex; align-items: center; justify-content: center;
  max-width: 100%; max-height: 74vh;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #000;
}
.lightbox-body img, .lightbox-body video {
  max-width: 100%; max-height: 74vh; display: block; width: auto; height: auto;
}
.lightbox-caption { text-align: center; color: #fff; }
.lightbox-caption strong { display: block; font-size: 16px; margin-bottom: 4px; }
.lightbox-caption span { font-size: 13px; color: #cfd1d8; }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s ease, transform .2s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); transform: rotate(90deg); }
@media (prefers-reduced-motion: reduce) {
  .lightbox-close:hover { transform: none; }
}

/* ===== Grids ===== */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }

/* ===== Quick intro video ===== */
.intro-video-wrap {
  position: relative;
  max-width: 880px; margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
  border: 2px solid transparent;
  background-image: linear-gradient(var(--ink), var(--ink)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow-lg);
}
.intro-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--grad-google);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(20, 20, 30, 0.35);
  transition: transform .25s ease, opacity .25s ease;
}
.intro-play svg { width: 34px; height: 34px; margin-left: 3px; }
.intro-play:hover { transform: translate(-50%, -50%) scale(1.08); }
.intro-play::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.4);
  animation: intro-pulse 2.4s ease-out infinite;
}
@keyframes intro-pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.35); opacity: 0; }
}
.intro-video-wrap.playing .intro-play { opacity: 0; pointer-events: none; }
@media (prefers-reduced-motion: reduce) {
  .intro-play::after { animation: none; }
}

/* ===== Problem section ===== */
.problem-top {
  display: grid; grid-template-columns: 1fr 0.9fr; gap: 40px; align-items: center;
  margin-bottom: 56px;
}
.problem-copy .section-lede { max-width: 460px; }

.problem-illustration { position: relative; width: 100%; aspect-ratio: 1505 / 1003; }
.orbit-scene { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }

.problem-grid { margin: 40px 0 48px; }
.problem-card {
  position: relative;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 28px 32px 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.x-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(234,67,53,0.12); color: var(--red);
  font-weight: 700; margin-bottom: 14px;
}
.problem-card .x-badge {
  position: absolute; top: -15px; right: -15px; margin-bottom: 0;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
}
.problem-card h3 { font-size: 17px; margin-bottom: 6px; color: #009146; }
.problem-card p { margin: 0; font-size: 14px; }

.pain-grid { margin-top: 44px; }
.pain-card {
  position: relative;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 36px 18px 0;
  text-align: center;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pain-ring {
  position: relative;
  width: 92px; height: 92px; margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.pain-card:hover .pain-ring { transform: scale(1.08) rotate(-4deg); }
.pain-ring img { width: 100%; height: 100%; object-fit: contain; }
.pain-card h3 {
  font-size: 15px; font-weight: 700; line-height: 1.35;
  min-height: 42px; margin: 0 0 28px; padding: 0 6px;
}
.pain-bar { display: block; height: 6px; width: 100%; }


/* ===== Process ===== */
.process-visual { width: 100%; height: auto; display: block; aspect-ratio: 8000 / 4500; margin: 32px 0; }

.badge-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.badge-row span {
  background: var(--surface-alt);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px; font-weight: 500;
}

/* ===== What We Do (services) ===== */
.service-grid { margin-top: 40px; }
.service-card {
  position: relative;
  text-align: center;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 28px 16px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid currentColor;
  transition: transform .3s ease;
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon .icon { width: 28px; height: 28px; }
.service-icon.no-ring { border: none; }
.service-icon.no-ring img { width: 100%; height: 100%; object-fit: contain; }
.service-card.accent-blue .service-icon { color: var(--blue); }
.service-card.accent-green .service-icon { color: var(--green); }
.service-card.accent-yellow .service-icon { color: #d6a400; }
.service-card.accent-red .service-icon { color: var(--red); }
.service-card h3 {
  font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em;
  margin-bottom: 10px;
}
.service-underline { display: block; width: 100%; height: 3px; margin: 0 0 14px; border-radius: 2px; background: var(--grad-google); }
.service-card p { font-size: 13px; margin: 0; line-height: 1.5; }

/* ===== Industries ===== */
.industry-marquee {
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.industry-marquee:first-of-type { margin-top: 40px; }
.industry-track {
  display: flex; gap: 18px; width: max-content;
  animation: industry-scroll 46s linear infinite;
}
.industry-track.reverse { animation-direction: reverse; }
.industry-marquee:hover .industry-track { animation-play-state: paused; }
@keyframes industry-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.industry-chip {
  flex-shrink: 0;
  display: flex; align-items: center; gap: 14px;
  min-width: 300px;
  padding: 20px 26px;
  border-radius: 16px;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.industry-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.industry-chip-icon {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid currentColor;
}
.industry-chip-icon .icon { width: 22px; height: 22px; }
.industry-chip.accent-blue .industry-chip-icon { color: var(--blue); }
.industry-chip.accent-green .industry-chip-icon { color: var(--green); }
.industry-chip.accent-yellow .industry-chip-icon { color: #d6a400; }
.industry-chip.accent-red .industry-chip-icon { color: var(--red); }
.industry-chip strong { display: block; font-family: var(--font-head); font-size: 16px; margin-bottom: 2px; }
.industry-chip small { display: block; font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

@media (prefers-reduced-motion: reduce) {
  .industry-track { animation: none; }
  .industry-marquee { overflow-x: auto; }
}
@media (max-width: 720px) {
  .industry-chip { min-width: 250px; padding: 16px 20px; gap: 12px; }
  .industry-chip-icon { width: 40px; height: 40px; }
  .industry-chip strong { font-size: 14.5px; }
  .industry-chip small { font-size: 12px; }
}

/* ===== Printing ===== */
.printing-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 24px; margin: 28px 0; }
.feature-item { display: flex; align-items: center; gap: 12px; }
.feature-icon { width: 40px; height: 40px; flex-shrink: 0; }
.feature-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.feature-text span { font-size: 13px; color: var(--ink-soft); }
.callout {
  display: flex; align-items: center; gap: 14px;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  padding: 12px 22px 12px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.callout-icon {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  color: var(--blue);
}
.callout-icon .icon { width: 16px; height: 16px; }
.printing-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.printing-visual-main { width: 100%; max-width: 420px; height: auto; display: block; }
.printing-visual-accent {
  position: absolute; bottom: -4%; left: -6%; width: 42%; height: auto;
  filter: drop-shadow(0 12px 24px rgba(20, 20, 30, 0.2));
}

/* ===== Pricing ===== */
.pricing-grid { margin: 40px 0 20px; align-items: stretch; }
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-top { position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.price-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.popular-tag {
  position: absolute; top: 16px; right: 16px;
  background: var(--grad-google); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
}
.price-card h3 { font-size: 18px; margin: 14px 0 6px; }
.price { font-family: var(--font-head); font-size: 30px; font-weight: 800; margin-bottom: 18px; }
.price span { font-size: 14px; font-weight: 500; color: var(--ink-soft); }
.price-card ul { flex: 1; margin-bottom: 22px; }
.price-card li {
  font-size: 13.5px; color: var(--ink-soft);
  padding: 7px 0 7px 22px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.price-card li:last-child { border-bottom: none; }
.price-card li::before {
  content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700;
}

.pricing-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  max-width: 760px; margin: 32px auto 0;
  padding: 26px 32px;
  border-radius: 20px;
  border: 2px solid transparent;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-cta:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-cta-text strong { display: block; font-size: 17px; margin-bottom: 4px; }
.pricing-cta-text span { font-size: 14px; color: var(--ink-soft); }

.included-grid { margin-top: 40px; margin-bottom: 8px; }
.included-card {
  position: relative;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 30px 32px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.included-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.included-card h3 { font-size: 17px; margin-bottom: 18px; }
.included-card.excluded h3 { color: var(--red); }
.corner-badge {
  position: absolute; top: -17px; right: -17px;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  font-weight: 700; font-size: 15px;
}
.corner-badge.check { color: var(--green); }
.corner-badge.x { color: var(--red); }
.check-list li, .x-list li {
  font-size: 14px; padding: 8px 0 8px 26px; position: relative; color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child, .x-list li:last-child { border-bottom: none; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.x-list li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.note-line { text-align: center; font-size: 13px; color: var(--ink-soft); margin: 32px 0 8px; }
.note-highlight { color: var(--red); }

.project-pricing {
  position: relative;
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px;
  border-radius: 24px;
  padding: 52px;
  align-items: center;
  overflow: hidden;
  background-color: var(--surface);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(66, 133, 244, 0.10), transparent 42%),
    radial-gradient(circle at 100% 100%, rgba(234, 67, 53, 0.09), transparent 42%);
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.project-pricing::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-google);
}
.project-tag {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--blue);
  background: rgba(66, 133, 244, 0.1);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.project-lede { font-size: 15px; line-height: 1.65; margin-bottom: 22px; }
.project-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.project-perks li {
  display: flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 500; color: var(--ink);
}
.project-perks .icon-sm { color: var(--green); flex-shrink: 0; }
.project-microcopy { font-size: 12.5px; color: var(--ink-soft); margin: 14px 0 0; }

.project-list {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch;
}
.project-group {
  display: flex; flex-direction: column;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1.5px solid transparent;
  border-radius: 14px;
  padding: 18px 18px 20px;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.project-group:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-group.accent-blue { --accent: var(--blue); }
.project-group.accent-green { --accent: var(--green); }
.project-group.accent-red { --accent: var(--red); }
.project-group-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.project-count {
  margin-left: auto; flex-shrink: 0;
  min-width: 20px; height: 20px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-size: 10.5px; font-weight: 800;
  color: var(--accent);
}
.project-group.accent-blue .project-count { background: rgba(66, 133, 244, 0.12); }
.project-group.accent-green .project-count { background: rgba(52, 168, 83, 0.12); }
.project-group.accent-red .project-count { background: rgba(234, 67, 53, 0.12); }
.project-group-icon {
  flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); border: 1.5px solid currentColor;
  transition: transform .3s ease;
}
.project-group:hover .project-group-icon { transform: scale(1.1); }
.project-group h4 {
  font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--accent); margin: 0; line-height: 1.3;
}
.project-group ul { display: flex; flex-direction: column; gap: 8px; }
.project-group li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 12.5px; color: var(--ink); line-height: 1.45;
}
.project-group li::before {
  content: "\2713";
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 15px; height: 15px; margin-top: 1px;
  border-radius: 50%;
  background: var(--accent); color: #fff;
  font-size: 8.5px; font-weight: 800;
}
.project-extra { text-align: center; max-width: 640px; margin: 32px auto 0; }

/* ===== Why choose us ===== */
.why-grid { margin-top: 40px; }
.why-card {
  position: relative;
  text-align: center;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s ease;
}
.why-icon img { width: 100%; height: 100%; object-fit: contain; }
.why-card:hover .why-icon { transform: scale(1.12); }
.why-card h3 { font-size: 15.5px; margin-bottom: 10px; }
.why-underline { display: block; width: 100%; height: 3px; margin: 0 0 14px; border-radius: 2px; background: var(--grad-google); }
.why-card p { font-size: 13px; margin: 0; }

/* ===== Client Testimonials ===== */
.testimonials-title { text-transform: uppercase; letter-spacing: 0.02em; }
.testimonial-grid { margin-top: 40px; }
.testimonial-card {
  position: relative;
  background-image: linear-gradient(var(--surface), var(--surface)), var(--grad-google);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testimonial-quote {
  flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 26px; line-height: 1; font-family: Georgia, serif; color: #fff; font-weight: 700;
}
.testimonial-card.accent-blue .testimonial-quote { background: linear-gradient(135deg, var(--blue), var(--green)); }
.testimonial-card.accent-green .testimonial-quote { background: linear-gradient(135deg, var(--green), var(--yellow)); }
.testimonial-card.accent-red .testimonial-quote { background: linear-gradient(135deg, var(--red), var(--yellow)); }
.testimonial-stars { color: var(--yellow); letter-spacing: 2px; font-size: 15px; }
.testimonial-text { font-size: 14px; color: var(--ink); line-height: 1.6; margin-bottom: 18px; }
.testimonial-divider { height: 1px; background: var(--line); margin-bottom: 16px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  flex-shrink: 0;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px;
  border: 2px solid transparent;
}
img.testimonial-avatar { object-fit: cover; object-position: 50% 20%; }
.testimonial-card.accent-blue .testimonial-avatar { background: linear-gradient(135deg, var(--blue), var(--green)); border-color: var(--blue); }
.testimonial-card.accent-green .testimonial-avatar { background: linear-gradient(135deg, var(--green), var(--yellow)); border-color: var(--green); }
.testimonial-card.accent-red .testimonial-avatar { background: linear-gradient(135deg, var(--red), var(--yellow)); border-color: var(--red); }
.testimonial-name { display: block; font-size: 15px; margin-bottom: 2px; }
.testimonial-role { display: block; font-size: 13px; color: var(--ink-soft); }
.testimonial-company { display: block; font-size: 13px; font-weight: 700; }
.testimonial-card.accent-blue .testimonial-company { color: var(--blue); }
.testimonial-card.accent-green .testimonial-company { color: var(--green); }
.testimonial-card.accent-red .testimonial-company { color: var(--red); }

/* ===== Terms & Conditions ===== */
.terms-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.terms-card {
  display: flex; gap: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.terms-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.terms-icon {
  flex-shrink: 0;
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.terms-icon .icon { width: 22px; height: 22px; }
.terms-icon.blue { background: rgba(66, 133, 244, 0.12); color: var(--blue); }
.terms-icon.green { background: rgba(52, 168, 83, 0.12); color: var(--green); }
.terms-icon.yellow { background: rgba(251, 188, 5, 0.16); color: #b98600; }
.terms-icon.red { background: rgba(234, 67, 53, 0.12); color: var(--red); }
.terms-card h3 { font-size: 17px; margin-bottom: 10px; }
.terms-highlight {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--blue);
  background: rgba(66, 133, 244, 0.08); padding: 6px 12px; border-radius: 999px; margin-bottom: 12px;
}
.terms-points { display: flex; flex-direction: column; gap: 8px; }
.terms-points li {
  position: relative; padding-left: 18px; font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}
.terms-points li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--ink-soft); opacity: 0.5;
}

/* ===== Contact ===== */
.contact-section { background: var(--ink); color: #fff; }
.contact-section p, .contact-section .section-lede { color: #b7bac2; }
.contact-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.contact-copy h2 { color: #fff; }
.contact-person { display: flex; gap: 18px; align-items: flex-start; margin: 24px 0 28px; }
.contact-avatar {
  width: 92px; height: 92px; border-radius: 50%; flex-shrink: 0;
  background: var(--grad-google);
  padding: 3px;
}
.contact-avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; object-position: 50% 20%;
  border: 2px solid var(--ink);
}
.contact-copy blockquote {
  border-left: 3px solid var(--yellow);
  padding: 4px 0 4px 18px;
  margin: 0;
  font-style: italic;
  color: #e4e5ea;
}
.contact-copy cite { display: block; margin-top: 10px; font-style: normal; font-weight: 600; color: #fff; }
.contact-links { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.contact-section .btn-outline { background: transparent; border-color: #3a3d46; color: #fff; }
.contact-section .btn-outline:hover { border-color: var(--blue); }
.social-row { display: flex; gap: 12px; margin-top: 50px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: #24262e; display: flex; align-items: center; justify-content: center;
  color: #cfd1d8; transition: color .15s, background .15s;
}
.social-row a:hover { color: #fff; background: var(--blue); }
.social-row .icon { width: 17px; height: 17px; }

.contact-form {
  background: #1f2129;
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.contact-form h3 { color: #fff; margin-bottom: 4px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: #cfd1d8; }
.contact-form input, .contact-form textarea {
  background: #14151b; border: 1px solid #33353e; border-radius: 8px;
  padding: 11px 12px; color: #fff; font-family: var(--font-body); font-size: 14px;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); }
.form-hint { text-align: center; font-size: 12.5px; color: var(--yellow); line-height: 1.6; margin: 4px 0 0; }
.form-note { font-size: 13px; color: var(--green); min-height: 18px; margin: 0; text-align: center; line-height: 1.5; }
.form-note.error { color: #ff8a7a; }
.form-fallback-link {
  color: #fff; font-weight: 700; text-decoration: underline;
  text-underline-offset: 2px;
}
.form-fallback-link:hover { color: var(--yellow); }
/* Honeypot — off-screen for bots to find, invisible to people and screen readers */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.contact-form button[disabled] { opacity: 0.65; cursor: not-allowed; }
.contact-form button[disabled]:hover { transform: none; }

/* ===== Footer ===== */
.footer { background: #0f1015; color: #a9abb4; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid #22242c; }
.footer-logo-chip {
  display: inline-flex; background: #fff; border-radius: 10px;
  padding: 10px 14px; margin-bottom: 14px;
}
.footer-logo-chip img { height: 34px; width: auto; display: block; }
.footer-links h4, .footer-contact h4, .footer-address h4 { color: #fff; font-size: 14px; margin-bottom: 16px; }
.footer-links ul li { padding: 6px 0; }
.footer-links ul li a { font-size: 13px; color: #a9abb4; transition: color .15s; }
.footer-links ul li a:hover { color: #fff; }
.footer-contact p, .footer-address p { font-size: 13px; margin: 0 0 12px; line-height: 1.6; }
.footer-contact a, .footer-address a { color: #a9abb4; }
.footer-contact a:hover { color: var(--blue); }
.footer-address strong { color: #fff; }
.footer-bottom { text-align: center; font-size: 12px; padding: 20px 0; }

/* ===== Engagement Models & Highlights ===== */
.highlight-text-blue {
  color: var(--blue);
  font-weight: 700;
}
.highlight-text-green {
  color: #288c42;
  font-weight: 700;
}

.hero-highlights-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hero-pill:hover {
  transform: translateY(-1px);
}
.pill-blue {
  background: rgba(66, 133, 244, 0.09);
  color: var(--blue);
  border: 1px solid rgba(66, 133, 244, 0.25);
}
.pill-green {
  background: rgba(52, 168, 83, 0.09);
  color: #288c42;
  border: 1px solid rgba(52, 168, 83, 0.25);
}
.hero-pill-sep {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.hero-engagement-models {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.engagement-card {
  position: relative;
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px 14px 12px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.engagement-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.card-project:hover {
  border-color: var(--blue);
}
.card-sub:hover {
  border-color: var(--green);
}
.card-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.badge-blue {
  background: rgba(66, 133, 244, 0.12);
  color: var(--blue);
}
.badge-green {
  background: rgba(52, 168, 83, 0.12);
  color: #288c42;
}
.card-header-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon.blue {
  background: rgba(66, 133, 244, 0.12);
  color: var(--blue);
}
.card-icon.green {
  background: rgba(52, 168, 83, 0.12);
  color: #288c42;
}
.card-info {
  display: flex;
  flex-direction: column;
}
.card-info strong {
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}
.card-info span {
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.3;
  margin-top: 2px;
}

.model-section-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
}
.sub-banner {
  background: rgba(52, 168, 83, 0.06);
  border: 1px dashed rgba(52, 168, 83, 0.3);
}
.project-banner {
  background: rgba(66, 133, 244, 0.06);
  border: 1px dashed rgba(66, 133, 244, 0.3);
  margin-top: 48px;
}
.banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.green-badge {
  background: var(--green);
  color: #fff;
}
.blue-badge {
  background: var(--blue);
  color: #fff;
}
.banner-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Cascading stagger for grid/row children as they reveal */
.grid > .reveal:nth-child(2), .work-grid > .reveal:nth-child(2) { transition-delay: 60ms; }
.grid > .reveal:nth-child(3), .work-grid > .reveal:nth-child(3) { transition-delay: 120ms; }
.grid > .reveal:nth-child(4), .work-grid > .reveal:nth-child(4) { transition-delay: 180ms; }
.grid > .reveal:nth-child(5), .work-grid > .reveal:nth-child(5) { transition-delay: 240ms; }
.grid > .reveal:nth-child(6), .work-grid > .reveal:nth-child(6) { transition-delay: 300ms; }

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

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .printing-inner, .contact-inner, .project-pricing { grid-template-columns: 1fr; }
  .project-pricing { padding: 36px 28px; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .showcase-wrap { height: 420px; max-width: 560px; margin: 0 auto; }
  .showcase-col.third { display: none; }
  .work-grid { grid-template-columns: repeat(3, 1fr); }
  .problem-top { grid-template-columns: 1fr; text-align: center; }
  .problem-copy .section-lede { margin: 0 auto !important; }
  .problem-illustration { max-width: 440px; margin: 0 auto; }
  .eyebrow .dot { width: 100px; min-width: 100px; max-width: 100px; }
  .eyebrow:hover .dot { width: 120px; min-width: 120px; max-width: 120px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 20px 24px; gap: 8px;
    display: none; max-height: calc(100vh - 100%); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta, .nav-login { margin-left: 0; justify-content: center; }
  /* Mega menu collapses into an inline accordion inside the mobile nav */
  .mega-menu {
    position: static; transform: none; width: 100%;
    border: none; border-radius: 0; box-shadow: none; padding: 0;
    display: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav-dropdown.open .mega-menu { display: block; transform: none; }
  .mega-menu::before { display: none; }
  .mega-grid { grid-template-columns: 1fr; gap: 2px; }
  .mega-item { padding: 8px 10px; }
  .mega-icon { width: 32px; height: 32px; }
  .mega-icon .icon { width: 16px; height: 16px; }
  .mega-text small { display: none; }
  .mega-footer { margin-top: 10px; padding-top: 10px; }
  .grid-3, .grid-5, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .project-list { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .filter-row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .showcase-wrap { height: 320px; }
  .problem-illustration { max-width: 320px; }
  .marquee-item { font-size: 11px; padding: 0 14px; }
  .marquee-strip-track { animation-duration: 34s; }
  .section { padding: 44px 0; }
  .hero-engagement-models { grid-template-columns: 1fr; }
  .model-section-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .eyebrow .dot { width: 80px; min-width: 80px; max-width: 80px; height: 4px; }
  .eyebrow:hover .dot { width: 100px; min-width: 100px; max-width: 100px; }
}
