/* ── Reset ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');

body {
  font-family: 'DM Sans', sans-serif !important;
}

.font-dmsans {
  font-family: 'DM Sans', sans-serif !important;
}

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

/* ── Design Tokens ── */
:root {
  --mlt-bg: #0a0a10;
  --mlt-white: #ffffff;
  --mlt-text: rgba(255, 255, 255, .84);
  --mlt-text-dim: rgba(255, 255, 255, .52);
  --mlt-purple: #5700e1;
  --mlt-purple-light: #a855f7;
  --mlt-pink: #ec4899;
  --mlt-gradient: linear-gradient(135deg, var(--mlt-pink), var(--mlt-purple-light));
  --mlt-panel: #ffffff;
  --mlt-border: rgba(20, 20, 40, .08);
  --mlt-muted: rgba(20, 20, 40, .58);
  --mlt-muted-2: rgba(20, 20, 40, .42);
  --mlt-shadow: 0 24px 64px rgba(0, 0, 0, .22);
  --mlt-radius-lg: 20px;
  --mlt-radius-md: 14px;
  --mlt-radius-sm: 10px;
  --mlt-ease: cubic-bezier(.22, .68, 0, 1);
  --mlt-nav-h: 64px;
  --grey-2: #efefef;
}

/* ══════════════════════════════════════════════
   HEADER & NAV
   ══════════════════════════════════════════════ */

.mlt-header {
  position: fixed;
  top: 0;
  z-index: 1100;
  width: 100%;
}

.mlt-nav {
  background: var(--mlt-bg);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  /* ← THE KEY FIX: panels anchor to this */
}

.mlt-nav__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 36px;
  height: var(--mlt-nav-h);
  display: flex;
  align-items: center;
}

/* ══════════════════════════════════════════════
   BRAND
   ══════════════════════════════════════════════ */

.melento-logo img {
  max-height: 36px;
}

.mlt-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.mlt-brand__icon {
  width: 28px;
  height: 28px;
  display: block;
}

.mlt-brand__text {
  font-size: 21px;
  font-weight: 700;
  color: var(--mlt-white);
  letter-spacing: .3px;
  line-height: 1;
}

/* ══════════════════════════════════════════════
   NAV LINKS
   ══════════════════════════════════════════════ */

.mlt-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
  align-items: center;
  justify-content: end;
  flex: 1;
}

@media (min-width: 992px) {
  .mlt-links {
    display: flex;
  }
}

/* Each nav item = full navbar height so hover extends edge-to-edge */
.mlt-links__item {
  display: flex;
  align-items: center;
  height: var(--mlt-nav-h);
  position: static;
}

.mlt-links__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mlt-text);
  text-decoration: none;
  border-radius: var(--mlt-radius-sm);
  border: 1.5px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  white-space: nowrap;
  line-height: 1.2;
  font-family: inherit;
}

.mlt-links__link:hover,
.mlt-links__link:focus-visible {
  background-color: #FFFFFF !important;
  color: #5700E1 !important;
}

/* Nav link highlighted while its dropdown is open */
.mlt-mega.is-open>.mlt-links__link {
  background-color: #FFFFFF !important;
  color: #5700E1 !important;
  border-color: rgba(255, 255, 255, .32);
}

.mlt-has-company.is-open>.mlt-links__link {
  background-color: #FFFFFF !important;
  color: #5700E1 !important;
}

.mlt-has-login.is-open .mlt-actions__login {
  background-color: #FFFFFF !important;
  color: #5700E1 !important;
  border-radius: var(--mlt-radius-sm);
}

.mlt-caret {
  width: 10px;
  height: 6px;
  transition: transform .22s var(--mlt-ease);
}

.mlt-mega.is-open .mlt-caret {
  transform: rotate(180deg);
}

/* ══════════════════════════════════════════════
   ACTIONS (Login + CTA)
   ══════════════════════════════════════════════ */

.mlt-actions {
  display: none;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 24px;
}

@media (min-width: 992px) {
  .mlt-actions {
    display: flex;
  }
}

.mlt-actions__login {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mlt-text);
  text-decoration: none;
  border-radius: var(--mlt-radius-sm);
  transition: color .18s, background .18s;
}

.mlt-actions__login:hover {
  color: #5700E1 !important;
  background-color: #FFFFFF !important;
}

.mlt-actions__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--mlt-white);
  background: linear-gradient(to right, #E40078, #4D00FF);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(168, 85, 247, .28);
  transition: filter .2s, box-shadow .2s;
}

.mlt-actions__cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 12px 36px rgba(168, 85, 247, .38);
  color: var(--mlt-white);
}

/* ── Hamburger ── */
.mlt-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.mlt-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--mlt-text);
  border-radius: 2px;
}

@media (min-width: 992px) {
  .mlt-hamburger {
    display: none;
  }
}

/* ══════════════════════════════════════════════
   MEGA MENU PANELS (Product, Solutions, Insights)
   ══════════════════════════════════════════════ */

.mlt-mega {
  position: static;
  /* panel positions relative to .mlt-nav */
}

.mlt-mega__panel {
  position: absolute;
  top: 100%;
  /* ← positions BELOW .mlt-nav (not nav-h) */
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100vw - 48px));
  z-index: 1200;
  padding-top: 4px;
  /* visual gap (inside hover zone) */
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s var(--mlt-ease), visibility .22s;
}

/* Invisible hover bridge — mouse travels from link to panel */
.mlt-mega__panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: calc(8px + 4px);
  /* overlap + padding-top */
  background: transparent;
  pointer-events: auto;
}

/* ── OPEN STATE ── */
.mlt-mega.is-open .mlt-mega__panel {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

/* ── Panel body (white card) ── */
.mlt-mega__body {
  background: var(--mlt-panel);
  border-radius: var(--mlt-radius-lg);
  border: 1px solid var(--mlt-border);
  box-shadow: var(--mlt-shadow);
  overflow: hidden;
  display: grid;
}

/* Layout variants */
.mlt-mega__body--product {
  grid-template-columns: 1fr 1fr 1fr;
}

.mlt-mega__body--solutions {
  grid-template-columns: 1fr 1fr 320px;
}

.mlt-mega__body--insights {
  grid-template-columns: 1.15fr 1fr 320px;
}

/* ── Columns ── */
.mlt-mega__col {
  padding: 26px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mlt-mega__col1 {
  padding: 46px 20px 0px 28px;
  display: flex;
  flex-direction: column;
  gap: 27px;
}

/* Column divider lines */
.mlt-mega__col+.mlt-mega__col {
  position: relative;
}

.mlt-mega__col+.mlt-mega__col::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 83%;
  width: 1px;
  background-color: var(--mlt-border);
}

/* Product-specific divider */
.mlt-mega[data-mega="product"] .mlt-mega__col+.mlt-mega__col::before {
  top: 20%;
  height: 73%;
}

/* Solutions-specific divider */
.mlt-mega[data-mega="solutions"] .mlt-mega__col1+.mlt-mega__col1::before {
  top: 0%;
  height: 100%;
  width: 2px;
}

/* Insights-specific divider */
.mlt-mega[data-mega="insights"] .mlt-mega__col+.mlt-mega__col::before {
  top: 9%;
  height: 86%;
}

/* Col1 divider */
.mlt-mega__col1+.mlt-mega__col1 {
  position: relative;
}

.mlt-mega__col1+.mlt-mega__col1::before {
  content: "";
  position: absolute;
  left: -20px !important;
  top: 10% !important;
  height: 75% !important;
  width: 1px !important;
  background: var(--mlt-border);
}

/* ── Aside column ── */
.mlt-mega__aside {
  padding: 22px 52px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.mlt-mega__aside::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 85%;
  width: 1px;
  background: var(--mlt-border);
}

/* ── Headings ── */
.mlt-mega__heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  color: var(--mlt-muted-2);
  margin: 0 0 10px 12px;
  text-transform: uppercase;
}

.mlt-mega__heading--italic {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #5E01A2;
  text-transform: none;
}

.mlt-mega__label {
  font-size: 13px;
  font-weight: 700;
  color: #1f1f2e;
  margin: 0 0 12px;
}

.mlt-mega__label em {
  font-style: italic;
}

/* ══════════════════════════════════════════════
   CARD ITEMS (Product, Solutions, Insights)
   ══════════════════════════════════════════════ */

.mlt-card,
a.mlt-card {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  color: #1f1f2e !important;
  cursor: pointer !important;
  transition: background .2s ease !important;
  background: transparent !important;
}

.mlt-card>svg,
a.mlt-card>svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  flex-shrink: 0 !important;
  transition: all .15s ease !important;
}

.mlt-card>.mlt-card__ic,
a.mlt-card>.mlt-card__ic {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 10px !important;
  background: rgba(87, 0, 225, .08) !important;
  display: flex !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: background .15s ease !important;
}

.mlt-card>.mlt-card__ic svg,
a.mlt-card>.mlt-card__ic svg {
  width: 20px !important;
  height: 20px !important;
}

.mlt-card .mlt-card__txt,
a.mlt-card .mlt-card__txt {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
}

.mlt-card .mlt-card__txt strong,
a.mlt-card .mlt-card__txt strong {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.3 !important;
  transition: color .15s ease !important;
}

.mlt-card .mlt-card__txt small,
a.mlt-card .mlt-card__txt small {
  font-size: 12px !important;
  font-style: italic;
  font-weight: 400 !important;
  color: rgba(20, 20, 40, .58) !important;
  line-height: 1.4 !important;
  transition: color .15s ease !important;
}

/* Card hover */
.mlt-card:hover,
a.mlt-card:hover {
  background: #ECEBFD !important;
}

.mlt-card:hover .mlt-card__txt strong,
a.mlt-card:hover .mlt-card__txt strong {
  color: #5700e1 !important;
}

.mlt-card:hover .mlt-card__txt small,
a.mlt-card:hover .mlt-card__txt small {
  color: #7c3aed !important;
}

.mlt-card:hover>.mlt-card__ic,
a.mlt-card:hover>.mlt-card__ic {
  background: rgba(87, 0, 225, .15) !important;
}

.mlt-card:hover svg path,
a.mlt-card:hover svg path {
  stroke: #5700e1 !important;
}

.mlt-card:hover svg circle,
a.mlt-card:hover svg circle {
  stroke: #5700e1 !important;
}

.mlt-card:hover svg line,
a.mlt-card:hover svg line {
  stroke: #5700e1 !important;
}

.mlt-card:hover svg polyline,
a.mlt-card:hover svg polyline {
  stroke: #5700e1 !important;
}

.mlt-card:hover svg rect,
a.mlt-card:hover svg rect {
  stroke: #5700e1 !important;
}

.mlt-card:hover svg g path,
a.mlt-card:hover svg g path {
  stroke: #5700e1 !important;
}

.mlt-card:hover svg path[fill="#5700e1"],
a.mlt-card:hover svg path[fill="#5700e1"] {
  fill: #3d00a8 !important;
}

.mlt-card:hover svg g path[fill="#5700e1"],
a.mlt-card:hover svg g path[fill="#5700e1"] {
  fill: #3d00a8 !important;
}

/* Active state */
.mlt-card.is-active,
a.mlt-card.is-active {
  background: transparent !important;
}

.mlt-card.is-active:hover,
a.mlt-card.is-active:hover {
  background: #ECEBFD !important;
}

/* ══════════════════════════════════════════════
   STORY CARD (Solutions aside)
   ══════════════════════════════════════════════ */

.mlt-story {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  flex: 1;
  min-height: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}

.mlt-story__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 50px 18px 18px;
  background: linear-gradient(0deg, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .4) 60%, transparent 100%);
  color: #fff;
}

.mlt-story__info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mlt-story__logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.mlt-story__logo svg {
  width: 10px;
  height: 10px;
  margin-left: 2px;
}

.mlt-story__company {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  letter-spacing: .3px;
}

.mlt-story__name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.mlt-story__role {
  font-weight: 500;
  opacity: .8;
}

.mlt-story__watch {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

.mlt-story__verified {
  width: 14px;
  height: 14px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mlt-story__verified::after {
  content: '✓';
  font-size: 8px;
  color: #fff;
  font-weight: 700;
}

/* ══════════════════════════════════════════════
   BLOG CARD (Insights aside)
   ══════════════════════════════════════════════ */

.mlt-blog {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  flex: 1;
  min-height: 0;
}

.mlt-blog__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  color: var(--mlt-white);
}

.mlt-blog__title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.mlt-blog__cta {
  font-size: 12px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mlt-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mlt-gradient);
}

/* ══════════════════════════════════════════════
   COMPANY DROPDOWN
   ══════════════════════════════════════════════ */

.mlt-has-company {
  position: static;
}

.mlt-company-menu {
  position: absolute;
  top: 100%;
  /* below .mlt-nav */
  width: 720px;
  max-width: calc(100vw - 32px);
  left: auto;
  right: 12%;
  z-index: 1200;
  padding-top: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--mlt-ease), visibility .22s;
}

.mlt-company-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: calc(8px + 4px);
  background: transparent;
  pointer-events: auto;
}

.mlt-has-company.is-open .mlt-company-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mlt-company-menu__panel {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
  border: 1px solid rgba(20, 20, 40, .08);
  padding: 18px 20px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
}

.mlt-company-menu__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 14px;
  border-right: 1px solid rgba(20, 20, 40, .08);
}

.mlt-company-menu__right {
  display: flex;
  position: relative;
  left: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
}

.mlt-company-menu__right-title {
  font-size: 14px;
  font-weight: 800;
  color: #7C3AED;
  margin: 0 0 12px 0;
}

/* Company items */
.mlt-company-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  color: #1f1f2e !important;
  cursor: pointer !important;
  transition: background .2s ease !important;
  width: 100% !important;
}

.mlt-company-item__icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 10px !important;
  background: rgba(87, 0, 225, .08) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
}

.mlt-company-item__icon svg {
  width: 20px !important;
  height: 20px !important;
}

.mlt-company-item__text {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.mlt-company-item__title {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  line-height: 1.25 !important;
  transition: color .15s ease !important;
}

.mlt-company-item__desc {
  font-size: 12px !important;
  font-style: italic;
  color: rgba(20, 20, 40, .52) !important;
  line-height: 1.35 !important;
  transition: color .15s ease !important;
}

.mlt-company-item:hover {
  background: #ECEBFD !important;
}

.mlt-company-item:hover .mlt-company-item__title {
  color: #5700e1 !important;
}

.mlt-company-item:hover .mlt-company-item__desc {
  color: #7c3aed !important;
}

.mlt-company-item:hover .mlt-company-item__icon {
  background: rgba(87, 0, 225, .15) !important;
}

.mlt-company-item:hover svg path,
.mlt-company-item:hover svg circle,
.mlt-company-item:hover svg line,
.mlt-company-item:hover svg polyline {
  stroke: #5700e1 !important;
}

.mlt-event-card {
  width: 100%;
  border-radius: 14px;
  display: block;
  transition: transform .18s var(--mlt-ease), box-shadow .18s var(--mlt-ease);
}

/* ══════════════════════════════════════════════
   LOGIN DROPDOWN
   ══════════════════════════════════════════════ */

.mlt-has-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: var(--mlt-nav-h);
}

.mlt-login-menu {
  position: absolute;
  top: 100%;
  right: 0;
  width: 340px;
  z-index: 1200;
  padding-top: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s var(--mlt-ease), visibility .22s;
}

.mlt-login-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: calc(8px + 4px);
  background: transparent;
  pointer-events: auto;
}

.mlt-has-login.is-open .mlt-login-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mlt-login-menu__panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  border: 1px solid rgba(20, 20, 40, .08);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mlt-login-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  text-decoration: none !important;
  color: #1f1f2e;
  transition: background .18s ease;
}

.mlt-login-item:hover {
  background: #ECEBFD !important;
}

.mlt-login-item:hover .mlt-login-item__title {
  color: #5700e1 !important;
}

.mlt-login-item:hover svg path,
.mlt-login-item:hover svg circle,
.mlt-login-item:hover svg line {
  stroke: #5700e1 !important;
}

.mlt-login-item__title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  white-space: nowrap;
  transition: color .15s ease;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */

@media (min-width: 1200px) {

  .mlt-mega__body--solutions,
  .mlt-mega__body--insights {
    grid-template-columns: 1fr 1fr 340px;
  }
}

@media (min-width: 1400px) {

  .mlt-mega__body--solutions,
  .mlt-mega__body--insights {
    grid-template-columns: 1fr 1fr 360px;
  }

  .mlt-nav__inner {
    max-width: 1400px;
    padding: 0 44px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .mlt-mega__body--product {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .mlt-mega__body--solutions,
  .mlt-mega__body--insights {
    grid-template-columns: 1fr 1fr 260px;
  }

  .mlt-card .mlt-card__txt small,
  a.mlt-card .mlt-card__txt small {
    font-size: 11px !important;
  }

  .mlt-links__link {
    padding: 8px 12px;
    font-size: 13px;
  }

  .mlt-actions__cta {
    padding: 9px 18px;
    font-size: 13px;
  }
}

@media (max-width: 991.98px) {
  .mlt-nav__inner {
    padding: 0 16px;
    height: 56px;
  }

  .mlt-mega__panel {
    position: fixed;
    top: 56px;
    left: 8px;
    right: 8px;
    width: auto;
    transform: none;
  }

  .mlt-mega__body--solutions .mlt-mega__aside {
    padding-bottom: 10px;
  }

  .mlt-mega__body,
  .mlt-mega__body--product,
  .mlt-mega__body--solutions,
  .mlt-mega__body--insights {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mlt-mega__col+.mlt-mega__col {
    border-left: 0;
    border-top: 1px solid var(--mlt-border);
  }

  .mlt-mega__aside {
    border-left: 0;
    border-top: 1px solid var(--mlt-border);
  }

  .mlt-story img,
  .mlt-blog img {
    min-height: 160px;
  }
}

@media (max-width: 1024px) {
  .mlt-company-menu {
    width: min(92vw, 680px);
    right: 4%;
  }

  .mlt-company-menu__panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mlt-company-menu__left {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(20, 20, 40, .08);
    padding-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .mlt-login-menu {
    width: 300px;
    right: -20px;
  }
}

/* ── Accessibility ── */
.mlt-links__link:focus-visible,
.mlt-actions__login:focus-visible,
.mlt-actions__cta:focus-visible {
  outline: 2px solid var(--mlt-purple);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  .mlt-mega__panel,
  .mlt-caret,
  .mlt-links__link {
    transition: none !important;
  }
}

/* ══════════════════════════════════════════════
   MOBILE MENU
   ══════════════════════════════════════════════ */

.navbar-nav {
  margin-top: 0 !important;
  box-shadow: none !important;
}

.melento-header {
  display: none;
}

.melento-header-mobile {
  background: rgb(0 0 0 / 30%);
  position: fixed;
  z-index: 99;
  left: 0;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  display: block;
}

.melento-header-mobile nav {
  height: 66px;
  display: flex;
  align-items: center;
}

.melento-logo1 img {
  max-height: 36px;
}

.header-bttn {
  text-decoration: none;
  font-size: 14px;
background: linear-gradient(to right, #E40078, #4D00FF); 
 padding: 10px 20px;
  color: #fff !important;
  font-weight: 500;
  border-radius: 30px;
}

.header-bttn:hover {
  color: #fff !important;
  text-decoration: none;
}

#menu-toggle {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
  margin: 0 0 0 25px;
  border-radius: 5px;
}

#menu-toggle #hamburger {
  position: absolute;
  height: 100%;
  width: 100%;
}

#menu-toggle #hamburger span {
  width: 30px;
  height: 3px;
  position: relative;
  top: 6px;
  left: 5px;
  margin: 5px 0;
}

#menu-toggle #hamburger span:nth-child(1) {
  transition-delay: .5s;
}

#menu-toggle #hamburger span:nth-child(2) {
  transition-delay: .625s;
}

#menu-toggle #hamburger span:nth-child(3) {
  transition-delay: .75s;
}

#menu-toggle {
  position: relative;
  height: 25px;
  width: 25px;
  margin-right: 15px; /* Add space on the right side */
}

#menu-toggle #cross {
  position: absolute;
  height: 100%;
  width: 100%;
  transform: rotate(45deg);
}

#menu-toggle #cross span:nth-child(1) {
  height: 0%;
  width: 4px;
  position: absolute;
  top: 15%;
  left: 50%;
  transition-delay: 0s;
}

#menu-toggle #cross span:nth-child(2) {
  width: 0%;
  height: 3px;
  position: absolute;
  left: 15%;
  top: 50%;
  transition-delay: 0.25s;
}
#menu-toggle.open #hamburger span {
  width: 0%;
}

#menu-toggle.open #hamburger span:nth-child(1) {
  transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
  transition-delay: .125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
  transition-delay: .25s;
}

#menu-toggle.open #cross span:nth-child(1) {
  height: 80%;
  transition-delay: .625s;
}

#menu-toggle.open #cross span:nth-child(2) {
  width: 80%;
  transition-delay: .375s;
}

#menu-toggle span {
  display: block;
  background: #fff;
  border-radius: 2px;
  transition: .25s ease-in-out;
}

.mobile-menu-list {
  position: absolute;
  left: 0;
  right: 0;
  background: #fff;
  top: 63px;
  list-style-type: none;
  padding: 30px 40px;
  display: none;
}

.mobile-menu-list a {
  font-size: 16px;
  text-decoration: none;
  color: #383838;
}

.mobile-menu-list>li>a,
.mobile-menu-list a {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.mobile-menu-list>li>a>img {
  margin-left: auto;
}

.mobile-menu-list ul {
  list-style-type: none;
}

.mobile-menu-list ul li img:first-of-type {
  margin-right: 20px;
}

.mobile-menu-list ul li img:last-of-type {
  margin-left: auto;
}

.ml-20 {
  margin-left: 20px;
}

.bb-2 {
  border-bottom: 2px solid rgb(181, 0, 104);
}

.mb-20 {
  margin-bottom: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  #cross span {
    background: #222;
  }
}

.productLink img {
  transition: transform 0.3s ease;
}

.productLink img.rotate {
  transform: rotate(180deg);
}

/* ── Utility classes ── */
.fs-7 {
  font-size: 0.7rem !important;
}

.fs-8 {
  font-size: 0.6rem !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.w-1rem {
  width: 1rem !important;
}

.w-3rem {
  width: 3.5rem !important;
}

.w-30 {
  width: 32.45% !important;
}

.w-85 {
  width: 85% !important;
}

.place-items-center {
  place-items: center !important;
}

.pointer-none {
  pointer-events: none !important;
}

.text-dark {
  color: #004865 !important;
}

.text-green {
  color: #00b087 !important;
}

.bg-grey-2 {
  background-color: var(--grey-2) !important;
}

.bg-dark-1 {
  background-color: #292929 !important;
}

.bg-light-gray {
  background-color: #eff1f2 !important;
}

.z-999 {
  z-index: 999 !important;
}

.effect-200 {
  transition: all 200ms ease-in-out !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.footerMain {
  background-color: #FFFFFF !important;
}

.btn-bg-gradient {
  background: transparent linear-gradient(90deg, #C02871 0%, #4608F4 100%) 0% 0% no-repeat padding-box;
}

.btn-bg-gradient1 {
  background-color: #6C3AEF !important;
}

.purplish-blue {
  color: #6c3aef;
}

.scrollToTop {
  position: absolute;
  bottom: 60px;
  right: 50px;
}

.-main-footer .subscribe-btn-container {
  right: 0.2em;
  top: 50%;
  transform: translateY(-50%);
}

.-main-footer .--hover-slide-list>* {
  transition: all 200ms linear;
}

.--hover-slide-list li a {
  transition: all 0.1s ease-in-out;
}

.--hover-slide-list li a:hover {
  transform: translateX(1px);
  color: #000000 !important;
  font-weight: 500;
}

.--hover-slide-list a:hover {
  color: #000000 !important;
}