/**
 * MM&Co. Premium Motion — fintech / SaaS immersive layer
 */

/* ——— Global atmosphere ——— */
body.mmco-site {
  background:
    radial-gradient(ellipse 90% 60% at 8% -10%, rgba(212, 160, 23, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 50% at 92% 5%, rgba(27, 29, 34, 0.06), transparent 50%),
    #ffffff;
}
body.mmco-site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(27, 29, 34, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 29, 34, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 15%, transparent 75%);
}
.site-main { position: relative; z-index: 1; }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--navy-light));
  box-shadow: 0 0 12px rgba(212, 160, 23, 0.55);
  transition: width 0.08s linear;
  pointer-events: none;
}

.cursor-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    600px circle at var(--mx, 50%) var(--my, 40%),
    rgba(212, 160, 23, 0.14),
    rgba(35, 38, 45, 0.08) 35%,
    transparent 65%
  );
}
.cursor-glow.is-active { opacity: 1; }

.motion-glass {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 24px 48px rgba(27, 29, 34, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* ——— Top header: nav left (not centered) ——— */
body.mmco-site .header-inner {
  gap: clamp(1rem, 2.5vw, 2rem);
}
body.mmco-site .header-end {
  gap: clamp(0.65rem, 1.5vw, 1.15rem);
}
body.mmco-site .main-nav {
  justify-content: flex-end;
}
body.mmco-site .main-nav ul {
  flex-wrap: wrap;
  justify-content: flex-end;
}
body.mmco-site .header-actions {
  gap: 0.5rem;
  flex-shrink: 0;
}
body.mmco-site .main-nav ul {
  gap: 0.15rem;
}
body.mmco-site .main-nav a {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
}
body.mmco-site .main-nav a.is-active {
  background: linear-gradient(180deg, rgba(212, 160, 23, 0.14), rgba(212, 160, 23, 0.06));
  box-shadow: inset 0 0 0 1px rgba(212, 160, 23, 0.2);
}

/* ——— Header glass on scroll ——— */
body.mmco-site .site-header {
  transition:
    background 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.45s var(--ease-out),
    backdrop-filter 0.45s var(--ease-out);
}
body.mmco-site .site-header::after {
  display: none;
}
body.mmco-site.has-hero .site-header:not(.scrolled),
body.mmco-site.has-hero-header .site-header:not(.scrolled) {
  /* Corporate owns header look — keep motion from shifting homepage vs About */
  background: inherit;
}
body.mmco-site .main-nav a {
  position: relative;
  overflow: visible;
}
body.mmco-site .main-nav a::after {
  /* Superseded by theme-mmco-corporate.css — keep inert to avoid double underlines */
  content: none;
}
body.mmco-site .btn-header-cta,
body.mmco-site .btn-gold.btn-header-cta {
  position: relative;
  overflow: hidden;
}
.btn-glow {
  animation: mmco-cta-glow 3s ease-in-out infinite;
}
@keyframes mmco-cta-glow {
  0%, 100% { box-shadow: 0 8px 28px rgba(212, 160, 23, 0.35); }
  50% { box-shadow: 0 12px 40px rgba(212, 160, 23, 0.55), 0 0 24px rgba(232, 184, 58, 0.25); }
}
.btn-ripple {
  position: absolute;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
  transform: scale(0);
  animation: mmco-ripple 0.6s ease-out forwards;
  pointer-events: none;
}
@keyframes mmco-ripple {
  to { transform: scale(28); opacity: 0; }
}

/* ——— Immersive hero layout ——— */
.hero-immersive.hero-split {
  min-height: auto;
  padding: clamp(4.25rem, 7vw, 5.25rem) 0 clamp(1.5rem, 3vw, 2.25rem);
  overflow: hidden;
}
.hero-immersive .hero-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
  width: 100%;
  max-width: var(--mmco-container, 1440px);
}
.hero-immersive .hero-split-content {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-immersive .hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin-bottom: 1rem;
}
.hero-immersive .hero-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 160, 23, 0.55);
  color: var(--gold-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.12);
}
.hero-immersive .hero-title {
  margin-bottom: 1rem;
}
.hero-immersive .hero-subtitle {
  margin-bottom: 1rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
}
.hero-immersive .hero-loc-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}
.hero-immersive .hero-loc-inline svg {
  flex-shrink: 0;
  color: var(--gold-light);
}
.hero-immersive .hero-actions {
  margin-top: 0.25rem;
  gap: 0.75rem;
}
.hero-immersive .hero-trust-float {
  display: none;
}
.hero-immersive .hero-loc-box {
  display: none;
}

.hero-immersive .hero-split-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-width: 0;
}
.hero-immersive .hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-immersive .hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.55;
  animation: mmco-blob-drift 18s ease-in-out infinite;
}
.hero-immersive .hero-blob--1 {
  width: min(520px, 55vw);
  height: min(520px, 55vw);
  top: -15%;
  right: -5%;
  background: rgba(212, 160, 23, 0.35);
}
.hero-immersive .hero-blob--2 {
  width: min(400px, 45vw);
  height: min(400px, 45vw);
  bottom: -10%;
  left: 20%;
  background: rgba(35, 38, 45, 0.45);
  animation-delay: -6s;
}
.hero-immersive .hero-blob--3 {
  width: min(280px, 30vw);
  height: min(280px, 30vw);
  top: 40%;
  left: -8%;
  background: rgba(232, 184, 58, 0.2);
  animation-delay: -12s;
}
@keyframes mmco-blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.05); }
  66% { transform: translate(-16px, 12px) scale(0.96); }
}
.hero-immersive .hero-particles {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.25;
  animation: mmco-particles-shift 40s linear infinite;
}
@keyframes mmco-particles-shift {
  from { background-position: 0 0; }
  to { background-position: 32px 32px; }
}
.hero-immersive .hero-title-gradient {
  display: block;
  background: linear-gradient(120deg, #fff 0%, #fde9a8 45%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% auto;
  animation: mmco-gradient-shift 6s ease infinite;
}
@keyframes mmco-gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
/* Layered dashboard visual (right column) */
.hero-visual-stack {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.hero-dashboard {
  position: relative;
  width: 100%;
  min-height: 0;
  padding: 0.35rem 0.25rem 0.65rem;
}
.hero-dashboard__glow {
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.28), transparent 62%);
  filter: blur(42px);
  z-index: 0;
  animation: mmco-pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes mmco-pulse-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.04); }
}
.hero-dashboard__shell {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  padding: 1.1rem 1.15rem 1.15rem;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.hero-dashboard__shell:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 64px rgba(27, 29, 34, 0.18);
}
.hero-dashboard__top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
}
.hero-dashboard__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.hero-dashboard__dot:nth-child(1) { background: #f87171; }
.hero-dashboard__dot:nth-child(2) { background: #fbbf24; }
.hero-dashboard__dot:nth-child(3) { background: #34d399; }
.hero-dashboard__title {
  flex: 1;
  margin-left: 0.35rem;
  color: var(--text-muted);
}
.hero-dashboard__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}
.hero-dashboard__metric {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-dashboard__metric-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.hero-dashboard__metric strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.25rem;
}
.hero-dashboard__metric-note {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-dashboard__metric-note--gold {
  color: #b45309;
}
.hero-dashboard__chart {
  height: 78px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  background: transparent;
  overflow: hidden;
  padding: 0.15rem 0;
}
.hero-dashboard__chart-svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-dashboard__chart-line {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.8s var(--ease-out);
}
.hero-dashboard__chart-line.is-drawn {
  stroke-dashoffset: 0;
}
.hero-dashboard__rows {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.hero-dashboard__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
}
.hero-dashboard__row:last-child {
  margin-bottom: 0;
}
.hero-dashboard__bar {
  flex: 1;
  max-width: 110px;
  height: 6px;
  border-radius: 999px;
  background: rgba(27, 29, 34, 0.08);
  overflow: hidden;
}
.hero-dashboard__bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #e8b83a, #d4a017);
  transform-origin: left center;
  transform: scaleX(0);
  animation: mmco-bar-grow 1.1s var(--ease-out) forwards;
}
.hero-dashboard__row:nth-child(2) .hero-dashboard__bar i { animation-delay: 0.12s; }
.hero-dashboard__row:nth-child(3) .hero-dashboard__bar i { animation-delay: 0.24s; }
@keyframes mmco-bar-grow {
  to { transform: scaleX(1); }
}

.hero-float-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.8rem;
  border-radius: var(--radius);
  min-width: 148px;
  max-width: 180px;
  font-size: 0.76rem;
  box-shadow: 0 12px 32px rgba(27, 29, 34, 0.14);
}
.hero-float-card strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
  font-size: 0.8rem;
}
.hero-float-card span {
  color: var(--text-muted);
  font-size: 0.66rem;
}
.hero-float-card__icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(27, 29, 34, 0.07);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.85rem;
}
.hero-float-card__icon--gold {
  background: var(--gold-muted);
  color: #b45309;
}
.hero-float-card--1 {
  top: 2%;
  right: -2%;
}
.hero-float-card--2 {
  top: 42%;
  left: -6%;
}
.hero-float-card--3 {
  bottom: 4%;
  right: 0;
}
.float-y {
  animation: mmco-float-y 5s ease-in-out infinite;
}
.float-y--delay { animation-delay: 1.1s; }
.float-y--delay2 { animation-delay: 2.2s; }
@keyframes mmco-float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-immersive .hero-stat-pills {
  display: none;
}
.hero-immersive .hero-blob--3 {
  display: none;
}
.hero-immersive .hero-blob--1 {
  width: min(380px, 42vw);
  height: min(380px, 42vw);
  top: 5%;
  right: 0;
  opacity: 0.35;
}
.hero-immersive .hero-glow--1 {
  opacity: 0.7;
  right: 5%;
  top: 15%;
}

@media (max-width: 1100px) {
  /* Desktop split preserved via theme-mmco-corporate.css for body.mmco-site.
     Keep non-site fallbacks from collapsing float cards only. */
  .hero-visual-stack {
    max-width: 100%;
  }
}

@media (max-width: 520px) {
  .hero-dashboard__metrics {
    grid-template-columns: 1fr 1fr;
  }
  .hero-dashboard {
    min-height: 0;
    padding-bottom: 0;
  }
}

/* ——— Reveal variants ——— */
.mmco-motion .reveal-blur:not(.visible) {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(22px);
}
.reveal-blur {
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.5s var(--ease-out),
    filter 0.5s var(--ease-out);
}
.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.mmco-motion .reveal-scale:not(.visible) {
  opacity: 0;
  transform: scale(0.96) translateY(14px);
}
.reveal-scale {
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ——— Interactive cards ——— */
.motion-card {
  transition:
    transform 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out),
    border-color 0.35s ease;
  will-change: transform;
}
.motion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(212, 160, 23, 0.35), transparent);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.motion-card:hover::before { opacity: 1; }
body.mmco-site .service-card.motion-card,
body.mmco-site .what-we-are-highlight,
body.mmco-site .testimonial-card {
  position: relative;
  overflow: hidden;
}
body.mmco-site .service-card.motion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 56px rgba(27, 29, 34, 0.14);
  border-color: rgba(212, 160, 23, 0.25);
}
body.mmco-site .testimonial-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
body.mmco-site .testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

/* ——— Stats band ——— */
.stats-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #1B1D22 0%, var(--navy) 40%, #2A2E36 100%) !important;
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 !important;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 160, 23, 0.2), transparent 45%),
    radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06), transparent 40%);
  pointer-events: none;
}
.stats-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.stat-pill {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: transform 0.4s var(--ease-out), background 0.4s ease;
}
.stat-pill:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.stat-pill-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gold-light) !important;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat-pill-label {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
}

/* ——— Trust strip ——— */
.trust-strip {
  padding: 1.25rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
}
.trust-strip__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin: 0;
}
.trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.trust-strip__logos li {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.trust-strip__logos li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 160, 23, 0.35);
}

/* ——— Timeline ——— */
.timeline-section {
  background: linear-gradient(180deg, #fff 0%, var(--surface) 100%);
}
.timeline-section .timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 2rem;
}
.timeline-section .timeline::before {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--navy-light));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding: 1.25rem 0 1.25rem 1.5rem;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 1.65rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-muted);
}
.timeline-item .year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  background: var(--gold-muted);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}
.section-divider {
  height: 1px;
  max-width: 120px;
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out);
}
.section-header.visible .section-divider,
.section-divider.visible {
  transform: scaleX(1);
}

/* ——— CTA premium ——— */
.cta-section .cta-box {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
}
.cta-section .cta-box::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 160, 23, 0.15), transparent 30%);
  animation: mmco-cta-spin 12s linear infinite;
  pointer-events: none;
}
@keyframes mmco-cta-spin {
  to { transform: rotate(360deg); }
}
.cta-section .cta-box > * {
  position: relative;
  z-index: 1;
}
.cta-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

/* ——— Footer premium ——— */
.site-footer--premium {
  position: relative;
  background: linear-gradient(165deg, #050d18 0%, var(--navy) 55%, #0a1628 100%);
  color: rgba(255, 255, 255, 0.72);
}
.site-footer--premium::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
}
.site-footer--premium h4 {
  color: var(--gold);
}
.site-footer--premium a:hover {
  color: var(--gold-light);
}
.site-footer--premium .logo-shell--footer {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

/* ——— FAQ motion ——— */
.faq-item--motion summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item--motion summary::-webkit-details-marker { display: none; }
.faq-item--motion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out);
}

/* ——— Mobile nav animation ——— */
@media (max-width: 991px) {
  .main-nav.open {
    animation: mmco-nav-in 0.4s var(--ease-out) forwards;
  }
  @keyframes mmco-nav-in {
    from { opacity: 0; transform: translateY(-12px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-dashboard__shell { transform: none; }
  .hero-dashboard__chart-line { stroke-dashoffset: 0; }
  .hero-dashboard__bar i { transform: scaleX(1); }
  .float-y { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-blob,
  .hero-particles,
  .float-y,
  .hero-trust-chip,
  .btn-glow,
  .cta-section .cta-box::before {
    animation: none !important;
  }
  .reveal-blur,
  .reveal-scale {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
