/* ================================================================
   My Legal Hub — Main Stylesheet v1.0
   Elementor-compatible: all selectors prefixed .mlh-
   CSS variables exposed at :root for Elementor Global Colours
================================================================ */

/* ── Variables ── */
:root {
  /* Professional Legal Color Palette */
  --mlh-navy:      #0A2540;
  --mlh-navy-d:    #051829;
  --mlh-navy-m:    #163352;
  --mlh-navy-lt:   #E8EDF3;

  /* Primary Accent - Forest Green (replaces bright teal) */
  --mlh-primary:   #2C5F2D;
  --mlh-primary-d: #1F4420;
  --mlh-primary-lt:#E8F2E8;

  /* Secondary Accent - Muted Gold */
  --mlh-gold:      #B8985F;
  --mlh-gold-d:    #8B7247;
  --mlh-gold-lt:   #F8F4ED;

  /* Neutral Grays */
  --mlh-slate:     #475569;
  --mlh-slate-d:   #334155;
  --mlh-mid:       #94A3B8;
  --mlh-light:     #FAFAF9;
  --mlh-border:    #E2E8F0;
  --mlh-white:     #ffffff;

  /* Utility Colors */
  --mlh-green:     #2C5F2D;
  --mlh-green-lt:  #E8F2E8;
  --mlh-red:       #991B1B;
  --mlh-purple:    #6B4FA0;
  --mlh-purple-lt: #F0EBF8;

  /* Border Radius - Subtle, not pill-shaped */
  --mlh-r-sm:      4px;
  --mlh-r:         6px;
  --mlh-r-lg:      8px;

  /* Shadows - Subtle and professional */
  --mlh-shadow:    0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --mlh-shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.03);
  --mlh-shadow-lg: 0 10px 15px rgba(0,0,0,0.08), 0 4px 6px rgba(0,0,0,0.04);

  /* Transitions */
  --mlh-trans:     all 0.15s ease;
}

/* ── Reset (scoped) ── */
.mlh-header *, .mlh-hero *, .mlh-section *, .mlh-footer *,
.mlh-trust-band *, .mlh-cta * {
  box-sizing: border-box;
}

/* ── Base body ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--mlh-slate-d);
  background: var(--mlh-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mlh-page-wrap { min-height: 60vh; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', 'Lora', Georgia, serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--mlh-navy);
  font-weight: 600;
}

/* ── Container ── */
.mlh-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Animations ── */
@keyframes mlh-fadeDown { from { opacity:0; transform:translateY(-16px); } to { opacity:1; transform:none; } }
@keyframes mlh-fadeUp   { from { opacity:0; transform:translateY(24px);  } to { opacity:1; transform:none; } }
@keyframes mlh-pulse    { 0%,100% { transform:scale(1); opacity:1; } 50% { transform:scale(1.06); opacity:.7; } }
@keyframes mlh-blink    { 0%,100% { opacity:1; } 50% { opacity:.3; } }
@keyframes mlh-spin     { to { transform:rotate(360deg); } }

/* ═══════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════ */
.mlh-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(10,37,64,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--mlh-trans);
  animation: mlh-fadeDown 0.6s ease both;
}
.mlh-header.mlh-header--scrolled {
  background: rgba(5,24,41,0.98);
  border-bottom-color: rgba(44,95,45,0.3);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.mlh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 68px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.mlh-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.mlh-logo img { max-height: 44px; width: auto; }
.mlh-logo__mark {
  width: 40px; height: 40px;
  border-radius: var(--mlh-r-sm);
  background: var(--mlh-primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lora', Georgia, serif;
  font-weight: 600; font-size: 16px;
  color: var(--mlh-white);
  flex-shrink: 0;
}
.mlh-logo__text { display: flex; flex-direction: column; line-height: 1; }
.mlh-logo__name {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600; font-size: 19px;
  color: var(--mlh-white);
}
.mlh-logo__sub {
  font-size: 9px; color: var(--mlh-mid);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-top: 4px; font-weight: 500;
}
.mlh-logo--footer .mlh-logo__name,
.mlh-logo--footer .mlh-logo__sub { color: inherit; }

/* Nav */
.mlh-nav { flex: 1; }
.mlh-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
}
.mlh-nav__list a {
  display: block;
  padding: 8px 14px;
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: var(--mlh-r-sm);
  transition: var(--mlh-trans);
  white-space: nowrap;
}
.mlh-nav__list a:hover,
.mlh-nav__list .current-menu-item > a {
  color: var(--mlh-white);
  background: rgba(255,255,255,0.07);
}

/* Header actions */
.mlh-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.mlh-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.mlh-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--mlh-white);
  border-radius: 2px;
  transition: var(--mlh-trans);
}
.mlh-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mlh-hamburger.is-open span:nth-child(2) { opacity: 0; }
.mlh-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════ */
.mlh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--mlh-r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--mlh-trans);
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1.4;
}
.mlh-btn--teal,
.mlh-btn--primary {
  background: var(--mlh-primary);
  color: var(--mlh-white);
  border-color: var(--mlh-primary);
  box-shadow: var(--mlh-shadow);
}
.mlh-btn--teal:hover,
.mlh-btn--primary:hover {
  background: var(--mlh-primary-d);
  border-color: var(--mlh-primary-d);
  color: var(--mlh-white);
  box-shadow: var(--mlh-shadow-md);
  transform: translateY(-1px);
}
.mlh-btn--outline {
  background: transparent;
  color: var(--mlh-white);
  border-color: rgba(255,255,255,0.4);
}
.mlh-btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  color: var(--mlh-white);
}
.mlh-btn--navy {
  background: var(--mlh-navy);
  color: var(--mlh-white);
  border-color: var(--mlh-navy);
}
.mlh-btn--navy:hover {
  background: var(--mlh-navy-m);
  transform: translateY(-1px);
}
.mlh-btn--sm { padding: 8px 18px; font-size: 13px; }
.mlh-btn--lg { padding: 14px 32px; font-size: 15px; }

/* ═══════════════════════════════════════════════════
   SECTION SHARED
═══════════════════════════════════════════════════ */
.mlh-section { padding: 5.5rem 0; }
.mlh-section--alt { background: var(--mlh-light); }
.mlh-section--dark { background: var(--mlh-navy); color: var(--mlh-white); }

.mlh-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.mlh-section__tag {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mlh-primary);
  margin-bottom: 0.75rem;
}
.mlh-section__title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--mlh-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.mlh-section--dark .mlh-section__title { color: var(--mlh-white); }
.mlh-section__title strong { font-weight: 600; }
.mlh-section__desc {
  font-size: 16px;
  color: var(--mlh-slate);
  font-weight: 400;
  line-height: 1.7;
}
.mlh-section--dark .mlh-section__desc { color: var(--mlh-mid); }

/* Eyebrow */
.mlh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mlh-mid);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.mlh-eyebrow::before, .mlh-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--mlh-primary);
  opacity: 0.4;
}
.mlh-eyebrow--light { color: rgba(255,255,255,0.5); }
.mlh-eyebrow--light::before,
.mlh-eyebrow--light::after { background: rgba(255,255,255,0.3); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.mlh-hero {
  position: relative;
  background: var(--mlh-navy);
  padding: 7rem 0 4.5rem;
  margin-top: 0;
  overflow: hidden;
}
.mlh-hero__bg-layer { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.mlh-hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.mlh-hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.mlh-hero__glow--teal {
  top: -10%; right: -5%;
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(0,168,150,0.13) 0%, transparent 70%);
  animation: mlh-pulse 9s ease-in-out infinite;
}
.mlh-hero__glow--gold {
  bottom: -15%; left: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(201,168,76,0.09) 0%, transparent 70%);
  animation: mlh-pulse 11s ease-in-out infinite reverse;
}
.mlh-hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.mlh-hero__content { animation: mlh-fadeUp 0.9s 0.15s ease both; }
.mlh-hero__title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--mlh-white);
  margin-bottom: 1.5rem;
}
.mlh-hero__title em {
  font-style: normal;
  color: var(--mlh-primary);
  font-weight: 600;
}
.mlh-hero__title strong {
  font-weight: 600;
  color: var(--mlh-white);
}
.mlh-hero__desc {
  font-size: 16px;
  color: var(--mlh-mid);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Waitlist form */
.mlh-waitlist__label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mlh-mid);
  font-weight: 500;
  margin-bottom: 10px;
}
.mlh-waitlist__form {
  display: flex;
  max-width: 440px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--mlh-r);
  overflow: hidden;
  transition: all 0.2s ease;
  background: rgba(255,255,255,0.04);
}
.mlh-waitlist__form:focus-within {
  border-color: var(--mlh-primary);
  box-shadow: 0 0 0 3px rgba(44,95,45,0.1);
}
.mlh-waitlist__form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 18px;
  color: var(--mlh-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
}
.mlh-waitlist__form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.mlh-waitlist__form button {
  background: var(--mlh-primary);
  border: none;
  padding: 14px 24px;
  color: var(--mlh-white);
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.mlh-waitlist__form button:hover {
  background: var(--mlh-primary-d);
  transform: translateX(-2px);
}
.mlh-waitlist__success {
  display: none;
  color: var(--mlh-teal);
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}
.mlh-waitlist__success.show { display: block; }
.mlh-waitlist__note { font-size: 11px; color: rgba(255,255,255,0.25); margin-top: 8px; }

/* Hero stats */
.mlh-hero__stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}
.mlh-stat__num {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--mlh-primary);
  line-height: 1;
}
.mlh-stat__label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Hero panel */
.mlh-hero__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--mlh-r-lg);
  padding: 1.8rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: mlh-fadeUp 0.9s 0.35s ease both;
}
.mlh-panel__title {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mlh-mid);
  font-weight: 500;
  margin-bottom: 1rem;
}
.mlh-panel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1.2rem;
}
.mlh-panel__chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 8px 10px;
  transition: var(--mlh-trans);
  cursor: default;
}
.mlh-panel__chip:hover {
  background: rgba(44,95,45,0.15);
  border-color: rgba(44,95,45,0.35);
  transform: translateY(-1px);
}
.mlh-panel__chip-icon {
  width: 28px; height: 28px;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  color: rgba(255,255,255,0.9);
}
.mlh-panel__chip-label { font-size: 11.5px; color: rgba(255,255,255,0.8); line-height: 1.3; }
.mlh-panel__divider { height: 1px; background: rgba(255,255,255,0.07); margin: 1rem 0; }
.mlh-panel__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.mlh-panel__tag {
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--mlh-gold);
  font-weight: 500;
}
.mlh-panel__verify {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}

/* Icon BG colours */
.ic-doc  { background: rgba(44,95,45,0.15); }
.ic-prop { background: rgba(37,99,235,0.15); }
.ic-biz  { background: rgba(184,152,95,0.15); }
.ic-fam  { background: rgba(153,27,27,0.12); }
.ic-imm  { background: rgba(44,95,45,0.2); }
.ic-emp  { background: rgba(107,79,160,0.15); }
.ic-dis  { background: rgba(71,85,105,0.15); }
.ic-ai   { background: rgba(44,95,45,0.2); }

/* ═══════════════════════════════════════════════════
   TRUST BAND
═══════════════════════════════════════════════════ */
.mlh-trust-band {
  background: var(--mlh-primary);
  padding: 1rem 0;
}
.mlh-trust-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--mlh-white);
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════ */
.mlh-how__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.mlh-how__steps::before {
  content: '';
  position: absolute;
  top: 28px; left: 13%; right: 13%;
  height: 2px;
  background: linear-gradient(90deg, var(--mlh-primary), var(--mlh-gold));
  opacity: 0.3;
}
.mlh-how__step { text-align: center; padding: 0 1.2rem; position: relative; z-index: 1; }
.mlh-how__step-num {
  width: 60px; height: 60px;
  border-radius: var(--mlh-r);
  background: var(--mlh-white);
  color: var(--mlh-navy);
  font-family: 'Lora', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  border: 2px solid var(--mlh-primary);
  box-shadow: var(--mlh-shadow-md);
}
.mlh-how__step-title { font-weight: 500; font-size: 14.5px; margin-bottom: 0.5rem; color: var(--mlh-navy); }
.mlh-how__step-desc { font-size: 13px; color: var(--mlh-slate); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════════════
   SERVICE CARDS
═══════════════════════════════════════════════════ */
.mlh-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.4rem;
}
.mlh-service-card {
  background: var(--mlh-white);
  border: 1px solid var(--mlh-border);
  border-radius: var(--mlh-r);
  padding: 1.75rem;
  transition: var(--mlh-trans);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--mlh-shadow);
}
.mlh-service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--mlh-primary);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.mlh-service-card:hover {
  border-color: var(--mlh-primary);
  transform: translateY(-2px);
  box-shadow: var(--mlh-shadow-lg);
}
.mlh-service-card:hover::before { opacity: 1; }
.mlh-service-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--mlh-r);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.7);
}
.mlh-service-card__cat {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.45rem;
}
.cat-doc  { color: var(--mlh-primary-d); }
.cat-prop { color: #1E40AF; }
.cat-biz  { color: var(--mlh-gold-d); }
.cat-fam  { color: var(--mlh-red); }
.cat-imm  { color: var(--mlh-primary-d); }
.cat-emp  { color: var(--mlh-purple); }
.cat-dis  { color: var(--mlh-slate-d); }
.cat-ai   { color: var(--mlh-primary-d); }
.mlh-service-card__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--mlh-navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.mlh-service-card__desc {
  font-size: 13px;
  color: var(--mlh-slate);
  line-height: 1.65;
  margin-bottom: 1.1rem;
  font-weight: 300;
  flex: 1;
}
.mlh-service-card__list {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
}
.mlh-service-card__list li {
  font-size: 12px;
  color: var(--mlh-slate);
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}
.mlh-service-card__list li::before {
  content: '→';
  color: var(--mlh-primary);
  font-weight: 400;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 11px;
}
.mlh-service-card__footer { margin-top: auto; padding-top: 1rem; border-top: 1px solid var(--mlh-border); }
.mlh-service-card__who-label {
  display: block;
  font-size: 9.5px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--mlh-mid);
  font-weight: 500;
  margin-bottom: 6px;
}
.mlh-service-card__tags { display: flex; flex-wrap: wrap; gap: 5px; }
.mlh-service-card__tag {
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 500;
}
.mlh-service-card__tag--primary { background: var(--mlh-primary-lt); color: var(--mlh-primary-d); border: 1px solid rgba(44,95,45,0.2); }
.mlh-service-card__tag--alt     { background: var(--mlh-gold-lt);  color: var(--mlh-gold-d);  border: 1px solid rgba(184,152,95,0.25); }

/* ═══════════════════════════════════════════════════
   PLATFORM SERVICES
═══════════════════════════════════════════════════ */
.mlh-platform__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.1rem;
}
@media (min-width: 768px) {
  .mlh-platform__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mlh-platform__card {
  background: var(--mlh-navy);
  border-radius: var(--mlh-r);
  padding: 1.6rem;
  color: var(--mlh-white);
  transition: transform 0.2s;
}
.mlh-platform__card:hover { transform: translateY(-2px); }
.mlh-platform__icon {
  font-size: 16px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  display: block;
  color: var(--mlh-primary);
}
.mlh-platform__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--mlh-white);
}
.mlh-platform__desc { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════════════════
   PROFESSIONALS TIERS
═══════════════════════════════════════════════════ */
.mlh-professionals__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.mlh-pro-tier {
  background: var(--mlh-white);
  border: 1px solid var(--mlh-border);
  border-radius: var(--mlh-r);
  padding: 1.6rem;
  border-top-width: 3px;
}
.mlh-pro-tier--teal   { border-top-color: var(--mlh-primary); }
.mlh-pro-tier--gold   { border-top-color: var(--mlh-gold); }
.mlh-pro-tier--purple { border-top-color: var(--mlh-purple); }
.mlh-pro-tier__header { margin-bottom: 1rem; }
.mlh-pro-tier__num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.mlh-pro-tier--teal   .mlh-pro-tier__num { color: var(--mlh-primary-d); }
.mlh-pro-tier--gold   .mlh-pro-tier__num { color: var(--mlh-gold-d); }
.mlh-pro-tier--purple .mlh-pro-tier__num { color: var(--mlh-purple); }
.mlh-pro-tier__title { font-size: 1rem; font-weight: 600; color: var(--mlh-navy); margin: 0; }
.mlh-pro-tier__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--mlh-border);
  font-size: 13px;
  color: var(--mlh-navy);
  font-weight: 500;
}
.mlh-pro-tier__row:last-child { border-bottom: none; }
.mlh-pro-tier__reg { font-size: 11px; color: var(--mlh-mid); font-weight: 400; }

/* ═══════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════ */
.mlh-cta {
  background: var(--mlh-navy);
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mlh-cta__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 80%, rgba(184,152,95,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 20%, rgba(44,95,45,0.08) 0%, transparent 70%);
}
.mlh-cta__inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.mlh-cta__title {
  font-family: 'Lora', Georgia, serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--mlh-white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.mlh-cta__title strong { font-weight: 600; color: var(--mlh-primary); }
.mlh-cta__desc { font-size: 15px; color: var(--mlh-mid); margin-bottom: 2.5rem; font-weight: 300; line-height: 1.75; }
.mlh-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════
   PAGE HERO (centered — services, about, inner pages)
═══════════════════════════════════════════════════ */
.mlh-page-hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 0 1rem;
  animation: mlh-fadeUp 0.9s 0.15s ease both;
}
.mlh-page-hero .mlh-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin-bottom: 1.25rem;
}
.mlh-page-hero .mlh-hero__title strong { color: var(--mlh-white); }
.mlh-hero__desc--center {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}
.mlh-hero__stats--centered {
  justify-content: center;
}

/* ═══════════════════════════════════════════════════
   ABOUT — MISSION SECTION
═══════════════════════════════════════════════════ */
.mlh-about-mission {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 5rem;
  align-items: start;
}
.mlh-about-mission__header .mlh-section__tag { text-align: left; }
.mlh-about-mission__header .mlh-section__title { text-align: left; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.mlh-about-mission__body p {
  font-size: 16px;
  color: var(--mlh-slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.mlh-about-mission__body p:last-child { margin-bottom: 0; }
.mlh-about-mission__note {
  font-size: 12px;
  color: var(--mlh-mid);
  line-height: 1.7;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mlh-border);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════
   ABOUT — OUR STORY SECTION
═══════════════════════════════════════════════════ */
.mlh-about-story {
  max-width: 780px;
  margin: 0 auto;
}
.mlh-about-story .mlh-section__header {
  margin-bottom: 2.5rem;
}
.mlh-about-story__body p {
  font-size: 16px;
  color: var(--mlh-slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.mlh-about-story__body p:last-child { margin-bottom: 0; }
.mlh-about-story__quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--mlh-navy);
  border-left: 4px solid var(--mlh-teal);
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem !important;
  background: rgba(0, 178, 169, 0.04);
  border-radius: 0 8px 8px 0;
}

/* ═══════════════════════════════════════════════════
   ABOUT — AXIELLA SECTION
═══════════════════════════════════════════════════ */
.mlh-about-axiella {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.mlh-about-axiella__desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.mlh-about-axiella__desc strong { color: var(--mlh-white); font-weight: 500; }
.mlh-about-axiella__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

@media ( max-width: 768px ) {
  .mlh-about-mission {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mlh-about-mission__header .mlh-section__title { font-size: 1.8rem; }
}

/* ═══════════════════════════════════════════════════
   PRICING CARDS
═══════════════════════════════════════════════════ */
.mlh-pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto 2rem;
}
.mlh-pricing-card {
  background: var(--mlh-white);
  border: 1px solid var(--mlh-border);
  border-radius: var(--mlh-r-lg);
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--mlh-shadow-md);
}
.mlh-pricing-card--premium {
  border: 2px solid var(--mlh-gold);
  box-shadow: 0 8px 24px rgba(184,152,95,0.12);
}
.mlh-pricing-card__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  align-self: flex-start;
}
.mlh-pricing-card__badge--navy {
  background: var(--mlh-navy);
  color: var(--mlh-white);
}
.mlh-pricing-card__badge--gold {
  background: var(--mlh-gold);
  color: var(--mlh-white);
}
.mlh-pricing-card__name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--mlh-navy);
  margin-bottom: 0.75rem;
}
.mlh-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 0.5rem;
}
.mlh-pricing-card__amount {
  font-family: 'Lora', Georgia, serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--mlh-navy);
  line-height: 1;
}
.mlh-pricing-card__period {
  font-size: 14px;
  color: var(--mlh-mid);
  font-weight: 400;
}
.mlh-pricing-card__tagline {
  font-size: 13px;
  color: var(--mlh-slate);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--mlh-border);
}
.mlh-pricing-card__list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mlh-pricing-card__list li {
  font-size: 14px;
  color: var(--mlh-slate-d);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.mlh-pricing-card__list li::before {
  content: '✓';
  color: var(--mlh-primary);
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.mlh-pricing-card--premium .mlh-pricing-card__list li::before {
  color: var(--mlh-gold-d);
}
.mlh-pricing-card__cta { width: 100%; justify-content: center; margin-top: auto; }

/* Gold button variant */
.mlh-btn--gold {
  background: var(--mlh-gold);
  color: var(--mlh-white);
  border-color: var(--mlh-gold);
  box-shadow: var(--mlh-shadow);
}
.mlh-btn--gold:hover {
  background: var(--mlh-gold-d);
  border-color: var(--mlh-gold-d);
  color: var(--mlh-white);
  transform: translateY(-1px);
  box-shadow: var(--mlh-shadow-md);
}

.mlh-pricing__note {
  text-align: center;
  font-size: 12px;
  color: var(--mlh-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .mlh-pricing__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */

/* Centred single-column layout */
.mlh-contact-layout {
  max-width: 680px;
  margin: 0 auto;
}
.mlh-form__header { margin-bottom: 1.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--mlh-border); }
.mlh-contact__heading {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  font-weight: 600;
  color: var(--mlh-navy);
  margin: 0.3rem 0 0;
}

/* Form — white card on alt background */
.mlh-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--mlh-white);
  border: 1px solid var(--mlh-border);
  border-radius: var(--mlh-r-lg);
  padding: 2rem 2.25rem 2.25rem;
  box-shadow: var(--mlh-shadow-md);
}
.mlh-form__row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.mlh-form__group { display: flex; flex-direction: column; gap: 5px; }
.mlh-form__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--mlh-navy);
  letter-spacing: 0.02em;
}
.mlh-form__optional { color: var(--mlh-mid); font-weight: 400; }
.mlh-form__input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--mlh-border);
  border-radius: var(--mlh-r-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--mlh-navy);
  background: var(--mlh-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.mlh-form__input::placeholder { color: var(--mlh-mid); }
.mlh-form__input:focus {
  border-color: var(--mlh-primary);
  box-shadow: 0 0 0 3px rgba(44,95,45,0.08);
}
.mlh-form__select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.mlh-form__textarea { resize: vertical; min-height: 140px; }
.mlh-form__footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
}
.mlh-form__small { font-size: 11px; color: var(--mlh-mid); line-height: 1.6; margin: 0; }
.mlh-form__success {
  background: var(--mlh-primary-lt);
  border: 1px solid rgba(44,95,45,0.25);
  border-radius: var(--mlh-r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--mlh-primary-d);
  font-weight: 500;
}
.mlh-form__error {
  background: #FEF2F2;
  border: 1px solid rgba(153,27,27,0.2);
  border-radius: var(--mlh-r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--mlh-red);
  font-weight: 500;
}

/* Info panel — dark, sticky alongside form */
.mlh-contact-panel { position: sticky; top: 88px; }
.mlh-contact-panel__inner {
  background: var(--mlh-navy);
  border-radius: var(--mlh-r-lg);
  padding: 1.75rem;
  color: var(--mlh-white);
}
.mlh-contact-panel__block { margin-bottom: 1rem; }
.mlh-contact-panel__label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  margin-bottom: 3px;
}
.mlh-contact-panel__value {
  font-size: 13.5px;
  color: var(--mlh-white);
  font-weight: 400;
  margin: 0;
}
.mlh-contact-panel__email {
  font-size: 13px;
  color: var(--mlh-white);
  text-decoration: none;
  font-weight: 400;
  word-break: break-all;
  transition: color 0.15s ease;
}
.mlh-contact-panel__email:hover { color: var(--mlh-gold); }
.mlh-contact-panel__divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 1.1rem 0;
}
.mlh-contact-panel__block--cta { margin-bottom: 1.1rem; }
.mlh-contact-panel__cta-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--mlh-white);
  margin-bottom: 0.5rem;
}
.mlh-contact-panel__cta-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-weight: 300;
}
.mlh-contact-panel .mlh-btn--outline {
  width: 100%;
  justify-content: center;
  font-size: 12.5px;
}
.mlh-contact-panel__note {
  font-size: 10.5px;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 900px) {
  .mlh-contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .mlh-contact-panel { position: static; }
}
@media (max-width: 600px) {
  .mlh-form__row--2col { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.mlh-footer { background: var(--mlh-navy-d); color: var(--mlh-white); }
.mlh-footer__top { padding: 4rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mlh-footer__top-inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.mlh-footer__brand .mlh-logo { margin-bottom: 1.2rem; }
.mlh-footer__tagline { font-size: 13.5px; color: rgba(255,255,255,0.45); line-height: 1.7; font-weight: 300; margin-bottom: 1.2rem; }
.mlh-footer__social { display: flex; gap: 8px; }
.mlh-social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 12px; font-weight: 600;
  text-decoration: none;
  transition: var(--mlh-trans);
}
.mlh-social-link:hover { background: var(--mlh-primary); border-color: var(--mlh-primary); color: var(--mlh-white); }
.mlh-footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.mlh-footer__col-title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.5); font-family: 'DM Sans', sans-serif; font-weight: 500; margin-bottom: 1rem; }
.mlh-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mlh-footer__links a { font-size: 13.5px; color: rgba(255,255,255,0.5); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.mlh-footer__links a:hover { color: var(--mlh-primary); }
.mlh-footer__bottom { padding: 1.4rem 0; }
.mlh-footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.mlh-footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.mlh-footer__copy a { color: var(--mlh-primary); text-decoration: none; }
.mlh-footer__disclaimer { font-size: 11px; color: rgba(255,255,255,0.18); max-width: 480px; text-align: right; line-height: 1.5; }

/* ═══════════════════════════════════════════════════
   ELEMENTOR COMPATIBILITY OVERRIDES
   These ensure Elementor sections blend with our theme
═══════════════════════════════════════════════════ */
.elementor-section { width: 100%; }
.elementor-section.elementor-section-full_width { max-width: 100%; }
.elementor-widget-wrap { padding: 0 !important; }
/* Let Elementor control its own containers */
.e-con, .elementor-container { max-width: 1160px; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media ( max-width: 1024px ) {
  .mlh-hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .mlh-hero__panel { order: -1; }
  .mlh-footer__top-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mlh-footer__cols { grid-template-columns: repeat(3, 1fr); }
  .mlh-professionals__grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media ( max-width: 768px ) {
  .mlh-header__inner { height: 60px; }
  .mlh-hero { margin-top: 0; padding: 4rem 0 3rem; }
  .mlh-nav, .mlh-header__actions { display: none; }
  .mlh-hamburger { display: flex; }
  .mlh-nav.is-open {
    display: block;
    position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0;
    background: var(--mlh-navy-d);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 8999;
    animation: mlh-fadeDown 0.2s ease;
  }
  .mlh-nav.is-open .mlh-nav__list { flex-direction: column; align-items: flex-start; gap: 4px; }
  .mlh-nav.is-open .mlh-nav__list a { font-size: 18px; padding: 12px 0; }
  .mlh-panel__grid { grid-template-columns: 1fr 1fr; }
  .mlh-how__steps { grid-template-columns: 1fr 1fr; }
  .mlh-how__steps::before { display: none; }
  .mlh-professionals__grid { grid-template-columns: 1fr; }
  .mlh-footer__cols { grid-template-columns: 1fr 1fr; }
  .mlh-footer__bottom-inner { flex-direction: column; text-align: center; }
  .mlh-footer__disclaimer { text-align: center; }
  .mlh-section { padding: 3.5rem 0; }
}
@media ( max-width: 480px ) {
  .mlh-services__grid { grid-template-columns: 1fr; }
  .mlh-platform__grid { grid-template-columns: 1fr 1fr; }
  .mlh-how__steps { grid-template-columns: 1fr; }
  .mlh-footer__cols { grid-template-columns: 1fr; }
  .mlh-hero__stats { gap: 1.2rem; }
  .mlh-trust-band__inner { gap: 0.8rem; font-size: 11.5px; }
  .mlh-cta__btns { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════
   MOBILE RESPONSIVE FIXES
═══════════════════════════════════════════════════ */

/* Prevent horizontal scroll on all devices */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
  /* Fix How It Works section - 2x2 grid */
  .mlh-how__steps {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem 1rem !important;
  }
  
  .mlh-how__steps::before {
    display: none !important;
  }
  
  .mlh-how__step {
    padding: 0 0.5rem !important;
  }
  
  /* Fix Professionals Tiers - 2x2 grid (3rd item wraps below) */
  .mlh-professionals__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }
  
  .mlh-pro-tier {
    padding: 1.2rem !important;
    font-size: 0.9rem;
  }
  
  /* Ensure containers fit viewport */
  .mlh-container {
    padding: 0 1rem !important;
  }
  
  .mlh-header__inner {
    padding: 0 1rem !important;
  }
}

/* ═══════════════════════════════════════════════════════
   PROFESSIONAL AUTH PAGES (login / register)
═══════════════════════════════════════════════════════ */
.mlh-auth-bg {
  background: #f1f5f9;
  padding: 60px 20px 80px;
  min-height: calc(100vh - 200px);
}
.mlh-auth-bg--wide {
  padding-top: 48px;
}
.mlh-auth-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(0,0,0,.09);
  padding: 48px;
  max-width: 520px;
  margin: 0 auto;
}
.mlh-auth-card--wide {
  max-width: 820px;
}
.mlh-auth-card__logo-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mlh-gold);
  margin-bottom: 10px;
}
.mlh-auth-card__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.8rem;
  color: var(--mlh-navy);
  margin: 0 0 6px;
  font-weight: 700;
}
.mlh-auth-card__sub {
  color: var(--mlh-slate);
  font-size: .9rem;
  margin: 0 0 32px;
}
.mlh-auth-card__link {
  font-size: .85rem;
  color: var(--mlh-slate);
  margin: 12px 0 0;
}
.mlh-auth-card__link a {
  color: var(--mlh-gold-d);
  font-weight: 600;
  text-decoration: none;
}
.mlh-auth-card__link a:hover { text-decoration: underline; }
.mlh-auth-card__divider {
  border: none;
  border-top: 1px solid var(--mlh-border);
  margin: 22px 0;
}

/* Plan card selection in register */
.mlh-plan-selector .mlh-plan-card {
  cursor: pointer;
  user-select: none;
  transition: border-color .18s, box-shadow .18s;
}
.mlh-plan-select-indicator {
  display: block;
  margin-top: 18px;
  padding: 8px 16px;
  border: 1.5px solid var(--mlh-border);
  border-radius: 999px;
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--mlh-slate);
  transition: background .18s, color .18s, border-color .18s;
}
.mlh-plan-selector .mlh-plan-card.mlh-plan-chosen {
  border-color: var(--mlh-gold) !important;
  box-shadow: 0 0 0 3px rgba(184,152,95,.22), var(--mlh-shadow) !important;
}
.mlh-plan-selector .mlh-plan-card.mlh-plan-chosen .mlh-plan-select-indicator {
  background: var(--mlh-gold);
  border-color: var(--mlh-gold);
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   PROFESSIONAL DASHBOARD
═══════════════════════════════════════════════════════ */
.mlh-dash {
  background: #f1f5f9;
  padding: 40px 0 80px;
  min-height: calc(100vh - 200px);
}

/* Welcome banner */
.mlh-dash-welcome {
  background: var(--mlh-navy);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 24px;
}
.mlh-dash-welcome__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.mlh-dash-welcome__eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mlh-gold);
  margin: 0 0 6px;
}
.mlh-dash-welcome__name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 0 4px;
  font-weight: 700;
}
.mlh-dash-welcome__practice {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  margin: 0;
}
.mlh-dash-welcome__meta { text-align: right; }
.mlh-dash-welcome__since {
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  margin: 6px 0 0;
}
.mlh-dash-status {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
}
.mlh-dash-status--pending { background: rgba(184,152,95,.25); color: #d4a84b; }
.mlh-dash-status--active  { background: rgba(44,95,45,.3);    color: #5ed46a; }
.mlh-dash-status--live    { background: rgba(44,95,45,.3);    color: #5ed46a; }

/* Stats grid */
.mlh-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.mlh-dash-stat {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--mlh-border);
  border-top: 3px solid var(--mlh-gold);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--mlh-shadow);
}
.mlh-dash-stat__num {
  font-family: 'Lora', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--mlh-navy);
  line-height: 1;
  margin-bottom: 6px;
}
.mlh-dash-stat__num--sm { font-size: 1.1rem; padding-top: 8px; }
.mlh-dash-stat__label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--mlh-slate);
}

/* Row layout: profile + plan */
.mlh-dash-row {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* Dashboard cards */
.mlh-dash-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--mlh-border);
  padding: 28px 32px;
  box-shadow: var(--mlh-shadow);
}
.mlh-dash-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--mlh-border);
}
.mlh-dash-card__title {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.1rem;
  color: var(--mlh-navy);
  margin: 0;
  font-weight: 700;
}

/* Profile fields */
.mlh-dash-field {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--mlh-border);
  gap: 16px;
}
.mlh-dash-field:last-child { border-bottom: none; }
.mlh-dash-field__label {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mlh-slate);
  flex-shrink: 0;
  min-width: 130px;
}
.mlh-dash-field__value {
  font-size: .88rem;
  color: var(--mlh-navy);
  text-align: left;
  flex: 1;
}
.mlh-dash-plan-badge {
  background: var(--mlh-gold-lt);
  color: var(--mlh-gold-d);
  font-weight: 700;
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Plan detail in dashboard card */
.mlh-dash-plan-detail__name {
  font-family: 'Lora', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mlh-navy);
  margin-bottom: 4px;
}
.mlh-dash-plan-detail__price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--mlh-navy);
  line-height: 1;
  margin: 8px 0 20px;
}
.mlh-dash-plan-detail__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--mlh-slate);
}
.mlh-dash-plan-detail__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mlh-dash-plan-detail__list li {
  font-size: .85rem;
  color: var(--mlh-slate-d);
  padding: 7px 0;
  border-bottom: 1px solid var(--mlh-border);
}
.mlh-dash-plan-detail__list li:last-child { border-bottom: none; }

/* Leads table */
.mlh-dash-table-wrap { overflow-x: auto; }
.mlh-dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.mlh-dash-table th {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mlh-slate);
  text-align: left;
  padding: 10px 16px;
  border-bottom: 2px solid var(--mlh-border);
  background: #f8fafc;
}
.mlh-dash-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--mlh-border);
  color: var(--mlh-slate-d);
  vertical-align: middle;
}
.mlh-dash-table__empty {
  text-align: center;
  color: var(--mlh-mid);
  padding: 40px 16px !important;
  font-style: italic;
}

/* Dashboard responsive */
@media (max-width: 960px) {
  .mlh-dash-stats { grid-template-columns: repeat(2, 1fr); }
  .mlh-dash-row   { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
  .mlh-auth-card { padding: 28px 20px; }
  .mlh-dash-welcome { padding: 24px 20px; }
  .mlh-dash-card { padding: 20px; }
  .mlh-dash-welcome__meta { text-align: left; }
}

/* Footer full-width background */
.elementor-location-footer {
  background: #0d1b2a !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.elementor-location-footer .elementor-element {
  background: #0d1b2a !important;
}

.mlh-ft {
  background: #0d1b2a !important;
}
