/* ============================================================
   HOMEPAGE V2 — Premium Marketing Page Enhancement
   Hero · Hub Cards · Enterprise · Stats · Motion
   (Utility bar + language switcher CSS now in shared styles.css)
   ============================================================ */

/* ─── Animations ─── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Homepage navbar is fine — dark hero means white text is visible */
body[data-page="home"] .navbar {
  background: transparent;
}

body[data-page="home"] .navbar.scrolled {
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* Compensate for util-bar + navbar in body */
body[data-page="home"] {
  padding-top: 0;
}

body[data-page="home"] .hub-hero {
  padding-top: calc(34px + 70px + 36px);
}

/* ============================================================
   INNTALLY PUBLIC HOME - Operations Platform Refresh
   Retires the old generic SaaS homepage visually and replaces it
   with a hospitality-first service workflow narrative.
   ============================================================ */

body[data-page="home"] main > section:not(.ops-home-section) {
  display: none !important;
}

body[data-page="home"] {
  background: #07111f;
  color: #e5edf7;
}

.ops-home-section {
  position: relative;
  overflow: hidden;
}

.ops-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(45, 212, 191, 0.26);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  color: #7dd3fc;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-hero {
  min-height: 92vh;
  padding: 154px 0 84px;
  background: #07111f;
}

.ops-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.ops-grid-plane {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.18));
}

.ops-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: #081320;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
}

.ops-service-map {
  position: absolute;
  inset: 126px 28px auto auto;
  width: min(50vw, 720px);
  height: 430px;
}

.map-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(8, 19, 32, 0.88);
  color: #dbeafe;
  font-size: 0.74rem;
  font-weight: 900;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.node-stock { left: 4%; top: 62%; }
.node-res { left: 22%; top: 14%; }
.node-pos { left: 44%; top: 48%; background: rgba(20, 184, 166, 0.2); color: #ccfbf1; }
.node-hr { right: 10%; top: 20%; }
.node-margin { right: 3%; bottom: 8%; background: rgba(245, 158, 11, 0.16); color: #fde68a; }

.map-line {
  position: absolute;
  height: 1px;
  background: rgba(45, 212, 191, 0.35);
  transform-origin: left center;
}

.line-a { left: 14%; top: 68%; width: 250px; transform: rotate(-28deg); }
.line-b { left: 34%; top: 26%; width: 190px; transform: rotate(24deg); background: rgba(125, 211, 252, 0.34); }
.line-c { left: 53%; top: 55%; width: 230px; transform: rotate(-26deg); background: rgba(251, 191, 36, 0.32); }
.line-d { right: 14%; top: 30%; width: 190px; transform: rotate(60deg); }

.ops-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: 52px;
}

.ops-hero-copy h1 {
  max-width: 760px;
  margin: 22px 0 22px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 3.8rem;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.ops-lead {
  max-width: 640px;
  margin: 0 0 28px;
  color: #b6c5d8;
  font-size: 1.08rem;
  line-height: 1.75;
}

.ops-actions,
.ops-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ops-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.ops-btn:hover {
  transform: translateY(-1px);
}

.ops-btn-primary {
  background: #2dd4bf;
  color: #04111c;
  box-shadow: 0 16px 34px rgba(45, 212, 191, 0.18);
}

.ops-btn-secondary {
  border: 1px solid rgba(226, 232, 240, 0.2);
  background: rgba(15, 23, 42, 0.6);
  color: #e2e8f0;
}

.ops-proof {
  margin-top: 24px;
}

.ops-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.58);
  color: #cbd5e1;
  font-size: 0.78rem;
  font-weight: 800;
}

.ops-live-wall {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.86);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.ops-wall-top,
.ops-alert-row,
.ops-rush-lanes div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.ops-wall-top {
  padding: 16px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.ops-wall-top span,
.ops-wall-kpis span,
.ops-rush-lanes span,
.ops-compare span {
  display: block;
  color: #7c8aa0;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-wall-top strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1.05rem;
}

.ops-wall-top em {
  padding: 6px 9px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.14);
  color: #86efac;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
}

.ops-wall-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(148, 163, 184, 0.1);
}

.ops-wall-kpis div {
  padding: 16px;
  background: rgba(15, 23, 42, 0.9);
}

.ops-wall-kpis strong {
  display: block;
  margin-top: 7px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 2rem;
  line-height: 1;
}

.ops-wall-kpis small {
  display: block;
  margin-top: 8px;
  color: #93c5fd;
  font-size: 0.76rem;
  font-weight: 800;
}

.ops-alert-row {
  margin: 12px;
  padding: 12px;
  border: 1px solid rgba(251, 191, 36, 0.24);
  border-radius: 8px;
  background: rgba(251, 191, 36, 0.09);
}

.ops-alert-row b {
  color: #fde68a;
  font-size: 0.76rem;
  text-transform: uppercase;
}

.ops-alert-row span {
  color: #f8fafc;
  font-size: 0.84rem;
  font-weight: 800;
  text-align: right;
}

.ops-rush-lanes {
  display: grid;
  gap: 1px;
  padding: 0 12px 12px;
}

.ops-rush-lanes div {
  min-height: 48px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
}

.ops-rush-lanes strong {
  color: #e2e8f0;
  font-size: 0.86rem;
}

.ops-rush-lanes em {
  color: #99f6e4;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 800;
  text-align: right;
}

.ops-signal,
.ops-products {
  padding: 92px 0;
  background: #f6f8fb;
  color: #0f172a;
}

.ops-section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.ops-section-head h2,
.ops-flow-copy h2,
.ops-proof-copy h2,
.ops-final-cta h2 {
  margin: 16px 0 12px;
  color: #0f172a;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.ops-section-head p,
.ops-flow-copy p,
.ops-proof-copy p,
.ops-final-cta p {
  color: #526174;
  font-size: 1rem;
  line-height: 1.75;
}

.ops-signal-grid,
.ops-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ops-signal-card,
.ops-product-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid #dbe4ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
}

.ops-signal-card b {
  color: #0f766e;
  font-size: 0.8rem;
}

.ops-signal-card h3 {
  margin: 18px 0 10px;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 900;
}

.ops-signal-card p {
  margin: 0;
  color: #5f6f82;
  font-size: 0.9rem;
  line-height: 1.65;
}

.ops-flow,
.ops-proof-section {
  padding: 94px 0;
  background: #081320;
  color: #e2e8f0;
}

.ops-flow-shell,
.ops-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 46px;
  align-items: center;
}

.ops-flow-copy h2,
.ops-proof-copy h2,
.ops-final-cta h2 {
  color: #ffffff;
}

.ops-flow-copy p,
.ops-proof-copy p,
.ops-final-cta p {
  color: #a9b7c9;
}

.ops-flow-board {
  display: grid;
  gap: 12px;
}

.ops-flow-step {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.74);
}

.ops-flow-step span {
  color: #67e8f9;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-flow-step strong {
  color: #f8fafc;
  font-size: 1rem;
  line-height: 1.45;
}

.ops-product-grid {
  grid-template-columns: repeat(3, 1fr);
}

.ops-product-card {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.ops-product-card:hover {
  transform: translateY(-3px);
  border-color: #2dd4bf;
}

.ops-product-card span {
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ops-product-card strong {
  color: #0f172a;
  font-size: 1.04rem;
  line-height: 1.45;
}

.ops-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ops-compare div {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.7);
}

.ops-compare .is-inntally {
  border-color: rgba(45, 212, 191, 0.3);
  background: rgba(20, 184, 166, 0.12);
}

.ops-compare strong {
  display: block;
  margin-top: 16px;
  color: #f8fafc;
  font-size: 0.98rem;
  line-height: 1.5;
}

.ops-final-cta {
  padding: 96px 0;
  background: #06101c;
  text-align: center;
}

.ops-final-cta .container {
  max-width: 820px;
}

.ops-final-cta .ops-btn {
  margin-top: 24px;
}

@media (max-width: 1180px) {
  .ops-hero-layout,
  .ops-flow-shell,
  .ops-proof-grid,
  .ops-enterprise-grid,
  .ops-scale-grid {
    grid-template-columns: 1fr;
  }

  .ops-service-map {
    opacity: 0.42;
    width: 86vw;
  }

  .ops-signal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .ops-hero {
    min-height: auto;
    padding: 116px 0 32px;
  }

  .ops-hero-copy h1,
  .ops-section-head h2,
  .ops-flow-copy h2,
  .ops-proof-copy h2,
  .ops-final-cta h2 {
    font-size: 2.2rem;
  }

  .ops-hero-layout {
    gap: 28px;
  }

  .ops-live-wall {
    max-height: 96px;
    overflow: hidden;
  }

  .ops-hero .ops-proof {
    display: none;
  }

  .ops-alert-row,
  .ops-rush-lanes {
    display: none;
  }

  .ops-signal,
  .ops-products,
  .ops-flow,
  .ops-proof-section,
  .ops-final-cta {
    padding: 64px 0;
  }

  .ops-signal-grid,
  .ops-product-grid,
  .ops-compare {
    grid-template-columns: 1fr;
  }

  .ops-flow-step {
    grid-template-columns: 1fr;
  }

  .ops-service-map {
    display: none;
  }
}

/* ─── HUB HERO SECTION (Dark Premium) ─── */
.hub-hero {
  background: var(--gradient-hero, linear-gradient(135deg, #020617 0%, #0F172A 25%, #1a2744 50%, #0F172A 75%, #020617 100%));
  padding-bottom: 72px;
  min-height: 94vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Remove the light gradient mesh — hero-bg orbs handle the ambience */
.hub-hero::before {
  display: none;
}

/* Subtle dot grid on dark — already handled by .hero-grid-bg from styles.css */
.hub-hero::after {
  display: none;
}

.hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(620px, 1.15fr);
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hub-hero-left {
  max-width: 560px;
}

.hub-hero-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: clamp(2.4rem, 3.8vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white, #fff);
  margin-bottom: 24px;
  letter-spacing: 0;
}

.hub-hero-highlight {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #22d3ee 100%);
  background-size: 200% 200%;
  animation: gradient-shift 6s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--navy-400, #94a3b8);
  margin-bottom: 28px;
  max-width: 480px;
}

.hub-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Enhanced hero CTAs */
.hub-hero-actions .btn-primary {
  padding: 15px 34px;
  font-size: 0.95rem;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.45), 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hub-hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.5), 0 2px 6px rgba(0, 0, 0, 0.2);
}

.hub-hero-actions .btn-ghost {
  padding: 15px 34px;
  font-size: 0.95rem;
  border-radius: 14px;
  color: var(--navy-300, #cbd5e1);
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hub-hero-actions .btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.3);
  color: var(--white, #fff);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.06);
}

/* ─── HUB CARDS GRID ─── */
.hub-hero-right {
  display: flex;
  justify-content: center;
}

.hub-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 660px;
  position: relative;
}

/* Staggered floating animation for cards at rest */
@keyframes hubFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hub-card {
  will-change: transform, opacity;
}

.hub-card:nth-child(1) { animation: hubFloat 6s ease-in-out 0s infinite; }
.hub-card:nth-child(2) { animation: hubFloat 6s ease-in-out 1s infinite; }
.hub-card:nth-child(3) { animation: hubFloat 6s ease-in-out 2s infinite; }
.hub-card:nth-child(4) { animation: hubFloat 6s ease-in-out 0.5s infinite; }
.hub-card:nth-child(5) { animation: hubFloat 6s ease-in-out 1.5s infinite; }
.hub-card:nth-child(6) { animation: hubFloat 6s ease-in-out 2.5s infinite; }

/* Stop floating on hover (user is interacting) */
.hub-card:hover {
  animation-play-state: paused;
}

/* Entrance animation — use only hubFloat after entrance to avoid incompatible dual animations */
@keyframes hubCardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hub-card.visible {
  animation-name: hubCardEntrance;
  animation-duration: 0.6s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  animation-fill-mode: forwards;
  animation-iteration-count: 1;
}

.hub-card.visible:nth-child(1) { animation-delay: 0.05s; }
.hub-card.visible:nth-child(2) { animation-delay: 0.15s; }
.hub-card.visible:nth-child(3) { animation-delay: 0.25s; }
.hub-card.visible:nth-child(4) { animation-delay: 0.1s; }
.hub-card.visible:nth-child(5) { animation-delay: 0.2s; }
.hub-card.visible:nth-child(6) { animation-delay: 0.3s; }

/* Focus visible for keyboard nav */
.hub-card:focus-visible {
  outline: 2px solid var(--accent, var(--blue-400));
  outline-offset: 2px;
}

.hub-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transform-style: preserve-3d;
  perspective: 800px;
}

/* Animated gradient border */
.hub-card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 40%,
    rgba(var(--accent-rgb, 96,165,250), 0.5) 50%,
    transparent 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.hub-card:hover .hub-card-border {
  opacity: 1;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  to { --border-angle: 360deg; }
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Mouse-follow glow spotlight */
.hub-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb, 96,165,250), 0.15), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
  filter: blur(20px);
}

.hub-card:hover .hub-card-glow {
  opacity: 1;
}

/* Card inner content wrapper */
.hub-card-content {
  position: relative;
  z-index: 2;
  padding: 20px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Colored top accent bar — only on hover, now animated */
/* Colored top accent bar - only on hover, GPU-composited */
.hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent, var(--blue-400, #60a5fa));
  opacity: 0;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform-origin: center;
  z-index: 3;
}

.hub-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

/* Background glow wash on hover */
.hub-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb, 96,165,250), 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}

.hub-card:hover::after {
  opacity: 1;
}

.hub-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(var(--accent-rgb, 96,165,250), 0.1),
    inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

/* Card accent colors per hub */
.hub-card:nth-child(1) { --accent: var(--blue-400, #60a5fa); --accent-rgb: 96,165,250; }
.hub-card:nth-child(2) { --accent: var(--emerald-400, #34d399); --accent-rgb: 52,211,153; }
.hub-card:nth-child(3) { --accent: var(--gold-400, #fbbf24); --accent-rgb: 251,191,36; }
.hub-card:nth-child(4) { --accent: var(--rose-400, #fb7185); --accent-rgb: 251,113,133; }
.hub-card:nth-child(5) { --accent: var(--indigo-400, #818cf8); --accent-rgb: 129,140,248; }
.hub-card:nth-child(6) { --accent: var(--cyan-400, #22d3ee); --accent-rgb: 34,211,238; }

/* Icon wrapper with pulse ring */
.hub-card-icon-wrap {
  position: relative;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(var(--accent-rgb, 96,165,250), 0.1);
  color: var(--accent, var(--blue-400));
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.hub-card:hover .hub-card-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(var(--accent-rgb, 96,165,250), 0.18);
}

.hub-card-icon-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 14px;
  border: 1.5px solid rgba(var(--accent-rgb, 96,165,250), 0.3);
  opacity: 0;
  pointer-events: none;
}

.hub-card:hover .hub-card-icon-pulse {
  animation: iconPulseRing 1.5s ease-out infinite;
}

@keyframes iconPulseRing {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

.hub-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.hub-card-icon {
  flex-shrink: 0;
}

.hub-card-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white, #fff);
  margin: 0;
  transition: color 0.3s ease;
}

.hub-card:hover .hub-card-title {
  color: #fff;
  text-shadow: 0 0 20px rgba(var(--accent-rgb, 96,165,250), 0.3);
}

.hub-card-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 2;
  flex: 1;
}

.hub-card-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.76rem;
  color: var(--navy-400, #94a3b8);
  line-height: 1.45;
  transition: color 0.3s ease;
}

.hub-card:hover .hub-card-bullets li {
  color: var(--navy-300, #cbd5e1);
}

.hub-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.3s ease;
}

.hub-card:hover .hub-check {
  transform: scale(1.15);
}

/* Learn more link with animated arrow */
.hub-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent, var(--blue-400, #60a5fa));
  text-decoration: none;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.hub-card-arrow {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hub-card-link:hover {
  gap: 10px;
  opacity: 0.85;
}

.hub-card-link:hover .hub-card-arrow {
  transform: translateX(4px);
}

/* Mini stat badge — bottom-right corner */
.hub-card-stat {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
  z-index: 2;
}

.hub-card:hover .hub-card-stat {
  opacity: 1;
  transform: translateY(0);
}

.hub-card-stat-num {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent, var(--blue-400));
  line-height: 1;
  text-shadow: 0 0 16px rgba(var(--accent-rgb, 96,165,250), 0.4);
}

.hub-card-stat-label {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--navy-400, #94a3b8);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-top: 2px;
}

/* Grid connection lines */
.hub-connections {
  display: none;
}

/* ─── TRUST STRIP V2 ─── */
.trust-strip-v2 {
  background: linear-gradient(180deg, var(--navy-50, #f8fafc), var(--white, #fff));
  padding: 40px 0;
  border-top: 1px solid var(--navy-100, #e2e8f0);
  position: relative;
}

.trust-strip-label {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy-400, #94a3b8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.industry-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.industry-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy-500, #64748b);
  padding: 8px 16px;
  border-radius: 10px;
  background: var(--white, #fff);
  border: 1px solid var(--navy-100, #e2e8f0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.industry-logo:hover {
  border-color: var(--blue-200, #bfdbfe);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
  color: var(--blue-600, #2563eb);
  transform: translateY(-2px);
}

/* ─── STATS BAR ─── */
.stats-bar {
  padding: 80px 0;
  background: var(--white, #fff);
  position: relative;
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-200, #e2e8f0), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  padding: 28px 24px;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  background: var(--navy-50, #f8fafc);
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--navy-900, #0f172a);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.stat-number.gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-number.green {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-500, #64748b);
  letter-spacing: 0;
}

/* OPERATING LAYER */
.operating-layer-section {
  padding: 104px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.operating-layer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.operating-layer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.operating-copy .section-desc {
  max-width: 620px;
}

.audit-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.audit-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--navy-200, #e2e8f0);
  background: rgba(255, 255, 255, 0.86);
  color: var(--navy-700, #334155);
  font-size: 0.82rem;
  font-weight: 700;
}

.operating-flow {
  background: var(--navy-950, #020617);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  position: relative;
}

.flow-step {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 10px 14px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.72);
}

.flow-step.highlight {
  border-color: rgba(52, 211, 153, 0.42);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.18), rgba(37, 99, 235, 0.14));
}

.flow-kicker {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.16);
  color: var(--blue-300, #93c5fd);
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
}

.flow-step strong {
  color: var(--white, #fff);
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 1rem;
}

.flow-step small {
  color: var(--navy-300, #cbd5e1);
  line-height: 1.55;
}

.flow-connector {
  width: 2px;
  height: 18px;
  margin: 3px 0 3px 38px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.2), rgba(52, 211, 153, 0.85));
}

.flow-tag {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  background: rgba(52, 211, 153, 0.12);
  color: var(--emerald-300, #6ee7b7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

/* ─── ENTERPRISE FEATURES ─── */
.ent-features-section {
  padding: 120px 0;
  background: var(--navy-50, #f8fafc);
  position: relative;
  overflow: hidden;
}

.ent-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, var(--navy-200, #e2e8f0) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.4;
  pointer-events: none;
}

.ent-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.ent-feature-card {
  background: var(--white, #fff);
  border: 1px solid var(--navy-100, #e2e8f0);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ent-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-blue, linear-gradient(135deg, #2563EB 0%, #4F46E5 100%));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ent-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.ent-feature-card:hover::before {
  opacity: 1;
}

.ent-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
}

.ent-feature-card:hover .ent-feature-icon {
  transform: scale(1.08);
}

.ent-feature-title {
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-900, #0f172a);
  margin: 0 0 10px 0;
}

.ent-feature-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--navy-500, #64748b);
  margin: 0;
}

/* ─── DEEP FEATURES FIX FOR V2 ─── */
.deep-feature-block {
  margin-bottom: 80px;
}

.deep-feature-block:last-child {
  margin-bottom: 0;
}

/* ─── BTN ADDITIONS ─── */
.btn-outline {
  background: transparent;
  color: var(--navy-900, #0f172a);
  border: 2px solid var(--navy-300, #cbd5e1);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline:hover {
  border-color: var(--blue-500, #3b82f6);
  color: var(--blue-600, #2563eb);
  background: rgba(59, 130, 246, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.btn-dark {
  background: var(--navy-900, #0f172a);
  color: var(--white, #fff);
  border: 2px solid var(--navy-900, #0f172a);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-dark:hover {
  background: var(--navy-800, #1e293b);
  border-color: var(--navy-800, #1e293b);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--white, #fff);
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

/* ─── SECTION HEADERS ENHANCEMENT ─── */
.section-eyebrow {
  position: relative;
  padding-left: 20px;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.section-eyebrow.dark::before {
  background: var(--blue-400);
}

.section-title {
  letter-spacing: 0;
}

/* ─── COMPARISON SECTION ENHANCEMENT ─── */
.comparison-section {
  padding: 120px 0;
  background: var(--white, #fff);
}

.comparison-table-wide {
  min-width: 980px;
}

/* ─── TESTIMONIALS SECTION ─── */
.testimonials-section {
  padding: 120px 0;
  background: var(--navy-50, #f8fafc);
  position: relative;
}

/* ─── PRICING SECTION ENHANCEMENT ─── */
.pricing-section {
  padding: 120px 0;
  background: var(--white, #fff);
  scroll-margin-top: 126px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  border-radius: 8px;
}

.pricing-card.featured::before {
  content: "Full Access";
}

.pricing-promise {
  display: flex;
  align-items: center;
  min-height: 92px;
  margin: 24px 0 8px;
  color: var(--navy-900, #0f172a);
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.pricing-promise.featured-promise {
  color: var(--blue-700, #1d4ed8);
}

.pricing-section .section-desc {
  max-width: 820px;
}

.pricing-section .pricing-feature {
  font-size: 0.92rem;
  line-height: 1.45;
}

/* ─── SECURITY SECTION ENHANCEMENT ─── */
.security-section {
  padding: 120px 0;
  background: var(--gradient-hero, linear-gradient(180deg, #0F172A 0%, #1E293B 100%));
  position: relative;
}

.security-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.security-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-300, #94a3b8);
  padding: 10px 18px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}

.security-badge-item:hover {
  background: rgba(59,130,246,0.06);
  border-color: rgba(59,130,246,0.15);
  color: var(--white, #fff);
  transform: translateY(-2px);
}

/* ─── FAQ SECTION ENHANCEMENT ─── */
#faq {
  position: relative;
}

#faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-200, #e2e8f0), transparent);
}

/* ─── HERO SOCIAL PROOF RESPONSIVE ─── */
.hero-social-proof {
  animation: fadeInDown 0.6s ease 0.8s both;
}

/* ─── SMOOTH SCROLL ─── */
html {
  scroll-behavior: smooth;
}

/* ─── SELECTION COLOR ─── */
::selection {
  background: rgba(59, 130, 246, 0.15);
  color: var(--navy-900, #0f172a);
}

/* ─── HIGH CONTRAST MODE ─── */
body.high-contrast {
  --navy-50: #000;
  --navy-100: #333;
  --navy-200: #555;
  --navy-900: #fff;
  --navy-800: #eee;
  --navy-500: #ccc;
  --navy-400: #bbb;
  --navy-300: #999;
  --white: #000;
  background: #000;
  color: #fff;
}

body.high-contrast .hub-card,
body.high-contrast .ent-feature-card,
body.high-contrast .pricing-card,
body.high-contrast .testimonial-card {
  background: #111;
  border-color: #444;
}

body.high-contrast .navbar {
  background: #0a0a0a;
}

body.high-contrast .hub-hero {
  background: #000;
}

body.high-contrast .hub-hero .hero-bg,
body.high-contrast .hub-hero .hero-grid-bg,
body.high-contrast .hub-hero .hero-noise,
body.high-contrast .hub-hero::before,
body.high-contrast .hub-hero::after,
body.high-contrast .ent-features-section::before {
  display: none;
}

body.high-contrast a,
body.high-contrast .hub-card-link {
  color: #5eb3ff;
}

body.high-contrast .stat-number.gold,
body.high-contrast .stat-number.green {
  -webkit-text-fill-color: currentColor;
  background: none;
}

body.high-contrast .operating-layer-section,
body.high-contrast .operating-flow,
body.high-contrast .flow-step,
body.high-contrast .audit-pill {
  background: #111;
  border-color: #444;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hub-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hub-hero-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hub-hero-desc {
    max-width: 600px;
  }

  .hub-hero-actions {
    justify-content: center;
  }

  .hub-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 540px;
    margin: 0 auto;
  }

  /* Hide particle canvas on tablet */
  .hub-particle-canvas {
    display: none;
  }

  .hub-card-stat-num {
    font-size: 0.9rem;
  }

  .ent-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .operating-layer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .operating-copy {
    text-align: center;
  }

  .operating-copy .section-desc,
  .audit-pill-grid {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hub-hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hub-hero .hero-grid-bg {
    opacity: 0.3;
  }
}

@media (max-width: 768px) {
  body[data-page="home"] .hub-hero {
    padding-top: calc(30px + 64px + 40px);
  }

  .hub-hero {
    padding-bottom: 36px;
  }

  .hub-hero-title {
    font-size: 2rem;
  }

  .hub-cards-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .hub-hero-right {
    display: none;
  }

  /* Disable 3D tilt effects on mobile */
  .hub-card {
    transform-style: flat;
    perspective: none;
  }

  /* Show glow as static accent on mobile */
  .hub-card-glow,
  .hub-card-border,
  .hub-particle-canvas {
    display: none;
  }

  /* Simplify floating animation on mobile */
  .hub-card:nth-child(n) {
    animation: none;
  }

  .hub-card.visible {
    animation-name: hubCardEntrance;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
  }

  .hub-card-content {
    padding: 20px 18px;
  }

  .hub-card-stat {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 12px;
    flex-direction: row;
    align-items: center;
    gap: 6px;
  }

  .hub-card-stat-num {
    font-size: 0.85rem;
  }

  .hub-card-stat-label {
    font-size: 0.65rem;
  }

  .ent-features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .ent-features-section {
    padding: 80px 0;
  }

  .stats-bar {
    padding: 60px 0;
  }

  .operating-layer-section {
    padding: 72px 0;
  }

  .operating-flow {
    padding: 18px;
  }

  .flow-step {
    grid-template-columns: 40px 1fr;
    padding: 14px;
  }

  .flow-kicker {
    width: 36px;
    height: 36px;
  }

  .industry-logos {
    gap: 8px 12px;
  }
}

@media (max-width: 480px) {
  .hub-hero-title {
    font-size: 1.7rem;
  }

  .hub-hero-desc {
    font-size: 0.95rem;
  }

  .hub-hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hub-hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .audit-pill-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .flow-tag {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .trust-strip-v2 {
    padding: 28px 0;
  }

  .hub-hero {
    min-height: auto;
  }
}

/* ============================================================
   Homepage Enterprise Refresh
   Cleaner hero, outcome-led story, removed generic filler.
   ============================================================ */

body[data-page="home"] .hub-hero {
  padding-top: calc(34px + 70px + 48px);
}

.hub-hero {
  min-height: auto;
  padding-bottom: 88px;
}

.hub-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 72px;
  align-items: center;
}

.hub-hero-left {
  max-width: 790px;
}

.hero-status-badge {
  margin-bottom: 22px;
}

.hero-status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--emerald-400, #34d399);
  box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12);
}

.hub-hero-title {
  max-width: 760px;
  font-size: 3.7rem;
  line-height: 1.04;
  margin-bottom: 24px;
}

.hub-hero-desc {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.68;
  margin-bottom: 26px;
}

.hub-hero-actions .btn-primary,
.hub-hero-actions .btn-ghost {
  border-radius: 8px;
}

.hero-social-proof,
.hub-hero-right .hub-cards-grid,
.ent-features-section,
.steps-section {
  display: none !important;
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-proof-item {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hero-proof-item strong,
.hero-proof-item span {
  display: block;
}

.hero-proof-item strong {
  color: var(--white, #fff);
  font-size: 0.92rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hero-proof-item span {
  color: var(--navy-400, #94a3b8);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-flow-map {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 700px;
  margin-top: 16px;
}

.hero-flow-map span {
  color: var(--navy-300, #cbd5e1);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.hub-hero-right {
  justify-content: flex-end;
}

.hero-command-scene {
  width: min(100%, 480px);
  padding: 22px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.9)),
    radial-gradient(circle at top right, rgba(52, 211, 153, 0.16), transparent 34%);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
}

.command-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.command-topbar strong,
.command-score strong,
.command-alert strong,
.command-flow-list strong {
  color: var(--white, #fff);
}

.command-kicker {
  display: block;
  color: var(--emerald-300, #6ee7b7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.command-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--emerald-300, #6ee7b7);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.12);
}

.command-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--emerald-400, #34d399);
}

.command-score-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.command-score {
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  background: rgba(255, 255, 255, 0.045);
}

.command-score.is-strong {
  border-color: rgba(52, 211, 153, 0.32);
  background: rgba(16, 185, 129, 0.1);
}

.command-score span,
.command-score small,
.command-alert p,
.command-flow-list small {
  color: var(--navy-400, #94a3b8);
}

.command-score span,
.command-score small {
  display: block;
}

.command-score span {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.command-score strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
  margin: 10px 0 8px;
}

.command-score small {
  font-size: 0.78rem;
}

.command-alert {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 12px;
  margin-top: 14px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.22);
}

.command-alert-dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--gold-400, #fbbf24);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
}

.command-alert p {
  margin: 6px 0 0;
  font-size: 0.86rem;
  line-height: 1.45;
}

.command-flow-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.command-flow-list div {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.13);
}

.command-flow-list span {
  color: var(--blue-300, #93c5fd);
  font-weight: 900;
  font-size: 0.76rem;
}

.command-flow-list small {
  font-size: 0.75rem;
  text-align: right;
}

.outcomes-section {
  padding: 110px 0;
  background: #fff;
  scroll-margin-top: 126px;
}

.operating-layer-section {
  scroll-margin-top: 126px;
}

.outcome-rows {
  margin-top: 48px;
  border-top: 1px solid var(--navy-200, #e2e8f0);
}

.outcome-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) minmax(210px, 0.34fr);
  gap: 32px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--navy-100, #f1f5f9);
}

.outcome-index {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--blue-700, #1d4ed8);
  font-weight: 900;
  background: rgba(37, 99, 235, 0.08);
}

.outcome-copy h3 {
  color: var(--navy-900, #0f172a);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: 0;
}

.outcome-copy p {
  color: var(--navy-600, #475569);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 780px;
}

.outcome-signal {
  justify-self: end;
  color: var(--emerald-700, #047857);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: right;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.16);
}

@media (max-width: 1100px) {
  .hub-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
    text-align: left;
  }

  .hub-hero-left {
    align-items: flex-start;
  }

  .hub-hero-actions {
    justify-content: flex-start;
  }

  .hub-hero-right {
    justify-content: flex-start;
  }

  .hero-command-scene {
    width: min(100%, 560px);
  }
}

@media (max-width: 768px) {
  body[data-page="home"] .hub-hero {
    padding-top: calc(30px + 64px + 36px);
  }

  .hub-hero {
    padding-bottom: 58px;
  }

  .hub-hero-title {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .hub-hero-desc {
    font-size: 1rem;
    line-height: 1.62;
  }

  .hero-proof-row {
    display: none;
  }

  .hero-flow-map {
    display: none;
  }

  .hero-flow-map span {
    font-size: 0.7rem;
  }

  .hub-hero-right {
    display: none;
  }

  .pricing-section {
    padding: 78px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-promise {
    min-height: auto;
    margin: 18px 0 6px;
    font-size: 2rem;
  }

  .outcomes-section {
    padding: 76px 0;
  }

  .outcome-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .outcome-signal {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hub-hero-title {
    font-size: 2rem;
  }

  .hero-flow-map {
    display: none;
  }

  .hero-flow-map span {
    text-align: center;
  }
}

/* ============================================================
   Laptop Fit + Interactive Main Page Pass
   Keeps the story inside real laptop viewports instead of
   making every section behave like a poster.
   ============================================================ */

.trust-strip-v2 {
  padding: 28px 0 18px;
}

.trust-strip-label {
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.industry-logos {
  gap: 8px 12px;
}

.industry-logo {
  min-height: 38px;
  padding: 7px 12px;
  border-radius: 8px;
}

.stats-bar {
  padding: 30px 0 52px;
}

.stats-grid {
  max-width: 1120px;
  margin: 0 auto;
  gap: 16px;
}

.stat-item {
  padding: 18px 14px;
  border: 1px solid var(--navy-100, #e2e8f0);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.stat-number {
  font-size: 2.65rem;
}

.stat-label {
  font-size: 0.82rem;
}

.operating-layer-section {
  padding: 64px 0;
}

.operating-layer-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: 42px;
}

.operating-copy .section-title {
  max-width: 640px;
  font-size: 3rem;
  line-height: 1.1;
}

.operating-copy .section-desc {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.65;
}

.audit-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  max-width: 640px;
  margin-top: 22px;
}

.audit-pill {
  min-height: 34px;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.92);
}

.operating-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  align-items: stretch;
}

.operating-flow::before {
  content: "Interactive Operating Graph";
  grid-column: 1 / -1;
  color: var(--emerald-300, #6ee7b7);
  font-family: var(--font-primary, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 2px 2px 4px;
}

.flow-connector {
  display: none;
}

.flow-step {
  min-height: 116px;
  padding: 16px;
  align-content: start;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.flow-step:hover,
.flow-step:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.42);
  background: rgba(30, 41, 59, 0.9);
}

.flow-step:focus-visible {
  outline: 3px solid rgba(96, 165, 250, 0.34);
  outline-offset: 3px;
}

.flow-step.highlight:hover,
.flow-step.highlight:focus-visible {
  border-color: rgba(52, 211, 153, 0.58);
}

.flow-step strong {
  font-size: 0.96rem;
}

.flow-step small {
  font-size: 0.82rem;
  line-height: 1.45;
}

.flow-kicker {
  width: 40px;
  height: 40px;
}

.flow-tag {
  grid-column: 1 / -1;
  width: 100%;
  justify-content: center;
  margin-top: 0;
  min-height: 38px;
}

@media (max-width: 1180px) {
  .operating-layer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .operating-copy {
    text-align: left;
  }

  .operating-copy .section-title,
  .operating-copy .section-desc,
  .audit-pill-grid {
    max-width: 100%;
  }

  .audit-pill-grid {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .trust-strip-v2 {
    padding: 24px 0 16px;
  }

  .stats-bar {
    padding: 24px 0 42px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-number {
    font-size: 2.15rem;
  }

  .operating-layer-section {
    padding: 56px 0;
  }

  .operating-copy .section-title {
    font-size: 2.05rem;
  }

  .audit-pill-grid,
  .operating-flow {
    grid-template-columns: 1fr;
  }

  .flow-step {
    min-height: auto;
  }
}

/* ============================================================
   RESEARCH-LED HOME OVERRIDE
   Light, editorial hospitality surface inspired by current POS,
   restaurant AI, and guest operations leaders without copying them.
   ============================================================ */

body[data-page="home"] {
  background: #fbf8f2;
  color: #18202b;
}

body[data-page="home"] .navbar {
  background: rgba(251, 248, 242, 0.94) !important;
  border-bottom: 1px solid rgba(24, 32, 43, 0.08) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
}

body[data-page="home"] .navbar.scrolled {
  background: rgba(251, 248, 242, 0.98) !important;
  box-shadow: 0 16px 34px rgba(24, 32, 43, 0.08) !important;
}

body[data-page="home"] .nav-link,
body[data-page="home"] .nav-dropdown-trigger,
body[data-page="home"] .navbar a {
  color: #18202b !important;
}

body[data-page="home"] .navbar .btn-primary,
body[data-page="home"] .navbar .nav-cta {
  color: #ffffff !important;
}

body[data-page="home"] .navbar-logo-img {
  filter: brightness(0) saturate(100%) !important;
}

.ops-home-section {
  background: #fbf8f2;
  color: #18202b;
}

.ops-home-section .anim {
  opacity: 1 !important;
  transform: none !important;
}

.ops-hero {
  min-height: 82vh;
  padding: 128px 0 52px;
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 1) 0%, rgba(251, 248, 242, 0.98) 34%, rgba(251, 248, 242, 0.72) 58%, rgba(251, 248, 242, 0.08) 100%);
  isolation: isolate;
}

.ops-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ops-stage::after,
.ops-grid-plane,
.ops-service-map {
  display: none !important;
}

.ops-hero-photo {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(56vw, 980px);
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 0 8px;
  box-shadow: -28px 0 90px rgba(24, 32, 43, 0.11);
}

.ops-hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(251, 248, 242, 0.92) 0%, rgba(251, 248, 242, 0.32) 38%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(24, 32, 43, 0.2), transparent 42%);
}

.ops-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
}

.ops-photo-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: #18202b;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(24, 32, 43, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.chip-stock { right: min(39vw, 680px); top: 30%; }
.chip-bookings { right: 6vw; top: 25%; }
.chip-labour { right: min(30vw, 520px); bottom: 25%; }
.chip-margin { right: 8vw; bottom: 16%; background: rgba(20, 184, 166, 0.9); color: #042521; }

.ops-hero-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 48px;
}

.ops-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 11px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 8px;
  background: rgba(240, 253, 250, 0.92);
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-hero-copy h1 {
  max-width: 720px;
  margin: 22px 0 20px;
  color: #121820;
  font-family: var(--font-primary);
  font-size: 4.2rem;
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.ops-lead {
  max-width: 660px;
  margin: 0 0 28px;
  color: #394453;
  font-size: 1.12rem;
  line-height: 1.72;
}

.ops-actions,
.ops-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ops-btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ops-btn:hover {
  transform: translateY(-1px);
}

.ops-btn-primary {
  background: #e92d2d;
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(233, 45, 45, 0.18);
}

.ops-btn-primary:hover {
  background: #c91f1f;
}

.ops-btn-secondary {
  border-color: rgba(24, 32, 43, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: #18202b;
}

.ops-proof {
  margin-top: 22px;
}

.ops-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(24, 32, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #394453;
  font-size: 0.8rem;
  font-weight: 800;
}

.ops-live-wall {
  align-self: end;
  width: 100%;
  max-width: 470px;
  margin-left: auto;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 8px;
  background: rgba(18, 24, 32, 0.78);
  color: #ffffff;
  box-shadow: 0 28px 70px rgba(24, 32, 43, 0.28);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.ops-wall-top,
.ops-alert-row,
.ops-rush-lanes div {
  border-radius: 8px;
}

.ops-wall-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.ops-wall-top span,
.ops-wall-kpis span,
.ops-wall-kpis small,
.ops-rush-lanes span,
.ops-rush-lanes em {
  color: #aab7c8;
}

.ops-wall-top strong {
  display: block;
  margin-top: 3px;
  color: #ffffff;
  font-size: 1.05rem;
}

.ops-wall-top em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(20, 184, 166, 0.18);
  color: #99f6e4;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.ops-wall-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ops-wall-kpis div {
  min-height: 92px;
  padding: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.ops-wall-kpis strong {
  display: block;
  margin: 7px 0 4px;
  color: #ffffff;
  font-size: 1.7rem;
  line-height: 1;
}

.ops-alert-row {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  padding: 13px;
  background: #fff7ed;
  color: #5f3511;
}

.ops-alert-row b {
  color: #111827;
}

.ops-alert-row span {
  color: #6f4216;
}

.ops-rush-lanes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ops-rush-lanes div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  min-height: 82px;
  padding: 10px 11px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.ops-rush-lanes strong {
  color: #ffffff;
}

.ops-rush-lanes em {
  grid-column: 1;
  font-size: 0.78rem;
  font-style: normal;
}

.ops-signal,
.ops-products,
.ops-human-grid {
  padding: 86px 0;
  background: #fffdf8;
}

.ops-signal {
  padding-top: 44px;
}

.ops-flow,
.ops-proof-section,
.ops-enterprise-showcase,
.ops-scale-proof {
  padding: 90px 0;
  background: #f3efe7;
}

.ops-section-head {
  max-width: 890px;
  margin: 0 auto 36px;
  text-align: center;
}

.ops-section-head h2,
.ops-flow-copy h2,
.ops-proof-copy h2,
.ops-enterprise-copy h2,
.ops-scale-copy h2,
.ops-final-cta h2 {
  margin: 16px 0 14px;
  color: #121820;
  font-size: 2.6rem;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0;
}

.ops-section-head p,
.ops-flow-copy p,
.ops-proof-copy p,
.ops-enterprise-copy p,
.ops-scale-copy p,
.ops-final-cta p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.72;
}

.ops-signal-grid,
.ops-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.ops-signal-card,
.ops-product-card {
  display: block;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(24, 32, 43, 0.1);
  border-radius: 8px;
  background: #ffffff;
  color: #18202b;
  text-decoration: none;
  box-shadow: 0 18px 48px rgba(24, 32, 43, 0.06);
}

.ops-signal-card b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border-radius: 8px;
  background: #e0f2fe;
  color: #075985;
  font-size: 0.78rem;
}

.ops-signal-card h3,
.ops-product-card span {
  display: block;
  margin: 0 0 10px;
  color: #121820;
  font-size: 1.05rem;
  font-weight: 900;
}

.ops-signal-card p,
.ops-product-card strong {
  color: #566171;
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.62;
}

.ops-product-card {
  min-height: 184px;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.ops-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.44);
  box-shadow: 0 22px 52px rgba(20, 184, 166, 0.12);
}

.ops-image-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ops-image-story {
  min-height: 100%;
  border: 1px solid rgba(24, 32, 43, 0.1);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(24, 32, 43, 0.07);
}

.ops-image-story img {
  display: block;
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
}

.ops-image-story div {
  padding: 19px;
}

.ops-image-story span,
.ops-green-tile span,
.ops-enterprise-tiles span,
.ops-scale-card span {
  display: block;
  margin-bottom: 8px;
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-image-story h3 {
  margin: 0 0 10px;
  color: #0b0f18;
  font-size: 1.14rem;
  line-height: 1.26;
  font-weight: 900;
}

.ops-image-story p {
  margin: 0;
  color: #566171;
  font-size: 0.92rem;
  line-height: 1.58;
}

.ops-enterprise-showcase {
  background: #f5f1e9;
}

.ops-enterprise-grid,
.ops-scale-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.88fr);
  gap: 46px;
  align-items: center;
}

.ops-enterprise-media,
.ops-scale-photo {
  position: relative;
  min-height: 560px;
}

.ops-enterprise-main,
.ops-scale-photo img {
  width: 100%;
  height: 560px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(24, 32, 43, 0.15);
}

.ops-enterprise-float {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 38%;
  min-width: 220px;
  height: 280px;
  border: 8px solid #f5f1e9;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(24, 32, 43, 0.18);
}

.ops-green-tile {
  position: absolute;
  left: 22px;
  bottom: 28px;
  max-width: 320px;
  padding: 20px;
  border: 1px solid rgba(153, 246, 228, 0.22);
  border-radius: 8px;
  background: #06120f;
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.24);
}

.ops-green-tile span,
.ops-enterprise-tiles div:nth-child(odd) span,
.ops-scale-card span {
  color: #99f6e4;
}

.ops-green-tile strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.22;
}

.ops-green-tile small {
  display: block;
  margin-top: 9px;
  color: #cbd5e1;
  line-height: 1.5;
}

.ops-enterprise-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.ops-enterprise-tiles div {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(24, 32, 43, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(24, 32, 43, 0.06);
}

.ops-enterprise-tiles div:nth-child(odd) {
  background: #071612;
  border-color: rgba(153, 246, 228, 0.16);
}

.ops-enterprise-tiles div:nth-child(odd) strong {
  color: #ffffff;
}

.ops-enterprise-tiles div:nth-child(odd) small {
  color: #cbd5e1;
}

.ops-enterprise-tiles strong {
  display: block;
  color: #121820;
  line-height: 1.28;
}

.ops-enterprise-tiles small {
  display: block;
  margin-top: 10px;
  color: #566171;
  line-height: 1.55;
}

.ops-scale-proof {
  background: #fffdf8;
}

.ops-scale-grid {
  grid-template-columns: minmax(380px, 0.8fr) minmax(0, 1fr);
}

.ops-scale-photo img {
  height: 500px;
}

.ops-scale-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(360px, calc(100% - 44px));
  padding: 20px;
  border: 1px solid rgba(153, 246, 228, 0.2);
  border-radius: 8px;
  background: rgba(6, 18, 15, 0.92);
  color: #ffffff;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.ops-scale-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.25;
}

.ops-scale-card small {
  display: block;
  margin-top: 10px;
  color: #cbd5e1;
  line-height: 1.5;
}

.ops-flow-shell,
.ops-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.ops-flow-board,
.ops-compare {
  display: grid;
  gap: 12px;
}

.ops-flow-step,
.ops-compare div {
  padding: 18px 20px;
  border: 1px solid rgba(24, 32, 43, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(24, 32, 43, 0.06);
}

.ops-flow-step span,
.ops-compare span {
  display: block;
  margin-bottom: 7px;
  color: #0f766e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-flow-step strong,
.ops-compare strong {
  color: #18202b;
  font-size: 1rem;
  line-height: 1.52;
}

.ops-compare .is-inntally {
  background: #10251f;
  border-color: rgba(20, 184, 166, 0.28);
}

.ops-compare .is-inntally span {
  color: #99f6e4;
}

.ops-compare .is-inntally strong {
  color: #ffffff;
}

.ops-final-cta {
  padding: 82px 0 92px;
  background:
    linear-gradient(rgba(7, 12, 20, 0.9), rgba(7, 12, 20, 0.92)),
    url("/marketing/images/inntally-codex-reservations.png?v=codex-20260525") center / cover;
  color: #ffffff;
  text-align: center;
}

.ops-final-cta h2 {
  color: #ffffff;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.ops-final-cta p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: #cbd5e1;
}

.ops-final-cta .ops-eyebrow {
  background: rgba(20, 184, 166, 0.14);
  border-color: rgba(153, 246, 228, 0.22);
  color: #99f6e4;
}

@media (max-width: 1180px) {
  .ops-hero {
    min-height: auto;
  }

  .ops-hero-layout,
  .ops-flow-shell,
  .ops-proof-grid {
    grid-template-columns: 1fr;
  }

  .ops-live-wall {
    max-width: 620px;
    margin: 20px 0 0;
  }

  .ops-signal-grid,
  .ops-product-grid,
  .ops-image-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  body[data-page="home"] .navbar {
    background: rgba(251, 248, 242, 0.98) !important;
  }

  .ops-hero {
    padding: 124px 0 36px;
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.98) 0%, rgba(251, 248, 242, 0.92) 58%, #fbf8f2 100%);
  }

  .ops-stage {
    height: 420px;
    opacity: 0.74;
  }

  .ops-hero-photo {
    width: 100%;
    height: 420px;
    border-radius: 0;
  }

  .ops-hero-photo::before {
    background: linear-gradient(180deg, rgba(251, 248, 242, 0.92), rgba(251, 248, 242, 0.58), rgba(251, 248, 242, 0.98));
  }

  .ops-photo-chip {
    display: none;
  }

  .ops-hero-copy h1 {
    font-size: 2.45rem;
    line-height: 1.07;
  }

  .ops-lead {
    font-size: 1rem;
  }

  .ops-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ops-btn {
    width: 100%;
  }

  .ops-wall-kpis,
  .ops-rush-lanes div,
  .ops-signal-grid,
  .ops-product-grid,
  .ops-image-story-grid,
  .ops-enterprise-tiles {
    grid-template-columns: 1fr;
  }

  .ops-rush-lanes em {
    grid-column: 1;
  }

  .ops-rush-lanes {
    grid-template-columns: 1fr;
  }

  .ops-section-head h2,
  .ops-flow-copy h2,
  .ops-proof-copy h2,
  .ops-final-cta h2 {
    font-size: 2.05rem;
  }

  .ops-signal,
  .ops-products,
  .ops-human-grid,
  .ops-flow,
  .ops-enterprise-showcase,
  .ops-proof-section,
  .ops-scale-proof,
  .ops-final-cta {
    padding: 58px 0;
  }

  .ops-signal {
    padding-top: 12px;
  }

  .ops-enterprise-media,
  .ops-scale-photo {
    min-height: 430px;
  }

  .ops-enterprise-main,
  .ops-scale-photo img {
    height: 430px;
  }

  .ops-enterprise-float {
    display: none;
  }

  .ops-green-tile,
  .ops-scale-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    max-width: none;
  }
}

/* ============================================================
   LIGHTSPEED-STYLE HOME HERO PASS
   Clean split hero, relevant POS/service image, animated product chips.
   ============================================================ */

@keyframes heroChipDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes heroPayPulse {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -8px, 0) scale(1.015); }
}

body[data-page="home"] {
  background: #fffdf8;
}

body[data-page="home"] .navbar {
  background: rgba(255, 253, 248, 0.98) !important;
}

.ops-hero {
  min-height: calc(100vh - 86px);
  padding: 128px 0 64px;
  background: #fffdf8;
}

.ops-stage,
.ops-hero-photo,
.ops-photo-chip {
  display: none !important;
}

.ops-hero-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 0.85fr);
  gap: clamp(42px, 5vw, 78px);
}

.ops-hero-copy h1 {
  max-width: 780px;
  font-size: clamp(3.7rem, 5.3vw, 5.75rem);
  line-height: 1.03;
}

.ops-lead {
  max-width: 690px;
  font-size: 1.18rem;
}

.ops-hero-media {
  position: relative;
  width: 100%;
  min-height: 590px;
}

.ops-hero-image-card {
  position: relative;
  width: 100%;
  margin-top: 18px;
  isolation: isolate;
}

.ops-hero-image-card > img {
  width: 100%;
  aspect-ratio: 1.13;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(24, 32, 43, 0.16);
}

.ops-hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 8px;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04), transparent 38%),
    linear-gradient(0deg, rgba(5, 13, 19, 0.1), transparent 48%);
}

.ops-float-chip,
.ops-mini-pay,
.ops-suggestion-card {
  position: absolute;
  z-index: 3;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ops-float-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.88);
  color: #121820;
  font-size: 0.86rem;
  font-weight: 900;
  animation: heroChipDrift 5.6s ease-in-out infinite;
}

.ops-float-chip span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #2dd4bf;
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.16);
}

.ops-float-chip.chip-bookings {
  left: -28px;
  top: 16%;
}

.ops-float-chip.chip-stock {
  right: 22px;
  top: 8%;
  animation-delay: -1.4s;
}

.ops-float-chip.chip-labour {
  right: -22px;
  bottom: 28%;
  background: rgba(7, 22, 18, 0.9);
  border-color: rgba(153, 246, 228, 0.22);
  color: #ffffff;
  animation-delay: -2.3s;
}

.ops-mini-pay {
  left: -48px;
  bottom: 10%;
  width: min(330px, 54%);
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(226, 232, 240, 0.82);
  animation: heroPayPulse 6.2s ease-in-out infinite;
}

.ops-mini-pay span,
.ops-suggestion-card b {
  display: block;
  color: #0f766e;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ops-mini-pay strong {
  display: block;
  margin: 7px 0 4px;
  color: #111827;
  font-size: 2.1rem;
  line-height: 1;
}

.ops-mini-pay small,
.ops-suggestion-card span {
  display: block;
  color: #4b5563;
  font-weight: 750;
  line-height: 1.45;
}

.ops-suggestion-card {
  right: 22px;
  bottom: -22px;
  max-width: 310px;
  padding: 16px 18px;
  background: #071612;
  border: 1px solid rgba(153, 246, 228, 0.18);
}

.ops-suggestion-card b {
  color: #99f6e4;
}

.ops-suggestion-card span {
  margin-top: 7px;
  color: #ffffff;
}

.ops-hero-image-card:hover .ops-float-chip,
.ops-hero-image-card:hover .ops-mini-pay {
  animation-play-state: paused;
  transform: translateY(-4px);
}

@media (max-width: 1180px) {
  .ops-hero-layout {
    grid-template-columns: 1fr;
  }

  .ops-hero-media {
    min-height: auto;
  }

  .ops-hero-image-card {
    max-width: 760px;
    margin: 18px auto 0;
  }
}

@media (max-width: 768px) {
  .ops-hero {
    padding: 92px 0 18px;
  }

  .ops-hero-copy h1 {
    font-size: 2.35rem;
  }

  .ops-lead {
    font-size: 1rem;
  }

  .ops-proof {
    display: none;
  }

  .ops-hero-image-card > img {
    aspect-ratio: 2;
  }

  .ops-float-chip {
    min-height: 40px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .ops-float-chip.chip-bookings {
    left: 10px;
    top: 10px;
  }

  .ops-float-chip.chip-stock {
    right: 10px;
    top: 64px;
  }

  .ops-float-chip.chip-labour {
    right: 10px;
    bottom: 118px;
  }

  .ops-mini-pay {
    left: 10px;
    bottom: 14px;
    width: 62%;
    padding: 13px;
  }

  .ops-mini-pay strong {
    font-size: 1.45rem;
  }

  .ops-suggestion-card {
    display: none;
  }
}

/* ================================================================
   HOMEPAGE V3 — Inntally redesign (2026-05-26)
   Appended block. All classes prefixed `.h3-*` so they never collide
   with the existing `.ops-*` ruleset above. Uses tokens from
   styles.css (--coral-*, --navy-*, --cream-*, --shadow-*, --ease-*).
   ================================================================ */

/* ── Shared section primitives ───────────────────────────────── */
.h3-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.h3-section-head h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: #121820;
  font-weight: 800;
  margin: 12px 0 16px;
}
.h3-section-lead {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #455365;
}
.h3-eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(232, 112, 79, 0.10);
  color: var(--coral-700, #C95636);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(232, 112, 79, 0.16);
}
.h3-eyebrow-light {
  background: rgba(255, 253, 248, 0.10);
  color: var(--coral-300, #FFC7B5);
  border-color: rgba(255, 253, 248, 0.16);
}

/* Button block modifier reused across sections */
.h3-btn-block { width: 100%; }
.h3-btn-lg { padding: 18px 28px; font-size: 1.05rem; }
.h3-cta-row-center { justify-content: center; }

/* ── Section 2 — Pain ────────────────────────────────────────── */
.h3-pain {
  padding: 96px 0;
  background: #fffdf8;
}
.h3-pain-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.h3-pain-card {
  position: relative;
  padding: 28px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 32, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.h3-pain-card::before {
  content: "";
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 4px;
  background: var(--coral-600, #E8704F);
  border-radius: 0 4px 4px 0;
}
.h3-pain-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}
.h3-pain-card-feature {
  background: #fffaf3;
  border-color: rgba(232, 112, 79, 0.18);
}
.h3-pain-num {
  font-family: var(--font-primary);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--coral-600, #E8704F);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.h3-pain-card h3 {
  font-family: var(--font-primary);
  font-size: 1.18rem;
  font-weight: 700;
  color: #121820;
  line-height: 1.3;
  margin-bottom: 10px;
}
.h3-pain-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #455365;
}

/* ── Section 3 — Pivot (dark navy panel) ─────────────────────── */
.h3-pivot {
  padding: 88px 0;
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
}
.h3-pivot-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.h3-pivot-inner h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: #fffdf8;
  font-weight: 800;
  margin: 16px 0 18px;
}
.h3-pivot-inner p {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 253, 248, 0.78);
}
.h3-pivot-tagline {
  margin-top: 24px !important;
  font-size: 1.2rem !important;
  color: var(--coral-300, #FFC7B5) !important;
}
.h3-pivot-tagline strong { color: #fffdf8; font-weight: 800; }

/* ── Section 4 — Pillars ─────────────────────────────────────── */
.h3-pillars {
  padding: 104px 0;
  background: #fffdf8;
}
.h3-pillar-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.h3-pillar-card {
  position: relative;
  padding: 32px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 32, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: all 0.25s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.h3-pillar-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}
.h3-pillar-feature {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
  border: none;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.18);
}
.h3-pillar-feature h3,
.h3-pillar-feature .h3-pillar-link { color: #fffdf8; }
.h3-pillar-feature p { color: rgba(255, 253, 248, 0.75); }
.h3-pillar-feature::before {
  content: ""; position: absolute; left: 0; top: 32px; bottom: 32px;
  width: 4px; background: var(--coral-600, #E8704F); border-radius: 0 4px 4px 0;
}
.h3-pillar-tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(232, 112, 79, 0.12);
  color: var(--coral-700, #C95636);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h3-pillar-feature .h3-pillar-tag {
  background: rgba(255, 253, 248, 0.12);
  color: var(--coral-300, #FFC7B5);
}
.h3-pillar-card h3 {
  font-family: var(--font-primary);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #121820;
}
.h3-pillar-card p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: #455365;
  margin-bottom: 18px;
}
.h3-pillar-screen {
  margin: 16px 0 16px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.04);
}
.h3-pillar-screen img {
  width: 100%; height: auto; display: block;
}
.h3-pillar-link {
  font-family: var(--font-primary);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--coral-700, #C95636);
  text-decoration: none;
  transition: color 0.15s ease;
}
.h3-pillar-link:hover { color: var(--coral-600, #E8704F); }

/* ── Section 5 — Proof ───────────────────────────────────────── */
.h3-proof {
  padding: 96px 0;
  background: #fbf5e8;
}
.h3-pilot-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 0 auto 56px;
  max-width: 800px;
}
.h3-pilot-logos img {
  height: 48px;
  width: auto;
  opacity: 0.78;
  filter: grayscale(0.4);
  transition: all 0.2s ease;
}
.h3-pilot-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}
.h3-pilot-and-others {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748B;
}
.h3-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.h3-stat-card {
  padding: 32px 24px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 32, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-align: center;
}
.h3-stat-num {
  font-family: var(--font-primary);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--coral-700, #C95636);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.h3-stat-label {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #121820;
  margin-bottom: 8px;
}
.h3-stat-note {
  font-size: 0.82rem;
  line-height: 1.5;
  color: #64748B;
}
.h3-case-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(18, 24, 32, 0.06);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.h3-case-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.h3-case-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h3-case-content h3 {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 1.3;
  color: #121820;
  font-weight: 700;
  margin: 14px 0 14px;
}
.h3-case-attribution {
  font-size: 0.92rem;
  color: #64748B;
  margin-bottom: 20px;
}
.h3-case-results {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.h3-result-chip {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(232, 112, 79, 0.08);
  color: var(--coral-700, #C95636);
  font-size: 0.86rem;
  font-weight: 600;
}
.h3-result-chip strong { font-weight: 800; }
.h3-disclosure {
  margin: 28px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.84rem;
  color: #64748B;
  line-height: 1.5;
  font-style: italic;
}

/* ── Section 6 — Security ────────────────────────────────────── */
.h3-security {
  padding: 96px 0;
  background: #fffdf8;
}
.h3-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.h3-trust-card {
  padding: 32px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 32, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.h3-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy-900, #0F172A);
  color: var(--coral-300, #FFC7B5);
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.h3-trust-card h3 {
  font-family: var(--font-primary);
  font-size: 1.18rem;
  line-height: 1.3;
  color: #121820;
  font-weight: 700;
  margin-bottom: 12px;
}
.h3-trust-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: #455365;
  margin-bottom: 14px;
}
.h3-inherited {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px;
  background: #fbf5e8;
  border-radius: 12px;
}
.h3-inherited-label {
  font-size: 0.86rem;
  font-weight: 700;
  color: #121820;
}
.h3-inherited-item {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  color: #455365;
  border: 1px solid rgba(18, 24, 32, 0.08);
}

/* ── Section 7 — Pricing teaser ──────────────────────────────── */
.h3-pricing {
  padding: 104px 0;
  background: #fbf5e8;
}
.h3-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.h3-pricing-card {
  position: relative;
  padding: 36px 28px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(18, 24, 32, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.25s var(--ease-out, cubic-bezier(0.16, 1, 0.3, 1));
}
.h3-pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}
.h3-pricing-featured {
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
  border: none;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  transform: translateY(-8px);
}
.h3-pricing-featured:hover { transform: translateY(-10px); box-shadow: 0 24px 50px rgba(15, 23, 42, 0.24); }
.h3-pricing-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--coral-600, #E8704F);
  color: #fffdf8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.h3-pricing-name {
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-700, #C95636);
}
.h3-pricing-featured .h3-pricing-name { color: var(--coral-300, #FFC7B5); }
.h3-pricing-price {
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 12px 0 8px;
  color: #121820;
}
.h3-pricing-featured .h3-pricing-price { color: #fffdf8; }
.h3-pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748B;
}
.h3-pricing-featured .h3-pricing-price span { color: rgba(255, 253, 248, 0.6); }
.h3-pricing-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: #455365;
  margin-bottom: 22px;
}
.h3-pricing-featured .h3-pricing-desc { color: rgba(255, 253, 248, 0.75); }
.h3-pricing-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.h3-pricing-features li {
  padding: 9px 0;
  font-size: 0.94rem;
  color: #455365;
  border-bottom: 1px solid rgba(18, 24, 32, 0.06);
  position: relative;
  padding-left: 24px;
}
.h3-pricing-features li:last-child { border-bottom: none; }
.h3-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--coral-600, #E8704F);
  font-weight: 800;
}
.h3-pricing-featured .h3-pricing-features li { color: rgba(255, 253, 248, 0.85); border-color: rgba(255, 253, 248, 0.10); }
.h3-pricing-featured .h3-pricing-features li::before { color: var(--coral-400, #FFA68A); }
.h3-pricing-footer {
  margin-top: 36px;
  text-align: center;
}

/* ── Section 8 — Integrations ────────────────────────────────── */
.h3-integrations {
  padding: 96px 0;
  background: #fffdf8;
}
.h3-integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 880px;
  margin: 0 auto;
}
.h3-integration-tile {
  position: relative;
  padding: 24px 18px;
  text-align: center;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(18, 24, 32, 0.08);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  color: #121820;
  transition: all 0.2s ease;
  cursor: default;
}
.h3-integration-tile:hover {
  border-color: var(--coral-400, #FFA68A);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}
.h3-roadmap-flag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(232, 112, 79, 0.10);
  color: var(--coral-700, #C95636);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.h3-integrations-api {
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: #455365;
}
.h3-integrations-api code {
  padding: 3px 8px;
  border-radius: 6px;
  background: #fbf5e8;
  color: #121820;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.86rem;
}

/* ── Section 9 — AI ──────────────────────────────────────────── */
.h3-ai {
  padding: 104px 0;
  background: #fbf5e8;
}
.h3-ai-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.h3-ai-row:last-child { margin-bottom: 0; }
.h3-ai-row-reverse {
  direction: rtl;
}
.h3-ai-row-reverse > * { direction: ltr; }
.h3-ai-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(232, 112, 79, 0.12);
  color: var(--coral-700, #C95636);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.h3-ai-copy h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 3vw, 1.95rem);
  line-height: 1.2;
  color: #121820;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.h3-ai-copy p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: #455365;
}
.h3-ai-screen {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
  background: #ffffff;
}
.h3-ai-screen img {
  width: 100%; height: auto; display: block;
}

/* ── Section 10 — Verticals ──────────────────────────────────── */
.h3-verticals {
  padding: 96px 0;
  background: #fffdf8;
}
.h3-vertical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.h3-vertical-card {
  display: block;
  padding: 28px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(18, 24, 32, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}
.h3-vertical-card:hover {
  transform: translateY(-3px);
  border-color: var(--coral-400, #FFA68A);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}
.h3-vertical-emoji {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 14px;
}
.h3-vertical-card h3 {
  font-family: var(--font-primary);
  font-size: 1.18rem;
  color: #121820;
  font-weight: 700;
  margin-bottom: 8px;
}
.h3-vertical-card p {
  font-size: 0.94rem;
  line-height: 1.55;
  color: #455365;
  margin-bottom: 14px;
}
.h3-vertical-link {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--coral-700, #C95636);
}

/* ── Section 11 — Final CTA ──────────────────────────────────── */
.h3-final-cta {
  padding: 96px 0;
  background: var(--navy-900, #0F172A);
}
.h3-final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  color: #fffdf8;
}
.h3-final-cta-inner h2 {
  font-family: var(--font-primary);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: #fffdf8;
  margin-bottom: 16px;
}
.h3-final-cta-inner > p {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 253, 248, 0.78);
  margin-bottom: 32px;
}
.h3-final-fine {
  margin-top: 24px;
  font-size: 0.82rem;
  color: rgba(255, 253, 248, 0.55);
}

/* ── Responsive breakpoints (mobile-first stack) ─────────────── */
@media (max-width: 1024px) {
  .h3-pillar-grid { grid-template-columns: 1fr 1fr; }
  .h3-pillar-feature { grid-row: span 1; grid-column: span 2; }
  .h3-integration-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .h3-pain-grid,
  .h3-pillar-grid,
  .h3-stats-grid,
  .h3-trust-grid,
  .h3-pricing-grid,
  .h3-vertical-grid {
    grid-template-columns: 1fr;
  }
  .h3-pillar-feature { grid-column: span 1; }
  .h3-integration-grid { grid-template-columns: repeat(2, 1fr); }
  .h3-case-card { grid-template-columns: 1fr; }
  .h3-case-photo { aspect-ratio: 1.6; }
  .h3-ai-row { grid-template-columns: 1fr; gap: 28px; margin-bottom: 48px; }
  .h3-ai-row-reverse { direction: ltr; }
  .h3-pain, .h3-pivot, .h3-pillars, .h3-proof, .h3-security,
  .h3-pricing, .h3-integrations, .h3-ai, .h3-verticals, .h3-final-cta {
    padding: 72px 0;
  }
  .h3-pricing-featured { transform: none; }
  .h3-section-head { margin-bottom: 36px; }
  .h3-case-content { padding: 28px; }
}

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .h3-pain-card,
  .h3-pillar-card,
  .h3-pricing-card,
  .h3-integration-tile,
  .h3-vertical-card {
    transition: none;
  }
  .h3-pain-card:hover,
  .h3-pillar-card:hover,
  .h3-pricing-card:hover,
  .h3-integration-tile:hover,
  .h3-vertical-card:hover {
    transform: none;
  }
}
/* === END HOMEPAGE V3 ============================================ */


/* ================================================================
   H3 SECTION PRIMITIVES — PHASE 2 (2026-05-26)
   Reusable building blocks for solution / product / vs / pricing /
   security / about / contact pages. All `.h3-*` prefixed. Reuses
   the same tokens (`--coral-*`, `--cream-*`, `--ink-*`).
   ================================================================ */

/* ── Page header (sub-page hero, smaller than homepage hero) ──── */
.h3-pageheader {
  position: relative;
  padding: 112px 0 64px;
  background: #fffdf8;
  overflow: hidden;
}
.h3-pageheader-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}
.h3-pageheader h1 {
  margin: 18px 0 16px;
  color: #121820;
  font-family: var(--font-primary);
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.018em;
  font-weight: 800;
  max-width: 640px;
}
.h3-pageheader-lead {
  max-width: 560px;
  color: #455365;
  font-size: 1.08rem;
  line-height: 1.6;
  margin-bottom: 24px;
}
.h3-pageheader-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid rgba(18,24,32,0.08);
}
.h3-pageheader-proof-stat {
  display: flex;
  flex-direction: column;
}
.h3-pageheader-proof-num {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--coral-700, #C95636);
  line-height: 1;
}
.h3-pageheader-proof-label {
  margin-top: 4px;
  font-size: 0.78rem;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.h3-pageheader-media {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15,23,42,0.14);
}
.h3-pageheader-media img { width: 100%; height: auto; display: block; }

/* ── Use-case rows (solution pages, "before / after" narrative) ─ */
.h3-usecase-section {
  padding: 96px 0;
  background: #fbf5e8;
}
.h3-usecase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(18,24,32,0.08);
}
.h3-usecase:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.h3-usecase-reverse { direction: rtl; }
.h3-usecase-reverse > * { direction: ltr; }
.h3-usecase-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--coral-600, #E8704F);
  color: #fffdf8;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.h3-usecase h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.18;
  color: #121820;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.h3-usecase p {
  font-size: 1.02rem;
  line-height: 1.6;
  color: #455365;
  margin-bottom: 16px;
}
.h3-usecase-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0 20px;
}
.h3-usecase-ba-card {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
}
.h3-usecase-ba-card-before {
  background: #fff;
  border: 1px solid rgba(195,59,31,0.18);
  color: #455365;
}
.h3-usecase-ba-card-after {
  background: rgba(232,112,79,0.06);
  border: 1px solid rgba(232,112,79,0.30);
  color: #121820;
}
.h3-usecase-ba-card strong {
  display: block;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.h3-usecase-ba-card-before strong { color: var(--coral-700, #C95636); }
.h3-usecase-ba-card-after strong { color: var(--coral-700, #C95636); }
.h3-usecase-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.h3-usecase-chip {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
  font-size: 0.82rem;
  font-weight: 600;
}
.h3-usecase-chip strong { color: var(--coral-300, #FFC7B5); font-weight: 800; }
.h3-usecase-visual {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(15,23,42,0.10);
  background: #fff;
}
.h3-usecase-visual img { width: 100%; height: auto; display: block; }

/* ── Savings grid (4 stat cards with caveat) ─────────────────── */
.h3-savings {
  padding: 88px 0;
  background: #fffdf8;
}
.h3-savings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.h3-savings-card {
  padding: 28px 22px;
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(15,23,42,0.14);
}
.h3-savings-num {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--coral-400, #FFA68A);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.h3-savings-label {
  font-family: var(--font-primary);
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.h3-savings-note {
  font-size: 0.78rem;
  color: rgba(255,253,248,0.65);
  line-height: 1.5;
}
.h3-caveat {
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(232,112,79,0.06);
  border-left: 3px solid var(--coral-600, #E8704F);
  border-radius: 4px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: #455365;
  font-style: italic;
}

/* ── Feature row (compact alternating rows for product pages) ── */
.h3-features-section { padding: 96px 0; background: #fffdf8; }
.h3-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(18,24,32,0.06);
}
.h3-feature-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.h3-feature-row-reverse { direction: rtl; }
.h3-feature-row-reverse > * { direction: ltr; }
.h3-feature-row h3 {
  font-family: var(--font-primary);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.22;
  color: #121820;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.012em;
}
.h3-feature-row p {
  font-size: 1rem;
  line-height: 1.6;
  color: #455365;
  margin-bottom: 14px;
}
.h3-feature-row ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.h3-feature-row li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 0.95rem;
  color: #455365;
  line-height: 1.5;
}
.h3-feature-row li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--coral-600, #E8704F);
  font-weight: 800;
}
.h3-feature-row-visual {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px rgba(15,23,42,0.10);
}
.h3-feature-row-visual img { width: 100%; height: auto; display: block; }

/* ── Capability grid (bento of small feature cards) ──────────── */
.h3-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.h3-capability-card {
  padding: 22px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.06);
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
  transition: all 0.2s ease;
}
.h3-capability-card:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(15,23,42,0.08); }
.h3-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--coral-50, #FFF6F0);
  color: var(--coral-700, #C95636);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.h3-capability-card h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #121820;
  margin-bottom: 8px;
  line-height: 1.3;
}
.h3-capability-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #455365;
}

/* ── Step grid (numbered "how it works") ─────────────────────── */
.h3-steps {
  padding: 88px 0;
  background: #fbf5e8;
}
.h3-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.h3-step-card {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.06);
}
.h3-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--navy-900, #0F172A);
  color: var(--coral-300, #FFC7B5);
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 14px;
}
.h3-step-card h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: #121820;
  font-weight: 700;
  margin-bottom: 8px;
}
.h3-step-card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #455365;
}

/* ── VS table (competitor comparison) ────────────────────────── */
.h3-vs-section {
  padding: 88px 0;
  background: #fffdf8;
}
.h3-vs-quickverdict {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 0 0 48px;
}
.h3-vs-quickverdict-card {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.08);
  background: #fff;
}
.h3-vs-quickverdict-card.is-inntally {
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
  border-color: var(--navy-900, #0F172A);
}
.h3-vs-quickverdict-card h4 {
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.h3-vs-quickverdict-card.is-inntally h4 { color: var(--coral-300, #FFC7B5); }
.h3-vs-quickverdict-card ul { list-style: none; padding: 0; }
.h3-vs-quickverdict-card li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 0.94rem;
  line-height: 1.5;
}
.h3-vs-quickverdict-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 800;
  color: var(--coral-600, #E8704F);
}
.h3-vs-quickverdict-card.is-inntally li { color: rgba(255,253,248,0.88); }
.h3-vs-quickverdict-card.is-inntally li::before { color: var(--coral-400, #FFA68A); }

.h3-vs-table-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(18,24,32,0.08);
  background: #fff;
}
.h3-vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}
.h3-vs-table thead th {
  position: sticky; top: 0;
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
  padding: 16px 18px;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.h3-vs-table thead th.h3-vs-inntally { color: var(--coral-300, #FFC7B5); }
.h3-vs-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid rgba(18,24,32,0.06);
  color: #455365;
}
.h3-vs-table tbody tr:nth-child(odd) { background: #fbf5e8; }
.h3-vs-table tbody td.h3-vs-feature { font-weight: 600; color: #121820; }
.h3-vs-table .h3-vs-check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(81,167,104,0.16); color: #2E7D32; font-weight: 800;
}
.h3-vs-table .h3-vs-cross {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(195,59,31,0.12); color: #C33B1F; font-weight: 800;
}
.h3-vs-table .h3-vs-partial {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 999px;
  background: rgba(217,119,6,0.14); color: #B45309; font-weight: 800;
}
.h3-vs-truth {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-top: 48px;
}
.h3-vs-truth-card {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.08);
  background: #fff;
}
.h3-vs-truth-card h4 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  color: #121820;
  font-weight: 800;
  margin-bottom: 10px;
}
.h3-vs-truth-card.is-honest {
  background: rgba(232,112,79,0.06);
  border-color: rgba(232,112,79,0.30);
}
.h3-vs-truth-card.is-honest h4 { color: var(--coral-700, #C95636); }

/* ── FAQ (accordion) ─────────────────────────────────────────── */
.h3-faq-section {
  padding: 88px 0;
  background: #fffdf8;
}
.h3-faq {
  max-width: 760px;
  margin: 0 auto;
}
.h3-faq-item {
  border-bottom: 1px solid rgba(18,24,32,0.10);
}
.h3-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 36px 22px 0;
  position: relative;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1.05rem;
  color: #121820;
  line-height: 1.4;
}
.h3-faq-item summary::-webkit-details-marker { display: none; }
.h3-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--coral-600, #E8704F);
  font-weight: 700;
  transition: transform 0.2s var(--ease-out, ease-out);
}
.h3-faq-item[open] summary::after {
  content: "−";
}
.h3-faq-item-body {
  padding: 0 0 22px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: #455365;
}
.h3-faq-item-body p { margin-bottom: 10px; }
.h3-faq-item-body p:last-child { margin-bottom: 0; }

/* ── Team grid (about page) ──────────────────────────────────── */
.h3-team-section {
  padding: 88px 0;
  background: #fbf5e8;
}
.h3-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.h3-team-card {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.06);
  text-align: center;
}
.h3-team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  margin: 0 auto 16px;
  background: var(--coral-100, #FFEDE3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--coral-700, #C95636);
}
.h3-team-name {
  font-family: var(--font-primary);
  font-weight: 700;
  color: #121820;
  margin-bottom: 4px;
}
.h3-team-role {
  font-size: 0.86rem;
  color: #64748B;
}

/* ── Timeline (about page) ──────────────────────────────────── */
.h3-timeline-section { padding: 88px 0; background: #fffdf8; }
.h3-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 36px;
}
.h3-timeline::before {
  content: ""; position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(232,112,79,0.30);
}
.h3-timeline-item {
  position: relative;
  padding-bottom: 28px;
}
.h3-timeline-item::before {
  content: "";
  position: absolute;
  left: -32px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--coral-600, #E8704F);
  border: 3px solid #fffdf8;
  box-shadow: 0 0 0 2px var(--coral-600, #E8704F);
}
.h3-timeline-year {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 0.86rem;
  color: var(--coral-700, #C95636);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.h3-timeline-title {
  font-family: var(--font-primary);
  font-weight: 700;
  color: #121820;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.h3-timeline-desc {
  font-size: 0.95rem;
  color: #455365;
  line-height: 1.55;
}

/* ── Contact form ────────────────────────────────────────────── */
.h3-contact-section { padding: 96px 0; background: #fffdf8; }
.h3-contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}
.h3-contact-form {
  padding: 32px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(18,24,32,0.08);
  box-shadow: 0 4px 16px rgba(15,23,42,0.05);
}
.h3-contact-form label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.86rem;
  color: #121820;
}
.h3-contact-form label > span { display: block; margin-bottom: 6px; }
.h3-contact-form input,
.h3-contact-form textarea,
.h3-contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(18,24,32,0.16);
  border-radius: 10px;
  font-family: var(--font-secondary);
  font-size: 0.96rem;
  color: #121820;
  background: #fffdf8;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.h3-contact-form input:focus,
.h3-contact-form textarea:focus,
.h3-contact-form select:focus {
  outline: none;
  border-color: var(--coral-600, #E8704F);
  box-shadow: 0 0 0 3px rgba(232,112,79,0.16);
}
.h3-contact-form textarea { min-height: 140px; resize: vertical; }
.h3-contact-form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.h3-contact-details {
  padding: 32px;
  background: var(--navy-900, #0F172A);
  color: #fffdf8;
  border-radius: 16px;
}
.h3-contact-details h3 {
  font-family: var(--font-primary);
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #fffdf8;
}
.h3-contact-detail {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,253,248,0.10);
}
.h3-contact-detail:last-child { border-bottom: none; }
.h3-contact-detail strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral-300, #FFC7B5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.h3-contact-detail a, .h3-contact-detail span {
  font-size: 0.96rem;
  color: rgba(255,253,248,0.88);
  text-decoration: none;
}
.h3-contact-detail a:hover { color: var(--coral-300, #FFC7B5); }

/* ── Trust centre (security page) ────────────────────────────── */
.h3-trustcentre-section { padding: 96px 0; background: #fffdf8; }
.h3-trustcentre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.h3-trustcentre-card {
  padding: 28px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.08);
  box-shadow: 0 2px 8px rgba(15,23,42,0.04);
}
.h3-trustcentre-card h3 {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: #121820;
  margin-bottom: 10px;
}
.h3-trustcentre-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #455365;
  margin-bottom: 14px;
}
.h3-trustcentre-list {
  list-style: none; padding: 0; margin: 0;
}
.h3-trustcentre-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: #455365;
}
.h3-trustcentre-list li code {
  padding: 2px 6px;
  border-radius: 4px;
  background: #fbf5e8;
  font-size: 0.82rem;
  color: #121820;
  font-family: var(--font-mono);
}

/* ── Legal TOC sidebar (for /security, /privacy, /terms) ─────── */
.h3-legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 80px 0;
  max-width: 1100px;
  margin: 0 auto;
}
.h3-legal-toc {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 20px;
  background: #fbf5e8;
  border-radius: 12px;
  border: 1px solid rgba(18,24,32,0.06);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.h3-legal-toc h4 {
  font-family: var(--font-primary);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral-700, #C95636);
  margin-bottom: 12px;
}
.h3-legal-toc ul { list-style: none; padding: 0; }
.h3-legal-toc li {
  padding: 6px 0;
  font-size: 0.88rem;
}
.h3-legal-toc a { color: #455365; text-decoration: none; }
.h3-legal-toc a:hover { color: var(--coral-700, #C95636); }

/* ── Responsive collapses ────────────────────────────────────── */
@media (max-width: 1024px) {
  .h3-savings-grid,
  .h3-step-grid,
  .h3-team-grid { grid-template-columns: repeat(2, 1fr); }
  .h3-capability-grid { grid-template-columns: repeat(2, 1fr); }
  .h3-trustcentre-grid { grid-template-columns: 1fr 1fr; }
  .h3-legal-layout { grid-template-columns: 1fr; }
  .h3-legal-toc { position: static; max-height: none; }
}
@media (max-width: 760px) {
  .h3-pageheader { padding: 96px 0 56px; }
  .h3-pageheader-grid,
  .h3-usecase,
  .h3-feature-row,
  .h3-vs-quickverdict,
  .h3-vs-truth,
  .h3-contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .h3-usecase-reverse, .h3-feature-row-reverse { direction: ltr; }
  .h3-savings-grid,
  .h3-step-grid,
  .h3-team-grid,
  .h3-trustcentre-grid,
  .h3-capability-grid { grid-template-columns: 1fr; }
  .h3-usecase-section, .h3-savings, .h3-features-section,
  .h3-steps, .h3-vs-section, .h3-faq-section, .h3-team-section,
  .h3-timeline-section, .h3-contact-section, .h3-trustcentre-section {
    padding: 64px 0;
  }
  .h3-contact-form-row { grid-template-columns: 1fr; }
  .h3-vs-table thead th, .h3-vs-table tbody td { padding: 12px; font-size: 0.86rem; }
}
/* === END PHASE 2 SECTION PRIMITIVES ============================== */


/* =================================================================
   PHASE 2 FOUNDATION UTILITIES (2026-05-26)
   Shared button / container / section / typography helpers so every
   Phase 2 page works off /marketing/css/homepage-v2.css alone, with
   no per-page critical CSS block.
   ================================================================= */

/* ── Page-shell background reset for every NEW Phase 2 page ─── */
body[data-page="pricing"],
body[data-page="about"],
body[data-page="contact"],
body[data-page="security"],
body[data-page="case-studies"],
body[data-page="what-is"],
body[data-page="blog-hub"],
body[data-page="blog-post"],
body[data-page^="solutions-"],
body[data-page^="product-"],
body[data-page^="vs-"],
body[data-page^="legal-"] {
  background: #fffdf8 !important;
  color: #121820 !important;
}
body[data-page="pricing"] .util-bar,
body[data-page="about"] .util-bar,
body[data-page="contact"] .util-bar,
body[data-page="security"] .util-bar,
body[data-page="case-studies"] .util-bar,
body[data-page="what-is"] .util-bar,
body[data-page="blog-hub"] .util-bar,
body[data-page="blog-post"] .util-bar,
body[data-page^="solutions-"] .util-bar,
body[data-page^="product-"] .util-bar,
body[data-page^="vs-"] .util-bar,
body[data-page^="legal-"] .util-bar { display: none !important; }
body[data-page="pricing"] .navbar,
body[data-page="about"] .navbar,
body[data-page="contact"] .navbar,
body[data-page="security"] .navbar,
body[data-page="case-studies"] .navbar,
body[data-page="what-is"] .navbar,
body[data-page="blog-hub"] .navbar,
body[data-page="blog-post"] .navbar,
body[data-page^="solutions-"] .navbar,
body[data-page^="product-"] .navbar,
body[data-page^="vs-"] .navbar,
body[data-page^="legal-"] .navbar {
  top: 0 !important;
  padding: 16px 0 !important;
  background: rgba(255,253,248,0.94) !important;
  border-bottom: 1px solid rgba(18,24,32,0.08) !important;
  box-shadow: none !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}
body[data-page="pricing"] .navbar a,
body[data-page="about"] .navbar a,
body[data-page="contact"] .navbar a,
body[data-page="security"] .navbar a,
body[data-page="case-studies"] .navbar a,
body[data-page="what-is"] .navbar a,
body[data-page="blog-hub"] .navbar a,
body[data-page="blog-post"] .navbar a,
body[data-page^="solutions-"] .navbar a,
body[data-page^="product-"] .navbar a,
body[data-page^="vs-"] .navbar a,
body[data-page^="legal-"] .navbar a,
body[data-page="pricing"] .nav-link,
body[data-page="about"] .nav-link,
body[data-page="contact"] .nav-link,
body[data-page="security"] .nav-link,
body[data-page="case-studies"] .nav-link,
body[data-page="what-is"] .nav-link,
body[data-page="blog-hub"] .nav-link,
body[data-page="blog-post"] .nav-link,
body[data-page^="solutions-"] .nav-link,
body[data-page^="product-"] .nav-link,
body[data-page^="vs-"] .nav-link,
body[data-page^="legal-"] .nav-link { color: #121820 !important; font-weight: 600 !important; }
body[data-page="pricing"] .navbar-logo-img,
body[data-page="about"] .navbar-logo-img,
body[data-page="contact"] .navbar-logo-img,
body[data-page="security"] .navbar-logo-img,
body[data-page="case-studies"] .navbar-logo-img,
body[data-page="what-is"] .navbar-logo-img,
body[data-page="blog-hub"] .navbar-logo-img,
body[data-page="blog-post"] .navbar-logo-img,
body[data-page^="solutions-"] .navbar-logo-img,
body[data-page^="product-"] .navbar-logo-img,
body[data-page^="vs-"] .navbar-logo-img,
body[data-page^="legal-"] .navbar-logo-img { height: 56px !important; width: auto !important; object-fit: contain !important; }

/* ── Containers ─────────────────────────────────────────────── */
.h3-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.h3-container-narrow {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.h3-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
  cursor: pointer;
  border: none;
  line-height: 1;
}
.h3-btn-primary {
  background: #E8704F;
  color: #fffdf8;
  box-shadow: 0 1px 3px rgba(232,112,79,0.18), 0 6px 24px rgba(232,112,79,0.12);
}
.h3-btn-primary:hover {
  background: #C95636;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(232,112,79,0.28);
  color: #fffdf8;
}
.h3-btn-outline,
.h3-btn-secondary {
  background: transparent;
  color: #121820;
  border: 1.5px solid rgba(18,24,32,0.14);
}
.h3-btn-outline:hover,
.h3-btn-secondary:hover {
  background: #121820;
  color: #fffdf8;
  border-color: #121820;
}
.h3-btn-dark {
  background: #121820;
  color: #fffdf8;
}
.h3-btn-dark:hover {
  background: #0F172A;
  color: #fffdf8;
  transform: translateY(-1px);
}
.h3-btn-full {
  width: 100%;
  display: flex;
}
.h3-btn-lg {
  padding: 18px 28px;
  font-size: 1.05rem;
}
.h3-cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── Section wrappers ───────────────────────────────────────── */
.h3-pricing-section,
.h3-section {
  padding: 88px 0;
  background: #fffdf8;
  color: #121820;
}
.h3-section-alt {
  padding: 88px 0;
  background: #f5efe2;
  color: #121820;
}
.h3-section-dark {
  padding: 88px 0;
  background: #121820;
  color: #fffdf8;
}

/* ── Typography helpers ─────────────────────────────────────── */
.h3-headline-accent { color: #C95636; }

/* ── Final CTA fineprint ────────────────────────────────────── */
.h3-final-cta-fineprint {
  margin-top: 18px;
  font-size: 0.84rem;
  color: rgba(255,253,248,0.6);
}

/* ── Pricing list aliasing (we use .h3-pricing-list in pages) ─ */
.h3-pricing-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.h3-pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #455365;
  padding: 9px 0;
  border-bottom: 1px solid rgba(18,24,32,0.06);
  line-height: 1.5;
}
.h3-pricing-list li:last-child { border-bottom: none; }
.h3-pricing-list li::before {
  content: "\2713";
  color: #E8704F;
  font-weight: 700;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  margin-top: 2px;
}
.h3-pricing-featured .h3-pricing-list li {
  color: rgba(255,253,248,0.85);
  border-color: rgba(255,253,248,0.10);
}
.h3-pricing-featured .h3-pricing-list li::before { color: #FFA68A; }
.h3-pricing-fineprint {
  margin-top: 14px;
  font-size: 0.78rem;
  color: #64748B;
  text-align: center;
}
.h3-pricing-featured .h3-pricing-fineprint { color: rgba(255,253,248,0.55); }

/* ── vs-table icon aliasing (we use .h3-vs-yes/no in pages) ─── */
.h3-vs-yes {
  display: inline-block;
  color: #16A34A;
  font-weight: 800;
  font-size: 1.05rem;
}
.h3-vs-no {
  display: inline-block;
  color: #94A3B8;
  font-weight: 700;
}

/* ── FAQ body aliasing (we use .h3-faq-body in pages) ─────── */
.h3-faq-body {
  padding: 0 22px 18px;
  color: #455365;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Step / capability card heading override (we use h3) ──── */
.h3-step-card h3,
.h3-capability-card h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #121820;
  margin: 12px 0 8px;
}
.h3-step-card p,
.h3-capability-card p {
  color: #455365;
  font-size: 0.92rem;
  line-height: 1.55;
  margin: 0;
}

/* ── Section head spacing on Phase 2 pages ──────────────────── */
.h3-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.h3-section-head h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: inherit;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 14px 0 14px;
}
.h3-section-head > p {
  color: #455365;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}
.h3-section-dark .h3-section-head > p { color: rgba(255,253,248,0.75); }

/* ── Contact page additions ────────────────────────────────── */
.h3-contact-form-wrap {
  padding: 36px;
  background: #fffdf8;
  border-radius: 18px;
  border: 1px solid rgba(18,24,32,0.08);
  box-shadow: 0 6px 24px rgba(15,23,42,0.06);
}
.h3-contact-form-wrap h2 { margin: 10px 0 22px; }
.h3-form-field { margin-bottom: 18px; }
.h3-form-field label {
  display: block;
  margin-bottom: 8px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.86rem;
  color: #121820;
}
.h3-form-field input,
.h3-form-field textarea,
.h3-form-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(18,24,32,0.16);
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.96rem;
  color: #121820;
  background: #ffffff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.h3-form-field input:focus,
.h3-form-field textarea:focus,
.h3-form-field select:focus {
  outline: none;
  border-color: #E8704F;
  box-shadow: 0 0 0 3px rgba(232,112,79,0.16);
}
.h3-form-field textarea { min-height: 140px; resize: vertical; }
.h3-form-optional { color: #94A3B8; font-weight: 500; font-size: 0.78rem; }
.h3-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  font-size: 0.86rem;
  color: #455365;
  line-height: 1.5;
}
.h3-form-consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.h3-form-consent a { color: #C95636; text-decoration: underline; }
.h3-form-foot { margin-top: 16px; font-size: 0.82rem; color: #64748B; }
.h3-contact-aside {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.h3-contact-block {
  padding: 24px;
  background: #fffdf8;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.08);
}
.h3-contact-block .h3-eyebrow { margin-bottom: 12px; }
.h3-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.h3-contact-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(18,24,32,0.06);
  font-size: 0.92rem;
  color: #455365;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.h3-contact-list li:last-child { border-bottom: none; }
.h3-contact-list li strong {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #C95636;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.h3-contact-list li a { color: #121820; text-decoration: none; font-weight: 600; }
.h3-contact-list li a:hover { color: #C95636; }
.h3-contact-list li span { color: #455365; }
.h3-contact-address {
  margin: 0;
  color: #455365;
  line-height: 1.6;
  font-size: 0.94rem;
}
.h3-contact-address strong { color: #121820; }

/* ── Team page additions (avatar fallback) ──────────────────── */
.h3-team-card .h3-team-avatar {
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #E8704F, #C95636);
  color: #fffdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

/* ── Legal article body (privacy / terms / cookies / gdpr) ─── */
.h3-legal-body {
  font-size: 0.96rem;
  line-height: 1.72;
  color: #2C3645;
  max-width: 760px;
}
.h3-legal-body h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: #121820;
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(18,24,32,0.08);
  letter-spacing: -0.005em;
}
.h3-legal-body h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
.h3-legal-body h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #121820;
  margin: 24px 0 10px;
}
.h3-legal-body p { margin: 0 0 14px; }
.h3-legal-body ul, .h3-legal-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.h3-legal-body li { margin-bottom: 6px; }
.h3-legal-body strong { color: #121820; }
.h3-legal-body a { color: #C95636; text-decoration: underline; }
.h3-legal-body a:hover { color: #A8431F; }
.h3-legal-body code {
  background: #fbf5e8;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.88em;
}

/* ── Blog hub + posts ────────────────────────────────────────── */
.h3-blog-featured {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  background: #fbf5e8;
  border-radius: 18px;
  padding: 36px;
  text-decoration: none;
  color: #121820;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.h3-blog-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(15,23,42,0.08);
}
.h3-blog-featured-art {
  width: 100%;
  aspect-ratio: 1.05;
  background: linear-gradient(135deg, #E8704F, #C95636);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fffdf8;
}
.h3-blog-featured-art svg { width: 64px; height: 64px; }
.h3-blog-featured h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 12px 0 12px;
  color: #121820;
  line-height: 1.25;
}
.h3-blog-featured p {
  color: #455365;
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 16px;
}
.h3-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.h3-blog-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  background: #fffdf8;
  border-radius: 14px;
  border: 1px solid rgba(18,24,32,0.06);
  text-decoration: none;
  color: #121820;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.h3-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
}
.h3-blog-card h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  color: #121820;
  margin: 12px 0 10px;
  line-height: 1.3;
}
.h3-blog-card p {
  color: #455365;
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 14px;
  flex: 1;
}
.h3-blog-badge {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(232,112,79,0.10);
  color: #C95636;
  width: fit-content;
}
.h3-blog-meta {
  font-size: 0.82rem;
  color: #64748B;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(18,24,32,0.06);
}
.h3-newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
}
.h3-newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(18,24,32,0.16);
  border-radius: 10px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.96rem;
  color: #121820;
  background: #ffffff;
}
.h3-newsletter-form input:focus {
  outline: none;
  border-color: #E8704F;
  box-shadow: 0 0 0 3px rgba(232,112,79,0.16);
}
.h3-newsletter-foot {
  text-align: center;
  margin-top: 14px;
  font-size: 0.82rem;
  color: #64748B;
}
.h3-newsletter-foot a { color: #C95636; }

/* ── Blog post article body ───────────────────────────────── */
.h3-post-meta {
  margin-top: 14px;
  font-size: 0.86rem;
  color: #64748B;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.h3-post-meta strong { color: #121820; font-weight: 600; }
.h3-post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.78;
  color: #2C3645;
}
.h3-post-body h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #121820;
  margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.h3-post-body h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #121820;
  margin: 32px 0 10px;
}
.h3-post-body p { margin: 0 0 16px; }
.h3-post-body ul, .h3-post-body ol { margin: 0 0 18px; padding-left: 22px; }
.h3-post-body li { margin-bottom: 6px; }
.h3-post-body blockquote {
  border-left: 3px solid #E8704F;
  padding: 6px 0 6px 18px;
  margin: 20px 0;
  color: #2C3645;
  font-style: italic;
}
.h3-post-body a { color: #C95636; text-decoration: underline; }
.h3-post-body code { background: #fbf5e8; padding: 2px 6px; border-radius: 4px; font-size: 0.88em; }

@media (max-width: 920px) {
  .h3-blog-grid { grid-template-columns: 1fr 1fr; }
  .h3-blog-featured { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .h3-blog-grid { grid-template-columns: 1fr; }
  .h3-newsletter-form { flex-direction: column; }
}

/* === END PHASE 2 FOUNDATION UTILITIES =========================== */

