/* OnoeX redesign — shared site styles. @import must precede other rules. */
@import url('./fonts/fonts.css');
@import url('./colors_and_type.css');

[hidden] { display: none !important; }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--fg-2);
  background: var(--neutral-000);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-1);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-brand img { height: 48px; width: auto; }
.nav-links {
  display: flex; gap: 32px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.nav-links a {
  color: var(--fg-1);
  position: relative;
  padding: 6px 0;
  transition: color var(--dur-base) var(--ease-out);
}
.nav-links a:hover { color: var(--blue-700); }
.nav-links a.active { color: var(--blue-700); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--blue-500); border-radius: 999px;
}
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--navy-900); color: white;
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-weight: 600; font-size: 13px;
  border: 0;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all var(--dur-base) var(--ease-out);
}
.nav-cta:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-icon { width: 36px; height: 36px; border-radius: 999px; border: 1px solid var(--border-1); display: inline-flex; align-items: center; justify-content: center; transition: all var(--dur-base) var(--ease-out); background: white; }
.nav-icon:hover { border-color: var(--blue-500); background: var(--blue-050); }
.nav-icon img { width: 16px; height: 16px; opacity: 0.8; }

/* ============== BUTTONS ============== */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  display: inline-flex; align-items: center; gap: 8px;
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.btn-primary { background: var(--blue-500); color: white; }
.btn-primary:hover { background: var(--blue-700); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn-secondary { background: white; color: var(--navy-900); border-color: var(--border-2); }
.btn-secondary:hover { border-color: var(--blue-500); background: var(--blue-050); color: var(--navy-900); }
.btn-navy { background: var(--navy-900); color: white; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy-900); border-color: transparent; }
.btn-ghost:hover { background: var(--blue-050); color: var(--blue-700); }
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-xl { padding: 16px 32px; font-size: 16px; }
.btn .arrow { transition: transform var(--dur-base) var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }

/* ============== HEADINGS / TYPE HELPERS ============== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--blue-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px;
  background: var(--blue-500);
}
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-050); color: var(--blue-700);
  border: 1px solid var(--blue-200);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.01em;
}
.eyebrow-tag::before {
  content: ""; width: 6px; height: 6px;
  background: var(--blue-500); border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(75,161,238,0.18);
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}

/* ============== SECTION ============== */
.section { padding: 112px 0; position: relative; }
.section-tight { padding: 64px 0; }
.section-tinted { background: var(--neutral-050); }
.section-header { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-header .eyebrow { margin-bottom: 16px; }
.section-header h2 {
  font-size: 48px; line-height: 1.08;
  margin: 0 0 18px;
}
.section-header p {
  font-size: 18px; line-height: 1.55;
  color: var(--fg-2);
  margin: 0; text-wrap: pretty;
}

/* ============== HERO ============== */
.hero { position: relative; padding: 72px 0 88px; }
.hero-blob-1 {
  position: absolute; width: 760px; height: 760px; border-radius: 50%;
  background: var(--gradient-sky);
  filter: blur(120px); opacity: 0.55;
  top: -240px; right: -200px; z-index: 0; pointer-events: none;
}
.hero-blob-2 {
  position: absolute; width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, #8ED9E9 0%, transparent 70%);
  filter: blur(100px); opacity: 0.45;
  bottom: -120px; left: -120px; z-index: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,9,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,9,76,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 0%, transparent 80%);
  z-index: 0; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 0.9fr;
  gap: 56px; align-items: center;
}
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--navy-900);
  margin: 0 0 22px;
  text-wrap: balance;
  max-width: 18ch;
}
.hero h1 .accent {
  background: var(--gradient-ring);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 19px; line-height: 1.55;
  color: var(--fg-2);
  max-width: 520px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 40px;
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; color: var(--fg-3);
}
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--gradient-ring);
  border: 2px solid white;
  margin-left: -8px;
  box-shadow: var(--shadow-xs);
}
.hero-trust .avatars span:first-child { margin-left: 0; }

/* Hero visual — Workday-extend dashboard mock */
.hero-visual { position: relative; }
.hero-card {
  background: white;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: 18px;
  border: 1px solid var(--border-1);
  position: relative;
}
.hero-card::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: var(--radius-2xl);
  padding: 1px;
  background: linear-gradient(160deg, rgba(142,217,233,0.6), transparent 50%);
  -webkit-mask: linear-gradient(white,white) content-box, linear-gradient(white,white);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 6px 14px;
  border-bottom: 1px solid var(--border-1);
}
.hero-card-dots { display: flex; gap: 6px; }
.hero-card-dots span { width: 10px; height: 10px; border-radius: 999px; background: var(--neutral-200); }
.hero-card-title { font-size: 12px; color: var(--fg-3); font-family: var(--font-mono); margin-left: 6px; }
.hero-card-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--success-500);
  background: var(--success-100);
  padding: 3px 10px; border-radius: var(--radius-pill);
}
.hero-card-status::before { content: ""; width: 6px; height: 6px; background: var(--success-500); border-radius: 999px; }
.hero-rows { display: grid; gap: 8px; padding-top: 14px; }
.hero-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: var(--bg-2);
  transition: all var(--dur-base) var(--ease-out);
}
.hero-row:hover { background: var(--blue-050); }
.hero-row-dot {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--gradient-ring);
  flex: none;
  display: flex; align-items: center; justify-content: center;
}
.hero-row-dot img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.hero-row-text { flex: 1; min-width: 0; }
.hero-row-title { font-weight: 600; color: var(--navy-900); font-size: 14px; line-height: 1.3; }
.hero-row-sub { font-size: 12px; color: var(--fg-3); margin-top: 2px; }
.hero-row-meta {
  font-size: 11px; font-weight: 600;
  background: var(--blue-050); color: var(--blue-700);
  padding: 4px 10px; border-radius: var(--radius-pill);
  white-space: nowrap;
}
.hero-row-meta.live { background: var(--success-100); color: var(--success-500); }
.hero-row-meta.review { background: var(--warning-100); color: #8A5A00; }

/* Floating chip overlay */
.float-chip {
  position: absolute;
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--navy-900);
}
.float-chip-1 {
  top: -22px; left: -36px;
  animation: float-y 5s var(--ease-out) infinite;
}
.float-chip-2 {
  bottom: -18px; right: 8px;
  animation: float-y 6s var(--ease-out) infinite reverse;
}
.float-chip .dot { width: 10px; height: 10px; border-radius: 999px; background: var(--success-500); box-shadow: 0 0 0 4px rgba(31,178,107,0.18); }
.float-chip .dot.blue { background: var(--blue-500); box-shadow: 0 0 0 4px rgba(75,161,238,0.18); }
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ============== STATS ============== */
.stats-band {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-2xl);
  padding: 40px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: var(--shadow-xs);
}
.stat { padding: 0 16px; border-left: 1px solid var(--border-1); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 52px; line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}
.stat-num .unit {
  background: var(--gradient-ring);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-label { font-size: 14px; color: var(--fg-3); margin-top: 10px; line-height: 1.4; }

/* ============== SERVICES (home) ============== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}
.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-050);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
  border: 1px solid var(--blue-100);
}
.service-card:hover .service-icon {
  background: var(--gradient-ring);
  border-color: transparent;
}
.service-card:hover .service-icon img { filter: brightness(0) invert(1); }
.service-icon img {
  width: 26px; height: 26px;
  filter: invert(39%) sepia(74%) saturate(1850%) hue-rotate(189deg) brightness(96%) contrast(88%);
  transition: filter var(--dur-base) var(--ease-out);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 22px;
  color: var(--navy-900);
  margin: 0 0 12px;
  letter-spacing: -0.015em;
}
.service-card p { font-size: 15px; line-height: 1.55; color: var(--fg-2); margin: 0 0 24px; }
.service-link {
  color: var(--blue-700);
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--dur-base) var(--ease-out);
}
.service-card:hover .service-link { gap: 10px; color: var(--navy-900); }

/* ============== "WHY ONOEX" ============== */
.why-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.why-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #BEE7F3, var(--blue-500) 70%, var(--navy-700));
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.why-image::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.35), transparent 55%);
  pointer-events: none;
}
.why-quote {
  position: relative; z-index: 1;
  color: white;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.012em;
  text-wrap: balance;
  max-width: 90%;
}
.why-quote-mark { font-size: 64px; line-height: 0; color: rgba(255,255,255,0.4); display: block; margin-bottom: 8px; }
.why-quote-author { display: flex; align-items: center; gap: 12px; margin-top: 24px; font-family: var(--font-body); }
.why-quote-author .avatar { width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.2); border: 2px solid rgba(255,255,255,0.3); }
.why-quote-author .name { color: white; font-weight: 600; font-size: 14px; }
.why-quote-author .role { color: rgba(255,255,255,0.7); font-size: 12px; }
.why-stats {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.why-stat-num {
  font-family: var(--font-display);
  font-weight: 600; font-size: 32px;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1;
}
.why-stat-num .unit { color: var(--blue-500); }
.why-stat-label { font-size: 12px; color: var(--fg-3); margin-top: 6px; }
.why-content h2 {
  font-size: 44px; line-height: 1.08;
  margin: 18px 0 18px;
}
.why-content p { font-size: 17px; line-height: 1.6; color: var(--fg-2); margin-bottom: 28px; }
.why-points { display: grid; gap: 18px; margin-bottom: 32px; }
.why-point { display: flex; gap: 14px; align-items: flex-start; }
.why-point-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--blue-050);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.why-point-icon img { width: 18px; height: 18px; filter: invert(39%) sepia(74%) saturate(1850%) hue-rotate(189deg) brightness(96%) contrast(88%); }
.why-point-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--navy-900); margin: 0 0 4px; }
.why-point-text { font-size: 14px; color: var(--fg-2); line-height: 1.5; }

/* ============== IMPACTS — numbered steps ============== */
.impacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.impact-card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  transition: all var(--dur-base) var(--ease-out);
  align-items: start;
}
.impact-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.impact-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--blue-700);
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  width: 44px; height: 44px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  letter-spacing: 0;
}
.impact-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--navy-900);
  margin: 8px 0 8px;
  letter-spacing: -0.015em;
}
.impact-card p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0 0 18px; }
.impact-thumb {
  grid-column: 1 / -1;
  border-radius: var(--radius-lg);
  height: 160px;
  background: linear-gradient(135deg, var(--blue-050), var(--blue-100));
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-1);
}

/* ============== TESTIMONIAL / CTA ============== */
.testimonial {
  max-width: 880px; margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  line-height: 1.32;
  letter-spacing: -0.018em;
  color: var(--navy-900);
  margin: 28px 0 36px;
  text-wrap: balance;
}
.testimonial-author { display: inline-flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--gradient-ring);
  border: 3px solid white;
  box-shadow: var(--shadow-sm);
}
.testimonial-name { font-weight: 600; color: var(--navy-900); font-size: 15px; text-align: left; }
.testimonial-role { font-size: 13px; color: var(--fg-3); text-align: left; }
.q-mark {
  font-family: var(--font-display);
  font-size: 80px; line-height: 0.6;
  color: var(--blue-300);
  letter-spacing: -0.03em;
}

.cta-band {
  background: var(--gradient-navy);
  border-radius: var(--radius-2xl);
  padding: 80px 48px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute;
  width: 480px; height: 480px;
  border: 2px solid rgba(142,217,233,0.18);
  border-radius: 50%;
  right: -120px; top: -120px;
}
.cta-band::after {
  content: ""; position: absolute;
  width: 360px; height: 360px;
  border: 2px solid rgba(75,161,238,0.14);
  border-radius: 50%;
  left: -100px; bottom: -100px;
}
.cta-band-glow {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142,217,233,0.25), transparent 60%);
  filter: blur(40px);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-band .eyebrow { color: var(--blue-300); margin-bottom: 16px; }
.cta-band .eyebrow::before { background: var(--blue-300); }
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: white;
  margin: 0 0 16px;
}
.cta-band p { font-size: 18px; color: var(--blue-200); margin: 0 0 32px; }
.cta-band .btn-primary { background: white; color: var(--navy-900); }
.cta-band .btn-primary:hover { background: var(--blue-050); }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-900);
  color: var(--blue-200);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ""; position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,161,238,0.12), transparent 65%);
  filter: blur(60px);
  top: -200px; right: -200px;
}
.footer-inner-trim { grid-template-columns: 1.4fr 1fr !important; gap: 64px !important; }
.footer-bottom-trim, .footer-inner-trim ~ .footer-bottom { justify-content: flex-start !important; }
.footer-inner {
  position: relative;
  display: grid; grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand { max-width: 340px; }
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 18px; opacity: 0.95; }
.footer-brand p { font-size: 14px; color: var(--blue-200); line-height: 1.55; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease-out);
}
.footer-social a:hover { background: var(--blue-500); border-color: var(--blue-500); }
.footer-social img { width: 16px; height: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-col h4 {
  font-family: var(--font-display);
  color: white;
  font-size: 13px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
}
.footer-col a {
  display: block;
  color: var(--blue-200);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color var(--dur-base) var(--ease-out);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  font-size: 13px; color: var(--blue-200);
}

/* ============== SERVICES PAGE ============== */
.svc-hero { padding: 80px 0 56px; position: relative; overflow: hidden; }
.svc-hero h1 {
  font-size: 64px; line-height: 1.04; letter-spacing: -0.028em;
  font-family: var(--font-display); font-weight: 600; color: var(--navy-900);
  max-width: 900px;
  margin: 22px 0 20px;
  text-wrap: balance;
}
.svc-hero p { font-size: 19px; line-height: 1.55; color: var(--fg-2); max-width: 680px; margin: 0; }

.svc-block { padding: 80px 0; border-top: 1px solid var(--border-1); }
.svc-block:nth-child(even) { background: var(--neutral-050); }
.svc-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.svc-block-grid.reverse > .svc-block-image { order: 2; }
.svc-block-eyebrow { color: var(--blue-700); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; }
.svc-block h2 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 44px; line-height: 1.08; letter-spacing: -0.022em;
  color: var(--navy-900); margin: 14px 0 18px;
}
.svc-block-lead { font-size: 17px; line-height: 1.6; color: var(--fg-2); margin: 0 0 32px; }
.svc-list { display: grid; gap: 18px; }
.svc-list-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 18px 0; border-top: 1px solid var(--border-1); }
.svc-list-item:first-child { border-top: 0; padding-top: 0; }
.svc-list-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: white; border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.svc-list-icon img { width: 18px; height: 18px; filter: invert(39%) sepia(74%) saturate(1850%) hue-rotate(189deg) brightness(96%) contrast(88%); }
.svc-list-title { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--navy-900); margin: 8px 0 6px; }
.svc-list-text { font-size: 14px; line-height: 1.55; color: var(--fg-2); }

.svc-block-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #E3F2FB, #BEE7F3 60%, #8ED9E9);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-1);
}
.svc-mock {
  position: absolute; inset: 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-1);
  padding: 18px;
  display: flex; flex-direction: column; gap: 10px;
}
.svc-mock-h {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-1);
}
.svc-mock-h .dots { display: flex; gap: 5px; }
.svc-mock-h .dots span { width: 8px; height: 8px; border-radius: 999px; background: var(--neutral-200); }
.svc-mock-h .label { font-family: var(--font-mono); font-size: 11px; color: var(--fg-3); }

/* AI mock */
.ai-bubble {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 12px;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  font-size: 13px; color: var(--navy-900);
}
.ai-bubble.user { background: var(--blue-050); flex-direction: row-reverse; text-align: right; }
.ai-avatar {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--gradient-ring);
  flex: none;
  display: flex; align-items: center; justify-content: center;
}
.ai-avatar img { width: 14px; height: 14px; filter: brightness(0) invert(1); }
.ai-bubble.user .ai-avatar { background: var(--navy-900); }

/* Extend mock — table */
.tbl-row {
  display: grid; grid-template-columns: 1.5fr 1fr 0.8fr;
  gap: 12px; align-items: center;
  padding: 10px 4px;
  border-top: 1px solid var(--border-1);
  font-size: 12px;
}
.tbl-row:first-of-type { border-top: 0; }
.tbl-row .name { font-weight: 600; color: var(--navy-900); }
.tbl-row .sub { font-size: 11px; color: var(--fg-3); }
.tbl-row .pill {
  display: inline-flex; padding: 3px 9px;
  border-radius: var(--radius-pill);
  font-size: 10px; font-weight: 600;
  background: var(--success-100); color: var(--success-500);
  width: fit-content;
}
.tbl-row .pill.warn { background: var(--warning-100); color: #8A5A00; }

/* Integration mock — flow */
.flow {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 10px 0;
}
.flow-node {
  text-align: center;
  flex: 1;
}
.flow-node .blob {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-050);
  border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  font-family: var(--font-mono);
  font-size: 11px; color: var(--blue-700); font-weight: 600;
}
.flow-node .blob.center { background: var(--gradient-ring); border-color: transparent; color: white; }
.flow-node .label { font-size: 11px; color: var(--fg-3); }
.flow-arrow { font-family: var(--font-mono); color: var(--blue-500); font-size: 14px; }

.flow-meta {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--success-100); color: var(--success-500);
  font-size: 11px; font-weight: 600;
  border-radius: var(--radius-pill);
  width: fit-content;
}
.flow-meta::before { content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--success-500); }

.svc-cta-strip {
  padding: 96px 0;
  background: var(--gradient-navy);
  color: white;
  position: relative; overflow: hidden;
}
.svc-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.svc-cta-inner h2 { color: white; font-size: 40px; line-height: 1.1; max-width: 640px; margin: 0; }

/* ============== HOW WE WORK (services) ============== */
.howwework {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.how-card {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  padding: 28px;
  position: relative;
}
.how-card-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-700);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.how-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--navy-900); margin: 0 0 8px; }
.how-card p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0; }

/* ============== INSIGHTS ============== */
.insights-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; }
.insight {
  background: white;
  border: 1px solid var(--border-1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--dur-base) var(--ease-out);
  cursor: pointer;
}
.insight:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--blue-200); }
.insight-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--blue-100), var(--blue-300));
  position: relative;
}
.insight.featured .insight-img { aspect-ratio: 4/3; }
.insight-img.alt { background: linear-gradient(135deg, #E3F2FB, var(--blue-200)); }
.insight-img.alt2 { background: linear-gradient(135deg, var(--navy-700), var(--blue-700)); }
.insight-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.insight-meta { display: flex; gap: 12px; font-size: 12px; color: var(--fg-3); margin-bottom: 10px; }
.insight-meta .tag { color: var(--blue-700); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.insight h3 { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: var(--navy-900); line-height: 1.3; letter-spacing: -0.012em; margin: 0 0 8px; }
.insight.featured h3 { font-size: 26px; }
.insight p { font-size: 14px; line-height: 1.55; color: var(--fg-2); margin: 0 0 16px; flex: 1; }
.insight-link { font-size: 13px; color: var(--blue-700); font-weight: 600; }

/* ============== ABOUT BAND ============== */
.about-band {
  background: linear-gradient(180deg, white 0%, var(--blue-050) 100%);
  padding: 96px 0;
}
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-grid h2 { font-size: 44px; line-height: 1.08; margin-bottom: 20px; }
.about-grid p { font-size: 17px; line-height: 1.6; color: var(--fg-2); margin-bottom: 24px; }
.about-card-stack { position: relative; aspect-ratio: 4/5; }
.about-card-stack .stack-img {
  position: absolute;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-1);
  background: white;
  overflow: hidden;
}
.about-card-stack .stack-img.a { top: 0; left: 0; width: 70%; aspect-ratio: 3/4; background: linear-gradient(135deg, #E3F2FB, var(--blue-300)); }
.about-card-stack .stack-img.b { bottom: 0; right: 0; width: 60%; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy-700), var(--blue-500)); }
.about-card-stack .stack-img.c { top: 30%; right: 8%; width: 38%; aspect-ratio: 1; background: white; padding: 18px; }
.about-card-stack .stack-img.c .mini-num { font-family: var(--font-display); font-weight: 600; font-size: 32px; color: var(--navy-900); letter-spacing: -0.02em; }
.about-card-stack .stack-img.c .mini-num .unit { color: var(--blue-500); }
.about-card-stack .stack-img.c .mini-label { font-size: 12px; color: var(--fg-3); margin-top: 6px; }
.about-card-stack .stack-img.c .mini-bar {
  margin-top: 12px;
  display: flex; gap: 4px;
}
.about-card-stack .stack-img.c .mini-bar span {
  flex: 1; height: 4px; background: var(--neutral-200); border-radius: 999px;
}
.about-card-stack .stack-img.c .mini-bar span.on { background: var(--blue-500); }

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .hero-inner { gap: 40px; }
  .hero h1 { font-size: clamp(40px, 6vw, 56px); }
}
@media (max-width: 880px) {
  .hero-inner, .why-grid, .svc-block-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .svc-block-grid.reverse > .svc-block-image { order: 0; }
  .hero h1, .svc-hero h1 { font-size: 44px; }
  .section-header h2, .why-content h2, .cta-band h2, .svc-block h2, .about-grid h2 { font-size: 32px; }
  .services-grid, .impacts, .howwework, .insights-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; padding: 28px; }
  .stat { border-left: 0; padding: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section { padding: 64px 0; }
  .cta-band, .svc-cta-strip { padding: 48px 24px; }
  .testimonial-quote { font-size: 24px; }
}
