:root {
  --purple: #7b3aed;
  --purple-dark: #7431e3;
  --purple-deep: #5b21b6;
  --purple-soft: #f3eaff;
  --purple-mid: #8f52fa;
  --ink: #1a1228;
  --muted: #5c5668;
  --line: #e8e2f2;
  --bg: #ffffff;
  --bg-soft: #faf8ff;
  --whatsapp: #25d366;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(91, 33, 182, 0.14);
  --font-display: "Outfit", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.container.narrow {
  width: min(820px, calc(100% - 2.5rem));
}

.accent {
  color: var(--purple);
}

.eyebrow,
.section-kicker,
.mini-label,
.step {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.85rem;
}

.eyebrow.light,
.mini-label.light {
  color: rgba(255, 255, 255, 0.75);
}

.section-kicker {
  text-align: center;
  color: #9a93a8;
}

.section-sub {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 2.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: #fff;
  box-shadow: 0 10px 28px rgba(123, 58, 237, 0.28);
}

.btn-outline {
  background: #fff;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-light {
  background: #fff;
  color: var(--purple-deep);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn.full {
  width: 100%;
}

.text-link {
  color: #fff;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.5rem;
}

/* Floating actions */
.whatsapp-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  animation: pulse-wa 2.4s ease-in-out infinite;
}

.whatsapp-fab svg {
  width: 1.45rem;
  height: 1.45rem;
}

.call-fab {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.call-fab svg {
  width: 1.1rem;
  height: 1.1rem;
}

.side-cta {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 900;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  background: var(--purple);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 0 0 12px 12px;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  margin-left: 2.6rem;
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.65);
  }
}

/* Top banner + header */
.top-banner {
  background: linear-gradient(90deg, var(--purple-deep), var(--purple));
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.top-banner a {
  display: block;
  padding: 0.7rem 1rem;
}

.badge-new {
  display: inline-block;
  background: #fff;
  color: var(--purple-deep);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-right: 0.45rem;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--purple-deep);
}

.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--purple-mid), var(--purple-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
}

.brand-name {
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.primary-nav ul {
  display: flex;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.primary-nav a:hover {
  color: var(--purple);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  padding: 3.5rem 0 2.5rem;
  background:
    radial-gradient(circle at 12% 18%, rgba(143, 82, 250, 0.12), transparent 35%),
    radial-gradient(circle at 88% 10%, rgba(123, 58, 237, 0.08), transparent 30%),
    linear-gradient(180deg, #fcfaff 0%, #fff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
}

.pill {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.lede {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
}

.ratings {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.ratings .stars {
  color: #f5b301;
  margin-right: 0.3rem;
}

.hero-card {
  background: linear-gradient(160deg, var(--purple-mid), var(--purple-deep));
  color: #fff;
  border-radius: 28px;
  padding: 2.2rem;
  box-shadow: var(--shadow);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: rise-in 0.8s ease both;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -30% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.hero-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  flex: 1;
}

.hero-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-card-foot strong {
  display: block;
}

.hero-card-foot span {
  opacity: 0.85;
  font-size: 0.9rem;
}

.client-logo {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.9;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Featured */
.featured {
  padding: 1.75rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.75rem 2.5rem;
  color: #a39db0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* Stats */
.stats {
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(91, 33, 182, 0.96), rgba(123, 58, 237, 0.92)),
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.04) 18px,
      rgba(255, 255, 255, 0.04) 19px
    );
  color: #fff;
}

.stats h2,
.stats .section-sub {
  color: #fff;
}

.stats .section-sub {
  opacity: 0.88;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stats-grid div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  margin-bottom: 0.35rem;
}

/* Channels */
.channels,
.services,
.why,
.process,
.team,
.cases,
.reviews,
.stack,
.faq {
  padding: 4.5rem 0;
}

.channels {
  background: var(--bg-soft);
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.channel-grid article,
.why-grid article,
.process-grid article,
.team-grid article,
.cases-grid article,
.reviews-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.channel-grid article:hover,
.why-grid article:hover,
.cases-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Services */
.services-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.service-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.service-tab {
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.service-tab span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.service-tab.is-active {
  background: var(--purple-soft);
  border-color: transparent;
  border-left: 4px solid var(--purple);
  color: var(--purple-deep);
}

.service-panel {
  min-height: 100%;
}

.service-card {
  height: 100%;
  background: linear-gradient(155deg, var(--purple-mid), var(--purple-deep));
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  background-image:
    linear-gradient(155deg, rgba(143, 82, 250, 0.95), rgba(91, 33, 182, 0.96)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.05) 28px,
      rgba(255, 255, 255, 0.05) 29px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 28px,
      rgba(255, 255, 255, 0.05) 28px,
      rgba(255, 255, 255, 0.05) 29px
    );
}

.service-card h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 1rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.9);
}

.feature-chips {
  list-style: none;
  margin: 1.25rem 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.feature-chips li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.feature-chips li::before {
  content: "▸ ";
  opacity: 0.8;
}

.result-line {
  font-size: 0.95rem;
}

/* Why / process / team */
.why-grid,
.process-grid,
.team-grid,
.cases-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.why-grid article span,
.process-grid .step {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--purple);
}

.why-grid article span {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.quote-band {
  padding: 4rem 0;
  background: linear-gradient(120deg, var(--purple-deep), var(--purple));
  color: #fff;
}

.quote-band blockquote {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  max-width: 52rem;
}

.quote-by {
  color: var(--muted);
  margin: 0;
}

.quote-band .quote-by {
  color: rgba(255, 255, 255, 0.85);
}

.avatar,
.case-mark {
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--purple-soft);
  color: var(--purple-deep);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
}

.case-stat {
  color: var(--purple);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
}

.reviews {
  background: var(--bg-soft);
}

.review-scores {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-scores div {
  min-width: 7rem;
}

.review-scores strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--purple);
}

.reviews .stars {
  color: #f5b301;
  margin: 0 0 0.4rem;
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.stack-grid span {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.65rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

/* FAQ */
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--purple);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list p {
  color: var(--muted);
  margin: 0.85rem 0 0.25rem;
}

/* CTA + form */
.cta-final {
  padding: 4.5rem 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(145deg, #4c1d95, var(--purple));
  color: #fff;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.cta-final .section-sub,
.cta-final p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.contact-details li {
  margin-bottom: 0.55rem;
}

.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  margin-bottom: 1.1rem;
}

.contact-form label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.contact-form input {
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  background: #faf8ff;
}

.contact-form input:focus {
  outline: 2px solid rgba(123, 58, 237, 0.35);
  border-color: var(--purple);
}

.form-note {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-note a {
  color: var(--purple);
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: #140a24;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
}

.site-footer .brand,
.site-footer .brand-name {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.1rem;
  font-size: 0.9rem;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .services-layout,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .channel-grid,
  .why-grid,
  .team-grid,
  .cases-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem 1.25rem;
    display: none;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 0.85rem;
  }

  .header-cta {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .stats-grid,
  .channel-grid,
  .why-grid,
  .process-grid,
  .team-grid,
  .cases-grid,
  .reviews-grid,
  .feature-chips {
    grid-template-columns: 1fr;
  }

  .call-fab span,
  .whatsapp-fab span {
    display: none;
  }

  .call-fab,
  .whatsapp-fab {
    padding: 0.9rem;
    border-radius: 999px;
  }

  .hero {
    padding-top: 2.25rem;
  }

  .top-banner {
    font-size: 0.78rem;
  }

  .mega-menu {
    grid-template-columns: 1fr;
  }

  .link-card-grid,
  .split-content,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Dropdown navigation */
.primary-nav a.is-current {
  color: var(--purple);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7em;
  margin-left: 0.35rem;
  opacity: 0.7;
}

/*
  Root-cause fix: previous layout used top offset + narrow bridge.
  Mega menus are much wider than the trigger, so the cursor left :hover.
  Solution: flush top, full-width bridge matching the open panel, no Y-translate gap.
*/
.has-dropdown::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: max(100%, 240px);
  height: 1.25rem;
  z-index: 899;
  display: none;
}

.has-dropdown:hover::before,
.has-dropdown:focus-within::before,
.has-dropdown.is-open::before,
.has-dropdown.is-hover::before {
  display: block;
}

.has-dropdown.has-mega::before {
  width: min(920px, calc(100vw - 2rem));
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 0.85rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease 0.08s, visibility 0.15s ease 0.08s;
  z-index: 900;
  min-width: 220px;
}

.dropdown-sm {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dropdown a {
  display: block;
  padding: 0.55rem 0.75rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.dropdown a:hover,
.dropdown a.is-current {
  background: var(--purple-soft);
  color: var(--purple-deep);
}

.mega-menu {
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1rem;
  padding: 1.1rem;
}

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.mega-heading {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple);
  font-weight: 800;
  margin: 0 0 0.35rem;
  padding: 0 0.75rem;
}

.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown,
.has-dropdown.is-open > .dropdown,
.has-dropdown.is-hover > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

@media (max-width: 980px) {
  .has-dropdown::before {
    display: none !important;
  }

  .has-dropdown > a::after {
    float: right;
  }

  .dropdown,
  .mega-menu {
    position: static;
    transform: none !important;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0.35rem 0 0.35rem 0.75rem;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: transparent;
  }

  .has-dropdown.is-open > .dropdown,
  .has-dropdown.is-open > .mega-menu {
    display: grid;
  }

  .has-dropdown.is-open > .dropdown-sm {
    display: flex;
  }

  .mega-menu {
    grid-template-columns: 1fr 1fr;
  }

  .dropdown a {
    white-space: normal;
  }
}

/* Inner pages */
.page-hero {
  padding: 3rem 0 1.5rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(143, 82, 250, 0.12), transparent 35%),
    linear-gradient(180deg, #fcfaff 0%, #fff 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.breadcrumbs a {
  color: var(--purple);
  font-weight: 600;
}

.crumb-sep {
  opacity: 0.5;
}

.page-hero h1 {
  max-width: 18ch;
}

.page-section {
  padding: 2.5rem 0 4rem;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.link-card h3 {
  margin-bottom: 0.45rem;
}

.link-card p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.link-card span {
  color: var(--purple);
  font-weight: 700;
}

.resource-hub-card .resource-topic {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.hub-intro {
  margin-bottom: 1.5rem;
}

.hub-intro h2 {
  margin-bottom: 0.5rem;
}

.link-card .case-mark {
  margin-bottom: 0.75rem;
}

.content-cover {
  display: flex;
  align-items: flex-end;
  min-height: 140px;
  padding: 1rem 1.1rem;
  border-radius: calc(var(--radius) - 2px);
  background: linear-gradient(135deg, var(--c1), var(--c2));
  color: #fff;
  margin-bottom: 1rem;
}

.content-cover span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.content-cover span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.content-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.content-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.85rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.content-card-body h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.content-card-body p {
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.content-card-body span {
  color: var(--purple);
  font-weight: 700;
}

.case-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
  margin: 0 0 1.5rem;
  padding: 0.9rem 1rem;
  background: #f7f5ff;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.toc-box {
  margin: 1.25rem 0 1.75rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.toc-box h2 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.toc-box ol {
  margin: 0;
  padding-left: 1.2rem;
}

.toc-box a {
  color: var(--purple);
}

.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.text-link {
  color: var(--purple);
  font-weight: 700;
  white-space: nowrap;
}

.faq-group {
  margin-bottom: 1.75rem;
}

.case-study-body .content-cover {
  min-height: 180px;
}

@media (max-width: 980px) {
  .content-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .content-card-grid {
    grid-template-columns: 1fr;
  }

  .section-head-row {
    flex-direction: column;
    align-items: start;
  }
}

.link-card.static {
  cursor: default;
}

.link-card.static:hover {
  transform: none;
  box-shadow: none;
}

.split-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}

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

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--purple);
  font-weight: 800;
}

.info-panel {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.info-panel ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.info-panel li {
  margin-bottom: 0.45rem;
}

.info-panel a {
  color: var(--purple-deep);
  font-weight: 600;
}

.contact-details.dark {
  color: var(--ink);
  font-size: 1.02rem;
}

.contact-details.dark a {
  color: var(--purple);
  font-weight: 700;
}

/* Contact page: isolated from .cta-grid so columns stay even */
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-info-panel,
.contact-page-grid .contact-form {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 1.75rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}

.contact-info-panel > h3,
.contact-page-grid .contact-form > h3 {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--ink);
}

.contact-info-panel > p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.contact-channels > li {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0 !important;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-channels > li:hover {
  border-color: rgba(123, 58, 237, 0.35);
  box-shadow: 0 8px 22px rgba(91, 33, 182, 0.08);
}

.contact-icon {
  box-sizing: border-box;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  border-radius: 12px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px !important;
  overflow: hidden;
  color: var(--purple);
  background: var(--purple-soft);
  border: 1px solid rgba(123, 58, 237, 0.18);
}

.contact-icon svg,
.contact-channels .contact-icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  display: block !important;
  flex-shrink: 0;
}

.contact-icon.is-whatsapp {
  color: #fff;
  background: var(--whatsapp);
  border-color: transparent;
}

.contact-icon.is-whatsapp svg,
.contact-channels .contact-icon.is-whatsapp svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
}

.contact-channel-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  padding-top: 0.2rem;
}

.contact-channel-body strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple-deep);
  line-height: 1.2;
}

.contact-channel-body span,
.contact-channel-body a {
  display: block;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: normal;
}

.contact-page-grid .contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
}

.contact-page-grid .contact-form label {
  margin-bottom: 0.9rem;
}

.contact-page-grid .contact-form .btn.full {
  width: 100%;
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.page-cta {
  margin-top: 1rem;
}

.cta-simple {
  max-width: 760px;
}

.prose a {
  color: var(--purple);
  font-weight: 700;
}

.seo-body {
  padding: 1rem 0 3rem;
}

.seo-body .container > h2 {
  margin-top: 2.75rem;
}

.seo-body .container > h2:first-child {
  margin-top: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.benefit-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.benefit-grid h3 {
  font-size: 1.05rem;
}

.benefit-grid p {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.process-steps article {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.process-steps .step-num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 0.4rem;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0;
}

.internal-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--purple-deep);
  background: #fff;
}

.internal-links a:hover {
  background: var(--purple-soft);
}

.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 1rem 1.15rem;
  margin-bottom: 0.75rem;
}

.seo-faq summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  list-style: none;
}

.seo-faq summary::-webkit-details-marker {
  display: none;
}

.seo-faq summary::after {
  content: "+";
  float: right;
  color: var(--purple);
  font-size: 1.2rem;
}

.seo-faq details[open] summary::after {
  content: "–";
}

.seo-faq p {
  color: var(--muted);
  margin: 0.85rem 0 0.25rem;
}

.prose-block {
  max-width: 720px;
  color: var(--muted);
}

.prose-block p {
  margin-bottom: 1rem;
}

.prose-block ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.prose-block li {
  margin-bottom: 0.45rem;
}

@media (max-width: 980px) {
  .benefit-grid,
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .benefit-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .link-card-grid,
  .split-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Case study filters */
.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.case-filters select {
  min-width: 11rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.case-card[hidden] {
  display: none !important;
}

.testimonial-quote {
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  margin: 0.35rem 0 0.85rem;
}

.testimonial-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.35rem 0 0.65rem;
}

.hub-testimonials {
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.hub-testimonials article {
  padding: 1.1rem;
}

.quote-by span {
  color: var(--muted);
  font-weight: 500;
}

/* Pricing plans — no public prices */
.pricing-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.pricing-plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-plan.is-featured {
  border-color: var(--purple);
  box-shadow: var(--shadow);
  position: relative;
}

.pricing-plan h2 {
  margin: 0;
  font-size: 1.45rem;
}

.pricing-plan ul {
  margin: 0.25rem 0 0.5rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.pricing-plan li {
  margin-bottom: 0.35rem;
}

.pricing-plan .plan-fit {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: auto;
}

.pricing-plan .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

@media (max-width: 980px) {
  .pricing-plans {
    grid-template-columns: 1fr;
  }
}

/* Small Business / How Bert Works page */
.method-strip {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1rem 0 0.5rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.sb-hero-orbit {
  margin-top: 1.75rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.sb-orbit-core {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.sb-orbit-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.sb-orbit-tags span {
  padding: 0.35rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}

.sb-ecosystem {
  margin-top: 1.25rem;
}

.sb-eco-core {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
}

.sb-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.sb-eco-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.sb-eco-grid h3 {
  margin-bottom: 0.55rem;
}

.sb-eco-grid ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.sb-eco-grid li {
  margin-bottom: 0.3rem;
}

.sb-flow {
  margin-top: 1.5rem;
}

.sb-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 1rem;
}

.sb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.sb-table th,
.sb-table td {
  text-align: left;
  padding: 0.65rem 0.5rem;
  border-bottom: 1px solid var(--line);
}

.sb-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.sb-big-line {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 0.75rem 0 1rem;
}

.sb-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.sb-compare article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.sb-compare article.is-highlight {
  border-color: var(--purple);
  box-shadow: var(--shadow);
}

.sb-stack {
  text-align: center;
  line-height: 1.7;
  font-weight: 600;
  color: var(--muted);
}

.sb-final-line {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .sb-eco-grid,
  .sb-compare {
    grid-template-columns: 1fr;
  }
}

/* Case study proof section */
.sb-proof {
  background:
    radial-gradient(1200px 400px at 10% -10%, rgba(123, 58, 237, 0.12), transparent 60%),
    radial-gradient(900px 360px at 100% 20%, rgba(91, 33, 182, 0.08), transparent 55%),
    var(--bg-soft);
}

.sb-proof-card {
  position: relative;
  margin: 1.5rem 0 2rem;
  padding: 1.6rem 1.5rem 1.75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sb-proof-card-glow {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(143, 82, 250, 0.28), transparent 70%);
  pointer-events: none;
}

.sb-proof-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 1.25rem;
}

.sb-proof-meta div {
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--purple-soft));
}

.sb-proof-meta span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.sb-proof-meta strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.proof-metric {
  text-align: center;
  padding: 1rem 0.6rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 24px rgba(91, 33, 182, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.proof-metric:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.proof-metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  color: var(--purple-deep);
  margin-bottom: 0.25rem;
}

.proof-metric span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.sb-spark {
  margin: 0.5rem 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f7f2ff);
}

.sb-spark svg {
  width: 100%;
  height: 80px;
  display: block;
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 0.75rem 0 1rem;
}

.proof-frame {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.08);
}

.proof-frame img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: top;
}

.proof-frame figcaption {
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.proof-disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sb-insight {
  border-top: 3px solid var(--purple);
}

@media (max-width: 980px) {
  .proof-metrics,
  .proof-gallery {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .proof-metrics,
  .proof-gallery {
    grid-template-columns: 1fr;
  }
  .proof-frame img {
    height: 220px;
  }
}

/* ===== Small Business dynamic / infographic layer ===== */
.sb-page .sb-section {
  scroll-margin-top: 5rem;
}

.sb-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.sb-reveal.is-in {
  opacity: 1;
  transform: none;
}

.sb-orbit {
  position: relative;
  margin: 1.75rem auto 0;
  width: min(640px, 100%);
  height: 420px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(123, 58, 237, 0.12), transparent 55%),
    #fff;
  overflow: hidden;
}

.sb-orbit-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sb-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--purple-mid), var(--purple-deep));
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.35);
  z-index: 2;
  animation: sb-float 4.5s ease-in-out infinite;
}

.sb-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  z-index: 3;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: 0 8px 20px rgba(91, 33, 182, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  animation: sb-float 5s ease-in-out infinite;
}

.sb-node:nth-child(odd) {
  animation-delay: 0.4s;
}

.sb-node:hover,
.sb-node.is-active {
  border-color: var(--purple);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) scale(1.05);
}

.sb-orbit-tip {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  z-index: 4;
  max-width: 90%;
  padding: 0.55rem 0.85rem;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
}

.sb-pill-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sb-pill {
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, var(--purple-soft));
}

.sb-pill strong {
  display: block;
  margin-bottom: 0.3rem;
}

.sb-pill span {
  color: var(--muted);
  font-size: 0.88rem;
}

.sb-journey {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.25rem 0.5rem 0.5rem;
}

.sb-journey-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 1.65rem;
  height: 3px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.sb-journey-progress {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--purple-mid));
  transition: width 1.2s ease;
}

.sb-journey.is-in .sb-journey-progress {
  width: 100%;
}

.sb-journey-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.sb-journey-steps li {
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.35rem 0.45rem 0.85rem;
}

.sb-journey-steps em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--purple);
}

.sb-journey-steps strong {
  display: block;
  margin: 0.2rem 0;
}

.sb-journey-steps span {
  font-size: 0.78rem;
  color: var(--muted);
}

.sb-engine {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: stretch;
}

.sb-engine-core {
  grid-column: 2 / 4;
  grid-row: 2;
  display: grid;
  place-items: center;
  min-height: 120px;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--purple-mid), var(--purple-deep));
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.sb-engine-core small {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  opacity: 0.85;
}

.sb-engine-node {
  text-align: left;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 0.9rem;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sb-engine-node ul {
  margin: 0.45rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.sb-engine.is-filtering .sb-engine-node:not(.is-active) {
  opacity: 0.35;
}

.sb-engine-node.is-active,
.sb-engine-node:hover {
  border-color: var(--purple);
  transform: translateY(-2px);
}

.sb-engine-node.is-active ul,
.sb-engine-node:focus-visible ul {
  max-height: 160px;
}

.sb-engine-note {
  grid-column: 1 / -1;
}

.sb-flow-track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.sb-flow-step {
  flex: 1 1 140px;
  padding: 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
}

.sb-flow-step.is-bert {
  background: var(--purple-soft);
  border-color: var(--purple);
}

.sb-flow-step em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--purple);
  font-weight: 800;
}

.sb-flow-arrow {
  color: var(--purple);
  font-weight: 800;
}

.sb-google-map {
  margin-top: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 40%, rgba(123, 58, 237, 0.1), transparent 50%),
    #fff;
  text-align: center;
}

.sb-google-center {
  width: 110px;
  height: 110px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: var(--purple-deep);
  box-shadow: var(--shadow);
}

.sb-google-nodes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.sb-google-nodes span,
.sb-chip-row span {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}

.sb-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.sb-search-bar {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  font-weight: 600;
  color: var(--muted);
}

.sb-search-path {
  margin-top: 0.65rem;
  font-weight: 700;
  color: var(--purple-deep);
}

.sb-feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}

.sb-feature-strip article {
  padding: 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.sb-dash {
  margin-top: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sb-dash-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--purple-soft), #fff);
}

.sb-rank-table {
  margin: 0;
  border: 0;
}

.sb-rank {
  font-weight: 800;
  color: var(--purple-deep);
}

.sb-battle {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: stretch;
  margin-top: 1.25rem;
}

.sb-battle-col {
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.sb-battle-col.is-comp {
  background: var(--bg-soft);
}

.sb-battle-vs {
  align-self: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--purple);
}

.sb-gap-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  font-weight: 700;
}

.sb-gap-flow .is-accent,
.sb-review-flow .is-accent,
.sb-success-journey .is-accent {
  color: var(--purple-deep);
}

.sb-review-flow,
.sb-success-journey {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: center;
  font-weight: 700;
  margin: 1rem 0 1.25rem;
}

.sb-review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.sb-review-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sb-review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.sb-review-detail {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.sb-loop {
  position: relative;
  max-width: 520px;
  margin: 1.5rem auto 0;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.sb-loop-ring {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 3px dashed rgba(123, 58, 237, 0.35);
  animation: sb-spin 18s linear infinite;
}

.sb-loop-core {
  position: relative;
  z-index: 1;
  width: 58%;
  padding: 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.sb-loop-core ul {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.sb-loop-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-loop-labels span {
  position: absolute;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--purple-deep);
  background: #fff;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.sb-loop-labels span:nth-child(1) { left: 50%; top: 2%; transform: translateX(-50%); }
.sb-loop-labels span:nth-child(2) { right: 2%; top: 28%; }
.sb-loop-labels span:nth-child(3) { right: 8%; bottom: 18%; }
.sb-loop-labels span:nth-child(4) { left: 50%; bottom: 2%; transform: translateX(-50%); }
.sb-loop-labels span:nth-child(5) { left: 8%; bottom: 18%; }
.sb-loop-labels span:nth-child(6) { left: 2%; top: 28%; }

.sb-control-room,
.sb-terminal {
  margin-top: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sb-control-room header,
.sb-terminal-bar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, var(--ink), #3b2760);
  color: #fff;
}

.sb-control-grid,
.sb-terminal-body {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding: 1rem;
}

.sb-control-grid article,
.sb-terminal-body > div {
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.sb-control-grid span,
.sb-terminal-body span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.sb-control-grid .up,
.sb-terminal-body .up {
  color: #0f766e;
}

.sb-control-grid .is-next,
.sb-terminal-body .is-next {
  background: var(--purple-soft);
  border-color: var(--purple);
}

.sb-terminal-body .span-2 {
  grid-column: span 2;
}

.sb-bar {
  height: 8px;
  border-radius: 999px;
  background: #e8e2f2;
  overflow: hidden;
}

.sb-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-mid));
}

.sb-mini-line {
  height: 4px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), transparent);
}

.sb-watch-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.sb-watch-wall span {
  padding: 0.85rem;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  transition: transform 0.25s ease;
}

.sb-watch-wall span.is-pop {
  transform: translateY(-4px);
  border-color: var(--purple);
}

.sb-health {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.25rem;
  align-items: center;
  margin-top: 1.25rem;
}

.sb-health-gauge {
  position: relative;
  width: 180px;
  height: 180px;
}

.sb-health-gauge svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.sb-health-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1.2;
}

.sb-health-legs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sb-health-legs span {
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 600;
  font-size: 0.82rem;
}

.sb-chaos,
.sb-vendors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}

.sb-chaos-before,
.sb-chaos-after,
.sb-vendors > div {
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.sb-chaos-bubbles,
.sb-vendor-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.sb-chaos-bubbles span,
.sb-vendor-stack span {
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  border: 1px dashed var(--muted);
  color: var(--muted);
  font-size: 0.8rem;
}

.sb-chaos-core,
.sb-with-core {
  width: 72px;
  height: 72px;
  margin: 0.5rem auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--purple);
  color: #fff;
  font-weight: 800;
}

.sb-with-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  text-align: center;
}

.sb-with-grid span {
  padding: 0.45rem;
  border-radius: 10px;
  background: var(--purple-soft);
  font-size: 0.8rem;
  font-weight: 700;
}

.sb-industry-tabs {
  margin-top: 1.25rem;
}

.sb-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.sb-tablist button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.sb-tablist button.is-active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.sb-ind-panel {
  padding: 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.sb-matrix {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.85rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}

.sb-matrix label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--muted);
}

.sb-matrix select {
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  font: inherit;
  color: var(--ink);
}

.sb-matrix-out {
  grid-column: 1 / -1;
  padding-top: 0.5rem;
}

@keyframes sb-float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-6px); }
}

@keyframes sb-spin {
  to { transform: rotate(360deg); }
}

.sb-line-draw {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
}

.sb-reveal.is-in .sb-line-draw {
  animation: sb-draw 1.4s ease forwards;
}

@keyframes sb-draw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 980px) {
  .sb-pill-row,
  .sb-feature-strip,
  .sb-review-cards,
  .sb-watch-wall,
  .sb-control-grid,
  .sb-terminal-body,
  .sb-chaos,
  .sb-vendors,
  .sb-health {
    grid-template-columns: 1fr 1fr;
  }
  .sb-journey-steps {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .sb-journey-line {
    display: none;
  }
  .sb-engine {
    grid-template-columns: 1fr 1fr;
  }
  .sb-engine-core {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .sb-battle {
    grid-template-columns: 1fr;
  }
  .sb-orbit {
    height: auto;
    min-height: 360px;
    padding: 1rem 0.75rem 3.5rem;
  }
  .sb-orbit-lines {
    display: none;
  }
  .sb-orbit-core {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0.5rem auto 1rem;
    animation: none;
  }
  .sb-node {
    position: static;
    transform: none;
    margin: 0.35rem;
    animation: none;
  }
  .sb-orbit {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: flex-start;
  }
}

@media (max-width: 640px) {
  .sb-pill-row,
  .sb-feature-strip,
  .sb-review-cards,
  .sb-watch-wall,
  .sb-control-grid,
  .sb-terminal-body,
  .sb-chaos,
  .sb-vendors,
  .sb-health,
  .sb-matrix,
  .sb-journey-steps,
  .sb-engine {
    grid-template-columns: 1fr;
  }
  .sb-flow-arrow {
    display: none;
  }
  .sb-flow-track {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .sb-orbit-core,
  .sb-node,
  .sb-loop-ring,
  .sb-line-draw,
  .sb-journey-progress {
    animation: none !important;
    transition: none !important;
  }
  .sb-line-draw {
    stroke-dashoffset: 0;
  }
  .sb-journey-progress {
    width: 100%;
  }
}

/* Mumbai digital marketing landing — SEO / GEO / AEO / VO */
.mdm-hero-line {
  font-family: Outfit, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0.35rem 0 0.85rem;
  color: var(--ink);
}

.mdm-hero-second {
  margin-top: 0.75rem;
}

.mdm-stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 1rem;
}

.mdm-stage {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1rem 1.25rem;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.mdm-stage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.mdm-stage-seo::before { background: #0f766e; }
.mdm-stage-geo::before { background: #1d4ed8; }
.mdm-stage-aeo::before { background: #b45309; }
.mdm-stage-vo::before { background: #7c3aed; }

.mdm-stage-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.mdm-stage h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.mdm-stage p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.mdm-stages-footer {
  text-align: center;
  margin: 0.5rem 0 2rem;
  font-size: 1.05rem;
}

.mdm-answer {
  border: 1px solid var(--line);
  border-left: 3px solid #1d4ed8;
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  background: #f8fafc;
  margin: 1rem 0 1.25rem;
}

.mdm-answer h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.mdm-answer p {
  margin: 0;
  line-height: 1.55;
}

.mdm-example {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  margin: 1rem 0;
  background: #fff;
}

.mdm-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mdm-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

.mdm-table-wrap {
  margin: 1.25rem 0 1.5rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0.75rem 1rem;
  -webkit-overflow-scrolling: touch;
}

.mdm-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 420px;
}

.mdm-table th,
.mdm-table td {
  text-align: left;
  padding: 0.7rem 0.55rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.mdm-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.mdm-table tr:last-child td {
  border-bottom: 0;
}

.mdm-mid-cta {
  margin: 2rem 0;
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);
}

.mdm-mid-cta-title {
  font-weight: 700;
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
}

.mdm-q-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.25rem 0 2rem;
}

.mdm-q-card {
  display: block;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.mdm-q-card:hover,
.mdm-q-card:focus-visible {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.12);
  outline: none;
}

.mdm-service-grid article a {
  font-weight: 600;
}

@media (max-width: 900px) {
  .mdm-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mdm-example-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .mdm-stages,
  .mdm-q-grid {
    grid-template-columns: 1fr;
  }
}
