:root {
  --bg-dark: #0a0a14;
  --card-bg: #14141e;
  --card-border: rgba(255, 255, 255, 0.05);
  --purple: #7e6dff;
  --purple-dark: #4f39f6;
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --red: #ff4a4a;
  --green: #00e676;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative !important;
  background-color: var(--bg-dark);
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  line-height: 1.6;
}

.lm-hero,
.lm-container,
.lm-hero *,
.lm-container * {
  font-family: "Stolzl", "Inter", sans-serif !important;
  box-sizing: border-box !important;
}

.lm-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 24px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin-top: 0 !important;
  line-height: 1.2 !important;
}

h1 {
  font-size: 64px !important;
  font-weight: 800 !important;
  margin-bottom: 24px !important;
}
h2 {
  font-size: 47px !important;
  font-weight: 700 !important;
  margin-bottom: 24px !important;
}
h3 {
  font-size: 36px !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
}
h4 {
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 8px !important;
}

p {
  margin-bottom: 18px !important;
  color: var(--text-muted) !important;
  font-size: 16px !important;
}
.text-purple {
  color: var(--purple) !important;
}

/*
    HERO SECTION
*/
.lm-hero {
  position: relative !important;
  width: 100% !important;
  margin-bottom: 100px !important;
}


.lm-hero-inner {
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 10px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
}

.lm-hero-content {
  flex: 1 !important;  
  max-width: 500px !important;
  padding-top: 80px !important;
}

.lm-hero-image-square img {
    max-width: 100% !important;
    height: auto !important;
    max-width: 500px !important;
    transform: scale(3) !important; 
    mix-blend-mode: lighten !important;
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%) !important;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 80%) !important;
}

.lm-hero-image-square img {
    max-width: 100% !important;
    height: auto !important;
    max-width: 500px !important;
}

.lm-hero-content h1 {
  font-size: 72px !important;
  line-height: 1.05 !important;
  margin-bottom: 24px !important;
}

.lm-lead {
  font-size: 20px !important;
  color: var(--text-main) !important;
  font-weight: 600 !important;
}
.lm-small {
  font-size: 14px !important;
}

/*
   FINE PRINT SECTION
*/
.lm-fine-print {
  display: flex !important;
  align-items: center !important;
  gap: 60px !important;
  margin-bottom: 100px !important;
}

.lm-fp-content {
  flex: 1 !important;
}

.lm-fp-image {
  flex: 1 !important;
  display: flex !important;
  justify-content: center !important;
  scale: 3 !important;
}

.lm-fp-image img {
  max-width: 100% !important;
  height: auto !important;
  filter: drop-shadow(0 0 40px rgba(126, 109, 255, 0.2));
}

/*
   GENERAL SECTIONS
*/
.lm-section {
  margin-bottom: 80px !important;
}
.lm-center-text {
  text-align: center !important;
}
.lm-center-text p {
  max-width: 800px !important;
  margin: 0 auto 40px auto !important;
}

/*
   COMPARISON CARDS
*/
.lm-comparison-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 30px !important;
  margin-top: 40px !important;
}

.lm-card {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  position: relative !important;
  transition: transform 0.3s ease !important;
}

.lm-card-red {
  box-shadow: 0 30px 50px -30px rgba(255, 74, 74, 0.25);
}
.lm-card-green {
  box-shadow: 0 30px 50px -30px rgba(0, 201, 80, 0.25);
}

.lm-card-icon {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 20px !important;
  margin-bottom: 24px !important;
}

.red-icon {
  background: rgba(255, 74, 74, 0.1);
  color: var(--red);
}
.green-icon {
  background: rgba(0, 230, 118, 0.1);
  color: var(--green);
}

/*
   CUSTOM LISTS
*/
.lm-list-title {
  margin-bottom: 12px !important;
  font-weight: 600 !important;
  color: var(--text-main) !important;
}

.lm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lm-list li {
  position: relative !important;
  padding-left: 32px !important;
  margin-bottom: 16px !important;
  color: var(--text-muted) !important;
  font-size: 15px !important;
}

.lm-list li::before {
  content: "";
  position: absolute;
  left: 0 !important;
  top: 4px !important;
  width: 18px !important;
  height: 18px !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center;
}

.lm-list-red li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FF4A4A'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3Cpath d='M16 8L8 16M8 8l8 8' stroke='%23FFF' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}
.lm-list-green li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2300C950'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3Cpath d='M7 12l3.5 3.5L17 8' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.lm-list-purple li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237E6DFF'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3Cpath d='M20 6L9 17L4 12' stroke='%23FFF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/*
   CTA BANNER
*/
.lm-cta-banner {
  background: rgba(126, 109, 255, 0.1);
  border: 1px solid rgba(126, 109, 255, 0.2);
  border-radius: 16px;
  padding: 32px 40px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 100px !important;
}

.lm-cta-text {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
}

.lm-cta-text h4 {
  margin: 0 0 4px 0 !important;
}
.lm-cta-text p {
  margin: 0 !important;
  font-size: 14px !important;
}
.lm-cta-icon {
  font-size: 32px !important;
}

.lm-btn-primary {
  background: var(--purple-dark);
  color: white !important;
  text-decoration: none !important;
  padding: 14px 28px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
  white-space: nowrap !important;
}

.lm-btn-primary:hover {
  background: var(--purple) !important;
}

/*
   TIPS GRID 
*/
.lm-tips-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  position: relative !important;
}

.lm-tips-grid::before {
  content: "";
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100vw !important;
  height: 150% !important;
  background: radial-gradient(
    ellipse at center,
    rgba(126, 109, 255, 0.08) 0%,
    transparent 60%
  );
  z-index: -1;
  pointer-events: none;
}

.lm-tip-card {
  background: var(--card-bg) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 16px !important;
  padding: 32px 24px !important;
  text-align: left !important;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.lm-tip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(126, 109, 255, 0.15);
}

.lm-tip-icon {
  width: 48px !important;
  height: 48px !important;
  background: rgba(126, 109, 255, 0.08) !important;
  border: 1px solid rgba(126, 109, 255, 0.15) !important;
  border-radius: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
}

.lm-tip-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.lm-tip-card h4 {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
  margin: 0 0 12px 0 !important;
  color: var(--text-main) !important;
}

.lm-tip-card p {
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  color: var(--text-muted) !important;
  margin: 0 !important;
}
/*
   FOOTER
*/
.lm-footer {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-top: 100px !important;
  padding-top: 40px !important;
  border-top: 1px solid var(--card-border) !important;
}

.lm-footer-left p {
  margin: 0 0 16px 0 !important;
  font-size: 14px !important;
}
.lm-socials {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  font-size: 14px !important;
  color: var(--text-muted) !important;
}
.lm-socials a {
  color: var(--text-main) !important;
  text-decoration: none !important;
  font-weight: 600 !important;
}
.lm-social-links {
  display: flex !important;
  gap: 16px !important;
}
.lm-logo {
  height: 40px !important;
  opacity: 0.8 !important;
}

/*
   RESPONSIVE DESIGN
*/
@media (max-width: 900px) {
  h1 {
    font-size: 48px !important;
  }

  .lm-hero-inner {
        flex-direction: column !important;
        text-align: center !important;
        gap: 0 !important;
    }

    .lm-hero-content {
        max-width: 100% !important; 
    }

    .lm-hero-image-square {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 20px !important;
        margin-bottom: 140px !important; 
    }
    .lm-hero-image-square img {
        display: block !important;
        margin: 0 auto !important; 
        transform-origin: center center !important;
        transform: scale(3) !important; 
    }

  .lm-fine-print {
    flex-direction: column !important;
    text-align: center !important;
    gap: 40px !important;
  }

  .lm-fp-image {
    padding-top: 10% !important;
    padding-bottom: 5% !important;
  }

  .lm-list li {
    text-align: left !important;
  }

  .lm-comparison-grid {
    grid-template-columns: 1fr !important;
  }
  .lm-tips-grid {
    grid-template-columns: 1fr 1fr !important;
  }

  .lm-cta-banner {
    flex-direction: column !important;
    text-align: center !important;
    gap: 24px !important;
  }
  .lm-cta-text {
    flex-direction: column !important;
  }

  .lm-footer {
    flex-direction: column !important;
    gap: 24px !important;
    align-items: flex-start !important;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 28px !important;
  }

  .lm-hero-content h1 {
    font-size: 42px !important;
  }
  .lm-tips-grid {
    grid-template-columns: 1fr !important;
  }
  .lm-container {
    padding: 40px 16px !important;
  }
}
