/**
 * @file
 * MLT Landing Pages - Premium Base Styles
 *
 * Uses Team+ theme CSS custom properties for seamless integration.
 * Supports both light and dark modes with premium animations.
 */

/* ============================================
   CSS CUSTOM PROPERTIES
   Maps to Team+ theme variables
   ============================================ */
.mlt-lp {
  /* Primary colours from theme */
  --mlt-primary: var(--mt-color-primary, hsl(214, 100%, 47%));
  --mlt-primary-dark: var(--mt-color-primary-dark, hsl(214, 100%, 40%));
  --mlt-primary-light: var(--mt-color-primary-light, hsl(214, 100%, 57%));
  --mlt-primary-value: var(--mt-color-primary-value, 214, 100%, 47%);
  
  /* Secondary colours from theme */
  --mlt-secondary: var(--mt-color-secondary, hsl(214, 100%, 47%));
  --mlt-secondary-light: var(--mt-color-secondary-light, hsl(214, 100%, 90%));
  
  /* Text colours */
  --mlt-text: var(--mt-color-base, #323232);
  --mlt-text-light: var(--mt-color-base-contrast, #F6F9FC);
  --mlt-text-muted: rgba(var(--mt-color-base-value, 50, 50, 50), 0.7);
  
  /* Background colours */
  --mlt-bg-dark: var(--mt-color-shade, hsl(225, 6%, 13%));
  --mlt-bg-dark-card: hsl(225, 8%, 18%);
  --mlt-bg-dark-border: hsl(225, 6%, 25%);
  --mlt-bg-light: var(--mt-color-bright, #ffffff);
  --mlt-bg-light-alt: var(--mt-color-tint, #f1f1f1);
  --mlt-bg-light-card: #ffffff;
  --mlt-bg-light-border: rgba(0, 0, 0, 0.1);
  
  /* Accent/glow colours */
  --mlt-glow: hsla(var(--mlt-primary-value), 0.4);
  --mlt-glow-dim: hsla(var(--mlt-primary-value), 0.15);
  
  /* Spacing */
  --mlt-section-padding: 100px;
  --mlt-container-max: 1200px;
  --mlt-radius: 20px;
  --mlt-radius-sm: 12px;
  --mlt-radius-lg: 24px;
  
  /* Fonts from theme */
  --mlt-font-heading: var(--mt-hff, 'Outfit', sans-serif);
  --mlt-font-body: var(--mt-pff, 'Outfit', sans-serif);
  
  /* Transitions */
  --mlt-transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --mlt-transition-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   BACKGROUND STYLE CLASSES
   Apply to any element via .mlt-lp__bg--{style}
   ============================================ */

/* Default - inherits from parent/theme */
.mlt-lp__bg--default {
  /* No override */
}

/* Light backgrounds */
.mlt-lp__bg--light {
  background: var(--mlt-bg-light) !important;
  color: var(--mlt-text) !important;
}

.mlt-lp__bg--light_alt {
  background: var(--mlt-bg-light-alt) !important;
  color: var(--mlt-text) !important;
}

/* Dark backgrounds */
.mlt-lp__bg--dark {
  background: var(--mlt-bg-dark) !important;
  color: var(--mlt-text-light) !important;
}

.mlt-lp__bg--dark_alt {
  background: var(--mlt-bg-dark-card) !important;
  color: var(--mlt-text-light) !important;
}

/* Primary colour backgrounds */
.mlt-lp__bg--primary {
  background: var(--mlt-primary) !important;
  color: var(--mlt-text-light) !important;
}

.mlt-lp__bg--primary_light {
  background: hsla(var(--mlt-primary-value), 0.1) !important;
  color: var(--mlt-text) !important;
}

/* Secondary colour backgrounds */
.mlt-lp__bg--secondary {
  background: var(--mlt-secondary) !important;
  color: var(--mlt-text-light) !important;
}

/* Gradient backgrounds */
.mlt-lp__bg--gradient_primary {
  background: linear-gradient(135deg, var(--mlt-primary) 0%, var(--mlt-primary-dark) 100%) !important;
  color: var(--mlt-text-light) !important;
}

.mlt-lp__bg--gradient_dark {
  background: 
    radial-gradient(ellipse at 50% 0%, hsla(var(--mlt-primary-value), 0.15) 0%, transparent 60%),
    var(--mlt-bg-dark-card) !important;
  color: var(--mlt-text-light) !important;
}

/* Text colour overrides for dark backgrounds */
.mlt-lp__bg--dark .mlt-lp__section-title,
.mlt-lp__bg--dark_alt .mlt-lp__section-title,
.mlt-lp__bg--primary .mlt-lp__section-title,
.mlt-lp__bg--secondary .mlt-lp__section-title,
.mlt-lp__bg--gradient_primary .mlt-lp__section-title,
.mlt-lp__bg--gradient_dark .mlt-lp__section-title {
  color: var(--mlt-text-light) !important;
}

.mlt-lp__bg--dark .mlt-lp__section-label,
.mlt-lp__bg--dark_alt .mlt-lp__section-label,
.mlt-lp__bg--gradient_dark .mlt-lp__section-label {
  color: var(--mlt-primary) !important;
}

/* Button style classes */
.mlt-lp__btn-style--primary .mlt-lp__cta-buttons a,
.mlt-lp__btn-style--primary .mlt-lp__cta-buttons .field__item:first-child a {
  background: var(--mlt-primary) !important;
  color: var(--mlt-text-light) !important;
}

.mlt-lp__btn-style--secondary .mlt-lp__cta-buttons a,
.mlt-lp__btn-style--secondary .mlt-lp__cta-buttons .field__item:first-child a {
  background: var(--mlt-secondary) !important;
  color: var(--mlt-text-light) !important;
}

.mlt-lp__btn-style--dark .mlt-lp__cta-buttons a,
.mlt-lp__btn-style--dark .mlt-lp__cta-buttons .field__item:first-child a {
  background: var(--mlt-bg-dark) !important;
  color: var(--mlt-text-light) !important;
}

.mlt-lp__btn-style--light .mlt-lp__cta-buttons a,
.mlt-lp__btn-style--light .mlt-lp__cta-buttons .field__item:first-child a {
  background: var(--mlt-bg-light) !important;
  color: var(--mlt-text) !important;
}

.mlt-lp__btn-style--outline_primary .mlt-lp__cta-buttons a,
.mlt-lp__btn-style--outline_primary .mlt-lp__cta-buttons .field__item:first-child a {
  background: transparent !important;
  border: 2px solid var(--mlt-primary) !important;
  color: var(--mlt-primary) !important;
}

.mlt-lp__btn-style--outline_light .mlt-lp__cta-buttons a,
.mlt-lp__btn-style--outline_light .mlt-lp__cta-buttons .field__item:first-child a {
  background: transparent !important;
  border: 2px solid var(--mlt-text-light) !important;
  color: var(--mlt-text-light) !important;
}

.mlt-lp__btn-style--outline_dark .mlt-lp__cta-buttons a,
.mlt-lp__btn-style--outline_dark .mlt-lp__cta-buttons .field__item:first-child a {
  background: transparent !important;
  border: 2px solid var(--mlt-text) !important;
  color: var(--mlt-text) !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes mlt-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mlt-fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mlt-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mlt-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes mlt-pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--mlt-glow), 0 0 40px var(--mlt-glow-dim);
  }
  50% {
    box-shadow: 0 0 30px var(--mlt-glow), 0 0 60px var(--mlt-glow-dim);
  }
}

/* Scroll Animation Classes */
.mlt-lp .mlt-animate {
  opacity: 0;
}

.mlt-lp .mlt-animate.mlt-visible {
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.mlt-lp .mlt-animate.mlt-visible.mlt-fade-up {
  animation-name: mlt-fadeInUp;
}

.mlt-lp .mlt-animate.mlt-visible.mlt-fade-left {
  animation-name: mlt-fadeInLeft;
}

.mlt-lp .mlt-animate.mlt-visible.mlt-fade-right {
  animation-name: mlt-fadeInRight;
}

/* Stagger delays */
.mlt-lp .mlt-delay-1 { animation-delay: 0.1s; }
.mlt-lp .mlt-delay-2 { animation-delay: 0.2s; }
.mlt-lp .mlt-delay-3 { animation-delay: 0.3s; }
.mlt-lp .mlt-delay-4 { animation-delay: 0.4s; }
.mlt-lp .mlt-delay-5 { animation-delay: 0.5s; }
.mlt-lp .mlt-delay-6 { animation-delay: 0.6s; }

/* ============================================
   BASE LAYOUT - Override theme containers
   ============================================ */
.mlt-lp {
  font-family: var(--mlt-font-body) !important;
  line-height: 1.6;
  position: relative;
}

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

.mlt-lp__wrapper {
  overflow: hidden;
  width: 100%;
}

/* Reset any theme containers within our landing page */
.mlt-lp .container,
.mlt-lp .container-fluid {
  max-width: none;
  padding: 0;
  margin: 0;
}

.mlt-lp .row {
  margin: 0;
}

/* Our container */
.mlt-lp__container {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Full width sections that break out of theme container */
.mlt-lp__section-full {
  position: relative;
  width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.mlt-lp .mlt-lp__section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.mlt-lp .mlt-lp__section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mlt-primary);
  margin-bottom: 16px;
}

.mlt-lp .mlt-lp__section-label::before,
.mlt-lp .mlt-lp__section-label::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--mlt-primary);
  opacity: 0.5;
}

.mlt-lp .mlt-lp__section-title {
  font-family: var(--mlt-font-heading) !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
}

.mlt-lp .mlt-lp__section-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ============================================
   BUTTONS
   ============================================ */
.mlt-lp .mlt-lp__btn,
.mlt-lp__hero-buttons a,
.mlt-lp__cta-buttons a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  font-family: var(--mlt-font-body) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  transition: all var(--mlt-transition) !important;
  cursor: pointer !important;
  border: none !important;
}

.mlt-lp .mlt-lp__btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.mlt-lp .mlt-lp__btn:hover svg {
  transform: translateX(4px);
}

.mlt-lp__btn--primary {
  background: var(--mlt-primary);
  color: var(--mlt-text-light);
  box-shadow: 0 4px 20px var(--mlt-glow-dim);
}

.mlt-lp__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--mlt-glow);
  color: var(--mlt-text-light);
  text-decoration: none;
}

.mlt-lp__btn--secondary {
  background: transparent;
  border: 2px solid currentColor;
  opacity: 0.8;
}

.mlt-lp__btn--secondary:hover {
  border-color: var(--mlt-primary);
  color: var(--mlt-primary);
  opacity: 1;
  text-decoration: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.mlt-lp .mlt-lp__hero {
  position: relative !important;
  min-height: 80vh !important;
  padding: 100px 24px !important;
  /* Full width breakout */
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  overflow: hidden !important;
}

.mlt-lp .mlt-lp__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 2px 2px, hsla(var(--mlt-primary-value), 0.04) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

.mlt-lp .mlt-lp__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0;
}

/* When hero-inner has a background style, make it full width */
.mlt-lp .mlt-lp__hero-inner[class*="--bg-"] {
  width: 100vw !important;
  max-width: none !important;
  margin-left: calc(-50vw + 50%) !important;
  padding: 100px 24px !important;
}

/* Container for content inside full-width hero-inner */
.mlt-lp .mlt-lp__hero-inner[class*="--bg-"] .mlt-lp__hero-grid,
.mlt-lp .mlt-lp__hero-inner[class*="--bg-"] .mlt-lp__hero-centered {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
}

/* Target Drupal field wrapper inside hero */
.mlt-lp .mlt-lp__hero > .field {
  width: 100%;
  max-width: var(--mlt-container-max);
  margin: 0 auto;
}

.mlt-lp .mlt-lp__hero-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
}

@media (max-width: 991px) {
  .mlt-lp .mlt-lp__hero-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

.mlt-lp .mlt-lp__hero-content {
  position: relative;
  z-index: 2;
}

/* Hero Badge */
.mlt-lp .mlt-lp__hero-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--mlt-glow-dim) !important;
  border: 1px solid hsla(var(--mlt-primary-value), 0.3) !important;
  padding: 8px 16px !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: var(--mlt-primary) !important;
  margin-bottom: 24px !important;
}

.mlt-lp .mlt-lp__hero-badge svg {
  width: 16px;
  height: 16px;
}

/* Hero Title */
.mlt-lp .mlt-lp__hero-title {
  font-family: var(--mlt-font-heading) !important;
  font-size: clamp(2.5rem, 6vw, 4rem) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  margin-bottom: 24px !important;
}

.mlt-lp .mlt-lp__hero-title .mlt-highlight {
  color: var(--mlt-primary) !important;
}

/* Hero Subtitle */
.mlt-lp .mlt-lp__hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
  line-height: 1.7 !important;
  margin-bottom: 40px !important;
  opacity: 0.85;
}

.mlt-lp .mlt-lp__hero-subtitle p {
  margin: 0;
}

/* Hero Buttons */
.mlt-lp .mlt-lp__hero-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  margin-bottom: 48px !important;
}

.mlt-lp .mlt-lp__hero-buttons .field__items {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
}

.mlt-lp .mlt-lp__hero-buttons a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 16px 32px !important;
  border-radius: 8px !important;
  font-family: var(--mlt-font-body) !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  text-decoration: none !important;
  transition: all var(--mlt-transition) !important;
}

/* Hero Trust Badges */
.mlt-lp__hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mlt-lp__hero-trust-label {
  font-size: 0.9rem;
  opacity: 0.7;
}

.mlt-lp__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.mlt-lp__hero-badges .field__items {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.mlt-lp__hero-badges img {
  height: 45px;
  width: auto;
  opacity: 0.85;
  transition: all var(--mlt-transition);
}

.mlt-lp__hero-badges img:hover {
  opacity: 1;
  transform: translateY(-4px) scale(1.05);
}

/* Hero Visual */
.mlt-lp__hero-visual {
  position: relative;
  overflow: visible;
}

.mlt-lp__hero-image {
  position: relative;
  border-radius: var(--mlt-radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.mlt-lp__hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, hsla(var(--mlt-primary-value), 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.mlt-lp__hero-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Floating Cards */
.mlt-lp__floating-card {
  position: absolute;
  background: var(--mlt-bg-dark-card);
  border: 1px solid var(--mlt-bg-dark-border);
  border-radius: var(--mlt-radius);
  padding: 20px 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: mlt-float 4s ease-in-out infinite;
  z-index: 10;
}

.mlt-lp__floating-card--1 {
  bottom: -10px;
  left: -20px;
  animation-delay: 0s;
}

.mlt-lp__floating-card--2 {
  top: 20px;
  right: -10px;
  animation-delay: 1s;
}

.mlt-lp__floating-card-icon {
  width: 48px;
  height: 48px;
  background: var(--mlt-glow-dim);
  border-radius: var(--mlt-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mlt-lp__floating-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--mlt-primary);
}

.mlt-lp__floating-card-value {
  font-family: var(--mlt-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--mlt-text-light);
}

.mlt-lp__floating-card-label {
  font-size: 0.85rem;
  opacity: 0.7;
  color: var(--mlt-text-light);
}

@media (max-width: 767px) {
  .mlt-lp__floating-card {
    display: none;
  }
  
  .mlt-lp__hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .mlt-lp__hero-image img {
    height: 300px;
  }
  
  .mlt-lp__hero-buttons {
    flex-direction: column;
  }
  
  .mlt-lp__hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================
   HERO BACKGROUND STYLE VARIANTS
   Uses theme colour variables for consistency
   ============================================ */

/* Light Subtle - white to grey gradient */
.mlt-lp .mlt-lp__hero--bg-light_subtle {
  background: linear-gradient(180deg, var(--mt-color-bright, #ffffff) 0%, var(--mt-color-tint, #f1f1f1) 100%) !important;
  color: var(--mt-color-base, #323232) !important;
}

/* Light with Primary Accent */
.mlt-lp .mlt-lp__hero--bg-light_accent {
  background: 
    radial-gradient(ellipse at 20% 20%, hsla(var(--mt-color-primary-value, 45, 97%, 50%), 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, hsla(var(--mt-color-primary-value, 45, 97%, 50%), 0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--mt-color-bright, #ffffff) 0%, var(--mt-color-tint, #f1f1f1) 100%) !important;
  color: var(--mt-color-base, #323232) !important;
}

/* Dark Background */
.mlt-lp .mlt-lp__hero--bg-dark {
  background: linear-gradient(180deg, var(--mt-color-shade, hsl(225, 6%, 13%)) 0%, hsl(225, 6%, 8%) 100%) !important;
  color: var(--mt-color-base-contrast, #ffffff) !important;
}

.mlt-lp .mlt-lp__hero--bg-dark .mlt-lp__hero-subtitle,
.mlt-lp .mlt-lp__hero--bg-dark .mlt-lp__hero-trust-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

.mlt-lp .mlt-lp__hero--bg-dark .mlt-lp__floating-card {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Dark with Primary Glow */
.mlt-lp .mlt-lp__hero--bg-dark_accent {
  background: 
    radial-gradient(ellipse at 20% 20%, hsla(var(--mt-color-primary-value, 45, 97%, 50%), 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, hsla(var(--mt-color-primary-value, 45, 97%, 50%), 0.1) 0%, transparent 50%),
    linear-gradient(180deg, var(--mt-color-shade, hsl(225, 6%, 13%)) 0%, hsl(225, 6%, 8%) 100%) !important;
  color: var(--mt-color-base-contrast, #ffffff) !important;
}

.mlt-lp .mlt-lp__hero--bg-dark_accent .mlt-lp__hero-subtitle,
.mlt-lp .mlt-lp__hero--bg-dark_accent .mlt-lp__hero-trust-label {
  color: rgba(255, 255, 255, 0.85) !important;
}

.mlt-lp .mlt-lp__hero--bg-dark_accent .mlt-lp__floating-card {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

/* Primary Colour Gradient */
.mlt-lp .mlt-lp__hero--bg-primary {
  background: linear-gradient(135deg, var(--mt-color-primary, hsl(45, 97%, 50%)) 0%, var(--mt-color-primary-dark, hsl(45, 97%, 40%)) 100%) !important;
  color: var(--mt-color-primary-contrast, #323232) !important;
}

.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__hero-subtitle,
.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__hero-trust-label {
  color: var(--mt-color-primary-contrast, #323232) !important;
  opacity: 0.9;
}

.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__hero-buttons a,
.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__hero-buttons .field__item:first-child a {
  background: var(--mt-color-base, #323232) !important;
  color: var(--mt-color-base-contrast, #ffffff) !important;
}

.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__hero-buttons .field__item:nth-child(2) a {
  background: transparent !important;
  border: 2px solid var(--mt-color-base, #323232) !important;
  color: var(--mt-color-base, #323232) !important;
}

.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__floating-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__floating-card-value,
.mlt-lp .mlt-lp__hero--bg-primary .mlt-lp__floating-card-label {
  color: var(--mt-color-base, #323232) !important;
}

/* Secondary Colour Gradient */
.mlt-lp .mlt-lp__hero--bg-secondary {
  background: linear-gradient(135deg, var(--mt-color-secondary, hsl(195, 89%, 28%)) 0%, var(--mt-color-secondary-dark, hsl(205, 74%, 22%)) 100%) !important;
  color: var(--mt-color-secondary-contrast, #ffffff) !important;
}

.mlt-lp .mlt-lp__hero--bg-secondary .mlt-lp__hero-subtitle,
.mlt-lp .mlt-lp__hero--bg-secondary .mlt-lp__hero-trust-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

.mlt-lp .mlt-lp__hero--bg-secondary .mlt-lp__hero-buttons a:first-child {
  background: var(--mt-color-primary, hsl(45, 97%, 50%)) !important;
  color: var(--mt-color-primary-contrast, #323232) !important;
}

.mlt-lp .mlt-lp__hero--bg-secondary .mlt-lp__floating-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.mlt-lp .mlt-lp__hero--bg-secondary .mlt-lp__floating-card-value,
.mlt-lp .mlt-lp__hero--bg-secondary .mlt-lp__floating-card-label {
  color: var(--mt-color-base, #323232) !important;
}

/* Background Image */
.mlt-lp .mlt-lp__hero--bg-image {
  background: 
    linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.7) 100%),
    var(--hero-bg-image) center/cover no-repeat !important;
  color: #ffffff !important;
}

.mlt-lp .mlt-lp__hero--bg-image .mlt-lp__hero-subtitle,
.mlt-lp .mlt-lp__hero--bg-image .mlt-lp__hero-trust-label {
  color: rgba(255, 255, 255, 0.9) !important;
}

.mlt-lp .mlt-lp__hero--bg-image .mlt-lp__floating-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
}

.mlt-lp .mlt-lp__hero--bg-image .mlt-lp__floating-card-value,
.mlt-lp .mlt-lp__hero--bg-image .mlt-lp__floating-card-label {
  color: var(--mt-color-base, #323232) !important;
}

/* ============================================
   HERO LAYOUT VARIANTS
   ============================================ */

/* Content Right, Image Left - reverse the grid */
.mlt-lp .mlt-lp__hero-grid--reversed {
  direction: rtl;
}

.mlt-lp .mlt-lp__hero-grid--reversed > * {
  direction: ltr;
}

/* Centered layouts */
.mlt-lp .mlt-lp__hero--layout-centered .mlt-lp__hero-centered,
.mlt-lp .mlt-lp__hero--layout-centered_image .mlt-lp__hero-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mlt-lp .mlt-lp__hero-content--centered {
  text-align: center;
}

.mlt-lp .mlt-lp__hero-buttons--centered {
  justify-content: center !important;
}

.mlt-lp .mlt-lp__hero-buttons--centered .field__items {
  justify-content: center !important;
}

.mlt-lp .mlt-lp__hero-trust--centered {
  justify-content: center !important;
  flex-wrap: wrap;
}

.mlt-lp .mlt-lp__hero-image--centered {
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mlt-lp .mlt-lp__hero-image--centered img {
  height: auto;
  max-height: 500px;
  width: 100%;
  object-fit: contain;
}

/* ============================================
   HERO HEIGHT VARIANTS
   ============================================ */

.mlt-lp .mlt-lp__hero--height-full {
  min-height: 100vh !important;
}

.mlt-lp .mlt-lp__hero--height-large {
  min-height: 80vh !important;
}

.mlt-lp .mlt-lp__hero--height-medium {
  min-height: 60vh !important;
}

.mlt-lp .mlt-lp__hero--height-compact {
  min-height: auto !important;
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

/* ============================================
   TRUST BANNER SECTION
   ============================================ */
.mlt-lp__trust-banner {
  padding: 32px 0;
  border-top: 1px solid hsla(var(--mlt-primary-value), 0.2);
  border-bottom: 1px solid hsla(var(--mlt-primary-value), 0.2);
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.mlt-lp__trust-banner-inner {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.mlt-lp__trust-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 24px 40px;
  border: 1px solid hsla(var(--mlt-primary-value), 0.25);
  border-radius: var(--mlt-radius);
  transition: all var(--mlt-transition);
  text-decoration: none;
}

.mlt-lp__trust-item:hover {
  transform: translateY(-4px);
  border-color: hsla(var(--mlt-primary-value), 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.mlt-lp__trust-logo {
  flex-shrink: 0;
}

.mlt-lp__trust-logo img {
  height: 80px;
  width: auto;
}

.mlt-lp__trust-heading {
  font-family: var(--mlt-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mlt-lp__trust-body {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

.mlt-lp__trust-body p {
  margin: 0;
}

@media (max-width: 767px) {
  .mlt-lp__trust-item {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
  
  .mlt-lp__trust-logo img {
    height: 60px;
  }
}

/* ============================================
   PATHWAY CARDS SECTION
   ============================================ */
.mlt-lp__pathways {
  padding: var(--mlt-section-padding) 0;
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.mlt-lp__pathways::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mlt-bg-dark-border), transparent);
}

.mlt-lp__pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Handle Drupal field wrapper */
.mlt-lp__pathway-grid > .field {
  display: contents;
}

.mlt-lp__pathway-grid > .field > .field__items {
  display: contents;
}

.mlt-lp__pathway-grid > .field > .field__items > .field__item {
  display: contents;
}

@media (max-width: 991px) {
  .mlt-lp__pathway-grid {
    grid-template-columns: 1fr;
  }
}

.mlt-lp__pathway-card {
  position: relative;
  border: 1px solid var(--mlt-bg-dark-border);
  border-radius: var(--mlt-radius-lg);
  padding: 48px;
  overflow: hidden;
  transition: all var(--mlt-transition);
}

.mlt-lp__pathway-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mlt-primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mlt-lp__pathway-card:hover {
  transform: translateY(-8px);
  border-color: hsla(var(--mlt-primary-value), 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.mlt-lp__pathway-card:hover::before {
  opacity: 1;
}

.mlt-lp__pathway-icon {
  width: 72px;
  height: 72px;
  background: var(--mlt-glow-dim);
  border-radius: var(--mlt-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

.mlt-lp__pathway-card:hover .mlt-lp__pathway-icon {
  background: var(--mlt-primary);
}

.mlt-lp__pathway-icon i {
  font-size: 36px;
  color: var(--mlt-primary);
  transition: color 0.4s ease;
}

.mlt-lp__pathway-card:hover .mlt-lp__pathway-icon i {
  color: var(--mlt-text-light);
}

.mlt-lp__pathway-heading {
  font-family: var(--mlt-font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.mlt-lp__pathway-body {
  line-height: 1.7;
  margin-bottom: 28px;
  opacity: 0.85;
}

.mlt-lp__pathway-body p {
  margin: 0;
}

.mlt-lp__pathway-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}

.mlt-lp__pathway-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.mlt-lp__pathway-features li::before {
  content: '✓';
  color: var(--mlt-primary);
  font-weight: bold;
}

.mlt-lp__pathway-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--mlt-primary);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.mlt-lp__pathway-link:hover {
  gap: 12px;
  color: var(--mlt-primary);
  text-decoration: none;
}

.mlt-lp__pathway-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.mlt-lp__pathway-link:hover::after {
  transform: translateX(4px);
}

@media (max-width: 767px) {
  .mlt-lp__pathway-card {
    padding: 32px;
  }
}

/* ============================================
   ABOUT / SPLIT BLOCK SECTION
   ============================================ */
.mlt-lp__about {
  padding: var(--mlt-section-padding) 0;
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.mlt-lp__about-inner {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.mlt-lp__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.mlt-lp__block--reversed {
  direction: rtl;
}

.mlt-lp__block--reversed > * {
  direction: ltr;
}

@media (max-width: 991px) {
  .mlt-lp__block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .mlt-lp__block--reversed {
    direction: ltr;
  }
}

.mlt-lp__block-image {
  position: relative;
}

.mlt-lp__block-image img {
  width: 100%;
  height: auto;
  border-radius: var(--mlt-radius-lg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mlt-lp__block-content h2 {
  font-family: var(--mlt-font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.mlt-lp__block-content h2 .mlt-highlight {
  color: var(--mlt-primary);
}

.mlt-lp__block-body {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.85;
}

.mlt-lp__block-body p {
  margin: 0 0 1em;
}

.mlt-lp__block-body p:last-child {
  margin-bottom: 0;
}

/* Full-Width Content Block */
.mlt-lp__full-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* When full-block has a background, make it full width */
.mlt-lp__full-block[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: var(--mlt-section-padding) 24px;
}

/* Keep inner content centered and constrained */
.mlt-lp__full-block[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__section-label,
.mlt-lp__full-block[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__section-title,
.mlt-lp__full-block[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__full-block-body {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mlt-lp__full-block .mlt-lp__section-label {
  justify-content: center;
}

.mlt-lp__full-block .mlt-lp__section-title {
  margin-bottom: 24px;
}

.mlt-lp__full-block-body {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: 0.85;
}

.mlt-lp__full-block-body p {
  margin: 0 0 1em;
}

.mlt-lp__full-block-body p:last-child {
  margin-bottom: 0;
}

/* Experience Badge */
.mlt-lp__experience-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--mlt-primary);
  color: var(--mlt-text-light);
  padding: 24px 32px;
  border-radius: var(--mlt-radius);
  text-align: center;
  box-shadow: 0 20px 40px var(--mlt-glow-dim);
}

.mlt-lp__experience-badge-value {
  font-family: var(--mlt-font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.mlt-lp__experience-badge-label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 4px;
}

@media (max-width: 767px) {
  .mlt-lp__experience-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 24px;
    display: inline-block;
  }
}

/* ============================================
   STATS SECTION
   ============================================ */
.mlt-lp__stats {
  padding: 80px 0;
  border-top: 1px solid var(--mlt-bg-dark-border);
  border-bottom: 1px solid var(--mlt-bg-dark-border);
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.mlt-lp__stats-inner {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.mlt-lp__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

/* Handle Drupal field wrapper */
.mlt-lp__stats-grid > .field {
  display: contents;
}

.mlt-lp__stats-grid > .field > .field__items {
  display: contents;
}

.mlt-lp__stats-grid > .field > .field__items > .field__item {
  display: contents;
}

@media (max-width: 991px) {
  .mlt-lp__stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .mlt-lp__stats-grid {
    grid-template-columns: 1fr;
  }
}

.mlt-lp__stat {
  text-align: center;
}

.mlt-lp__stat-value {
  font-family: var(--mlt-font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--mlt-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.mlt-lp__stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

/* ============================================
   SERVICE CARDS SECTION
   ============================================ */
.mlt-lp__services {
  padding: var(--mlt-section-padding) 0;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.mlt-lp__services-inner {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.mlt-lp__services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Handle Drupal field wrapper */
.mlt-lp__services-grid > .field {
  display: contents;
}

.mlt-lp__services-grid > .field > .field__items {
  display: contents;
}

.mlt-lp__services-grid > .field > .field__items > .field__item {
  display: contents;
}

@media (max-width: 991px) {
  .mlt-lp__services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .mlt-lp__services-grid {
    grid-template-columns: 1fr;
  }
}

.mlt-lp__service-card {
  border: 1px solid var(--mlt-bg-dark-border);
  border-radius: var(--mlt-radius);
  padding: 32px;
  text-decoration: none;
  transition: all var(--mlt-transition);
  display: block;
}

.mlt-lp__service-card:hover {
  transform: translateY(-6px);
  border-color: hsla(var(--mlt-primary-value), 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.mlt-lp__service-icon {
  width: 56px;
  height: 56px;
  background: var(--mlt-glow-dim);
  border-radius: var(--mlt-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.mlt-lp__service-card:hover .mlt-lp__service-icon {
  background: var(--mlt-primary);
}

.mlt-lp__service-icon i {
  font-size: 28px;
  color: var(--mlt-primary);
  transition: color 0.4s ease;
}

.mlt-lp__service-card:hover .mlt-lp__service-icon i {
  color: var(--mlt-text-light);
}

.mlt-lp__service-heading {
  font-family: var(--mlt-font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.mlt-lp__service-body {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
  margin: 0;
}

.mlt-lp__service-body p {
  margin: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.mlt-lp__testimonials {
  padding: var(--mlt-section-padding) 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

.mlt-lp__testimonials::before {
  content: '"';
  position: absolute;
  top: 60px;
  left: 5%;
  font-size: 400px;
  font-family: Georgia, serif;
  color: var(--mlt-primary);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
}

.mlt-lp__testimonials-inner {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.mlt-lp__testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Handle Drupal field wrapper */
.mlt-lp__testimonial-grid > .field {
  display: contents;
}

.mlt-lp__testimonial-grid > .field > .field__items {
  display: contents;
}

.mlt-lp__testimonial-grid > .field > .field__items > .field__item {
  display: contents;
}

@media (max-width: 991px) {
  .mlt-lp__testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.mlt-lp__testimonial-card {
  border: 1px solid var(--mlt-bg-dark-border);
  border-radius: var(--mlt-radius-lg);
  padding: 40px;
  position: relative;
}

.mlt-lp__testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--mlt-primary);
}

.mlt-lp__testimonial-stars i {
  font-size: 20px;
}

.mlt-lp__testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
  opacity: 0.9;
}

.mlt-lp__testimonial-quote p {
  margin: 0;
}

.mlt-lp__testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mlt-lp__testimonial-avatar {
  width: 52px;
  height: 52px;
  background: var(--mlt-glow-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mlt-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--mlt-primary);
}

.mlt-lp__testimonial-name {
  font-weight: 600;
  margin-bottom: 2px;
}

.mlt-lp__testimonial-source {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.mlt-lp__cta-section {
  position: relative;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}

/* CTA inner wrapper from node template */
.mlt-lp__cta-inner {
  max-width: var(--mlt-container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* The CTA paragraph itself - when it has a background, make it full width */
.mlt-lp__cta {
  padding: var(--mlt-section-padding) 24px;
  text-align: center;
  position: relative;
}

/* Make CTA with background break out to full width */
.mlt-lp__cta[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: 24px;
  padding-right: 24px;
}

/* Center content inside full-width CTA */
.mlt-lp__cta[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) h2,
.mlt-lp__cta[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__cta-body,
.mlt-lp__cta[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__cta-list,
.mlt-lp__cta[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__cta-buttons,
.mlt-lp__cta[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__cta-contact,
.mlt-lp__cta[class*="mlt-lp__bg--"]:not(.mlt-lp__bg--default) .mlt-lp__cta-badges {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mlt-lp__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mlt-primary), transparent);
}

.mlt-lp__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mlt-primary), transparent);
}

.mlt-lp__cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.mlt-lp__cta h2 {
  font-family: var(--mlt-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.mlt-lp__cta-body {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.85;
}

.mlt-lp__cta-body p {
  margin: 0;
}

.mlt-lp__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.mlt-lp__cta-buttons .field__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.mlt-lp__cta-buttons a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--mlt-transition);
}

.mlt-lp__cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.mlt-lp__cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mlt-lp__cta-contact-item i {
  color: var(--mlt-primary);
  font-size: 24px;
}

.mlt-lp__cta-contact-item a {
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mlt-lp__cta-contact-item a:hover {
  color: var(--mlt-primary);
}

@media (max-width: 767px) {
  .mlt-lp__cta-contact {
    flex-direction: column;
    gap: 20px;
  }
}

/* CTA Feature List */
.mlt-lp__cta-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.mlt-lp__cta-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
}

.mlt-lp__cta-list li::before {
  content: '✓';
  color: var(--mlt-primary);
  font-weight: bold;
  font-size: 1.1em;
}

/* CTA Trust Badges */
.mlt-lp__cta-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--mlt-bg-dark-border);
}

.mlt-lp__cta-badges .field__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  align-items: center;
}

.mlt-lp__cta-badges img {
  height: 50px;
  width: auto;
  opacity: 0.7;
  transition: all var(--mlt-transition);
}

.mlt-lp__cta-badges img:hover {
  opacity: 1;
  transform: scale(1.05);
}
