/* === PRODUCTS INTRO — BENTO GRID === */
.typo-mobioffice .mo-snap-intro {
  min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--mo-near-black); position: relative; overflow: hidden;
  padding: 2rem 0 0; scroll-snap-align: start;
}

/* Centered Container */
.typo-mobioffice .mo-snap-intro-center {
  max-width: 900px; width: 100%; margin: 0 auto; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center; gap: 2.5rem; flex: 1;
  justify-content: center;
}
.typo-mobioffice .mo-snap-intro .section-header { margin-bottom: 0; width: 100%; }
.typo-mobioffice .mo-snap-intro .section-label { margin-bottom: 0.75rem; }
.typo-mobioffice .mo-snap-intro .section-title { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0; }

/* --- Bento Grid --- */
.typo-mobioffice .mo-bento-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; width: 100%;
}

/* Standard tile */
.typo-mobioffice .mo-bento-tile {
  background: var(--mo-surface); border: 1px solid var(--mo-border-subtle); border-radius: 8px;
  padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem;
  text-decoration: none; position: relative; overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Wide tile — spans 2 columns, horizontal layout */
.typo-mobioffice .mo-bento-tile--wide {
  grid-column: span 2; flex-direction: row; align-items: center; gap: 1rem;
}
.typo-mobioffice .mo-bento-tile--wide .mo-bento-content { flex: 1; }
.typo-mobioffice .mo-bento-tile--wide .mo-bento-arrow {
  color: var(--mo-text-muted); font-size: 0.7rem; transition: all 0.3s ease;
  opacity: 0; transform: translateX(-4px);
}
.typo-mobioffice .mo-bento-tile--wide:hover .mo-bento-arrow {
  opacity: 1; transform: translateX(0);
}

/* Tile icon */
.typo-mobioffice .mo-bento-icon {
  width: 36px; height: 36px; border-radius: 6px; display: flex;
  align-items: center; justify-content: center; font-size: 0.95rem;
  flex-shrink: 0; transition: all 0.35s ease;
}

/* Tile text */
.typo-mobioffice .mo-bento-name {
  font-family: var(--typo-display); font-size: 0.8rem; font-weight: 700;
  color: var(--mo-white); letter-spacing: -0.02em; margin: 0; line-height: 1.2;
}
.typo-mobioffice .mo-bento-tagline {
  font-family: var(--typo-body); font-size: 0.65rem; color: var(--mo-text-muted);
  line-height: 1.4; margin: 0;
}

/* Ambient glow on hover */
.typo-mobioffice .mo-bento-tile::before {
  content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity 0.4s ease;
  pointer-events: none; border-radius: inherit;
}
.typo-mobioffice .mo-bento-tile:hover::before { opacity: 1; }
.typo-mobioffice .mo-bento-tile:hover {
  border-color: var(--tile-accent-med); transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--tile-accent-glow);
}
.typo-mobioffice .mo-bento-tile:hover .mo-bento-icon { background: var(--tile-accent-soft); }

/* Accent palette for bento tiles */
.typo-mobioffice .mo-bento-tile[data-accent="purple"]  { --tile-accent: #7B2FF2; --tile-accent-soft: rgba(123,47,242,0.12); --tile-accent-med: rgba(123,47,242,0.3); --tile-accent-glow: rgba(123,47,242,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="green"]   { --tile-accent: #22c55e; --tile-accent-soft: rgba(34,197,94,0.12); --tile-accent-med: rgba(34,197,94,0.3); --tile-accent-glow: rgba(34,197,94,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="gold"]    { --tile-accent: #eab308; --tile-accent-soft: rgba(234,179,8,0.12); --tile-accent-med: rgba(234,179,8,0.3); --tile-accent-glow: rgba(234,179,8,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="cyan"]    { --tile-accent: #06b6d4; --tile-accent-soft: rgba(6,182,212,0.12); --tile-accent-med: rgba(6,182,212,0.3); --tile-accent-glow: rgba(6,182,212,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="orange"]  { --tile-accent: #f97316; --tile-accent-soft: rgba(249,115,22,0.12); --tile-accent-med: rgba(249,115,22,0.3); --tile-accent-glow: rgba(249,115,22,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="pink"]    { --tile-accent: #ec4899; --tile-accent-soft: rgba(236,72,153,0.12); --tile-accent-med: rgba(236,72,153,0.3); --tile-accent-glow: rgba(236,72,153,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="blue"]    { --tile-accent: #3b82f6; --tile-accent-soft: rgba(59,130,246,0.12); --tile-accent-med: rgba(59,130,246,0.3); --tile-accent-glow: rgba(59,130,246,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="teal"]    { --tile-accent: #14b8a6; --tile-accent-soft: rgba(20,184,166,0.12); --tile-accent-med: rgba(20,184,166,0.3); --tile-accent-glow: rgba(20,184,166,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="red"]     { --tile-accent: #ef4444; --tile-accent-soft: rgba(239,68,68,0.12); --tile-accent-med: rgba(239,68,68,0.3); --tile-accent-glow: rgba(239,68,68,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="yellow"]  { --tile-accent: #facc15; --tile-accent-soft: rgba(250,204,21,0.12); --tile-accent-med: rgba(250,204,21,0.3); --tile-accent-glow: rgba(250,204,21,0.15); }
.typo-mobioffice .mo-bento-tile[data-accent="whatsapp"]{ --tile-accent: #25D366; --tile-accent-soft: rgba(37,211,102,0.12); --tile-accent-med: rgba(37,211,102,0.3); --tile-accent-glow: rgba(37,211,102,0.15); }

.typo-mobioffice .mo-bento-icon { color: var(--tile-accent); background: var(--tile-accent-soft); border: 1px solid var(--tile-accent-med); }

/* --- Stats Strip (centered) --- */
.typo-mobioffice .mo-intro-stats {
  display: flex; gap: 3rem; padding: 1.25rem 0; justify-content: center;
  border-top: 1px solid var(--mo-border-subtle);
  width: 100%;
}
.typo-mobioffice .mo-intro-stat { display: flex; flex-direction: column; gap: 0.2rem; align-items: center; }
.typo-mobioffice .mo-intro-stat-number {
  font-family: var(--typo-display); font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700;
  color: var(--mo-white); letter-spacing: -0.04em; line-height: 1;
}
.typo-mobioffice .mo-intro-stat-label {
  font-family: var(--typo-mono); font-size: 0.6rem; color: var(--mo-text-muted);
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* --- Scroll Hint --- */
.typo-mobioffice .mo-scroll-hint { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 1.25rem 0; color: var(--mo-text-muted); font-family: var(--typo-mono); font-size: 0.65rem; letter-spacing: 0.05em; animation: mo-bounce-hint 2s ease-in-out infinite; }
.typo-mobioffice .mo-scroll-hint i { font-size: 0.9rem; color: var(--mo-purple); }
@keyframes mo-bounce-hint { 0%, 100% { transform: translateY(0); opacity: 0.5; } 50% { transform: translateY(6px); opacity: 1; } }

/* === PRODUCT CARDS SECTION WRAPPER === */
.typo-mobioffice .mo-cards-section { position: relative; }

/* --- Side Index --- */
.typo-mobioffice .mo-card-index {
  position: absolute; left: 0; top: 0; height: 100%; width: 56px; z-index: 50;
  pointer-events: none;
}
.typo-mobioffice .mo-card-index-inner {
  position: sticky; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0;
  padding: 1rem 0; pointer-events: auto;
}
.typo-mobioffice .mo-card-index-label {
  font-family: var(--typo-mono); font-size: 0.5rem; color: var(--mo-text-muted);
  letter-spacing: 0.05em; writing-mode: vertical-rl; text-orientation: mixed;
  transform: rotate(180deg); margin-bottom: 1rem; opacity: 0.5;
}
.typo-mobioffice .mo-card-index-item {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; text-decoration: none;
  color: var(--mo-text-muted); font-size: 0.7rem;
  border-left: 2px solid transparent;
  transition: all 0.3s ease; position: relative; opacity: 0.4;
}
.typo-mobioffice .mo-card-index-item span {
  display: block; position: absolute; left: 44px; top: 50%; transform: translateY(-50%);
  font-family: var(--typo-display); font-size: 0.65rem; font-weight: 600;
  color: var(--mo-text-secondary); white-space: nowrap; letter-spacing: 0.02em;
  background: var(--mo-surface); padding: 0.3rem 0.6rem;
  border: 1px solid var(--mo-border-subtle); pointer-events: none;
  opacity: 0; transition: opacity 0.2s ease;
}
.typo-mobioffice .mo-card-index-item:hover { opacity: 0.8; }
.typo-mobioffice .mo-card-index-item:hover span { opacity: 1; }

/* Active index item */
.typo-mobioffice .mo-card-index-item.active { opacity: 1; border-left-color: currentColor; }
.typo-mobioffice .mo-card-index-item.active span { opacity: 1; }

/* Accent colors for index items */
.typo-mobioffice .mo-card-index-item[data-accent="purple"].active  { color: #7B2FF2; }
.typo-mobioffice .mo-card-index-item[data-accent="green"].active   { color: #22c55e; }
.typo-mobioffice .mo-card-index-item[data-accent="gold"].active    { color: #eab308; }
.typo-mobioffice .mo-card-index-item[data-accent="cyan"].active    { color: #06b6d4; }
.typo-mobioffice .mo-card-index-item[data-accent="orange"].active  { color: #f97316; }
.typo-mobioffice .mo-card-index-item[data-accent="pink"].active    { color: #ec4899; }
.typo-mobioffice .mo-card-index-item[data-accent="blue"].active    { color: #3b82f6; }
.typo-mobioffice .mo-card-index-item[data-accent="teal"].active    { color: #14b8a6; }
.typo-mobioffice .mo-card-index-item[data-accent="red"].active     { color: #ef4444; }
.typo-mobioffice .mo-card-index-item[data-accent="yellow"].active  { color: #facc15; }
.typo-mobioffice .mo-card-index-item[data-accent="whatsapp"].active{ color: #25D366; }

/* --- Snap Cards Container --- */
.typo-mobioffice .mo-snap-cards { display: contents; }

/* --- Accent Palettes --- */
.typo-mobioffice .mo-card[data-accent="purple"]  { --card-accent: #7B2FF2; --card-accent-glow: rgba(123, 47, 242, 0.35); --card-accent-soft: rgba(123, 47, 242, 0.08); --card-accent-medium: rgba(123, 47, 242, 0.18); }
.typo-mobioffice .mo-card[data-accent="green"]   { --card-accent: #22c55e; --card-accent-glow: rgba(34, 197, 94, 0.35); --card-accent-soft: rgba(34, 197, 94, 0.08); --card-accent-medium: rgba(34, 197, 94, 0.18); }
.typo-mobioffice .mo-card[data-accent="gold"]    { --card-accent: #eab308; --card-accent-glow: rgba(234, 179, 8, 0.35); --card-accent-soft: rgba(234, 179, 8, 0.08); --card-accent-medium: rgba(234, 179, 8, 0.18); }
.typo-mobioffice .mo-card[data-accent="cyan"]    { --card-accent: #06b6d4; --card-accent-glow: rgba(6, 182, 212, 0.35); --card-accent-soft: rgba(6, 182, 212, 0.08); --card-accent-medium: rgba(6, 182, 212, 0.18); }
.typo-mobioffice .mo-card[data-accent="orange"]  { --card-accent: #f97316; --card-accent-glow: rgba(249, 115, 22, 0.35); --card-accent-soft: rgba(249, 115, 22, 0.08); --card-accent-medium: rgba(249, 115, 22, 0.18); }
.typo-mobioffice .mo-card[data-accent="pink"]    { --card-accent: #ec4899; --card-accent-glow: rgba(236, 72, 153, 0.35); --card-accent-soft: rgba(236, 72, 153, 0.08); --card-accent-medium: rgba(236, 72, 153, 0.18); }
.typo-mobioffice .mo-card[data-accent="blue"]    { --card-accent: #3b82f6; --card-accent-glow: rgba(59, 130, 246, 0.35); --card-accent-soft: rgba(59, 130, 246, 0.08); --card-accent-medium: rgba(59, 130, 246, 0.18); }
.typo-mobioffice .mo-card[data-accent="teal"]    { --card-accent: #14b8a6; --card-accent-glow: rgba(20, 184, 166, 0.35); --card-accent-soft: rgba(20, 184, 166, 0.08); --card-accent-medium: rgba(20, 184, 166, 0.18); }
.typo-mobioffice .mo-card[data-accent="red"]     { --card-accent: #ef4444; --card-accent-glow: rgba(239, 68, 68, 0.35); --card-accent-soft: rgba(239, 68, 68, 0.08); --card-accent-medium: rgba(239, 68, 68, 0.18); }
.typo-mobioffice .mo-card[data-accent="yellow"]  { --card-accent: #facc15; --card-accent-glow: rgba(250, 204, 21, 0.35); --card-accent-soft: rgba(250, 204, 21, 0.08); --card-accent-medium: rgba(250, 204, 21, 0.18); }
.typo-mobioffice .mo-card[data-accent="whatsapp"]{ --card-accent: #25D366; --card-accent-glow: rgba(37, 211, 102, 0.35); --card-accent-soft: rgba(37, 211, 102, 0.08); --card-accent-medium: rgba(37, 211, 102, 0.18); }

/* --- Individual Card --- */
.typo-mobioffice .mo-card {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--mo-border-subtle);
  background: var(--mo-black);
  opacity: 0.4;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  scroll-snap-align: start;
}

.typo-mobioffice .mo-card.mo-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Background HQ Watermark --- */
.typo-mobioffice .mo-card-bg-number {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  font-family: var(--typo-display);
  font-size: clamp(14rem, 30vw, 28rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--card-accent);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.6s ease;
}

.typo-mobioffice .mo-card:hover .mo-card-bg-number { opacity: 0.10; }

/* --- Card Inner --- */
.typo-mobioffice .mo-card-inner { position: relative; z-index: 2; max-width: 580px; display: flex; flex-direction: column; gap: 0; }

/* --- Icon --- */
.typo-mobioffice .mo-card-icon-wrap {
  width: 56px; height: 56px; display: flex; align-items: center; justify-content: center;
  background: var(--card-accent-soft); border: 2px solid var(--card-accent-medium); border-radius: 4px;
  color: var(--card-accent); font-size: 1.5rem; margin-bottom: 0.75rem;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 0 0 var(--card-accent-glow);
}

.typo-mobioffice .mo-card:hover .mo-card-icon-wrap {
  background: var(--card-accent); color: var(--mo-black); border-color: var(--card-accent);
  box-shadow: 0 0 40px var(--card-accent-glow); transform: scale(1.08);
}

/* --- Module Tag (hidden) --- */
.typo-mobioffice .mo-card-tag { display: none; }

/* --- Title --- */
.typo-mobioffice .mo-card-title {
  font-family: var(--typo-display); font-size: clamp(2.75rem, 5.5vw, 3.75rem); font-weight: 700;
  color: var(--mo-white); line-height: 0.95; letter-spacing: -0.05em; margin: 0 0 1rem 0;
}
.typo-mobioffice .mo-card-title span { color: var(--card-accent); display: block; }

/* --- Description --- */
.typo-mobioffice .mo-card-desc {
  font-family: var(--typo-body); font-size: 1.05rem; line-height: 1.7;
  color: var(--mo-text-secondary); max-width: 460px; margin: 0 0 1.25rem 0;
}

/* --- Feature Pills --- */
.typo-mobioffice .mo-card-features { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.75rem; }
.typo-mobioffice .mo-card-features span {
  font-family: var(--typo-body); font-size: 0.8rem; color: var(--mo-text); letter-spacing: 0.01em;
  padding: 0.45rem 1rem; background: var(--mo-surface); border: 1px solid var(--mo-border-subtle);
  border-radius: 2px; display: inline-flex; align-items: center; gap: 0.45rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.typo-mobioffice .mo-card-features span i { color: var(--card-accent); font-size: 0.65rem; }
.typo-mobioffice .mo-card:hover .mo-card-features span { border-color: var(--card-accent-medium); background: var(--card-accent-soft); }

/* --- Card Actions Row --- */
.typo-mobioffice .mo-card-actions {
  display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 1rem;
}

/* --- CTA Link + Demo Row --- */
.typo-mobioffice .mo-card-cta {
  font-family: var(--typo-display); font-size: 0.85rem; font-weight: 700; color: var(--card-accent);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 0;
  border-bottom: 2px solid transparent; transition: border-color 0.3s ease, gap 0.3s ease;
}
.typo-mobioffice .mo-card-cta:hover { border-bottom-color: var(--card-accent); gap: 1rem; }

.typo-mobioffice .mo-card-demo {
  font-family: var(--typo-display); font-size: 0.8rem; font-weight: 600; color: var(--mo-text-muted);
  text-decoration: none; text-transform: uppercase; letter-spacing: 0.06em;
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.2rem; border: 1px solid var(--mo-border); border-radius: 2px;
  transition: all 0.3s ease; cursor: pointer;
}
.typo-mobioffice .mo-card-demo:hover { border-color: var(--card-accent); color: var(--card-accent); background: var(--card-accent-soft); }

/* --- Decorative Line --- */
.typo-mobioffice .mo-card-deco-line {
  position: absolute; left: 0; bottom: 0; width: 0; height: 3px;
  background: var(--card-accent); transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 12px var(--card-accent-glow);
}
.typo-mobioffice .mo-card.mo-visible .mo-card-deco-line { width: 100%; }

/* --- Ambient Glow --- */
.typo-mobioffice .mo-card::before {
  content: ''; position: absolute; top: -50%; left: -20%; width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, var(--card-accent-glow), transparent 70%);
  opacity: 0.3; transition: opacity 0.6s ease; pointer-events: none; z-index: 0;
}
.typo-mobioffice .mo-card:hover::before { opacity: 0.5; }

/* === TESTIMONIALS — FULL-SCREEN CARDS WITH SIDE INDEX === */
.typo-mobioffice .mo-testimonials-section { position: relative; }

/* --- Testimonial Side Index --- */
.typo-mobioffice .mo-testimonial-index {
  position: absolute; left: 0; top: 0; height: 100%; width: 56px; z-index: 50;
  pointer-events: none;
}
.typo-mobioffice .mo-testimonial-index-inner {
  position: sticky; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem 0; pointer-events: auto;
}
.typo-mobioffice .mo-testimonial-index-inner .mo-card-index-label {
  font-family: var(--typo-mono); font-size: 0.5rem; color: var(--mo-text-muted);
  writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: 0.06em;
  margin-bottom: 0.5rem; text-transform: uppercase;
}
.typo-mobioffice .mo-testimonial-index-item {
  width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--mo-surface); border: 1px solid var(--mo-border-subtle);
  text-decoration: none; position: relative;
  transition: all 0.3s ease;
}
.typo-mobioffice .mo-ti-initials {
  font-family: var(--typo-display); font-size: 0.5rem; font-weight: 700;
  color: var(--mo-text-muted); letter-spacing: 0.02em;
}
.typo-mobioffice .mo-testimonial-index-item span:last-child {
  display: block; position: absolute; left: 44px; top: 50%; transform: translateY(-50%);
  font-family: var(--typo-display); font-size: 0.6rem; font-weight: 600;
  color: var(--mo-text-secondary); white-space: nowrap; letter-spacing: 0.02em;
  background: var(--mo-surface); padding: 0.25rem 0.5rem;
  border: 1px solid var(--mo-border-subtle); pointer-events: none;
  opacity: 0; transition: opacity 0.2s ease;
}
.typo-mobioffice .mo-testimonial-index-item:hover span:last-child { opacity: 1; }
.typo-mobioffice .mo-testimonial-index-item:hover {
  border-color: var(--mo-gold); background: var(--mo-surface-2);
}
.typo-mobioffice .mo-testimonial-index-item:hover .mo-ti-initials { color: var(--mo-gold); }
.typo-mobioffice .mo-testimonial-index-item.active {
  border-color: var(--mo-gold); background: var(--mo-gold);
}
.typo-mobioffice .mo-testimonial-index-item.active .mo-ti-initials { color: var(--mo-black); }

/* --- Client Logo Wall (Bento Grid) --- */
.typo-mobioffice .mo-client-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem;
  width: 100%; margin-top: 2rem;
}
.typo-mobioffice .mo-client-tile {
  background: var(--mo-surface); border: 1px solid var(--mo-border-subtle); border-radius: 6px;
  padding: 1.1rem 1.25rem; display: flex; align-items: center; justify-content: center;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.typo-mobioffice .mo-client-tile:hover {
  border-color: var(--mo-gold); background: var(--mo-surface-2);
  transform: translateY(-2px); box-shadow: 0 4px 20px rgba(245, 197, 24, 0.08);
}
.typo-mobioffice .mo-client-tile img {
  height: 28px; width: auto; min-width: 0; max-width: 100%;
  -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); opacity: 0.6;
  transition: opacity 0.3s ease;
}
.typo-mobioffice .mo-client-tile:hover img { opacity: 1; }

/* --- Testimonial Cards Container --- */
.typo-mobioffice .mo-testimonial-cards { display: contents; }

/* --- Single Testimonial Card (full viewport, split layout) --- */
.typo-mobioffice .mo-testimonial-card {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; background: var(--mo-near-black); scroll-snap-align: start;
}

/* Intro card — full-width centered content, no split */
.typo-mobioffice .mo-testimonial-intro-card {
  display: flex; align-items: center; justify-content: center; padding: 4rem 3rem;
}
.typo-mobioffice .mo-testimonial-card-inner {
  position: relative; z-index: 2; display: flex; flex-direction: column;
  align-items: flex-start; max-width: 900px; width: 100%; padding: 0 2rem;
}

/* --- Photo Half --- */
.typo-mobioffice .mo-testimonial-photo {
  position: relative; overflow: hidden;
  padding: 2.5rem; display: flex; align-items: center; justify-content: center;
}
.typo-mobioffice .mo-testimonial-photo picture {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
}
.typo-mobioffice .mo-testimonial-photo img {
  width: auto; max-width: 100%; max-height: 60vh; max-height: 60dvh; object-fit: contain;
  border-radius: 6px; -webkit-filter: grayscale(15%); filter: grayscale(15%);
  transition: filter 0.8s ease, transform 0.8s ease;
  margin: auto;
}
.typo-mobioffice .mo-testimonial-card:hover .mo-testimonial-photo img {
  -webkit-filter: grayscale(0%); filter: grayscale(0%); transform: scale(1.03);
}

/* --- Content Half --- */
.typo-mobioffice .mo-testimonial-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem 4rem 4rem 3rem; position: relative;
}

/* Stars */
.typo-mobioffice .mo-testimonial-stars { display: flex; gap: 0.25rem; margin-bottom: 1.25rem; }
.typo-mobioffice .mo-testimonial-stars i { color: var(--mo-gold); font-size: 0.85rem; }

/* Quote */
.typo-mobioffice .mo-testimonial-card-quote {
  font-family: var(--typo-body); font-size: clamp(1.05rem, 1.8vw, 1.35rem); line-height: 1.75;
  color: var(--mo-text-secondary); font-style: normal; margin: 0 0 2rem;
  border: none; padding: 0; max-width: 520px;
}

/* Attribution */
.typo-mobioffice .mo-testimonial-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.typo-mobioffice .mo-testimonial-name {
  font-family: var(--typo-display); font-weight: 700; font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--mo-white); letter-spacing: -0.02em; margin: 0;
}
.typo-mobioffice .mo-testimonial-role {
  font-family: var(--typo-mono); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--mo-gold); margin: 0;
}
.typo-mobioffice .mo-testimonial-company {
  font-family: var(--typo-body); font-size: 0.8rem; color: var(--mo-text-muted); margin: 0;
}

/* Decorative quote mark */
.typo-mobioffice .mo-testimonial-content::before {
  content: '\201C'; position: absolute; top: 2.5rem; left: 3rem;
  font-family: var(--typo-display); font-size: 6rem; line-height: 1;
  color: var(--mo-purple); opacity: 0.12; pointer-events: none;
}

/* === CTA + FOOTER GROUP === */
.typo-mobioffice .mo-bottom-group {
  min-height: calc(100vh - 62px);
  display: flex;
  flex-direction: column;
}

/* === CTA === */
.typo-mobioffice .cta-section {
  background: var(--mo-surface); padding: 4rem 2rem; position: relative; overflow: hidden;
  border-top: 3px solid var(--mo-purple); text-align: center;
  display: flex; align-items: center; justify-content: center; flex: 1;
}
.typo-mobioffice .cta-section::before {
  content: 'HQ'; position: absolute; top: 50%; right: 2%; transform: translateY(-50%);
  font-family: var(--typo-display); font-size: clamp(14rem, 28vw, 24rem); font-weight: 700;
  letter-spacing: -0.06em; color: var(--mo-purple); opacity: 0.14; line-height: 1; pointer-events: none; z-index: 0;
}
.typo-mobioffice .cta-container { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.typo-mobioffice .cta-title { font-family: var(--typo-display); font-size: clamp(2.75rem, 6vw, 4rem); font-weight: 700; color: var(--mo-white); letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 1.5rem; opacity: 0; transform: translateY(25px); }
.typo-mobioffice .cta-title.mo-visible { animation: mo-fadeSlideUp 0.7s ease-out forwards; }
.typo-mobioffice .cta-subtitle { font-family: var(--typo-body); font-size: 1.1rem; color: var(--mo-text-secondary); font-weight: 400; margin-bottom: 2.5rem; opacity: 0; }
.typo-mobioffice .cta-subtitle.mo-visible { animation: mo-fadeSlideUp 0.7s ease-out 0.15s forwards; }
.typo-mobioffice .cta-buttons { display: flex; justify-content: center; gap: 1rem; opacity: 0; }
.typo-mobioffice .cta-buttons.mo-visible { animation: mo-fadeSlideUp 0.7s ease-out 0.3s forwards; }
.typo-mobioffice .cta-buttons .btn { border-radius: 2px; font-family: var(--typo-display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.8rem; }
.typo-mobioffice .cta-buttons .btn-primary { background: var(--mo-purple); color: white; box-shadow: 0 4px 20px var(--mo-purple-glow); }
.typo-mobioffice .cta-buttons .btn-primary:hover { background: var(--mo-purple-light); box-shadow: 0 8px 40px var(--mo-purple-glow-strong); }
.typo-mobioffice .cta-buttons .btn-outline { border: 2px solid var(--mo-border); color: var(--mo-text-secondary); }
.typo-mobioffice .cta-buttons .btn-outline:hover { border-color: var(--mo-purple); color: var(--mo-purple-light); }

/* === FOOTER === */
.typo-mobioffice .landing-footer { background: var(--mo-black); border-top: 2px solid var(--mo-purple); color: var(--mo-text-muted); padding: 4rem 2rem 2rem; }
.typo-mobioffice .footer-container { max-width: 1200px; margin: 0 auto; }
.typo-mobioffice .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 3.5rem; margin-bottom: 3rem; }
.typo-mobioffice .footer-brand { max-width: 300px; }
.typo-mobioffice .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.typo-mobioffice .footer-logo-img { height: 40px; width: auto; }
.typo-mobioffice .footer-logo-icon { width: 40px; height: 40px; border-radius: 2px; background: var(--mo-purple); display: flex; align-items: center; justify-content: center; color: white; }
.typo-mobioffice .footer-logo-icon i { display: none; }
.typo-mobioffice .footer-logo-icon::after { content: 'HQ'; font-family: var(--typo-display); font-weight: 700; font-size: 0.7rem; color: white; letter-spacing: -0.03em; }
.typo-mobioffice .footer-logo-text { font-family: var(--typo-display); font-weight: 700; letter-spacing: -0.04em; color: var(--mo-white); font-size: 1.2rem; }
.typo-mobioffice .footer-description { color: var(--mo-text-secondary); font-family: var(--typo-body); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.typo-mobioffice .footer-social { display: flex; gap: 0.75rem; }
.typo-mobioffice .footer-social a { width: 36px; height: 36px; border-radius: 2px; background: var(--mo-surface); border: 1px solid var(--mo-border-subtle); display: flex; align-items: center; justify-content: center; color: var(--mo-text-muted); transition: all 0.2s ease; }
.typo-mobioffice .footer-social a:hover { background: var(--mo-purple); color: var(--mo-gold); border-color: var(--mo-purple); }
.typo-mobioffice .footer-column h4 { font-family: var(--typo-display); color: var(--mo-text-secondary); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.75rem; margin-bottom: 1rem; }
.typo-mobioffice .footer-links li { margin-bottom: 0.5rem; }
.typo-mobioffice .footer-links a { color: var(--mo-text-secondary); font-family: var(--typo-body); font-size: 0.85rem; transition: color 0.2s ease; }
.typo-mobioffice .footer-links a:hover { color: var(--mo-gold); }
.typo-mobioffice .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--mo-border-subtle); color: var(--mo-text-muted); font-size: 0.875rem; }
.typo-mobioffice .footer-legal { display: flex; gap: 1.5rem; }
.typo-mobioffice .footer-legal a { color: var(--mo-text-muted); transition: color 0.2s ease; }
.typo-mobioffice .footer-legal a:hover { color: var(--mo-gold); }

/* === OVERSIZED SECTION NUMBERS === */
.typo-mobioffice .mo-section-number {
  font-family: var(--typo-display); font-size: clamp(6rem, 12vw, 10rem); font-weight: 700;
  color: var(--mo-purple); opacity: 0; position: absolute; top: -2.5rem; left: -1rem;
  line-height: 1; pointer-events: none; letter-spacing: -0.04em; transition: opacity 0.8s ease;
}
.typo-mobioffice .mo-section-number.mo-visible { opacity: 0.15; }

/* === GRID BACKGROUND === */
.typo-mobioffice .mo-grid-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--mo-border-subtle) 1px, transparent 1px), linear-gradient(90deg, var(--mo-border-subtle) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.3; pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 60%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 60%);
  animation: mo-gridFade 2s ease-out 0.5s both;
}

/* === ANIMATIONS === */
@keyframes mo-fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes mo-fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes mo-scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes mo-slideFromLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes mo-gridFade { from { opacity: 0; } to { opacity: 0.3; } }

/* === DEMO MODAL === */
.mo-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.8); backdrop-filter: blur(6px);
  align-items: center; justify-content: center; padding: 1rem;
}
.mo-modal-overlay.active { display: flex; animation: mo-fadeIn 0.25s ease-out; }

.mo-modal {
  position: relative; width: 100%; max-width: 480px; max-height: 90vh; overflow-y: auto;
  background: #18181b; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6); animation: mo-scaleIn 0.3s ease-out;
  padding: 2rem;
}

.mo-modal-close {
  position: absolute; top: 1rem; right: 1rem; background: none; border: none;
  color: #71717a; font-size: 1.5rem; cursor: pointer; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center; border-radius: 50%;
  transition: all 0.2s ease;
}
.mo-modal-close:hover { background: rgba(255, 255, 255, 0.1); color: white; }

.mo-modal-header { margin-bottom: 1.5rem; }
.mo-modal-header h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: white; margin: 0; }
.mo-modal-header p { color: #a1a1aa; margin: 0.5rem 0 0; font-size: 0.9rem; }

.mo-form { display: flex; flex-direction: column; gap: 1rem; }
.mo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mo-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.mo-form-group label { font-size: 0.8rem; font-weight: 500; color: #d4d4d8; }

.mo-form-group input,
.mo-form-group select,
.mo-form-group textarea {
  width: 100%; padding: 0.6rem 0.9rem; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(0, 0, 0, 0.5);
  color: white; font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s ease;
  outline: none;
}
.mo-form-group input::placeholder,
.mo-form-group textarea::placeholder { color: #52525b; }
.mo-form-group input:focus,
.mo-form-group select:focus,
.mo-form-group textarea:focus { border-color: #7B2FF2; box-shadow: 0 0 0 2px rgba(123, 47, 242, 0.2); }
.mo-form-group textarea { resize: vertical; min-height: 60px; }

.mo-form-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2371717a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; padding-right: 2rem; }
.mo-form-group select option { background: #18181b; color: white; }

.mo-phone-row { display: flex; gap: 0.5rem; }
.mo-phone-row select { width: 7rem; flex-shrink: 0; }
.mo-phone-row input { flex: 1; }

.mo-form-submit {
  margin-top: 0.5rem; width: 100%; padding: 0.75rem; border: none; border-radius: 8px;
  background: #7B2FF2; color: white; font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease;
}
.mo-form-submit:hover { background: #9B59F6; }
.mo-form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* --- Success State --- */
.mo-modal-success { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 2rem 0; }
.mo-success-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(34, 197, 94, 0.15); color: #22c55e; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; margin-bottom: 1.5rem; }
.mo-modal-success h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; color: white; margin: 0; }
.mo-modal-success p { color: #a1a1aa; margin: 0.75rem 0 0; font-size: 0.9rem; max-width: 300px; }
.mo-form-close-btn {
  margin-top: 2rem; padding: 0.6rem 2rem; border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.05);
  color: white; font-weight: 500; cursor: pointer; transition: background 0.2s ease;
}
.mo-form-close-btn:hover { background: rgba(255, 255, 255, 0.1); }

/* === RESPONSIVE — HERO HQ WATERMARK < 1080px === */
@media (max-width: 1080px) {
  .typo-mobioffice .hero-section::before { top: 8%; transform: none; font-size: clamp(12rem, 25vw, 22rem); }
}

/* === RESPONSIVE — TABLET === */
@media (max-width: 1024px) {
  /* Nav */
  .typo-mobioffice .landing-nav { padding: 0.75rem 1.5rem; }
  .typo-mobioffice .landing-nav-links { gap: 1.25rem; }
  .typo-mobioffice .landing-nav-cta .btn-outline { display: none; }

  /* Hero */
  .typo-mobioffice .hero-container { margin-left: 3rem; }

  /* Products intro */
  .typo-mobioffice .mo-snap-intro-center { padding: 0 1.5rem; }
  .typo-mobioffice .mo-bento-grid { grid-template-columns: repeat(3, 1fr); }
  .typo-mobioffice .mo-bento-tile--wide { grid-column: span 3; }

  /* Cards */
  .typo-mobioffice .mo-card-inner { max-width: 540px; }

  /* Client grid — 3 cols on tablet */
  .typo-mobioffice .mo-client-grid { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials — slightly reduce content padding on tablet */
  .typo-mobioffice .mo-testimonial-content { padding: 3rem 2.5rem 3rem 2rem; }

  /* Footer */
  .typo-mobioffice .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2rem; }
}

/* === RESPONSIVE — MOBILE === */
@media (max-width: 768px) {
  /* Nav */
  .typo-mobioffice .landing-nav { padding: 0.6rem 1rem; }
  .typo-mobioffice .landing-nav-links { display: none; }
  .typo-mobioffice .landing-logo-img { height: 36px; }
  .typo-mobioffice .landing-nav-cta .btn { font-size: 0.65rem; padding: 0.6rem 0.8rem; }

  /* Hero */
  .typo-mobioffice .hero-section { padding: 5rem 1.25rem 3rem; min-height: calc(100vh - 54px); }
  .typo-mobioffice .hero-section::before { font-size: clamp(8rem, 22vw, 14rem); right: 4%; top: 4%; transform: none; opacity: 0.10; }
  .typo-mobioffice .hero-container { margin-left: 1rem; max-width: 100%; }
  .typo-mobioffice .hero-title { font-size: clamp(2.25rem, 9vw, 3.5rem); margin-bottom: 1.25rem; }
  .typo-mobioffice .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
  .typo-mobioffice .hero-cta { flex-direction: column; gap: 0.75rem; }
  .typo-mobioffice .hero-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .typo-mobioffice .mo-logo-ticker-wrap { margin: 0 -1rem; }
  .typo-mobioffice .mo-ticker-logo { height: 28px; }

  /* Products intro */
  .typo-mobioffice .mo-snap-intro { min-height: auto; padding: 3rem 0 0; }
  .typo-mobioffice .mo-snap-intro-center { padding: 0 1.25rem; gap: 1.5rem; }
  .typo-mobioffice .mo-snap-intro .section-title { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  .typo-mobioffice .mo-bento-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .typo-mobioffice .mo-bento-tile--wide { grid-column: span 2; }
  .typo-mobioffice .mo-bento-tile { padding: 1rem; }
  .typo-mobioffice .mo-bento-icon { width: 32px; height: 32px; font-size: 0.8rem; }
  .typo-mobioffice .mo-bento-name { font-size: 0.7rem; }
  .typo-mobioffice .mo-bento-tagline { font-size: 0.6rem; }
  .typo-mobioffice .mo-intro-stats { gap: 2rem; }
  .typo-mobioffice .mo-intro-stat-number { font-size: clamp(1.25rem, 5vw, 1.75rem); }

  /* Card Index — hide on mobile */
  .typo-mobioffice .mo-card-index { display: none; }

  /* Product Cards */
  .typo-mobioffice .mo-card { min-height: 100vh; min-height: 100dvh; padding: 2.5rem 1.25rem; }
  .typo-mobioffice .mo-card-inner { max-width: 100%; gap: 1.25rem; }
  .typo-mobioffice .mo-card-bg-number { font-size: clamp(6rem, 22vw, 12rem); right: -3%; opacity: 0.04; }
  .typo-mobioffice .mo-card-icon-wrap { width: 44px; height: 44px; font-size: 1.2rem; margin-bottom: 0.5rem; }
  .typo-mobioffice .mo-card-tag { margin-bottom: 0.75rem; }
  .typo-mobioffice .mo-card-title { font-size: clamp(2rem, 8vw, 2.75rem); margin-bottom: 0.75rem; }
  .typo-mobioffice .mo-card-desc { font-size: 0.95rem; max-width: 100%; }
  .typo-mobioffice .mo-card-features { gap: 0.4rem; }
  .typo-mobioffice .mo-card-features span { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
  .typo-mobioffice .mo-card-actions { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .typo-mobioffice .mo-card-cta { font-size: 0.8rem; }
  .typo-mobioffice .mo-card-demo { font-size: 0.75rem; }

  /* Client grid — 3 cols on mobile */
  .typo-mobioffice .mo-client-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
  .typo-mobioffice .mo-client-tile { padding: 0.7rem 0.85rem; }
  .typo-mobioffice .mo-client-tile img { height: 20px; }

  /* Testimonials — hide index, stack split vertically */
  .typo-mobioffice .mo-testimonial-index { display: none; }
  .typo-mobioffice .mo-testimonial-card { grid-template-columns: 1fr; grid-template-rows: 45vh 1fr; min-height: auto; }
  .typo-mobioffice .mo-testimonial-photo { padding: 1.25rem; }
  .typo-mobioffice .mo-testimonial-content { padding: 2rem 1.25rem; }
  .typo-mobioffice .mo-testimonial-content::before { top: 1rem; left: 1.25rem; font-size: 4rem; }
  .typo-mobioffice .mo-testimonial-intro-card { padding: 3rem 1.25rem; min-height: 60vh; }

  /* CTA */
  .typo-mobioffice .cta-section { padding: 3rem 1.25rem; }
  .typo-mobioffice .cta-section::before { font-size: clamp(8rem, 25vw, 14rem); opacity: 0.08; }
  .typo-mobioffice .cta-title { font-size: clamp(2rem, 7vw, 3rem) !important; }
  .typo-mobioffice .cta-subtitle { font-size: 1rem; }
  .typo-mobioffice .cta-buttons { flex-direction: column; align-items: center; gap: 0.75rem; }
  .typo-mobioffice .cta-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* Footer */
  .typo-mobioffice .landing-footer { padding: 3rem 1.25rem 1.5rem; }
  .typo-mobioffice .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .typo-mobioffice .footer-brand { max-width: 100%; grid-column: 1 / -1; }
  .typo-mobioffice .footer-logo-img { height: 32px; }
  .typo-mobioffice .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Demo Modal */
  .mo-modal { padding: 1.5rem; max-width: 100%; border-radius: 12px; }
  .mo-modal-header h3 { font-size: 1.25rem; }
  .mo-form-row { grid-template-columns: 1fr; }
  .mo-phone-row { flex-direction: column; }
  .mo-phone-row select { width: 100%; }
}

/* === RESPONSIVE — SMALL MOBILE === */
@media (max-width: 480px) {
  .typo-mobioffice .landing-nav-cta .btn-outline { display: none; }
  .typo-mobioffice .hero-section::before { font-size: clamp(6rem, 20vw, 10rem); top: 2%; right: 3%; }
  .typo-mobioffice .hero-title { font-size: clamp(2rem, 10vw, 2.75rem); }
  .typo-mobioffice .hero-container { margin-left: 0.5rem; }
  .typo-mobioffice .mo-snap-intro .section-title { font-size: clamp(1.5rem, 8vw, 2rem); }
  .typo-mobioffice .mo-card-title { font-size: clamp(1.75rem, 9vw, 2.5rem); }
  .typo-mobioffice .mo-card-desc { font-size: 0.95rem; }
  .typo-mobioffice .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}
