/* ============================================================
   LEGALLYMAIL.COM — BAJA DE SEGUROS — ESTILOS COMPARTIDOS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;600;700;900&display=swap');

:root {
  /* LegallyMail brand colors */
  --lm-blue: #1a56db;
  --lm-blue-dark: #1e3a8a;
  --lm-blue-light: #3b82f6;
  --lm-navy: #0f172a;
  --lm-teal: #0ea5e9;
  --lm-gold: #f59e0b;
  --lm-gold-light: #fbbf24;
  --lm-green: #10b981;
  --lm-red: #ef4444;

  --primary: var(--lm-blue);
  --primary-dark: var(--lm-blue-dark);
  --accent: var(--lm-red);
  --accent-light: #f87171;
  --success: var(--lm-green);
  --warning: var(--lm-gold);

  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-900: #0f172a;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--neutral-900);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== SITE HEADER (LegallyMail) ===== */
.navbar-custom {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1030;
  padding: 6px 16px;
}

.navbar-custom .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
  margin: 0 auto;
  position: relative;
}

.navbar-custom .navbar-brand img {
  height: 75px;
  max-height: 75px;
  display: block;
  transition: transform 0.3s ease;
}

.navbar-custom .navbar-brand:hover img {
  transform: scale(1.03);
}

.navbar-custom .navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  margin-left: 24px;
}

.navbar-custom .navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.navbar-custom .navbar-nav.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.navbar-custom .nav-link {
  color: #475569 !important;
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.navbar-custom .nav-link:hover {
  color: #0056b3 !important;
}

.navbar-custom .dropdown {
  position: relative;
}

.navbar-custom .dropdown-menu {
  list-style: none !important;
  list-style-type: none !important;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
  min-width: 240px;
  z-index: 1000;
  margin-top: 8px;
}
.navbar-custom .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}


.navbar-custom .dropdown-menu-end {
  left: auto;
  right: 0;
}

.navbar-custom .dropdown-menu.show,
.navbar-custom .dropdown:hover .dropdown-menu {
  display: block;
}

.navbar-custom .dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #334155 !important;
  text-decoration: none;
  font-size: 0.88rem;
  transition: background-color 0.2s;
  text-align: left;
}

.navbar-custom .dropdown-item:hover {
  background-color: #f1f5f9;
  color: #0056b3 !important;
}

.navbar-custom .btn-register {
  background: linear-gradient(45deg, #0056b3, #007bff);
  color: #ffffff !important;
  border: none;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.55rem 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 56, 179, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.navbar-custom .btn-register:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 56, 179, 0.3);
  background: linear-gradient(45deg, #004494, #0056b3);
}

/* Hamburger Menu Styles */
.navbar-custom .mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.navbar-custom .hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #334155;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-custom .mobile-menu-btn.expanded .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-custom .mobile-menu-btn.expanded .hamburger-line:nth-child(2) {
  opacity: 0;
}

.navbar-custom .mobile-menu-btn.expanded .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 992px) {
  .navbar-custom .mobile-menu-btn {
    display: flex;
  }
  
  .navbar-custom .navbar-collapse {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    z-index: 999;
  }
  
  .navbar-custom .navbar-collapse.show {
    display: flex;
  }
  
  .navbar-custom .navbar-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  
  .navbar-custom .dropdown-menu {
  list-style: none !important;
  list-style-type: none !important;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    background: #f8fafc;
  }
}


/* ===== HERO ===== */
.hero {
  background-color: #0f172a;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1a56db 100%) !important;
  color: #ffffff !important;
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--lm-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100%{opacity:1;transform:scale(1)}
  50%{opacity:.6;transform:scale(1.3)}
}

.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  color: #ffffff !important;
}

.hero h1 em {
  font-style: normal;
  color: var(--lm-gold-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 700px;
  margin-bottom: 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
  justify-content: center;
  width: 100%;
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.9rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--lm-gold-light);
}

.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

/* ===== LEGALLYMAIL CTA BOX ===== */
.lm-cta-box {

  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 2px solid #93c5fd;
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 32px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.lm-cta-box-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
}

.lm-cta-box-content h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--lm-blue-dark);
  margin-bottom: 10px;
}

.lm-cta-box-content p {
  color: var(--neutral-700);
  line-height: 1.65;
  font-size: 0.97rem;
  margin-bottom: 16px;
}

.btn-legallymail {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--lm-blue), var(--lm-teal));
  color: #fff !important;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  padding: 12px 26px;
  font-size: 0.97rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(26, 86, 219, 0.2);
}

.btn-legallymail:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 28px rgba(26, 86, 219, 0.45);
  background: linear-gradient(135deg, #1e40af, #0ea5e9);
}

/* ===== CONTAINERS ===== */
.container { max-width: 860px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ===== SECTIONS ===== */
section { padding: 64px 20px; }
section:nth-child(even) { background: var(--neutral-50); }

.section-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--lm-blue), var(--lm-teal));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

h2.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 800;
  color: var(--lm-navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-desc {
  color: var(--neutral-600);
  font-size: 1.05rem;
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ===== STEPS ===== */
.steps-grid { display: grid; gap: 20px; }

.step-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.step-num {
  min-width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--lm-blue), var(--lm-teal));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--lm-navy); margin-bottom: 8px; }
.step-content p { color: var(--neutral-600); line-height: 1.65; font-size: 0.96rem; }

/* ===== CHANNELS ===== */
.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

@media (min-width: 768px) {
  .channels-grid, .contact-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}


.channel-card {
  background: #fff;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lm-blue), var(--lm-teal));
  opacity: 0;
  transition: opacity 0.25s;
}

.channel-card:hover::before { opacity: 1; }
.channel-card:hover { border-color: var(--lm-blue); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.channel-card:hover * { position: relative; z-index: 1; color: #fff !important; }

.channel-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.channel-badge { position: absolute; top: 12px; right: 12px; background: var(--lm-green); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.channel-card.best { border-color: var(--lm-green); }
.channel-card h3 { font-size: 1rem; font-weight: 700; color: var(--lm-navy); margin-bottom: 8px; }
.channel-card p { font-size: 0.87rem; color: var(--neutral-600); line-height: 1.5; }
.channel-card a { color: var(--lm-blue); text-decoration: none; }

/* ===== LETTER BOX ===== */
.letter-box {
  background: linear-gradient(135deg, #f8fafc, #fff);
  border: 2px dashed var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  font-family: 'Georgia', serif;
  line-height: 1.8;
  position: relative;
}

.letter-box::before {
  content: '📄 Modelo de carta de baja';
  position: absolute;
  top: -14px;
  left: 24px;
  background: linear-gradient(135deg, var(--lm-blue), var(--lm-teal));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
}

.letter-box p { margin-bottom: 12px; color: var(--neutral-700); }
.letter-box .placeholder {
  background: var(--lm-gold-light);
  color: #1a1a1a;
  border-radius: 4px;
  padding: 1px 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85em;
  font-weight: 700;
}

.copy-btn {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--lm-blue), var(--lm-teal));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.copy-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.35); }
.copy-btn.copied { background: linear-gradient(135deg, var(--lm-green), #059669); }

/* ===== INFO BOXES ===== */
.info-box {
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 28px 0;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.info-box.warning { background: linear-gradient(135deg,#fff7ed,#fef3c7); border-left: 5px solid var(--lm-gold); }
.info-box.danger { background: linear-gradient(135deg,#fff1f2,#ffe4e6); border-left: 5px solid var(--lm-red); }
.info-box.success { background: linear-gradient(135deg,#ecfdf5,#d1fae5); border-left: 5px solid var(--lm-green); }
.info-box.lm-blue { background: linear-gradient(135deg,#eff6ff,#dbeafe); border-left: 5px solid var(--lm-blue); }
.info-box-icon { font-size: 1.9rem; flex-shrink: 0; }
.info-box-content h4 { font-weight: 700; color: var(--neutral-900); margin-bottom: 6px; font-size: 1rem; }
.info-box-content p { color: var(--neutral-700); font-size: 0.94rem; line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 14px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--lm-navy);
  gap: 14px;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--neutral-50); }

.faq-arrow {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--neutral-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 13px;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--lm-blue); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 22px 18px; color: var(--neutral-600); line-height: 1.7; font-size: 0.95rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--lm-navy) 0%, var(--lm-blue-dark) 40%, var(--lm-blue) 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--lm-gold), var(--lm-gold-light));
  color: var(--lm-navy) !important;
  text-decoration: none;
  border: none;
  border-radius: var(--radius);
  padding: 15px 32px;
  font-size: 1.02rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: 'Inter', sans-serif;
  position: relative;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(245,158,11,0.5); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  color: #fff !important;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  padding: 13px 26px;
  font-size: 0.97rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: 'Inter', sans-serif;
  margin-left: 12px;
}

.btn-secondary:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

/* ===== CONTACT GRID ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 28px; }

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.contact-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--neutral-600); }
.contact-value { font-size: 0.95rem; font-weight: 600; color: var(--lm-navy); word-break: break-word; }
.contact-value a { color: var(--lm-blue); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* ===== TABLE ===== */
.data-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.data-table th { background: linear-gradient(135deg, var(--lm-blue-dark), var(--lm-blue)); color: #fff; padding: 15px 18px; text-align: left; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.03em; }
.data-table td { padding: 13px 18px; border-bottom: 1px solid var(--neutral-100); color: var(--neutral-700); font-size: 0.93rem; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--neutral-50); }

/* ===== TAGS ===== */
.tag { display: inline-flex; align-items: center; gap: 4px; background: var(--neutral-100); color: var(--neutral-700); border-radius: 100px; padding: 4px 12px; font-size: 0.83rem; font-weight: 600; }
.tag.green { background: #d1fae5; color: #065f46; }
.tag.red { background: #ffe4e6; color: #9f1239; }
.tag.blue { background: #dbeafe; color: #1e40af; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 10px 20px; max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 7px; font-size: 0.83rem; color: var(--neutral-600); flex-wrap: wrap; }
.breadcrumb a { color: var(--neutral-600); text-decoration: none; }
.breadcrumb a:hover { color: var(--lm-blue); }
.breadcrumb .sep { opacity: 0.5; }
.breadcrumb .current { color: var(--neutral-900); font-weight: 600; }

/* ===== FOOTER (LegallyMail) ===== */
.site-footer-lm {
  background: #0f172a !important;
  color: #94a3b8 !important;
  padding: 64px 20px 32px !important;
  font-size: 0.9rem;
}

.site-footer-lm a {
  color: #94a3b8 !important;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer-lm a:hover {
  color: #ffffff !important;
}

.site-footer-lm h5, .site-footer-lm h6 {
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

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

.site-footer-lm ul li {
  margin-bottom: 10px;
}

.site-footer-lm ul li i {
  color: #3b82f6;
}

.site-footer-lm .row {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr 1.2fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer-lm .download-badge {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2) !important;
  display: flex;
  align-items: center;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.site-footer-lm .download-badge:hover {
  background-color: rgba(255,255,255,0.1);
}

.site-footer-lm .badge {
  display: inline-block;
  font-weight: 700;
  border-radius: 50px;
  margin-bottom: 4px;
}

.site-footer-lm hr {
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 32px 0;
}

.site-footer-lm .service-status-indicator {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: inline-block;
}

.site-footer-lm .social-links a {
  font-size: 1.2rem;
  background: rgba(255,255,255,0.05);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 8px;
}

.site-footer-lm .social-links a:hover {
  background: #2563eb;
}

@media (max-width: 992px) {
  .site-footer-lm .row {
    grid-template-columns: 1.5fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero { padding: 56px 20px 72px; }
  .hero-stats { gap: 24px; }
  .channels-grid { grid-template-columns: 1fr 1fr; }
  .letter-box { padding: 24px 18px; }
  .btn-secondary { margin-left: 0; margin-top: 12px; }
  .cta-banner { padding: 56px 20px; }
  .lm-cta-box { flex-direction: column; }
  
  .site-footer-lm .row {
    grid-template-columns: 1fr;
  }
  .site-footer-lm .social-links {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .channels-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .step-card { flex-direction: column; }
}

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

/* ===== BOOTSTRAP UTILITIES FOR HEADER & FOOTER ===== */
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.align-items-center { align-items: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-center { justify-content: center !important; }
.flex-wrap { flex-wrap: wrap !important; }
.me-1 { margin-right: 0.25rem !important; }
.me-2 { margin-right: 0.5rem !important; }
.me-3 { margin-right: 1rem !important; }
.ms-1 { margin-left: 0.25rem !important; }
.ms-2 { margin-left: 0.5rem !important; }
.ms-lg-2 { margin-left: 0.5rem !important; }
.ms-auto { margin-left: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-4 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-md-4 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.text-white { color: #fff !important; }
.text-muted { color: #94a3b8 !important; }
.small { font-size: 0.825em !important; }
.fw-bold { font-weight: 700 !important; }
.rounded-3 { border-radius: 8px !important; }
.border { border: 1px solid rgba(255,255,255,0.15) !important; }
.list-unstyled { list-style: none !important; padding-left: 0 !important; }
.bg-dark { background-color: #0f172a !important; }
.text-start { text-align: left !important; }
.text-center { text-align: center !important; }
.text-primary { color: #3b82f6 !important; }
.text-success { color: #10b981 !important; }
.text-info { color: #0ea5e9 !important; }
.text-warning { color: #f59e0b !important; }
.text-danger { color: #ef4444 !important; }
.rounded-pill { border-radius: 50rem !important; }
.bg-primary { background-color: #3b82f6 !important; }
.bg-success { background-color: #10b981 !important; }
.bg-info { background-color: #0ea5e9 !important; }
.text-dark { color: #0f172a !important; }
.img-fluid { max-width: 100% !important; height: auto !important; }
.container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; }
@media (min-width: 992px) {
  .ms-lg-2 { margin-left: 0.5rem !important; }
}



.navbar-custom .dropdown-menu li {
  list-style: none !important;
  list-style-type: none !important;
}
