.lv-header,
.lv-footer,
.lv-header *,
.lv-footer *,
.lv-mobile-overlay,
.lv-mobile-panel,
.lv-mobile-panel * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', -apple-system, system-ui, 'Segoe UI', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.lv-header a,
.lv-footer a,
.lv-mobile-panel a {
  text-decoration: none;
  color: inherit;
}

.lv-section {
  max-width: 1280px;
  min-width: 300px;
  width: 90%;
  margin: 0 auto;
}

#container .css-exq74d {
  height: auto !important;
}

/* ===== HEADER ===== */

.lv-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: white;
  padding: 10px 0 24px 0;
  border-bottom: 1px solid #f5f5f4;
}

.lv-header .lv-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
  min-height: 16px;
}

.lv-header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 12px 0;
  width: 20%;
  flex-shrink: 0;
}

.lv-header-logo a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lv-header-logo-gif {
  width: 36px;
  height: 36px;
  display: block;
  object-fit: contain;
}

.lv-header-logo-text {
  width: 80px;
  height: 35px;
  display: block;
  object-fit: contain;
  margin: 10px 0 0 0;
}

.lv-header-est {
  font: normal 400 14px/1.3 'Roboto', sans-serif;
  color: #475569;
}

.lv-header-right {
  display: flex;
  align-items: center;
  width: 80%;
  justify-content: flex-end;
}

.lv-header-nav {
  display: flex;
  align-items: center;
  gap: 8px 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lv-header-nav a {
  font: normal 400 14px/1.3 'Roboto', sans-serif;
  color: #475569;
  text-decoration: none;
  transition: color 0.15s;
}

.lv-header-nav a:hover {
  color: #5281D1;
}

.lv-header-cta {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
  position: relative;
  padding: 0 16px 0 0;
}

.lv-header-cta-signin {
  font: normal 500 16px/1.5 'Roboto', sans-serif;
  color: #1e293b !important;
  border: 2px solid #e94a38;
  border-radius: 8px;
  padding: 4px 12px 5px;
  margin-left: 28px;
  flex: 0 0 auto;
  transition: color 0.15s;
  display: inline-block;
}

.lv-header-cta-signin:hover {
  color: #e94a38 !important;
}

.lv-header-cta-try {
  font: normal 400 16px/1.5 'Roboto', sans-serif;
  color: #ffffff !important;
  background: #e94a38;
  border-radius: 8px;
  padding: 6px 12px 7px;
  margin-left: 16px;
  flex: 0 0 auto;
  transition: background 0.15s;
  display: inline-block;
}

.lv-header-cta-try:hover {
  background: #dd3e5a;
}

.lv-header-cta-info {
  font: normal 400 14px/1.3 'Roboto', sans-serif;
  color: #475569;
  position: absolute;
  top: 36px;
  right: -60px;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.lv-header-menu-btn {
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  background: none;
  color: #1e293b;
  font-family: inherit;
  padding: 0;
  margin-left: 16px;
}

.lv-header-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile side panel */
.lv-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 59, 0.3);
  z-index: 100;
}

.lv-mobile-overlay.open {
  display: block;
}

.lv-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: #fff;
  box-shadow: 0px 5px 5px rgba(0,0,0,0.1);
  z-index: 101;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  padding: 24px;
}

.lv-mobile-panel.open {
  transform: translateX(0);
}

.lv-mobile-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.lv-mobile-close button {
  border: none;
  background: none;
  cursor: pointer;
  color: #1e293b;
  padding: 4px;
}

.lv-mobile-close svg {
  width: 24px;
  height: 24px;
}

.lv-mobile-nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.lv-mobile-nav-group a {
  font-size: 16px;
  font-weight: 400;
  color: #475569;
  padding: 8px 0;
  display: block;
}

.lv-mobile-nav-group a:hover {
  color: #5281D1;
}

.lv-mobile-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 1px solid #f5f5f4;
}

.lv-mobile-cta .lv-header-cta-signin,
.lv-mobile-cta .lv-header-cta-try {
  text-align: center;
  display: block;
  margin-left: 0;
}

.lv-mobile-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid #f5f5f4;
  margin-bottom: 16px;
}

.lv-mobile-legal a {
  font-size: 14px;
  color: #A4A2A9;
  padding: 4px 0;
}

.lv-mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.lv-mobile-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
}

.lv-mobile-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.lv-mobile-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lv-mobile-social a {
  display: flex;
}

.lv-mobile-social img {
  width: 24px;
  height: 24px;
}

/* ===== FOOTER ===== */

.lv-footer {
  padding: 80px 0 40px 0;
  border-top: 1px solid #f5f5f4;
  background: #fff;
}

.lv-footer-main {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.lv-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lv-footer-brand a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.lv-footer-tagline {
  font: normal 400 16px/1.5 'Roboto', sans-serif;
  color: #475569;
}

.lv-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lv-footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lv-footer-col-title {
  font: normal 400 20px/1.5 'Roboto', sans-serif;
  color: #1e293b;
  margin-bottom: 4px;
}

.lv-footer-col a {
  font: normal 400 16px/1.5 'Roboto', sans-serif;
  color: #475569;
  transition: color 0.15s;
}

.lv-footer-col a:hover {
  color: #5281D1;
}

.lv-footer-legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f5f5f4;
  padding-top: 50px;
  margin-bottom: 24px;
}

.lv-footer-legal-links {
  display: flex;
  gap: 24px;
}

.lv-footer-legal-links a {
  font: normal 400 16px/1.5 'Roboto', sans-serif;
  color: #475569;
  transition: color 0.15s;
}

.lv-footer-legal-links a:hover {
  color: #5281D1;
}

.lv-footer-social {
  display: flex;
  gap: 16px;
}

.lv-footer-social a {
  display: flex;
  transition: opacity 0.15s;
}

.lv-footer-social a:hover {
  opacity: 0.7;
}

.lv-footer-social img {
  width: 24px;
  height: 24px;
}

.lv-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lv-footer-copyright {
  font: normal 400 16px/1.5 'Roboto', sans-serif;
  color: #A4A2A9;
}

.lv-footer-contact {
  display: flex;
  gap: 24px;
}

.lv-footer-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  font: normal 400 16px/1.5 'Roboto', sans-serif;
  color: #475569;
  transition: color 0.15s;
}

.lv-footer-contact a:hover {
  color: #5281D1;
}

.lv-footer-contact svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .lv-header {
    padding: 8px 0;
  }

  .lv-header-logo {
    width: 50%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .lv-header-logo-text {
    margin: 0;
  }

  .lv-header-nav {
    display: none;
  }

  .lv-header-cta {
    display: none;
  }

  .lv-footer {
    padding: 60px 0;
  }

  .lv-footer-main {
    grid-template-columns: 1fr;
  }

  .lv-footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }

  .lv-footer-legal-row {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .lv-footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .lv-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .lv-footer-contact {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .lv-footer-columns {
    grid-template-columns: 1fr;
  }
}
