/* Mokoapp — mother company site (mokoapp.net) */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Outfit:wght@600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, sans-serif;
  background: #e8f4fc !important;
  color: #1e293b;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95) 0%, transparent 30%),
    radial-gradient(ellipse 100% 80% at 50% -10%, rgba(59, 130, 246, .35) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 40%, rgba(14, 165, 233, .2) 0%, transparent 45%),
    radial-gradient(ellipse 70% 50% at 0% 60%, rgba(34, 211, 238, .2) 0%, transparent 45%),
    radial-gradient(ellipse 50% 40% at 70% 100%, rgba(251, 146, 60, .12) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
:root {
  --primary: #1d4ed8;
  --primary-light: #2563eb;
  --accent: #0e7490;
  --accent-warm: #c2410c;
  --bg: #e8f4fc;
  --bg-alt: #dbeafe;
  --bg-warm: #fff7ed;
  --gradient: linear-gradient(135deg, #1d4ed8 0%, #0e7490 100%);
  --gradient-warm: linear-gradient(135deg, #ea580c 0%, #f59e0b 100%);
  --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, .15) 0%, rgba(8, 145, 178, .12) 100%);
  --card: #ffffff;
  --card-hover: #f0f9ff;
  --stroke: rgba(30, 41, 59, .14);
  --stroke-strong: rgba(30, 41, 59, .22);
  --text-muted: #475569;
  --gutter: clamp(20px, 5vw, 48px);
  --container: min(1100px, 100% - 2 * var(--gutter));
  --radius: 16px;
  --radius-lg: 24px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 4px 24px rgba(30, 41, 59, .1);
  --shadow-lg: 0 20px 50px rgba(30, 41, 59, .14);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px var(--gutter);
  background: #ffffff !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 2px 16px rgba(30, 41, 59, .08);
  transition: background .3s var(--ease-out);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav .logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #1e293b;
  transition: color .25s var(--ease-out), transform .25s var(--ease-out);
}
.nav .logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform .25s var(--ease-out);
}
.nav .logo:hover {
  color: var(--primary);
}
.nav .logo:hover img { transform: scale(1.05); }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: background .25s var(--ease-out), border-color .25s, color .25s, transform .2s var(--ease-out);
}
.nav-menu a:hover {
  background: var(--gradient-soft);
  border-color: var(--stroke);
  color: var(--primary);
  transform: translateY(-1px);
}
.nav-menu a.active {
  background: var(--gradient-soft);
  border-color: rgba(37, 99, 235, .3);
  color: var(--primary);
}
.nav-menu .cta {
  margin-left: 12px;
  background: var(--gradient);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .35);
}
.nav-menu .cta:hover {
  filter: brightness(1.1);
  color: #fff !important;
  box-shadow: 0 6px 28px rgba(37, 99, 235, .45);
  transform: translateY(-2px);
}
.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--card);
  color: #1e293b;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: background .2s, border-color .2s;
}
.menu-btn:hover {
  background: var(--bg-alt);
  border-color: var(--stroke-strong);
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .menu-btn { display: flex; }
}

/* Main */
.main {
  position: relative;
  z-index: 1;
  padding-top: 88px;
  padding-bottom: 72px;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* Hero */
.hero {
  padding: clamp(56px, 12vh, 120px) 0;
  text-align: center;
  position: relative;
}
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 600px);
  height: min(90vw, 600px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(37, 99, 235, .3) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero .kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .12);
  border: 1px solid rgba(37, 99, 235, .25);
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: #0f172a;
}
.hero .sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 40px;
  line-height: 1.65;
}

/* Section */
.section {
  padding: 56px 0;
}
.section .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.section .sub {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 32px;
}
.section-alt {
  background: var(--bg-alt) !important;
  padding: 56px 0;
}
.section-alt .kicker { color: var(--accent); }
.section-alt h2 { color: #0f172a; }
.section-alt .sub { color: var(--text-muted); }
.section-warm {
  background: var(--bg-warm) !important;
  padding: 56px 0;
}
.section-warm .kicker { color: var(--accent-warm); }
.section-warm h2 { color: #0f172a; }
.section-warm .sub { color: var(--text-muted); }

/* Project cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 28px;
}
.project-card {
  background: #ffffff !important;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: border-color .3s var(--ease-out), transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.project-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  pointer-events: none;
}
.project-card:hover {
  border-color: rgba(37, 99, 235, .35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37, 99, 235, .12);
  background: var(--card-hover);
}
.project-card:hover::before { opacity: 1; }
.project-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, .35);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out);
  position: relative;
  z-index: 1;
}
.project-card:hover .icon {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(37, 99, 235, .45);
}
.project-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  color: #0f172a;
  position: relative;
  z-index: 1;
}
.project-card p {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  line-height: 1.55;
  position: relative;
  z-index: 1;
}
.project-card .link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--primary);
  transition: color .2s, gap .25s var(--ease-out);
  position: relative;
  z-index: 1;
}
.project-card .link:hover {
  color: var(--accent);
  gap: 12px;
}
.project-card .link i { transition: transform .25s var(--ease-out); }
.project-card .link:hover i { transform: translate(2px, -2px); }

/* Buttons */
.btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid var(--stroke);
  background: #ffffff !important;
  color: #1e293b;
  cursor: pointer;
  transition: background .25s var(--ease-out), border-color .25s, transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
  box-shadow: var(--shadow);
}
.btn:hover {
  background: var(--bg-alt);
  border-color: var(--stroke-strong);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn.primary {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 99, 235, .35);
}
.btn.primary:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 28px rgba(37, 99, 235, .45);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  margin-top: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
  border-top: 1px solid var(--stroke);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.footer p {
  margin: 0;
  font-weight: 500;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 10px;
}
.footer-links a {
  color: var(--text-muted);
  font-weight: 600;
  transition: color .2s var(--ease-out);
}
.footer-links a:hover { color: var(--primary); }

/* Page content */
.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.85rem, 4.2vw, 2.6rem);
  font-weight: 900;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.info-card {
  background: #ffffff !important;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out), transform .25s var(--ease-out);
}
.info-card:hover {
  border-color: var(--stroke-strong);
  background: var(--card-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.info-card .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 16px;
  font-size: 1.25rem;
  box-shadow: 0 6px 20px rgba(37, 99, 235, .3);
}
.info-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: #0f172a;
}
.info-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0 0 12px; line-height: 1.5; }
.info-card a {
  color: var(--primary);
  font-weight: 600;
  transition: color .2s, gap .2s var(--ease-out);
}
.info-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}

/* Stats strip */
.stats-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 48px);
  padding: 32px var(--gutter);
  background: #ffffff !important;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 32px;
}
.stat {
  text-align: center;
}
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Feature list */
.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #ffffff !important;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color .2s, box-shadow .2s var(--ease-out);
}
.features-list li:hover {
  border-color: rgba(37, 99, 235, .25);
  box-shadow: var(--shadow-lg);
}
.features-list .feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--gradient-soft);
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.features-list strong {
  display: block;
  color: #0f172a;
  margin-bottom: 4px;
  font-size: 1rem;
}
.features-list span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Quote / testimonial */
.quote-block {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px;
  background: #ffffff !important;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  opacity: .25;
  line-height: 1;
}
.quote-block p {
  font-size: 1.15rem;
  color: #334155;
  line-height: 1.65;
  margin: 0 0 16px;
  font-style: italic;
}
.quote-block cite {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
}

/* Logos / trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 0;
}
.trust-strip span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.trust-strip .trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.trust-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff !important;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
  box-shadow: var(--shadow);
}
.trust-badges .badge:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.trust-badges .badge i {
  color: var(--primary);
}

/* Force light theme — no dark mode override */
@media (prefers-color-scheme: dark) {
  body { background: #e8f4fc !important; color: #1e293b !important; }
  .nav { background: #ffffff !important; }
  .section-alt { background: var(--bg-alt) !important; }
  .section-warm { background: var(--bg-warm) !important; }
}
