:root {
  --purple: #2d1b69;
  --purple-deep: #21004f;
  --purple-mid: #5b1bb0;
  --purple-dark: #140033;
  --orange: #f15a24;
  --orange-bright: #ff4f16;
  --orange-light: #fff0eb;
  --text: #18083f;
  --muted: #665f78;
  --border: #eee9f6;
  --soft: #f8f9fa;
  --nav-height: 82px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6, p {
  margin-top: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

/* .mo-container {
  max-width: 1140px;
} */

.section-pad {
  padding: 72px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-mid);
  margin-bottom: 12px;
}

.eyebrow.orange {
  color: var(--orange);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
}

.text-link:hover {
  color: #d94e15;
}

/* Buttons */
.btn.mo-btn-primary {
  background: linear-gradient(135deg, #ff4c14, #ff7015);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(241, 90, 36, 0.28);
}

.btn.mo-btn-primary:hover,
.btn.mo-btn-primary:focus {
  color: #fff;
  background: linear-gradient(135deg, #e8440f, #f06512);
}

.btn.mo-btn-outline {
  background: #fff;
  color: var(--purple-deep);
  border: 2px solid #32105d;
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
}

.btn.mo-btn-outline:hover,
.btn.mo-btn-outline:focus {
  background: #faf8ff;
  color: var(--purple-deep);
  border-color: var(--purple-mid);
}

.btn.mo-btn-light {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
}

.btn.mo-btn-light:hover,
.btn.mo-btn-light:focus {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: #fff;
}

/* Navbar */
.mo-navbar {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(25, 0, 65, 0.06);
  padding: 16px 0;
  min-height: var(--nav-height);
}

.mo-navbar .navbar-brand img {
  height: 60px;
  width: auto;
}

.mo-navbar .navbar-nav {
  gap: 2px;
}

.mo-navbar .nav-link {
  color: #1a1028;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px !important;
}

.mo-navbar .nav-link:hover,
.mo-navbar .nav-link:focus {
  color: var(--orange);
}

.mo-navbar .nav-link.active {
  color: var(--orange);
}

.mo-navbar .navbar-toggler {
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 6px;
}

.mo-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(91, 27, 176, 0.12);
}

.mo-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2318003f' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.mo-navbar .nav-btn {
  padding: 10px 20px;
  white-space: nowrap;
  font-size: 13px;
}

/* Hero */
.mo-hero {
  padding: calc(var(--nav-height) + 40px) 0 56px;
  background:
    radial-gradient(circle at 78% 22%, rgba(244, 236, 255, 0.9) 0%, transparent 32%),
    #fff;
  overflow: hidden;
}

.mo-hero h1 {
  font-size: 58px;
  letter-spacing: -2.5px;
  margin-bottom: 18px;
  font-weight: 900;
}

.mo-hero h1 span {
  color: var(--orange);
}

.hero-copy {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 26px;
  line-height: 1.65;
}

.hero-actions {
  margin-bottom: 36px;
}

.hero-mini-item {
  text-align: left;
}

.hero-mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f2e7ff;
  border-radius: 50%;
  color: #7d28ce;
  font-size: 13px;
  margin-bottom: 8px;
}

.hero-mini strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 2px;
  color: var(--text);
}

.hero-mini small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 440px;
  margin-left: 10px;
}

.hero-visual-banner {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-img-banner {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

/* .purple-shape {
  position: absolute;
  right: 60px;
  top: 20px;
  width: 300px;
  height: 300px;
  background: #4f1a98;
  border-radius: 50%;
  z-index: 1;
} */

.hero-img {
  /* position: absolute;
  right: 0;
  bottom: 0;
  width: 500px; */
  max-width: 100%;
  z-index: 2;
  border-radius: 0;
  object-fit: cover;
  object-position: center top;
  filter: drop-shadow(0 24px 32px rgba(39, 18, 72, 0.12));
}

.metric-card,
.roi-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 36px rgba(28, 0, 70, 0.1);
  border-radius: 10px;
  padding: 12px 14px;
  z-index: 3;
}

.metric-card {
  width: 150px;
}

.metric-card.traffic {
  left: 40px;
  top: 40px;
}

.metric-card.leads {
  left: 44px;
  top: 168px;
}

.metric-card.leads b {
  color: var(--orange);
}

.roi-card {
  right: 10px;
  top: 50px;
  width: 118px;
  text-align: center;
}

.metric-card small,
.roi-card small {
  display: block;
  color: #302445;
  font-weight: 800;
  font-size: 10px;
  margin-bottom: 2px;
}

.metric-card b,
.roi-card b {
  font-size: 20px;
  font-weight: 900;
  color: #44108f;
  display: block;
  line-height: 1.2;
}

.metric-card svg {
  width: 100%;
  height: 32px;
  margin-top: 4px;
}

.metric-card svg polyline {
  fill: none;
  stroke: #7d28ce;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metric-card.leads svg polyline {
  stroke: var(--orange);
}

.donut {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  margin: 8px auto 0;
  background: conic-gradient(var(--orange) 0 36%, #8c4fe8 36% 78%, #ede8f7 78%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 12px;
  background: #fff;
  border-radius: 50%;
}

/* Logo strip */
.logo-strip {
  padding: 24px 0;
  background: #f8f9fa;
  border-top: 1px solid #f0eef5;
  border-bottom: 1px solid #f0eef5;
}

.logo-strip p {
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 800;
  color: #8a8498;
  margin-bottom: 18px;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  color: #000000;
  font-size: 16px;
  font-weight: 800;
  max-width: 1100px;
  margin: 0 auto;
}

.brand-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

.brand-row i {
  font-size: 18px;
  color: #000000;
}

/* Services */
.mo-services {
  background: #fff;
}

.section-intro h2 {
  font-size: 30px;
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}

.section-intro p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px 22px 50px;
  min-height: 200px;
  height: 100%;
  position: relative;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.service-card > i {
  font-size: 26px;
  color: var(--purple-mid);
  display: block;
  margin-bottom: 18px;
}

.service-card .orange-icon {
  color: var(--orange);
}

.service-card h5 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.55;
}

.service-card > a {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #f5f0ff;
  border-radius: 50%;
  color: var(--purple-mid);
  font-weight: 700;
  font-size: 13px;
}

.service-card > a:hover {
  background: var(--orange);
  color: #fff;
}

/* Stats band */
.stats-band {
  padding: 32px 0;
  background: linear-gradient(90deg, #140033 0%, #2b0067 50%, #140033 100%);
}

.stat {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat i {
  font-size: 26px;
  color: var(--orange);
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.stat b {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
}

.stat span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}

/* Case studies */
.case-section {
  background: #fff;
}

.case-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.case-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.case-card span {
  display: inline-block;
  margin: 14px 16px 6px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 4px;
}

.case-card h5 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 16px 8px;
  line-height: 1.35;
}

.case-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 16px 12px;
  line-height: 1.55;
}

.case-card a {
  display: inline-block;
  margin: 0 16px 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.case-card a:hover {
  color: #d94e15;
}

/* Process */
.process {
  background: linear-gradient(90deg, #fff 0%, #fbf8ff 50%, #fff 100%);
}

.process-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  padding-top: 4px;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  border-top: 1px dashed #c4b0e0;
  z-index: 0;
}

.mo-process-row::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.mo-process-row.is-visible::before {
  transform: scaleX(1);
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mo-process-row:not(.is-visible) .step {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mo-process-row.is-visible .step {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mo-process-row.is-visible .step:nth-child(1) { transition-delay: 0.25s; }
.mo-process-row.is-visible .step:nth-child(2) { transition-delay: 0.4s; }
.mo-process-row.is-visible .step:nth-child(3) { transition-delay: 0.55s; }
.mo-process-row.is-visible .step:nth-child(4) { transition-delay: 0.7s; }
.mo-process-row.is-visible .step:nth-child(5) { transition-delay: 0.85s; }

.step > div {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #6b19b6;
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  margin: 0 auto 14px;
}

.mo-process-row:not(.is-visible) .step > div {
  transform: scale(0);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mo-process-row.is-visible .step > div {
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mo-process-row.is-visible .step:nth-child(1) > div { transition-delay: 0.35s; }
.mo-process-row.is-visible .step:nth-child(2) > div { transition-delay: 0.5s; }
.mo-process-row.is-visible .step:nth-child(3) > div { transition-delay: 0.65s; }
.mo-process-row.is-visible .step:nth-child(4) > div { transition-delay: 0.8s; }
.mo-process-row.is-visible .step:nth-child(5) > div { transition-delay: 0.95s; }

.step.active > div {
  background: var(--orange);
}

.mo-process-row.is-visible .step.active > div {
  animation: mo-step-pulse 2.2s ease-in-out infinite 1.2s;
}

@keyframes mo-step-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.45); }
  50% { box-shadow: 0 0 0 12px rgba(241, 90, 36, 0); }
}

.step h6 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.step p {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 130px;
  margin: 0 auto;
}

/* Testimonials */
.testimonials {
  background: #fff;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  height: 100%;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.quote-box {
  background: #f3edff;
  border-radius: 10px;
  padding: 18px 16px 16px;
  margin-bottom: 18px;
  position: relative;
}

.quote-box > i {
  color: #c4b0e0;
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
}

.quote-box p {
  font-size: 13px;
  color: #3f3653;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card .person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.testimonial-card .person img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card .person b {
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.testimonial-card .person small {
  color: var(--muted);
  font-size: 11px;
}

.testimonial-card .stars {
  color: #ffb800;
  font-size: 11px;
  display: flex;
  gap: 3px;
}

/* Blog */
.blog-section {
  background: #fff;
}

.bg-soft {
  background: #f8f9fa;
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.blog-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.blog-card span {
  display: inline-block;
  margin: 14px 16px 6px;
  background: var(--orange-light);
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 7px;
  border-radius: 4px;
}

.blog-card h5 {
  font-size: 14px;
  font-weight: 800;
  margin: 0 16px 8px;
  line-height: 1.35;
}

.blog-card p {
  font-size: 11px;
  color: var(--muted);
  margin: 0 16px 18px;
}

/* CTA — full-width band like mockup */
.cta-band {
  padding: 48px 0;
  background-color: #29005e;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, #29005e 0%, #5817a1 72%, #240050 100%);
  background-size: 18px 18px, 100% 100%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-text h2 {
  color: #fff;
  font-size: 30px;
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 14px;
}

.cta-actions {
  flex-shrink: 0;
}

/* Footer */
.footer {
  background: linear-gradient(180deg, #15003a 0%, #0b001f 100%);
  color: #fff;
  padding: 48px 0 20px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
}

.footer p {
  color: #d0c8e1;
  font-size: 12px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer h6 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer a {
  display: block;
  color: #d0c8e1;
  font-size: 12px;
  margin-bottom: 8px;
}

.footer a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
}

.socials i:hover {
  background: var(--orange);
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #cabfe0;
  font-size: 11px;
}

.copyright a {
  color: #cabfe0;
  display: inline;
  margin-bottom: 0;
}

.copyright a:hover {
  color: #fff;
}

/* Legal pages */
.legal-page {
  background: #fff;
}

.legal-content h2 {
  font-size: 20px;
  margin: 32px 0 12px;
  letter-spacing: -0.3px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--orange);
  font-weight: 600;
}

.legal-content a:hover {
  color: #d94e15;
}

/* Inner pages — full hero (matches homepage style) */
.inner-hero {
  padding: calc(var(--nav-height) + 40px) 0 64px;
  background:
    radial-gradient(circle at 78% 22%, rgba(244, 236, 255, 0.9) 0%, transparent 32%),
    #fff;
  overflow: hidden;
}

.inner-hero h1 {
  font-size: 52px;
  letter-spacing: -2px;
  margin-bottom: 18px;
  font-weight: 900;
}

.inner-hero h1 span {
  color: var(--orange);
}

.inner-hero-visual {
  position: relative;
  min-height: 380px;
}

/* .inner-hero-visual .purple-shape {
  position: absolute;
  right: 40px;
  top: 20px;
  width: 280px;
  height: 280px;
  background: #4f1a98;
  border-radius: 50%;
  z-index: 1;
} */

.inner-hero-img {
  width: 100%;
  margin-left: auto;
  border-radius: 12px;
  object-fit: cover;
  aspect-ratio: 14 / 9;
  box-shadow: 0 24px 48px rgba(39, 18, 72, 0.14);
}

.content-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  box-shadow: 0 16px 40px rgba(18, 0, 55, 0.08);
}

.content-block h3 {
  font-size: 26px;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.check-list i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.feature-list li {
  position: relative;
  padding-left: 18px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.page-hero {
  padding: calc(var(--nav-height) + 48px) 0 40px;
  background:
    radial-gradient(circle at 85% 20%, rgba(244, 236, 255, 0.85) 0%, transparent 28%),
    #fff;
}

.page-hero h1 {
  font-size: 46px;
  letter-spacing: -1.8px;
  margin-bottom: 16px;
  max-width: 640px;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero-copy {
  font-size: 15px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 0;
}

.about-img,
.content-img {
  width: 100%;
}

.mission-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.mission-card h3 {
  font-size: 20px;
  margin: 14px 0 10px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid #e4daf5;
  padding-left: 28px;
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -35px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #e4daf5;
}

.timeline-year {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.timeline-item h6 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
  height: 100%;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.team-card h5 {
  font-size: 15px;
  margin: 14px 16px 2px;
}

.team-card > span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.team-card p {
  font-size: 12px;
  color: var(--muted);
  margin: 0 16px 18px;
  line-height: 1.5;
}

.guide-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.guide-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.guide-card-body {
  padding: 18px 20px 22px;
}

.guide-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  color: var(--purple-mid);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.guide-card h5 {
  font-size: 15px;
  margin-bottom: 8px;
}

.guide-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.55;
}

.webinar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.webinar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 6px 20px rgba(18, 0, 55, 0.04);
}

.webinar-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #f3edff;
  border-radius: 10px;
  flex-shrink: 0;
}

.webinar-date b {
  font-size: 18px;
  font-weight: 900;
  color: var(--purple-mid);
  line-height: 1;
}

.webinar-date small {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.webinar-item h6 {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 2px;
}

.webinar-item p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.webinar-item > div {
  flex: 1;
  min-width: 0;
}

.webinar-item .btn-sm {
  padding: 8px 16px;
  font-size: 12px;
  white-space: nowrap;
}

.newsletter-box {
  background: linear-gradient(145deg, #29005e, #5817a1);
  color: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: 0 20px 48px rgba(41, 0, 94, 0.2);
}

.newsletter-icon {
  font-size: 32px;
  color: var(--orange);
  margin-bottom: 14px;
  display: block;
}

.newsletter-box h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.newsletter-form .form-control {
  flex: 1;
  min-width: 180px;
  border-radius: 8px;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
}

.newsletter-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.newsletter-box small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.value-card.text-center .hero-mini-icon {
  display: inline-flex;
}

.about-img {
  box-shadow: 0 16px 40px rgba(18, 0, 55, 0.08);
}

.about-stat-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.about-stat-box b {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--purple-mid);
  line-height: 1.1;
  margin-bottom: 4px;
}

.about-stat-box span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.value-card h5 {
  font-size: 15px;
  margin: 14px 0 8px;
}

.value-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

.resource-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  box-shadow: 0 8px 28px rgba(18, 0, 55, 0.04);
}

.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f2e7ff;
  color: var(--purple-mid);
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.resource-card h5 {
  font-size: 15px;
  margin-bottom: 8px;
}

.resource-card p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.55;
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 10px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  padding: 16px 20px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #f3edff;
  color: var(--purple-deep);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: var(--border);
}

.faq-accordion .accordion-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 20px 16px;
}

/* Let's Talk modal */
.talk-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(18, 0, 55, 0.18);
}

.talk-modal .modal-header {
  border-bottom: 1px solid var(--border);
  padding: 24px 28px 16px;
  align-items: flex-start;
}

.talk-modal .modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.talk-modal .modal-body {
  padding: 8px 28px 28px;
}

.talk-modal-body {
  padding-top: 0;
}

.talk-modal-embed {
  width: 100%;
  min-height: 560px;
  height: 560px;
  border-radius: 8px;
  overflow: hidden;
}

.talk-modal-embed iframe {
  display: block;
  min-height: 560px;
}

.talk-modal-intro {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.talk-form .form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.talk-form .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
}

.talk-form .form-control:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 3px rgba(91, 27, 176, 0.12);
}

.talk-form-success {
  text-align: center;
  padding: 24px 8px 8px;
}

.talk-form-success .success-icon {
  font-size: 48px;
  color: #22c55e;
  margin-bottom: 12px;
}

.talk-form-success h5 {
  font-size: 20px;
  margin-bottom: 8px;
}

.talk-form-success p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Scroll & load animations */
.mo-reveal {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--mo-delay, 0) * 0.08s);
}

.mo-reveal-up {
  transform: translateY(36px);
}

.mo-reveal-left {
  transform: translateX(-40px);
}

.mo-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.mo-hero-animate > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--mo-delay, 0) * 0.1s);
}

.mo-hero-animate > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mo-hero-banner {
  opacity: 0;
  transform: translateX(48px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.mo-hero-banner.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

.mo-process-row.is-visible .step h6,
.mo-process-row.is-visible .step p {
  animation: mo-fade-in 0.5s ease forwards;
  opacity: 0;
}

.mo-process-row.is-visible .step:nth-child(1) h6,
.mo-process-row.is-visible .step:nth-child(1) p { animation-delay: 0.55s; }
.mo-process-row.is-visible .step:nth-child(2) h6,
.mo-process-row.is-visible .step:nth-child(2) p { animation-delay: 0.7s; }
.mo-process-row.is-visible .step:nth-child(3) h6,
.mo-process-row.is-visible .step:nth-child(3) p { animation-delay: 0.85s; }
.mo-process-row.is-visible .step:nth-child(4) h6,
.mo-process-row.is-visible .step:nth-child(4) p { animation-delay: 1s; }
.mo-process-row.is-visible .step:nth-child(5) h6,
.mo-process-row.is-visible .step:nth-child(5) p { animation-delay: 1.15s; }

@keyframes mo-fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.stat.is-visible i {
  animation: mo-stat-bounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes mo-stat-bounce {
  from { transform: scale(0) rotate(-15deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mo-reveal,
  .mo-hero-animate > *,
  .mo-hero-banner,
  .mo-process-row .step,
  .mo-process-row .step > div,
  .mo-process-row .step h6,
  .mo-process-row .step p,
  .mo-process-row::before {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  :root {
    --nav-height: 72px;
  }

  .mo-navbar .nav-btn {
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .mo-hero {
    text-align: center;
    padding-top: calc(var(--nav-height) + 28px);
  }

  .mo-hero h1 {
    font-size: 42px;
    letter-spacing: -1.5px;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-mini-item {
    text-align: center;
  }

  .hero-visual {
    min-height: 360px;
    margin: 28px auto 0;
    max-width: 480px;
  }

  .hero-visual-banner {
    min-height: auto;
    max-width: 540px;
  }

  .hero-img-banner {
    transform: none;
    left: auto;
    max-width: 100%;
  }

  .hero-img {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 380px;
  }

  .purple-shape {
    left: 50%;
    right: auto;
    transform: translateX(-35%);
    width: 240px;
    height: 240px;
  }

  .metric-card.traffic {
    left: 0;
  }

  .metric-card.leads {
    left: 4px;
  }

  .roi-card {
    right: 0;
  }

  .section-intro {
    text-align: center;
    margin-bottom: 8px;
  }

  .section-intro h2 {
    font-size: 30px;
  }

  .brand-row {
    justify-content: center;
  }

  .process-row {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
    width: 100%;
  }

  .stat {
    justify-content: center;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .inner-hero {
    text-align: center;
    padding-top: calc(var(--nav-height) + 28px);
  }

  .inner-hero h1 {
    font-size: 36px;
    letter-spacing: -1.2px;
  }

  .inner-hero .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .inner-hero .hero-actions {
    justify-content: center;
  }

  .inner-hero .hero-mini-item {
    text-align: center;
  }

  .inner-hero-visual {
    min-height: 280px;
    max-width: 480px;
    margin: 24px auto 0;
  }

  .inner-hero-img {
    margin-left: auto;
    margin-right: auto;
  }

  .inner-hero-visual .purple-shape {
    left: 50%;
    right: auto;
    transform: translateX(-35%);
    width: 220px;
    height: 220px;
  }

  .webinar-item {
    flex-wrap: wrap;
  }

  .webinar-item .btn-sm {
    width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 52px 0;
  }

  .section-pad-sm {
    padding: 44px 0;
  }

  .mo-hero h1 {
    font-size: 36px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual-banner {
    max-width: 100%;
  }

  .hero-img-banner {
    width: 100%;
  }

  .hero-img {
    width: 300px;
  }

  .purple-shape {
    width: 190px;
    height: 190px;
  }

  .metric-card,
  .roi-card {
    transform: scale(0.85);
  }

  .process-row::before {
    display: none;
  }

  .copyright {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .hero-mini .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }
}
