:root {
  --primary-color: #f97316;
  --secondary-color: #1e293b;
  --bg-light: #f8fafc;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --border-color: #e2e8f0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header {
  font-family: system-ui, -apple-system, sans-serif;
  background: var(--secondary-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-flex nav {
  margin-left: auto;
}

.logo-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  text-decoration: none;
  line-height: 1.1;
}

.logo .logo-highlight {
  color: var(--primary-color);
}

.logo-subtitle {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
}

/* Desktop Underline Animation */ @media (min-width: 769px) {
  .nav-links a:not(.header-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
  }
  .nav-links a:not(.header-cta):hover::after, .nav-links a:not(.header-cta).active::after {
    width: 100%;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta {
  background: var(--primary-color);
  color: white !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}

.header-cta:hover {
  opacity: 0.9;
}

.mobile-cta {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  z-index: 1002;
  padding: 12px;
  min-width: 44px;
  min-height: 44px;
  transition: transform 0.3s ease;
  display: none;
  /* Hidden on desktop */ align-items: center;
  justify-content: center;
}

.menu-icon, .menu-icon span {
  display: block;
}

.menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
}

.menu-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.18s ease;
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:nth-child(3) {
  top: 16px;
}

.mobile-menu-btn.is-open .menu-icon span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.is-open .menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.5);
}

.mobile-menu-btn.is-open .menu-icon span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(15, 23, 42, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  html.mobile-menu-open, html.mobile-menu-open body {
    overflow: hidden;
  }
  .logo {
    font-size: 1.2rem;
  }
  .logo-subtitle {
    font-size: 0.55rem;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-height: auto;
    background: var(--secondary-color);
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 0.2s ease;
    transform: translateY(-10px);
    z-index: 1001;
    visibility: hidden;
    opacity: 0;
  }
  .nav-links.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .nav-links a {
    font-size: 1.25rem;
  }
  @keyframes dotPulse {
    0% {
      transform: translateY(-50%) scale(1);
    }
    50% {
      transform: translateY(-50%) scale(1.4);
      opacity: 0.7;
    }
    100% {
      transform: translateY(-50%) scale(1);
    }
  }
  .nav-links a:not(.header-cta) {
    position: relative;
    padding-left: 20px;
  }
  .nav-links a:not(.header-cta)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease;
  }
  .nav-links a:not(.header-cta):hover::before, .nav-links a:not(.header-cta).active::before {
    opacity: 1;
    animation: dotPulse 2s infinite ease-in-out;
  }
  .nav-actions {
    display: none;
  }
  .mobile-cta {
    display: block;
    width: 100%;
  }
  .mobile-cta .header-cta {
    display: block;
    width: 100%;
    text-align: center;
  }
}

:root {
  --primary-color: #f97316;
  --secondary-color: #1e293b;
  --text-light: #f8fafc;
  --text-dim: #94a3b8;
  --border-dark: #334155;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-footer {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 80px 0 0;
  font-family: system-ui, -apple-system, sans-serif;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.logo-group {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.1;
}

.logo .logo-highlight {
  color: var(--primary-color);
}

.logo-subtitle {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  margin-top: 40px;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  color: var(--text-dim);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .logo-group {
    align-items: center;
  }
  .logo {
    font-size: 1.2rem;
  }
  .logo-subtitle {
    font-size: 0.55rem;
  }
  .footer-links {
    justify-content: center;
    gap: 20px;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
