/* ==========================================
   MobiOffice HQ — Standalone Stylesheet
   ========================================== */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (min-width: 769px) { html { scroll-snap-type: y proximity; } }
body { font-family: 'DM Sans', 'Inter', sans-serif; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* === DESIGN TOKENS === */
.typo-mobioffice {
  --typo-display: 'Space Grotesk', sans-serif;
  --typo-body: 'DM Sans', 'Inter', sans-serif;
  --typo-mono: 'JetBrains Mono', monospace;
  --mo-black: #0a0a0a; --mo-near-black: #111111; --mo-surface: #1a1a1a; --mo-surface-2: #222222; --mo-surface-3: #2a2a2a;
  --mo-border: #333333; --mo-border-subtle: #262626;
  --mo-white: #fafaf9; --mo-text: #f5f5f4; --mo-text-secondary: #d6d3d1; --mo-text-muted: #a8a29e;
  --mo-purple: #7B2FF2; --mo-purple-light: #9B59F6; --mo-purple-dark: #5A1EC8;
  --mo-purple-glow: rgba(123, 47, 242, 0.15); --mo-purple-glow-strong: rgba(123, 47, 242, 0.25);
  --mo-gold: #F5C518; --mo-gold-light: #FFD54F; --mo-gold-dark: #D4A017; --mo-gold-glow: rgba(245, 197, 24, 0.15);
  --mo-green: #4CAF50; --mo-cyan: #00BCD4;
  --mo-gradient: linear-gradient(135deg, #7B2FF2, #F5C518); --mo-gradient-cool: linear-gradient(135deg, #7B2FF2, #9B59F6);
}

/* === BUTTONS === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.75rem 1rem; border: none; border-radius: 4px; font-size: 0.875rem; font-weight: 500; text-decoration: none; cursor: pointer; transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); gap: 0.5rem; }
.btn-primary { background: var(--mo-purple); color: white; }
.btn-primary:hover { background: var(--mo-purple-light); transform: translateY(-2px); }
.btn-outline { background: transparent; border: 1px solid var(--mo-border); color: var(--mo-text-secondary); }
.btn-outline:hover { border-color: var(--mo-purple); color: var(--mo-purple-light); }

/* === LAYOUT === */
.typo-mobioffice .landing-page { background: var(--mo-black); color: var(--mo-text); }

/* === NAV === */
.typo-mobioffice .landing-nav { display: flex; justify-content: space-between; align-items: center; background: var(--mo-black); border-bottom: 2px solid var(--mo-purple); padding: 0.75rem 2rem; position: sticky; top: 0; z-index: 100; animation: mo-fadeIn 0.6s ease-out 0.1s both; }
.typo-mobioffice .landing-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.typo-mobioffice .landing-logo-img { height: 44px; width: auto; transition: opacity 0.3s ease; }
.typo-mobioffice .landing-logo-img:hover { opacity: 0.85; }
.typo-mobioffice .landing-logo-icon { background: var(--mo-purple); color: var(--mo-gold); border-radius: 4px; width: 36px; height: 36px; font-size: 0.85rem; font-family: var(--typo-display); font-weight: 700; display: flex; align-items: center; justify-content: center; }
.typo-mobioffice .landing-logo-icon i { display: none; }
.typo-mobioffice .landing-logo-icon::after { content: 'HQ'; font-family: var(--typo-display); font-weight: 700; font-size: 0.85rem; letter-spacing: -0.03em; }
.typo-mobioffice .landing-logo-text { font-family: var(--typo-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -0.04em; color: var(--mo-white); }
.typo-mobioffice .landing-nav-links { display: flex; align-items: center; gap: 2rem; }
.typo-mobioffice .landing-nav-links a { font-family: var(--typo-display); font-size: 0.8rem; font-weight: 500; color: var(--mo-text-muted); text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.3s ease; position: relative; }
.typo-mobioffice .landing-nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--mo-gold); transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.typo-mobioffice .landing-nav-links a:hover { color: var(--mo-gold); }
.typo-mobioffice .landing-nav-links a:hover::after { width: 100%; }
.typo-mobioffice .landing-nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.typo-mobioffice .landing-nav-cta .btn { font-family: var(--typo-display); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 2px; }
.typo-mobioffice .landing-nav-cta .btn-primary { background: var(--mo-purple); color: white; border: none; }
.typo-mobioffice .landing-nav-cta .btn-primary:hover { background: var(--mo-purple-light); box-shadow: 0 0 24px var(--mo-purple-glow); }
.typo-mobioffice .landing-nav-cta .btn-outline { border: 2px solid var(--mo-border); color: var(--mo-text-secondary); background: transparent; }
.typo-mobioffice .landing-nav-cta .btn-outline:hover { border-color: var(--mo-purple); color: var(--mo-purple-light); }

/* === HERO === */
.typo-mobioffice .hero-section { padding: 10rem 2rem 7rem; text-align: left; background: var(--mo-black); position: relative; overflow: hidden; min-height: calc(100vh - 62px); display: flex; align-items: center; }
.typo-mobioffice .hero-section::before { content: 'HQ'; position: absolute; top: 50%; right: 3%; transform: translateY(-50%); font-family: var(--typo-display); font-size: clamp(16rem, 30vw, 32rem); font-weight: 700; letter-spacing: -0.06em; color: var(--mo-purple); opacity: 0.14; line-height: 1; pointer-events: none; z-index: 0; animation: mo-fadeIn 2s ease-out 1s both; }
.typo-mobioffice .hero-section::after { display: none; }
.typo-mobioffice .hero-container { max-width: 860px; margin: 0; margin-left: 6rem; position: relative; z-index: 1; }
.typo-mobioffice .hero-badge { font-family: var(--typo-mono); font-size: 0.7rem; font-weight: 500; background: var(--mo-surface); color: var(--mo-gold); border: 1px solid var(--mo-border); border-left: 3px solid var(--mo-purple); border-radius: 0; padding: 0.45rem 1rem; margin-bottom: 2.5rem; display: inline-flex; animation: mo-fadeSlideUp 0.8s ease-out 0.2s both; }
.typo-mobioffice .hero-badge i { display: none; }
.typo-mobioffice .hero-title { font-family: var(--typo-display); font-size: clamp(3.25rem, 8vw, 5.5rem); font-weight: 700; line-height: 0.95; letter-spacing: -0.05em; color: var(--mo-white); margin-bottom: 2rem; text-align: left; animation: mo-fadeSlideUp 0.8s ease-out 0.35s both; }
.typo-mobioffice .gradient-text { background: var(--mo-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.typo-mobioffice .hero-subtitle { font-family: var(--typo-body); font-size: 1.15rem; line-height: 1.7; color: var(--mo-text-secondary); max-width: 580px; margin: 0 0 3rem 0; font-weight: 400; text-align: left; animation: mo-fadeSlideUp 0.8s ease-out 0.5s both; }
.typo-mobioffice .hero-cta { display: flex; gap: 1rem; margin-bottom: 2.5rem; justify-content: flex-start; animation: mo-fadeSlideUp 0.8s ease-out 0.65s both; }
.typo-mobioffice .hero-cta .btn { font-family: var(--typo-display); font-size: 0.8rem; font-weight: 700; padding: 0.85rem 2rem; border-radius: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.typo-mobioffice .hero-cta .btn-primary { background: var(--mo-purple); color: white; box-shadow: 0 4px 20px var(--mo-purple-glow); }
.typo-mobioffice .hero-cta .btn-primary:hover { background: var(--mo-purple-light); box-shadow: 0 8px 40px var(--mo-purple-glow-strong); }
.typo-mobioffice .hero-cta .btn-outline { border: 2px solid var(--mo-border); color: var(--mo-text-secondary); background: transparent; }
.typo-mobioffice .hero-cta .btn-outline:hover { border-color: var(--mo-purple); color: var(--mo-purple-light); }

/* === LOGO TICKER === */
.typo-mobioffice .mo-hero-logos-label { font-family: var(--typo-display); font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--mo-text-muted); margin: 0 0 1rem 0; opacity: 0.7; }
.typo-mobioffice .mo-logo-ticker-wrap { overflow: hidden; position: relative; margin: 0 -3rem; }
.typo-mobioffice .mo-logo-ticker-wrap::before, .typo-mobioffice .mo-logo-ticker-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.typo-mobioffice .mo-logo-ticker-wrap::before { left: 0; background: linear-gradient(to right, var(--mo-near-black), transparent); }
.typo-mobioffice .mo-logo-ticker-wrap::after { right: 0; background: linear-gradient(to left, var(--mo-near-black), transparent); }
.typo-mobioffice .mo-logo-ticker-track { display: flex; gap: 3.5rem; align-items: center; width: max-content; animation: mo-logo-scroll 30s linear infinite; }
.typo-mobioffice .mo-logo-ticker-track:hover { animation-play-state: paused; }
@keyframes mo-logo-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.typo-mobioffice .mo-ticker-logo { height: 40px; width: auto; min-width: 0; -webkit-filter: brightness(0) invert(1); filter: brightness(0) invert(1); opacity: 0.7; transition: opacity 0.4s ease; flex-shrink: 0; }
.typo-mobioffice .mo-ticker-logo:hover { opacity: 1; }

/* === SECTION HEADERS === */
.typo-mobioffice .section-header { text-align: left; margin-bottom: 3.5rem; }
.typo-mobioffice .section-container { max-width: 1100px; margin: 0 auto; }
.typo-mobioffice .section-label { font-family: var(--typo-mono); font-size: 0.7rem; color: var(--mo-gold); font-weight: 500; border-left: 3px solid var(--mo-purple); padding-left: 0.75rem; display: inline-block; opacity: 0; transform: translateX(-20px); }
.typo-mobioffice .section-label.mo-visible { animation: mo-slideFromLeft 0.6s ease-out forwards; }
.typo-mobioffice .section-title { font-family: var(--typo-display); font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; line-height: 1.0; letter-spacing: -0.04em; color: var(--mo-white); text-align: left; opacity: 0; transform: translateY(20px); }
.typo-mobioffice .section-title.mo-visible { animation: mo-fadeSlideUp 0.7s ease-out 0.1s forwards; }
.typo-mobioffice .section-subtitle { font-family: var(--typo-body); font-size: 1.05rem; line-height: 1.65; color: var(--mo-text-secondary); font-weight: 400; text-align: left; opacity: 0; transform: translateY(20px); }
.typo-mobioffice .section-subtitle.mo-visible { animation: mo-fadeSlideUp 0.7s ease-out 0.2s forwards; }

/* === 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-slideFromLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

/* === SKIP TO CONTENT === */
.skip-to-content {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--mo-purple); color: #fff; padding: 0.75rem 1.5rem;
  border-radius: 0 0 6px 6px; font-family: var(--typo-display); font-size: 0.85rem;
  font-weight: 600; z-index: 9999; text-decoration: none; transition: top 0.2s ease;
}
.skip-to-content:focus { top: 0; outline: 2px solid var(--mo-gold); outline-offset: 2px; }

/* === BREADCRUMB NAV === */
.mo-breadcrumb { padding: 1rem 2rem 0; max-width: 900px; margin: 0 auto; }
.mo-breadcrumb ol { display: flex; align-items: center; gap: 0.5rem; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }
.mo-breadcrumb li { font-family: var(--typo-mono); font-size: 0.7rem; color: var(--mo-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.mo-breadcrumb li a { color: var(--mo-text-muted); text-decoration: none; transition: color 0.2s ease; }
.mo-breadcrumb li a:hover { color: var(--mo-purple); }
.mo-breadcrumb li.mo-breadcrumb-separator { color: var(--mo-border); }
.mo-breadcrumb li[aria-current="page"] { color: var(--mo-white); }

/* === PRODUCT PAGE FAQ === */
.mo-product-faq { margin-bottom: 3rem; }
.mo-product-faq h2 { font-family: var(--typo-display); font-size: 1.4rem; font-weight: 700; color: var(--mo-white); margin: 0 0 1rem; }
.mo-product-faq h2 span { color: var(--mo-purple); }
.mo-product-faq .mo-faq-item { border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; background: rgba(255,255,255,0.02); transition: border-color 0.3s ease; }
.mo-product-faq .mo-faq-item:hover { border-color: rgba(123,47,242,0.25); }
.mo-product-faq .mo-faq-item.active { border-color: rgba(123,47,242,0.4); background: rgba(123,47,242,0.04); }
.mo-product-faq .mo-faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; cursor: pointer; gap: 1rem; font-family: var(--typo-display); font-size: 0.9rem; font-weight: 600; color: var(--mo-white); line-height: 1.4; user-select: none; margin: 0; }
.mo-product-faq .mo-faq-question:hover { color: var(--mo-purple); }
.mo-product-faq .mo-faq-question i { font-size: 0.75rem; color: var(--mo-text-muted); flex-shrink: 0; transition: transform 0.3s ease; }
.mo-product-faq .mo-faq-item.active .mo-faq-question i { transform: rotate(180deg); color: var(--mo-purple); }
.mo-product-faq .mo-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 1.25rem; }
.mo-product-faq .mo-faq-item.active .mo-faq-answer { max-height: 500px; padding: 0 1.25rem 1.25rem; }
.mo-product-faq .mo-faq-answer p { font-family: var(--typo-body); font-size: 0.88rem; line-height: 1.8; color: var(--mo-text-secondary); margin: 0; }
