:root {
  --bg: #020617;
  --bg-alt: #050816;
  --bg-soft: #0b1220;
  --card: #020617;
  --border: rgba(148, 163, 184, 0.16);
  --accent: #ff8a3c;
  --accent-soft: rgba(255, 138, 60, 0.2);
  --accent-strong: #ffb347;
  --text: #e2e8f0;
  --muted: #64748b;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-lg: 20px;
  --radius-xl: 26px;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.9);
}

/* ===== GLOBAL ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.mc-hero {
    position: relative;
    padding: 150px 0 120px;
    background: radial-gradient(circle at 12% 18%,rgba(43,108,255,0.28),transparent 55%),
  radial-gradient(circle at 88% 12%,rgba(121,230,210,0.34),transparent 56%),
  linear-gradient(180deg,#0f1a42 0%,#0b1432 100%);
    color: #fff;
    overflow: hidden;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top, #020617 0, #000 55%);
  color: var(--text);
  font-family: var(--font);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(
      circle at 0 0,
      rgba(56, 189, 248, 0.06),
      transparent 55%
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(249, 115, 22, 0.08),
      transparent 60%
    ),
    radial-gradient(
      circle at 50% 100%,
      rgba(59, 130, 246, 0.06),
      transparent 55%
    );
  opacity: 0.9;
  z-index: -1;
}

.container {
  width: min(1120px, 100% - 32px);
  margin-inline: auto;
}

.hero {
    border-style: none !important;
}
/* ===== BUTTONS ===== */

.btn {
  border-radius: 999px;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: radial-gradient(circle at 15% 0, #fed7aa, #fb923c);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.55);
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 55px rgba(248, 113, 22, 0.75);
}

.btn-outline {
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.8);
  color: var(--text);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.95);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid transparent;
  background: rgba(15, 23, 42, 0.6);
  color: #fff
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.95);
  color: #ffff
}

.full-width {
  width: 100%;
}

/* ===== HERO ===== */

.hero {
  padding: 72px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: 40px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 18px;
}

.pill strong {
  color: #fbbf24;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.15;
  margin: 0 0 14px;
}

.accent {
  color: var(--accent-strong);
}

.hero-subtitle {
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at 0 0, #020617, #020617);
  font-size: 12px;
}

.stat-label {
  display: block;
  color: var(--muted);
}

.stat-value {
  font-weight: 600;
}

/* hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card {
  width: 100%;
  max-width: 690px;
  border-radius: 36px;
  padding: 26px 26px 22px;
  background: linear-gradient(145deg, #020617, #050818);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(
    circle at 15% 0,
    rgba(251, 146, 60, 0.25),
    transparent 55%
  );
  opacity: 0.5;
  mix-blend-mode: screen;
}

.hero-card-main {
  animation: float 6s ease-in-out infinite;
}

.hero-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.hero-tab {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 8px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: rgba(15, 23, 42, 0.6);
  color: var(--muted);
}

.hero-tab.active {
  border-color: rgba(248, 113, 22, 0.8);
  background: rgba(248, 113, 22, 0.18);
  color: #fed7aa;
  box-shadow: 0 10px 25px rgba(248, 113, 22, 0.35);
}

.hero-video-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.9);
  aspect-ratio: 4 / 3;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.05);
}

.hero-video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0) 0%,
    rgba(2, 6, 23, 0.35) 65%,
    rgba(2, 6, 23, 0.9) 100%
  );
  pointer-events: none;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.hero-card-footer-stats {
  margin-top: 26px;
}

.hero-badge {
  flex: 1;
  padding: 10px 11px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 11px;
}

.hero-badge-label {
  display: block;
  color: var(--muted);
}

.hero-badge-value {
  font-weight: 600;
  color: #e5e7eb;
}

.hero-floating {
  position: absolute;
  padding: 9px 11px;
  border-radius: 16px;
  font-size: 11px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  animation: floatSmall 5s ease-in-out infinite;
}

.hero-floating-left {
  left: -10px;
  bottom: 22%;
}

.hero-floating-right {
  right: -4px;
  top: 16%;
}

.floating-label {
  display: block;
  color: var(--muted);
}

.floating-value {
  font-weight: 600;
  color: #e5e7eb;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #000);
}

.section-head {
  margin-bottom: 30px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin: 6px 0 10px;
  font-size: 26px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 600px;
}

.section-head.center p {
  margin-inline: auto;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* ===== FEATURES ===== */

.section-features {
  position: relative;
  z-index: 1;
}

.section-features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0,
    rgba(248, 113, 22, 0.12),
    transparent 65%
  );
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.feature-card {
  border-radius: 28px;
  background: linear-gradient(145deg, #040b1c, #050816);
  padding: 28px 24px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.65);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 28px;
  border: 1px solid rgba(248, 113, 22, 0.25);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(248, 113, 22, 0.6);
  box-shadow: 0 40px 100px rgba(2, 6, 23, 0.9);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-card h3 {
  font-size: 18px;
  margin: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: var(--accent-soft);
  border: 1px solid transparent;
  box-shadow: 0 18px 35px rgba(248, 113, 22, 0.25);
  color: #fff;
}

.icon-orange {
  background: linear-gradient(135deg, #fed7aa, #fb923c);
  color: #1f2937;
}

.icon-cyan {
  background: linear-gradient(135deg, #0ea5e9, #67e8f9);
}

.icon-indigo {
  background: linear-gradient(135deg, #4f46e5, #a855f7);
}

.icon-purple {
  background: linear-gradient(135deg, #c084fc, #f472b6);
}

.icon-pink {
  background: linear-gradient(135deg, #fb7185, #f472b6);
}

.icon-gold {
  background: linear-gradient(135deg, #fcd34d, #f97316);
  color: #1f2937;
}

.icon-green {
  background: linear-gradient(135deg, #22c55e, #4ade80);
  color: #052e16;
}

.icon-slate {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

/* ===== TECHNOLOGY ===== */

.section-tech {
  position: relative;
  overflow: hidden;
}

.section-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 0,
    rgba(59, 130, 246, 0.14),
    transparent 70%
  );
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.stack-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stack-item {
  padding: 18px 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(2, 6, 23, 0.92);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
  min-height: 72px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.65);
  z-index: 0;
}

.stack-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(59, 130, 246, 0.2), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

.stack-item:hover::before {
  opacity: 1;
}

.stack-item span,
.stack-item strong {
  position: relative;
  z-index: 1;
}

.stack-label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.stack-item strong {
  font-weight: 600;
  font-size: 16px;
}

.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 48px;
  justify-content: center;
}

.metric-pill {
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.2), #030617);
  font-size: 13px;
  min-width: 200px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.8);
}

.metric-pill-label {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  margin-bottom: 6px;
}

.metric-pill-value {
  font-weight: 600;
  font-size: 18px;
}

#pricing {
  padding: 140px 0 130px;
}

#pricing .section-head {
  margin-bottom: 48px;
}

/* ===== PRICING ===== */

.pricing-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.price-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, #020617, #020617);
  border: 1px solid var(--border);
  padding: 32px 26px 28px;
  position: relative;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 1);
}

.price-card-featured {
  background: radial-gradient(circle at 0 0, #0b1120, #020617);
  border-color: rgba(251, 146, 60, 0.85);
}


.price-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.price-subtitle {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.price-tag {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
}

.price-tag .currency {
  font-size: 16px;
  margin-right: 3px;
}

.price-list {
  padding-left: 16px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.price-list li + li {
  margin-top: 5px;
}

.price-ribbon {
  position: absolute;
  top: 10px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  background: rgba(248, 113, 22, 0.12);
  color: #fed7aa;
  border: 1px solid rgba(248, 113, 22, 0.6);
}

.pricing-note {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ===== TESTIMONIALS ===== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.testimonial {
  border-radius: var(--radius-lg);
  padding: 18px 16px 18px;
  background: radial-gradient(circle at top, #020617, #020617);
  border: 1px solid var(--border);
  box-shadow: 0 16px 50px rgba(15, 23, 42, 0.85);
}

.stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 6px;
}

.testimonial-quote {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 13px;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--muted);
}

.testimonial-meta .name {
  display: block;
  color: var(--text);
  font-weight: 500;
}

/* ===== CTA & FORM ===== */

.cta-section {
  padding: 60px 0 70px;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
  gap: 32px;
  border-radius: 32px;
  padding: 26px 26px 26px;
  background: radial-gradient(
    circle at 0 0,
    rgba(251, 146, 60, 0.28),
    transparent 60%
  );
  background-color: #020617;
  border: 1px solid rgba(251, 146, 60, 0.5);
  box-shadow: 0 35px 100px rgba(15, 23, 42, 1);
}

.cta-copy h2 {
  margin: 6px 0 10px;
  font-size: 24px;
}

.cta-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.cta-form {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 24px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 12px;
  color: var(--muted);
}

input,
textarea {
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.9);
  padding: 9px 10px;
  font-family: var(--font);
  font-size: 13px;
  color: var(--text);
  outline: none;
  resize: vertical;
  transition: border-color 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

input:focus,
textarea:focus {
  border-color: rgba(251, 146, 60, 0.9);
  box-shadow: 0 0 0 1px rgba(251, 146, 60, 0.4);
}


/* ===== ANIMATIONS ===== */

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateZ(0);
  }
  50% {
    transform: translateY(-8px) translateZ(0);
  }
}

@keyframes floatSmall {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  will-change: opacity, transform;
}

.fade-up.in-view {
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-1-5 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.45s;
}

.delay-2-5 {
  animation-delay: 0.6s;
}

.delay-3 {
  animation-delay: 0.75s;
}

.delay-3-5 {
  animation-delay: 0.9s;
}

.delay-4 {
  animation-delay: 1.05s;
}

.delay-4-5 {
  animation-delay: 1.2s;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
  .nav-inner {
    gap: 14px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .stack-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stats {
    flex-direction: column;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .cta-inner {
    padding: 20px 16px;
  }
}

/* ===== HERO ===== */

.hero {
  /* more top & bottom space */
  padding: 120px 0 110px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 3fr);
  gap: 72px;                 /* more space between text & visual */
  align-items: center;
}

/* badge */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 26px;       /* more space below pill */
}

.hero h1 {
  font-size: clamp(40px, 4.4vw, 52px);  /* slightly bigger */
  line-height: 1.12;
  margin: 0 0 26px;                     /* more gap under heading */
}

.hero-subtitle {
  color: var(--muted);
  margin: 0 0 30px;                     /* more gap under subtitle */
  max-width: 520px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;                  /* more space before stats */
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 4px;
}
/* ===== HERO ===== */

.hero {
  padding: 120px 0 40px;        /* more vertical space */
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(40px, 4.4vw, 54px);
  line-height: 1.1;
  margin: 0 0 24px;
}

.hero-subtitle {
  color: var(--muted);
  margin: 0 0 30px;
  max-width: 620px;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 30px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}
header.nav .mega .promo {
    height: 463px;
}


/* ===== GALLERY ===== */

.mlm99-gallery-section {
  position: relative;
  overflow: hidden;
}

.mlm99-gallery {
  position: relative;
  margin-top: 42px;
}

.mlm99-gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 8px 18px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mlm99-gallery-track::-webkit-scrollbar {
  display: none;
}

.mlm99-gallery-thumb {
  flex: 0 0 auto;
  width: min(520px, 86vw);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: #020617;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 18px 55px rgba(2, 6, 23, 0.8);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mlm99-gallery-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.mlm99-gallery-thumb:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 26px 70px rgba(2, 6, 23, 0.9);
}

.mlm99-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(2, 6, 23, 0.75);
  color: #e2e8f0;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 2;
  backdrop-filter: blur(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.mlm99-gallery-nav:hover {
  background: rgba(15, 23, 42, 0.8);
}

.mlm99-gallery-nav:active {
  transform: translateY(-50%) scale(0.98);
}

.mlm99-gallery-nav:focus-visible {
  outline: 3px solid rgba(109, 107, 255, 0.4);
  outline-offset: 2px;
}

.mlm99-gallery-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

.mlm99-gallery-prev {
  left: -18px;
}

.mlm99-gallery-next {
  right: -18px;
}

.mlm99-gallery-empty {
  margin-top: 18px;
  text-align: center;
  color: var(--muted);
}

body.mlm99-no-scroll {
  overflow: hidden;
}

.mlm99-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.mlm99-lightbox.is-open {
  display: block;
}

.mlm99-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.86);
  backdrop-filter: blur(6px);
}

.mlm99-lightbox-dialog {
  position: relative;
  margin: 5vh auto;
  width: min(1100px, 92vw);
  height: min(80vh, 720px);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(2, 6, 23, 0.82);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mlm99-lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.mlm99-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mlm99-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.75);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.mlm99-lightbox-prev {
  left: 12px;
}

.mlm99-lightbox-next {
  right: 12px;
}

@media (max-width: 900px) {
  .mlm99-gallery-prev {
    left: 4px;
  }

  .mlm99-gallery-next {
    right: 4px;
  }

  .mlm99-gallery-nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 600px) {
  .mlm99-lightbox-dialog {
    height: min(78vh, 520px);
  }

  .mlm99-lightbox-nav {
    width: 40px;
    height: 40px;
  }
}

#pricing {
  padding: 140px 0 130px;
}

#pricing .section-head {
  margin-bottom: 48px;
}
