/* ============================================================
   MOBANY — Landing Page Stylesheet
   Font: Poppins (Google Fonts) — used everywhere
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink:     #0d1225;
  --paper:   #f0f4ff;
  --brand:   #4B6EF5;
  --brand2:  #3ECFB2;
  --muted:   #6b7280;
  --card-bg: #ffffff;
  --border:  #dde3f5;
  --font:    'Poppins', sans-serif;
}

body {
  font-family: var(--font);
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

/* Single font — override everything */
h1, h2, h3, h4, h5, h6,
p, a, span, li, div, button, input, label,
.navbar-brand, .nav-link, .btn-nav,
.btn-primary-brand, .btn-ghost-brand,
.hero-title, .hero-sub, .section-title, .section-sub, .section-label,
.step-title, .step-desc, .step-number,
.feature-title, .feature-desc,
.stat-item strong, .stat-item span,
.pricing-plan, .pricing-price, .pricing-desc, .pricing-badge,
.msg-header-name, .msg-header-status,
.chat-name, .chat-preview, .chat-time,
.phone-app-title, .phone-card-name, .phone-card-role,
.audience-col h3, .audience-col li,
.admin-card .num, .admin-card .lbl,
.store-badge-text .line1, .store-badge-text .line2,
.cta-banner h2, .cta-banner p,
footer, footer * {
  font-family: var(--font) !important;
}

.material-icons { font-family: 'Material Icons' !important; vertical-align: middle; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(240,244,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar-brand {
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink) !important;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand span { color: var(--brand); }
.nav-link {
  font-weight: 500;
  color: var(--ink) !important;
  font-size: .88rem;
  letter-spacing: .01em;
  transition: color .2s;
}
.nav-link:hover { color: var(--brand) !important; }
.btn-nav {
  background: var(--ink);
  color: #fff !important;
  border-radius: 100px;
  padding: .45rem 1.3rem;
  font-size: .84rem;
  font-weight: 600;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--brand); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero-blob {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,110,245,.18) 0%, transparent 70%);
  top: -100px; right: -150px;
  pointer-events: none;
}
.hero-blob2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,207,178,.15) 0%, transparent 70%);
  bottom: 0; left: -80px;
  pointer-events: none;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .35rem .9rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.hero-label .dot {
  width: 7px; height: 7px;
  background: var(--brand2);
  border-radius: 50%;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.4; transform:scale(1.4); }
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  animation: fadeUp .7s .1s ease both;
}
.hero-title .accent { color: var(--brand); }
.hero-title .underline-word {
  position: relative;
  display: inline-block;
}
.hero-title .underline-word::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 5px;
  background: var(--brand2);
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineIn 1s .8s ease forwards;
}
@keyframes lineIn { to { transform: scaleX(1); } }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 1.2rem;
  font-weight: 400;
  animation: fadeUp .7s .2s ease both;
}
.hero-ctas {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .3s ease both;
}
.btn-primary-brand {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: .75rem 1.8rem;
  font-weight: 700;
  font-size: .9rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-primary-brand:hover {
  background: #3558e8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(75,110,245,.4);
  color: #fff;
}
.btn-ghost-brand {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
  border-radius: 100px;
  padding: .7rem 1.6rem;
  font-weight: 600;
  font-size: .88rem;
  transition: border-color .2s, color .2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.btn-ghost-brand:hover { border-color: var(--brand); color: var(--brand); }
.hero-stats {
  margin-top: 3rem;
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  animation: fadeUp .7s .4s ease both;
}
.stat-item strong {
  font-size: 1.8rem;
  font-weight: 800;
  display: block;
  line-height: 1;
}
.stat-item span {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* ── PHONE MOCKUP ── */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: floatUp 1s .5s ease both;
}
@keyframes floatUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}
.phone-shadow {
  position: absolute;
  width: 220px; height: 40px;
  background: rgba(0,0,0,.15);
  border-radius: 50%;
  bottom: -20px;
  filter: blur(18px);
}
.phone-outer {
  width: 270px;
  background: #1a1a24;
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25), 0 0 0 1px rgba(255,255,255,.07) inset;
  position: relative;
  z-index: 2;
  animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.phone-screen {
  background: #f0f2f7;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9/19;
}

/* Floating badges */
.badge-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: .5rem .75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  font-size: .72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .4rem;
  z-index: 5;
  border: 1px solid var(--border);
  animation: badgeFloat 3s ease-in-out infinite;
}
@keyframes badgeFloat {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(-2deg); }
}
.badge-float.b1 { top: 10%; left: -10%; animation-delay: .3s; }
.badge-float.b2 { bottom: 25%; right: -8%; animation-delay: 1s; }
.badge-float.b3 { top: 45%; left: -14%; animation-delay: .7s; }
.badge-float .icon-circle {
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}

@keyframes fadeUp {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}

/* ── SECTION COMMONS ── */
section { padding: 5.5rem 0; }
.section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.section-sub {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
  margin-top: .8rem;
  max-width: 480px;
}

/* ── HOW IT WORKS ── */
.how-bg { background: #0d1225; color: #fff; }
.how-bg .section-title { color: #fff; }
.how-bg .section-sub   { color: rgba(255,255,255,.45); }
.how-bg .section-label { color: var(--brand2); }

.step-card {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 2rem;
  transition: border-color .2s, transform .2s;
  height: 100%;
}
.step-card:hover { border-color: var(--brand); transform: translateY(-4px); }
.step-number {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.05);
  line-height: 1;
  margin-bottom: .5rem;
}
.step-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.step-icon .material-icons { font-size: 1.3rem; color: #fff; }
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
}
.step-desc { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── FEATURES ── */
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.09);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.feature-icon .material-icons { font-size: 1.4rem; }
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.feature-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* ── AUDIENCE SPLIT ── */
.audience-col {
  border-radius: 24px;
  padding: 2.8rem;
  height: 100%;
}
.audience-col.pro { background: var(--ink); color: #fff; }
.audience-col.biz { background: linear-gradient(135deg, var(--brand), var(--brand2)); color: #fff; }
.audience-col h3 {
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.audience-col ul { list-style: none; padding: 0; }
.audience-col ul li {
  padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .88rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.audience-col ul li:last-child { border-bottom: none; }
.audience-col ul li .material-icons { font-size: 1.1rem; }

/* ── PRICING ── */
.pricing-card {
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 2.4rem;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  height: 100%;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}
.pricing-card.featured {
  border-color: var(--brand);
  background: #0d1225;
  color: #fff;
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 100px;
}
.pricing-plan {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}
.pricing-price {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
}
.pricing-price sup  { font-size: 1.2rem; vertical-align: super; }
.pricing-price small { font-size: .9rem; font-weight: 400; opacity: .5; }
.pricing-desc { font-size: .82rem; color: var(--muted); margin: .6rem 0 1.4rem; }
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,.5); }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .86rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.pricing-card.featured .pricing-feature { border-color: rgba(255,255,255,.1); }
.pricing-feature:last-of-type { border-bottom: none; }
.pricing-feature .material-icons { color: var(--brand); font-size: 1rem; }

/* ── MESSAGING / CHAT ── */
.msg-showcase {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  max-width: 480px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}
.msg-header {
  background: linear-gradient(135deg, #0d1225, #1a2540);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.msg-header-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.msg-header-av .material-icons { font-size: 1.1rem; }
.msg-header-name  { color: #fff; font-weight: 700; font-size: .9rem; }
.msg-header-status { font-size: .72rem; color: rgba(255,255,255,.5); }
.msg-header-badge {
  margin-left: auto;
  background: var(--brand);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 100px;
}
.msg-body { padding: 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.msg-bubble {
  max-width: 75%;
  padding: .7rem 1rem;
  border-radius: 16px;
  font-size: .83rem;
  line-height: 1.55;
}
.msg-bubble.incoming {
  background: #f0f4ff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg-bubble.outgoing {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.msg-time { font-size: .67rem; opacity: .5; margin-top: .25rem; }
.msg-input-row {
  border-top: 1px solid var(--border);
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.msg-input-box {
  flex: 1;
  background: var(--paper);
  border-radius: 100px;
  padding: .5rem 1rem;
  font-size: .83rem;
  color: var(--muted);
  border: none;
  outline: none;
  font-family: var(--font);
}
.msg-send-btn {
  width: 34px; height: 34px;
  background: var(--brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.msg-send-btn:hover { background: #3558e8; }
.msg-send-btn .material-icons { font-size: 1rem; }

/* ── CHAT LIST ── */
.chat-list-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem 1.2rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  cursor: pointer;
}
.chat-list-item:hover { background: #f5f7ff; }
.chat-av {
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat-name    { font-weight: 700; font-size: .87rem; }
.chat-preview { font-size: .76rem; color: var(--muted); margin-top: .1rem; }
.chat-meta    { margin-left: auto; text-align: right; }
.chat-time    { font-size: .68rem; color: var(--muted); }
.chat-badge {
  background: var(--brand);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  padding: .15rem .45rem;
  border-radius: 100px;
  margin-top: .25rem;
  display: inline-block;
}

/* ── ADMIN CARDS ── */
.admin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.admin-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.admin-card .num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.admin-card .lbl {
  font-size: .76rem;
  color: var(--muted);
  margin-top: .3rem;
  font-weight: 500;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--ink);
  border-radius: 28px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75,110,245,.3) 0%, transparent 70%);
  right: -80px; top: -80px;
}
.cta-banner::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(62,207,178,.2) 0%, transparent 70%);
  left: 10%; bottom: -60px;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.cta-banner p {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  margin-top: .6rem;
}

/* ── STORE BADGES ── */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: .7rem 1.2rem;
  color: #fff;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.store-badge:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
  color: #fff;
}
.store-badge .material-icons { font-size: 1.6rem; }
.store-badge-text .line1 { font-size: .62rem; opacity: .6; font-weight: 400; }
.store-badge-text .line2 { font-size: .88rem; font-weight: 700; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,.45);
  font-size: .83rem;
  padding: 0;
  overflow: hidden;
}
footer .brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
footer .brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
}
footer a { color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
footer a:hover { color: var(--brand2); }
footer .footer-col-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1rem;
  display: block;
}
footer ul { list-style: none; padding: 0; }
footer ul li + li { margin-top: .5rem; }
footer ul li a { font-size: .85rem; }
.footer-divider { border-color: rgba(255,255,255,.08) !important; }
.footer-bottom {
  padding: 1.25rem 0;
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom a { color: rgba(255,255,255,.3); font-size: .76rem; }
.footer-bottom a:hover { color: var(--brand2); }

/* ── DIVIDER LABEL ── */
.divider-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.divider-label::before, .divider-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { padding: 4rem 0 3rem; min-height: auto; }
  .phone-wrap { margin-top: 3rem; }
  .badge-float { display: none; }
  .audience-col { padding: 2rem 1.5rem; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .hero-title { letter-spacing: -.02em; }
}