/* =========================================================
   HIGHLANDS IT SOLUTIONS — base styles
   White surface, navy text, teal accents
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --surface: #ffffff;
  --ink: #1D3148;          /* deep navy — primary text */
  --ink-2: #2A4263;        /* slightly lighter navy */
  --muted: #6D7889;        /* dark neutral gray */
  --muted-light: #B0B6BF;  /* light neutral gray */
  --line: rgba(29, 49, 72, 0.08);
  --line-strong: rgba(29, 49, 72, 0.14);

  /* Brand teal accent */
  --brand: #0EB9A6;
  --brand-deep: #0A9588;
  --brand-darker: #07766C;
  --brand-soft: rgba(14, 185, 166, 0.10);
  --brand-glow: rgba(14, 185, 166, 0.25);

  /* Dark surfaces */
  --night: #1D3148;
  --night-2: #2A4263;

  --shadow-sm: 0 4px 12px rgba(29, 49, 72, 0.04);
  --shadow-md: 0 12px 30px rgba(29, 49, 72, 0.08);
  --shadow-lg: 0 24px 60px rgba(29, 49, 72, 0.10);
  --shadow-glow: 0 20px 60px rgba(14, 185, 166, 0.18);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: min(1200px, calc(100vw - 3rem));

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
button, input, select, textarea { font: inherit; }

html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}

a { color: inherit; text-decoration: none; transition: color 200ms var(--ease); }
img { max-width: 100%; display: block; }

.container { width: var(--container); margin: 0 auto; }

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.9rem, 5.5vw, 4.8rem); font-weight: 600; }
h2 { font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); }
h4 { font-size: 1.15rem; }
em {
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
}
p { margin: 0; color: var(--ink-2); }

/* =========================================================
   AMBIENT BACKGROUND — fluid orbs + subtle grain
   ========================================================= */
.ambient {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 28s var(--ease) infinite alternate;
}
.orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(14, 185, 166, 0.28), transparent 70%);
  top: -120px; left: -100px;
}
.orb-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14, 185, 166, 0.18), transparent 70%);
  top: 30%; right: -180px;
  animation-duration: 34s;
}
.orb-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(14, 185, 166, 0.12), transparent 70%);
  bottom: -150px; left: 30%;
  animation-duration: 40s;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-30px) scale(1.06); }
  100% { transform: translate(-30px,40px) scale(0.98); }
}
.grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.025; mix-blend-mode: multiply;
}

/* =========================================================
   NAVBAR — thinner than Home Helpers, glass with green accent
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 0.85rem 0 0;
  background: transparent;
}
.nav-shell {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem;
  min-height: 58px;            /* thinner */
  padding: 0.55rem 1.1rem 0.55rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.55));
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 28px rgba(29, 49, 72, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  transition: padding 280ms var(--ease), box-shadow 280ms var(--ease);
}
.site-header.is-scrolled .nav-shell {
  min-height: 52px;
  padding: 0.4rem 1rem 0.4rem 1.1rem;
  box-shadow: 0 12px 32px rgba(29, 49, 72, 0.1);
}

.brand {
  display: inline-flex; align-items: center; gap: 0.55rem;
  color: var(--ink);
}
.brand-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.foot-logo-img {
  height: 40px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  display: inline-grid; place-items: center;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: white;
  box-shadow: 0 6px 14px var(--brand-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.logo-mark svg { width: 18px; height: 18px; }
.logo-text { font-size: 1.02rem; line-height: 1; letter-spacing: -0.01em; }
.logo-bold { font-weight: 700; }
.logo-thin { font-weight: 400; color: var(--muted); margin-left: 0.25rem; }

.site-nav { display: flex; align-items: center; gap: 0.15rem; }
.site-nav a:not(.button), .nav-trigger {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition: color 180ms var(--ease), background 180ms var(--ease);
  cursor: pointer;
}
.site-nav a:not(.button):hover, .nav-trigger:hover {
  color: var(--brand-deep);
  background: var(--brand-soft);
}

/* Nav dropdown */
.nav-item { position: relative; }
.nav-item .caret {
  font-size: 0.7rem;
  transition: transform 220ms var(--ease);
  display: inline-block;
}
.nav-item:hover .caret,
.nav-item:focus-within .caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 320px;
  padding: 0.6rem;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,255,255,0.97));
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  border: 1px solid rgba(29, 49, 72, 0.10);
  box-shadow: 0 20px 60px rgba(29, 49, 72, 0.22), inset 0 1px 0 rgba(255,255,255,0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--ease), transform 220ms var(--ease);
  z-index: 60;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* invisible hover bridge so the dropdown doesn't close while moving cursor */
.nav-item::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 0.5rem;
}
.site-nav .nav-dropdown a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  align-items: center;
  transition: background 180ms var(--ease);
}
.nav-dropdown a:hover { background: var(--brand-soft); }
.nav-dd-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
}
.nav-dd-sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.35;
}
.nav-dd-coming {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.3rem;
  padding: 0.6rem 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
}
.nav-dd-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--brand-glow); }
  50%      { box-shadow: 0 0 0 6px rgba(14, 185, 166, 0); }
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute; left: 11px; right: 11px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform 240ms var(--ease), opacity 240ms var(--ease);
}
.nav-toggle span:first-child { top: 14px; }
.nav-toggle span:last-child  { bottom: 14px; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-5px) rotate(-45deg); }

/* =========================================================
   BUTTONS
   ========================================================= */
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.78rem 1.3rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: white;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    0 10px 22px rgba(14, 185, 166, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.4),
    inset 0 -1px 0 rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(14, 185, 166, 0.32), inset 0 1px 0 rgba(255,255,255,0.45); }
.button-small { padding: 0.55rem 1rem; font-size: 0.86rem; margin-left: 0.4rem; }
.button-ghost {
  background: white; color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.button-ghost:hover { box-shadow: var(--shadow-md); }
.arr { transition: transform 240ms var(--ease); }
.button:hover .arr, .text-link:hover .arr { transform: translateX(3px); }

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--brand-deep);
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.text-link:hover { border-bottom-color: var(--brand); }

/* =========================================================
   ANIMATED CTA — slide arrow + color sweep on hover
   ========================================================= */
.cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 56px;
  min-width: 220px;
  padding: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 520ms var(--ease), box-shadow 520ms var(--ease);
  box-shadow: 0 8px 22px rgba(29, 49, 72, 0.18);
}
/* Full-coverage tap target — sits above internal elements so any tap on the
   button registers on the link, not on a child span */
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 10;
  border-radius: 999px;
}
.cta:hover {
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(14, 185, 166, 0.32);
}

.cta-text {
  position: absolute;
  top: 50%;
  left: 1.75rem;
  transform: translateY(-50%);
  white-space: nowrap;
  transition: left 520ms var(--ease);
  z-index: 1;
  pointer-events: none;
}

.cta-arrow {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  color: var(--ink);
  display: grid;
  place-items: center;
  pointer-events: none;
  transition: right 520ms var(--ease), color 520ms var(--ease), transform 520ms var(--ease);
  z-index: 2;
}
.cta-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform 520ms var(--ease);
}

.cta:hover .cta-arrow {
  right: calc(100% - 52px);
  color: var(--brand);
}
.cta:hover .cta-arrow svg { transform: translateX(2px); }

.cta:hover .cta-text {
  left: calc(48px + 1.5rem);
}

/* Disable hover animation on touch devices to prevent mid-animation freeze on tap */
@media (hover: none) {
  .cta, .cta-text, .cta-arrow, .cta-arrow svg { transition: none; }
  .cta:hover { background: var(--ink); box-shadow: 0 8px 22px rgba(29,49,72,0.18); }
  .cta:hover .cta-arrow { right: 4px; color: var(--ink); }
  .cta:hover .cta-arrow svg { transform: none; }
  .cta:hover .cta-text { left: 1.75rem; }
}

/* Optional teal-first variant (for hover ⇆ rest swap) */
.cta-accent {
  background: var(--brand);
  box-shadow: 0 8px 22px rgba(14, 185, 166, 0.28);
}
.cta-accent .cta-arrow { color: var(--brand); }
.cta-accent:hover {
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(29, 49, 72, 0.28);
}
.cta-accent:hover .cta-arrow { color: var(--ink); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* shrinks to exclude mobile browser chrome */
  padding: 6rem 0 10rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 20% center;
  z-index: -2;
  pointer-events: none;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
}
.hero-gradient {
  position: absolute; inset: 0;
  background:
    linear-gradient(108deg, rgba(29, 49, 72, 0.62) 0%, rgba(42, 66, 99, 0.48) 38%, rgba(109, 120, 137, 0.28) 60%, rgba(29, 49, 72, 0.18) 100%),
    radial-gradient(ellipse at 80% 20%, rgba(14, 185, 166, 0.18), transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(14, 185, 166, 0.14), transparent 55%);
}
.hero-mesh {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(29, 49, 72, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 49, 72, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 380px);
  gap: 3.5rem;
  align-items: center;
  padding-top: 2rem;
}
.hero-copy h1 {
  margin: 0 0 1.2rem;
  color: #ffffff;
  text-shadow: 0 2px 24px rgba(29, 49, 72, 0.4);
}
.hero-copy h1 em { color: #5EEAD4; }
.hero-text {
  font-size: 1.08rem;
  max-width: 560px;
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 12px rgba(29, 49, 72, 0.35);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.7rem;
  margin-top: 1.8rem;
}

/* Chatbot overlay — white translucent glass (Sierra style) */
/* Hero mocks container */
.hero-mocks {
  width: 100%; max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
@keyframes float {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
.hero-mocks-stage {
  position: relative;
  min-height: 420px;
}
/* VA mock is taller — shift it up so it clears the trust strip */
.hero-mock[data-mock="0"] { top: -40px; }

/* Each glass mock card */
.hero-mock {
  position: absolute; top: 0; left: 0; width: 100%;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 30px 80px rgba(13, 25, 40, 0.28),
    0 8px 24px rgba(13, 25, 40, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
  color: #ffffff;
  opacity: 0;
  transform: translateY(28px);
  pointer-events: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.hero-mock.hero-mock-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.hero-mock.hero-mock-exit {
  opacity: 0;
  transform: translateY(-28px);
}

/* Shared mock header */
.hm-head {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.hm-avatar {
  width: 36px; height: 36px; border-radius: 999px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: white;
  box-shadow: 0 4px 14px rgba(14, 185, 166, 0.35);
  flex-shrink: 0;
}
.hm-avatar svg { width: 16px; height: 16px; }
.hm-title { font-weight: 700; font-size: 0.92rem; color: #fff; }
.hm-sub   { font-size: 0.76rem; color: rgba(255,255,255,0.65); }
.hm-badge {
  margin-left: auto;
  font-size: 0.72rem; font-weight: 700;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  padding: 0.2rem 0.6rem; border-radius: 999px;
  white-space: nowrap; color: rgba(255,255,255,0.8);
}
.hm-badge-ok { color: #5EEAD4; }

/* Shared mock body + footer */
.hm-body { padding: 0.9rem 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.hm-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.7rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  font-size: 0.8rem; color: rgba(255,255,255,0.6);
}
.hm-btn { font-size: 0.8rem; font-weight: 600; color: var(--brand); cursor: pointer; }

/* Vitals row — Vital Connect */
.hm-vitals-row {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px; padding: 0.7rem 0;
}
.hm-vital { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.hm-vital-icon svg { width: 15px; height: 15px; color: var(--brand); }
.hm-vital-val   { font-size: 1.1rem; font-weight: 700; color: white; }
.hm-vital-label { font-size: 0.69rem; color: rgba(255,255,255,0.5); }
.hm-vital-div   { width: 1px; height: 34px; background: rgba(255,255,255,0.18); }

/* Sparkline — Vital Connect & Web */
.hm-sparkline-wrap {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 0.55rem 0.75rem 0.45rem;
}
.hm-sparkline-label { font-size: 0.69rem; color: rgba(255,255,255,0.45); margin-bottom: 0.35rem; }
.hm-sparkline { width: 100%; height: 40px; display: block; }

/* Notification pill */
.hm-notify { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.hm-notify-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }

/* Progress bar — SnapSign */
.hm-progress-wrap {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem 1rem 0.1rem;
}
.hm-progress {
  flex: 1; height: 5px; border-radius: 999px;
  background: rgba(255,255,255,0.18); overflow: hidden;
}
.hm-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
  border-radius: 999px;
}
.hm-progress-label { font-size: 0.72rem; font-weight: 600; color: var(--brand); white-space: nowrap; }

/* Document list — SnapSign */
.hm-doc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.45rem; }
.hm-doc-list li { display: flex; align-items: center; gap: 0.55rem; font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.hm-doc-list li.hm-done   { color: rgba(255,255,255,0.55); }
.hm-doc-list li.hm-signing { color: white; font-weight: 600; }
.hm-check  { color: var(--brand); font-size: 0.78rem; width: 15px; text-align: center; flex-shrink: 0; }
.hm-pen    { color: var(--brand); font-size: 0.82rem; width: 15px; text-align: center; flex-shrink: 0; }
.hm-empty  { color: rgba(255,255,255,0.28); font-size: 0.78rem; width: 15px; text-align: center; flex-shrink: 0; }
.hm-doc-name   { flex: 1; }
.hm-doc-date   { font-size: 0.7rem; color: rgba(255,255,255,0.38); }
.hm-doc-status { font-size: 0.7rem; color: var(--brand); }

/* Stats row — Web & Marketing */
.hm-stats-row {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 14px; padding: 0.7rem 0;
}
.hm-stat { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 0.15rem; }
.hm-stat-val   { font-size: 1.1rem; font-weight: 700; color: var(--brand); }
.hm-stat-label { font-size: 0.69rem; color: rgba(255,255,255,0.5); }
.hm-stat-div   { width: 1px; height: 34px; background: rgba(255,255,255,0.18); }

.chat-header {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}
.chat-avatar {
  position: relative; width: 36px; height: 36px;
  border-radius: 999px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  color: white;
  box-shadow: 0 4px 14px rgba(14, 185, 166, 0.35);
}
.chat-avatar svg { width: 18px; height: 18px; }
.chat-avatar .pulse {
  position: absolute; right: -2px; bottom: -2px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--brand); border: 2px solid rgba(29, 49, 72, 0.6);
}
.chat-title { font-weight: 700; font-size: 0.92rem; color: #ffffff; }
.chat-sub   { font-size: 0.76rem; color: rgba(255,255,255,0.65); }
.chat-close { margin-left: auto; color: rgba(255,255,255,0.5); font-size: 1.2rem; }
.chat-body { padding: 0.9rem 1rem 0.6rem; display: flex; flex-direction: column; gap: 0.55rem; }
.msg {
  max-width: 88%; padding: 0.6rem 0.9rem;
  border-radius: 14px; font-size: 0.88rem; line-height: 1.45;
}
.msg-bot {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-bottom-left-radius: 4px;
  backdrop-filter: blur(10px);
}
.chat-chips { display: flex; gap: 0.4rem; align-self: flex-end; }
.chip {
  padding: 0.4rem 0.85rem; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.chip-active {
  background: linear-gradient(180deg, var(--brand), var(--brand-deep));
  color: white; border-color: transparent;
  box-shadow: 0 4px 14px rgba(14, 185, 166, 0.4);
}
.chat-options { display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.4rem; }
.opt {
  padding: 0.65rem 0.9rem; border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  font-weight: 600; font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 200ms var(--ease), background 200ms var(--ease), border-color 200ms var(--ease);
}
.opt:hover {
  transform: translateY(-1px);
  background: rgba(14, 185, 166, 0.32);
  border-color: rgba(14, 185, 166, 0.6);
}
.chat-input {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.10);
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.send {
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--brand); color: white;
  display: grid; place-items: center; font-weight: 700;
  box-shadow: 0 4px 12px rgba(14, 185, 166, 0.45);
}

/* Trust strip */
.trust-strip {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  width: fit-content;
  max-width: calc(100vw - 3rem);
  margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1.1rem 1.5rem; border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.55));
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow: 0 8px 28px rgba(29, 49, 72, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  font-size: 0.88rem;
  color: var(--ink);
  text-align: center;
}
.trust-items { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.trust-items i {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--line-strong);
}
.trust-items span { color: var(--ink); font-weight: 600; }

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { padding: 6rem 0; position: relative; }
.section-head { max-width: 760px; margin: 0 auto 3rem; text-align: center; }
.kicker {
  display: inline-block;
  font-family: "Instrument Serif", Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--brand-deep);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section-head h2 { margin-bottom: 0.9rem; }
.lede { font-size: 1.08rem; color: var(--muted); }
.kicker-light { color: #7EE3D6; }
.lede-light, .section-head-light h2 { color: #f3faf7; }
.section-head-light .lede { color: rgba(243, 250, 247, 0.78); }

/* =========================================================
   SOLUTIONS — sierra.ai-style cards
   ========================================================= */
/* Vital Connect study credit */
.vc-study-credit {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--muted-light);
  letter-spacing: 0.04em;
  font-style: italic;
}

/* Stats bar */
.stats-bar {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 2.4rem 3rem;
  gap: 1rem;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.stat-num {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--muted-light);
  letter-spacing: 0.01em;
}
.stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .stats-bar {
    flex-wrap: wrap;
    gap: 1.8rem;
    padding: 2rem 1.5rem;
  }
  .stat-divider { display: none; }
  .stat-item { width: 45%; }
}

.section-solutions { background: linear-gradient(180deg, transparent 0%, var(--bg-soft) 100%); }
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .solution-grid { grid-template-columns: 1fr; }
}
.sol-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 380ms var(--ease), box-shadow 380ms var(--ease);
}
.sol-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sol-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(140deg, #E8F8F6, #C9F0EB);
  display: grid; place-items: center;
  overflow: hidden;
}
.sol-card[data-accent="dark"] .sol-card-media {
  background: linear-gradient(140deg, var(--night), var(--night-2));
  color: var(--brand);
}
.sol-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 600ms var(--ease);
}
.sol-card:hover .sol-card-img { transform: scale(1.04); }

/* Web & Marketing mock illustration */
.mock-marketing { display: grid; place-items: center; width: 100%; height: 100%; padding: 1.25rem; position: relative; }
.mock-browser {
  width: 80%; max-width: 280px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(29, 49, 72, 0.25);
  transform: rotate(-2deg);
  transition: transform 480ms var(--ease);
}
.sol-card:hover .mock-browser { transform: rotate(-1deg) translateY(-3px); }
.mock-browser-bar {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 8px;
  background: #F1F4F7;
  border-bottom: 1px solid var(--line);
}
.mock-browser-bar > span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line-strong);
}
.mock-browser-url {
  flex: 1; height: 12px;
  border-radius: 4px;
  background: white;
  margin-left: 6px;
  font-size: 0.5rem;
  color: var(--muted);
  display: grid; place-items: center;
  letter-spacing: 0.02em;
}
.mock-browser-body { padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.mock-browser-hero {
  height: 50px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}
.mock-browser-rows { display: flex; gap: 6px; }
.mock-browser-rows div {
  flex: 1; height: 28px;
  border-radius: 4px;
  background: linear-gradient(180deg, #F1F4F7, var(--bg-soft));
}
.mock-ad {
  position: absolute;
  bottom: 18%; right: 12%;
  background: white;
  border-radius: 10px;
  padding: 0.6rem 0.85rem;
  box-shadow: 0 12px 28px rgba(14, 185, 166, 0.32);
  border: 1px solid var(--line);
  transform: rotate(4deg);
  transition: transform 480ms var(--ease);
}
.sol-card:hover .mock-ad { transform: rotate(2deg) translateY(-3px); }
.mock-ad-label {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-deep);
}
.mock-ad-stat {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin: 0.2rem 0 0.1rem;
}
.mock-ad-sub {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 600;
}

/* SnapSign mock illustration */
.mock-sign { display: grid; place-items: center; width: 100%; height: 100%; padding: 1.5rem; }
.mock-sign-doc {
  position: relative;
  width: 70%; max-width: 240px;
  background: white;
  border-radius: 10px;
  padding: 1.1rem 1.1rem 1.4rem;
  box-shadow: 0 18px 38px rgba(29, 49, 72, 0.16);
  display: flex; flex-direction: column; gap: 0.5rem;
  transform: rotate(-2deg);
  transition: transform 480ms var(--ease);
}
.sol-card:hover .mock-sign-doc { transform: rotate(-1deg) translateY(-3px); }
.mock-sign-row { height: 8px; border-radius: 4px; background: linear-gradient(90deg, #C9F0EB, #B0B6BF); }
.mock-sign-row-1 { width: 70%; }
.mock-sign-row-2 { width: 90%; }
.mock-sign-row-3 { width: 60%; }
.mock-sign-line {
  height: 1px;
  background: var(--line-strong);
  margin: 0.4rem 0 0.2rem;
}
.mock-sign-signature {
  height: 30px;
  display: flex; align-items: center;
  color: var(--brand);
}
.mock-sign-signature svg { width: 100%; height: 100%; }
.mock-sign-stamp {
  position: absolute;
  top: -10px; right: -14px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--brand);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 6px 14px rgba(14, 185, 166, 0.4);
  transform: rotate(8deg);
}
.sol-card-body {
  padding: 1.75rem 1.85rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sol-card-body .cta { margin-top: auto; align-self: flex-start; }
.sol-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0;
  border-radius: 0;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.sol-tag svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--brand); }
.sol-tag-dark { background: none; color: var(--ink); }
.sol-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; font-weight: 500; letter-spacing: 0; }
.sol-card h3 em { color: var(--brand); }
.sol-card p  { color: var(--muted); margin-bottom: 1.1rem; }
.sol-features { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: 0.45rem; }
.sol-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.94rem; color: var(--ink-2);
}
.sol-features li span {
  width: 9px; height: 9px;
  background: var(--brand);
  transform: rotate(45deg);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 5px;
  font-size: 0;
  color: transparent;
}

/* Mock chat illustration */
.mock-chat {
  width: 80%; max-width: 320px;
  display: flex; flex-direction: column; gap: 0.55rem;
  padding: 1.2rem;
  background: white;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(29, 49, 72, 0.10);
}
.mock-row { display: flex; gap: 0.35rem; }
.mock-row span {
  height: 9px; border-radius: 5px;
  background: linear-gradient(90deg, #C9F0EB, #A6DCD1);
  flex: 1;
}
.mock-bot span:nth-child(1) { max-width: 30%; }
.mock-bot span:nth-child(2) { max-width: 55%; }
.mock-bot span:nth-child(3) { max-width: 40%; }
.mock-user { justify-content: flex-end; }
.mock-user span {
  max-width: 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-deep));
}
.mock-buttons { display: flex; gap: 0.4rem; margin-top: 0.5rem; }
.mock-buttons span {
  flex: 1;
  padding: 0.4rem;
  background: linear-gradient(180deg, #3DD2C0, var(--brand));
  color: white; font-size: 0.72rem; font-weight: 700;
  border-radius: 8px; text-align: center;
}

/* Mock vital illustration (dark card) */
.mock-vital {
  width: 80%; max-width: 320px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.2rem;
  backdrop-filter: blur(20px);
}
.vital-pulse svg {
  width: 100%; height: 60px;
  color: var(--brand);
  filter: drop-shadow(0 0 6px rgba(14, 185, 166, 0.6));
}
.vital-stats {
  display: flex; justify-content: space-between;
  margin-top: 0.6rem;
}
.vital-stats div { text-align: center; color: white; }
.vital-stats strong { display: block; font-size: 1.2rem; font-weight: 700; color: var(--brand); }
.vital-stats span { font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }

/* =========================================================
   PLATFORM — twenty.com-style horizontal scroller
   ========================================================= */
.section-platform {
  background: var(--night);
  color: white;
  overflow: hidden;
  border-radius: 36px 36px 0 0;
  margin-top: 2rem;
}
.platform-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(14, 185, 166, 0.22), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(14, 185, 166, 0.15), transparent 50%);
}
.section-platform .container { position: relative; z-index: 1; }

.scroller {
  position: relative;
  margin: 0 calc(-1 * (50vw - var(--container) / 2));
  padding: 1rem 0;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  overflow: hidden;
}
.scroll-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: scroll 35s linear infinite;
}
@keyframes scroll {
  to { transform: translateX(-50%); }
}
.scroll-card {
  width: 280px; flex-shrink: 0;
  padding: 1.5rem 1.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(12px);
  transition: background 240ms var(--ease), transform 240ms var(--ease);
}
.scroll-card:hover {
  background: rgba(14, 185, 166, 0.10);
  transform: translateY(-3px);
}
.scroll-card h4 { color: var(--brand); margin-bottom: 0.3rem; font-weight: 700; }
.scroll-card p  { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

.platform-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
}
.platform-stats div { text-align: center; }
.platform-stats strong { display: block; font-size: 2.2rem; font-weight: 700; color: var(--brand); letter-spacing: -0.02em; }
.platform-stats span   { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* =========================================================
   ABOUT
   ========================================================= */
.section-about { padding-top: 7rem; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-copy h2 { margin: 1rem 0 1.2rem; }
.about-copy p { margin-bottom: 1rem; }
.about-points { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.7rem; }
.about-points li {
  padding-left: 1.2rem;
  position: relative;
  color: var(--ink-2);
}
.about-points li::before {
  content: ''; position: absolute; left: 0; top: 0.55rem;
  width: 7px; height: 7px;
  background: var(--brand);
  transform: rotate(45deg);
  border-radius: 1.5px;
}

.about-visual {
  position: relative; height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(29, 49, 72, 0.25),
              0 10px 25px -10px rgba(29, 49, 72, 0.12);
}
.about-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease);
}
.about-visual:hover .about-visual-img {
  transform: scale(1.03);
}
.visual-card {
  position: absolute; border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background-size: cover; background-position: center;
  transition: transform 480ms var(--ease);
}
.v1 {
  width: 70%; height: 75%;
  top: 0; left: 0;
  background: linear-gradient(140deg, #E8F8F6, #B8E8E1);
}
.v2 {
  width: 55%; height: 50%;
  bottom: 0; right: 0;
  background: linear-gradient(140deg, var(--night), var(--night-2));
}
.v3 {
  width: 30%; height: 30%;
  top: 30%; right: 5%;
  background: linear-gradient(140deg, var(--brand), var(--brand-deep));
  box-shadow: var(--shadow-glow);
}
.about-visual:hover .v1 { transform: translate(-6px, -6px); }
.about-visual:hover .v2 { transform: translate(6px, 6px); }
.about-visual:hover .v3 { transform: scale(1.05) rotate(-3deg); }

/* =========================================================
   FAQ — twenty-style dynamic background
   ========================================================= */
.section-faq {
  background: linear-gradient(180deg, var(--bg-soft), white);
  overflow: hidden;
}
.faq-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.faq-orb {
  position: absolute; border-radius: 50%;
  filter: blur(70px); opacity: 0.4;
}
.fo1 { width: 380px; height: 380px; background: rgba(14, 185, 166, 0.30); top: 10%; left: -120px; }
.fo2 { width: 460px; height: 460px; background: rgba(14, 185, 166, 0.30); bottom: -150px; right: -100px; }
.fo3 { width: 280px; height: 280px; background: rgba(14, 185, 166, 0.25); top: 40%; left: 50%; }
.section-faq .container { position: relative; z-index: 1; }

.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 240ms var(--ease), border-color 240ms var(--ease);
}
.faq-item[open] {
  border-color: rgba(14, 185, 166, 0.3);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-weight: 400; font-size: 1.25rem;
  line-height: 1;
  padding-bottom: 1px;
  transition: transform 240ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--muted);
}

/* =========================================================
   CONTACT
   ========================================================= */
.section-contact {
  padding-bottom: 6rem;
  background: var(--night);
  position: relative;
  overflow: hidden;
}

/* Decorative background layer */
.contact-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.contact-orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.45;
}
.co1 { width: 520px; height: 520px; background: rgba(14,185,166,0.28); top: -160px; left: -160px; }
.co2 { width: 400px; height: 400px; background: rgba(14,185,166,0.18); bottom: -120px; right: -100px; }
.co3 { width: 300px; height: 300px; background: rgba(14,185,166,0.12); top: 40%; left: 55%; }
.contact-grid-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.section-contact .container { position: relative; z-index: 1; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-copy .kicker { color: var(--brand); }
.contact-copy h2 { margin: 1rem 0 1rem; color: white; }
.contact-copy > p { color: rgba(255,255,255,0.72); }
.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0.7rem; }
.contact-list li {
  display: flex; align-items: center; gap: 0.7rem;
  font-weight: 500; color: rgba(255,255,255,0.78);
}
.contact-list span {
  width: 32px; height: 32px; border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(14,185,166,0.2); color: var(--brand);
  flex-shrink: 0;
}
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: grid; gap: 1rem;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label {
  display: flex; flex-direction: column; gap: 0.35rem;
  font-size: 0.86rem; font-weight: 600; color: var(--ink-2);
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 0.9rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 400;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), box-shadow 200ms var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.contact-form textarea { resize: vertical; min-height: 100px; }
.contact-form button { justify-self: start; margin-top: 0.4rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--night);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.foot-brand { display: flex; align-items: center; gap: 0.6rem; color: white; font-size: 0.95rem; }
.foot-links { display: flex; gap: 1.5rem; font-size: 0.9rem; }
.foot-links a:hover { color: var(--brand); }
.foot-meta { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* =========================================================
   SOLUTION DETAIL PAGES
   ========================================================= */
.solution-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: linear-gradient(145deg, #f0f7f7 0%, #e8f4f8 40%, #ffffff 100%);
  overflow: hidden;
}
/* Dot-grid texture */
.solution-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(14, 185, 166, 0.18) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 30%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
/* Top-right warm orb */
.solution-hero::before {
  content: '';
  position: absolute;
  top: -8%; right: -8%;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 185, 166, 0.2) 0%, rgba(14, 185, 166, 0.06) 50%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
}
/* Bottom-left accent orb */
.solution-hero .orb-accent {
  position: absolute;
  bottom: -12%; left: -8%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 49, 72, 0.07) 0%, transparent 70%);
  filter: blur(56px);
  pointer-events: none;
  z-index: 0;
}
.solution-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.solution-hero-copy h1 { margin: 1rem 0 1.2rem; font-size: clamp(2.6rem, 4.8vw, 4rem); }
.solution-hero-copy h1 em { color: var(--brand); }
.solution-hero-copy .lede { max-width: 540px; margin-bottom: 2rem; }

/* Problem cards */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.problem-card {
  padding: 2rem 1.75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.problem-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--brand-soft);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.problem-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.problem-card p { color: var(--muted); font-size: 0.94rem; }

/* Journey */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
}
.journey-step {
  padding: 1.5rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}
.journey-num {
  display: inline-grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--brand);
  color: white; font-weight: 700; font-size: 0.95rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 14px rgba(14, 185, 166, 0.4);
}
.journey-step h4 { color: white; margin-bottom: 0.3rem; font-size: 1rem; }
.journey-step p  { color: rgba(255,255,255,0.7); font-size: 0.86rem; line-height: 1.5; }

/* Feature grid (used on both solution pages) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-card {
  padding: 1.75rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--brand-soft);
  font-size: 1.3rem;
  margin-bottom: 0.85rem;
}
.feature-card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.feature-card p  { color: var(--muted); font-size: 0.93rem; }

/* Audience cards (Vital Connect) */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.audience-card {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}
.audience-card h4 { color: var(--brand); margin-bottom: 0.5rem; font-size: 1.1rem; }
.audience-card p  { color: rgba(255,255,255,0.78); font-size: 0.94rem; }

/* Vital card mock */
.vital-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--night), var(--night-2));
  color: white;
  box-shadow: 0 30px 80px rgba(29, 49, 72, 0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}
.vital-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 1rem;
}
.vital-name { font-weight: 700; font-size: 1rem; }
.vital-room { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }
.vital-status { font-size: 0.78rem; color: var(--brand); font-weight: 600; }
.vital-card .vital-pulse svg {
  width: 100%; height: 60px;
  color: var(--brand);
  filter: drop-shadow(0 0 8px rgba(14, 185, 166, 0.6));
}
.vital-card .vital-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.6rem;
}
.vital-card .vital-stats div { text-align: center; }
.vital-card .vital-stats strong { display: block; font-size: 1.1rem; color: var(--brand); }
.vital-card .vital-stats span { font-size: 0.7rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.04em; }
.vital-foot {
  margin-top: 1rem; padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Web & Marketing hero mock */
.wm-mock {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  padding: 1rem 2rem 3rem;
}
.wm-mock-browser {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(29, 49, 72, 0.18);
  border: 1px solid var(--line);
}
.wm-mock-body { padding: 1.1rem; display: flex; flex-direction: column; gap: 0.6rem; }
.wm-mock-hero {
  height: 90px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}
.wm-mock-grid { display: flex; gap: 0.5rem; }
.wm-mock-grid div {
  flex: 1; height: 50px;
  border-radius: 6px;
  background: linear-gradient(180deg, #F1F4F7, var(--bg-soft));
}
.wm-mock-cta {
  height: 14px; width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--ink), var(--ink-2));
  margin-top: 0.3rem;
}
.wm-mock-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(29, 49, 72, 0.18);
}
.wm-mock-card-1 {
  bottom: 18%; left: -1.5rem;
  transform: rotate(-4deg);
}
.wm-mock-card-2 {
  top: 14%; right: -1.5rem;
  transform: rotate(4deg);
  color: var(--brand);
}
.wm-mock-card-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.wm-mock-swatches {
  display: flex; gap: 4px;
  margin-top: 0.4rem;
}
.wm-mock-swatches span {
  width: 16px; height: 16px;
  border-radius: 4px;
}
.wm-mock-stat {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
  margin-top: 0.25rem;
}
.wm-mock-sparkline svg {
  width: 70px; height: 18px;
  margin-top: 0.2rem;
}

/* Solution hero image (real screenshot) */
.solution-hero-img {
  width: 100%;
  max-width: 437px;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(29, 49, 72, 0.18), 0 8px 20px rgba(29, 49, 72, 0.08);
  display: block;
  margin: 0 auto;
}

/* Featured (large) showcase row */
.showcase-feature {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.showcase-feature-copy h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}
.showcase-feature-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
.showcase-feature-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(29, 49, 72, 0.16);
  display: block;
}

/* Grid of supporting product screens */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.showcase-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
}
.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.showcase-card img {
  width: 100%;
  display: block;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}
.showcase-card-body { padding: 1.1rem 1.3rem 1.3rem; }
.showcase-card-body h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.showcase-card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Live-on-site showcase */
.section-live {
  background: linear-gradient(180deg, var(--bg-soft), white);
}
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: center;
}
.live-copy h2 { margin: 0.6rem 0 1rem; }
.live-copy p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.live-img img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 70px rgba(29, 49, 72, 0.2);
  display: block;
}

@media (max-width: 1024px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .showcase-feature, .live-grid { grid-template-columns: 1fr; gap: 2rem; }
  .showcase-grid { grid-template-columns: 1fr; }
}

/* SnapSign hero mock */
.snap-mock {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(29, 49, 72, 0.18);
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.85rem;
}
.snap-mock-header {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.92rem;
}
.snap-mock-name { font-weight: 700; color: var(--ink); }
.snap-mock-status {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; color: var(--brand-deep);
}
.snap-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.snap-mock-progress {
  height: 6px; border-radius: 999px;
  background: var(--bg-soft);
  overflow: hidden;
}
.snap-mock-progress-bar {
  width: 86%; height: 100%;
  background: linear-gradient(90deg, #3DD2C0, var(--brand));
  border-radius: 999px;
}
.snap-mock-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.snap-mock-list li {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink);
}
.snap-mock-list li em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}
.snap-mock-list li.done { color: var(--muted); }
.snap-mock-list li.done .snap-check {
  background: var(--brand);
  color: white;
}
.snap-mock-list li.active { color: var(--ink); font-weight: 600; }
.snap-mock-list li.active .snap-pen {
  background: var(--brand-soft);
  color: var(--brand-deep);
}
.snap-check, .snap-pen, .snap-empty {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 800;
}
.snap-empty {
  border: 1.5px dashed var(--line-strong);
}
.snap-mock-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--muted);
  padding-top: 0.4rem;
}
.snap-mock-cta {
  font-weight: 700; color: var(--brand-deep);
}

/* CTA card */
.section-cta { padding: 4rem 0 7rem; }
.cta-card {
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--brand-soft), white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  max-width: 760px;
}
.cta-card h2 { margin-bottom: 0.75rem; }
.cta-card p { color: var(--muted); margin-bottom: 1.5rem; max-width: 560px; margin-left: auto; margin-right: auto; }

@media (max-width: 960px) {
  .solution-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .problem-grid, .feature-grid, .audience-grid { grid-template-columns: 1fr; }
  .journey-grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   FLOATING CHAT LAUNCHER (talkfurther style)
   ========================================================= */
.chat-launcher {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 60;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.2rem 0.85rem 1rem;
  border: none; cursor: pointer;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--brand), var(--brand-deep));
  color: white;
  font-weight: 600; font-size: 0.92rem;
  box-shadow: 0 14px 30px rgba(14, 185, 166, 0.35), 0 4px 10px rgba(29, 49, 72, 0.1);
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease);
}
.chat-launcher:hover { transform: translateY(-2px); box-shadow: 0 20px 40px rgba(14, 185, 166, 0.45); }
.chat-launcher svg { width: 18px; height: 18px; }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 820ms var(--ease), transform 820ms var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  :root { --container: min(1200px, calc(100vw - 2rem)); }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-mocks { max-width: 100%; }

  /* Trust strip — pull out of absolute flow on mobile so it sits below the mocks */
  .trust-strip {
    position: static;
    width: auto;
    margin: 2rem auto 0;
    left: auto; right: auto;
  }

  /* VA mock — cancel the desktop negative offset that clears the trust strip */
  .hero-mock[data-mock="0"] { top: 0; }

  /* Give the stage enough room for the full VA mock height */
  .hero-mocks-stage { min-height: 460px; }
  .solution-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { height: 360px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .platform-stats { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0; pointer-events: none;
    transition: opacity 240ms var(--ease), transform 240ms var(--ease);
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a:not(.button) { padding: 0.7rem 1rem; }
  .site-nav .button-small { margin: 0.4rem 0 0; }

  /* Mobile dropdown — render inline */
  .nav-item { width: 100%; }
  .nav-dropdown,
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: none; /* blocked by default; enabled only when nav is open */
    min-width: 0;
    margin-top: 0.3rem;
    background: var(--bg-soft);
    backdrop-filter: none;
    border: 1px solid var(--line);
    box-shadow: none;
  }
  /* Only enable dropdown links once the nav is actually open */
  .site-nav.is-open .nav-dropdown { pointer-events: auto; }
  .site-nav .nav-dropdown a {
    text-align: left;
    align-items: flex-start;
  }
  .nav-item .caret { display: none; }

  /* Hero video — shift left so subject is centred on narrow screens */
  .hero-video { object-position: 30% center; }
}
@media (max-width: 640px) {
  .section { padding: 4.5rem 0; }
  .contact-form .row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .chat-launcher span { display: none; }
  .chat-launcher { padding: 0.85rem; }
}

/* ===== Sticky Scroll Showcase (Inside the Platform) ===== */
.scroll-showcase {
  position: relative;
  margin-top: 1.25rem;
}
.scroll-showcase-pin {
  position: sticky;
  top: 5.5rem;
  height: calc(100vh - 7rem);
  min-height: 560px;
  display: grid;
  grid-template-columns: 0.78fr 1.85fr;
  gap: 3rem;
  align-items: stretch;
  z-index: 2;
}
.scroll-showcase-left,
.scroll-showcase-right {
  position: relative;
  height: 100%;
}
.scroll-showcase-right {
  padding-left: 2rem;
}
.scroll-panel-stack,
.scroll-img-stack {
  position: relative;
  width: 100%;
  height: 100%;
}
.scroll-panel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.scroll-panel.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-panel-num {
  display: inline-block;
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--brand);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}
.scroll-panel h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--ink);
}
.scroll-panel p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
  max-width: 30rem;
}
.scroll-img {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.scroll-img.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-img img {
  width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 30px 70px -25px rgba(29, 49, 72, 0.28),
              0 8px 20px -10px rgba(29, 49, 72, 0.12);
}
.scroll-tracks {
  position: relative;
  margin-top: calc(-1 * (100vh - 7rem));
  pointer-events: none;
}
.scroll-tracks .scroll-track {
  height: 80vh;
}
.scroll-tracks .scroll-track:first-child { height: 60vh; }
.scroll-tracks .scroll-track:last-child { height: 60vh; }
@media (max-width: 900px) {
  /* Desktop sticky structure hidden — JS builds mobile pairs instead */
  .scroll-showcase-pin { display: none; }
  .scroll-tracks { display: none; }

  /* Mobile: stacked text + image pairs built by JS */
  .scroll-mobile-pairs {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
  }
  .scroll-mobile-pair {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
  }
  .scroll-mobile-pair .scroll-panel {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    width: 100%;
    max-width: 520px;
  }
  .scroll-mobile-pair .scroll-panel p { max-width: 100%; }
  .scroll-mobile-pair .scroll-img {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    width: 100%;
    justify-content: center;
  }
  .scroll-mobile-pair .scroll-img img { width: 100%; max-height: none; }
}
