*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --lp-navy: #001b44;
  --lp-gold: #c5a059;
  --lp-gold-light: #e8d5b5;
  --lp-city-bg: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=2070&auto=format&fit=crop");
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #e2e8f0;
  min-height: 100vh;
  background-color: var(--lp-navy);
  background-image:
    radial-gradient(ellipse at top center, rgba(100, 150, 255, 0.14) 0%, rgba(0, 27, 68, 0.55) 50%, rgba(0, 27, 68, 0.92) 100%),
    var(--lp-city-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

@media (min-width: 1025px) {
  body {
    background-image:
      radial-gradient(ellipse at top center, rgba(100, 150, 255, 0.25) 0%, rgba(0, 27, 68, 1) 75%),
      var(--lp-city-bg);
    background-attachment: fixed;
  }
}

a { color: inherit; }

.lp-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px 12px;
  background: #050a14;
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  min-width: 0;
}

.lp-header-logo-wrap {
  height: 60px;
  max-width: min(320px, 94vw);
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lp-header img {
  height: 68px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
  display: block;
  flex-shrink: 0;
  transform: scale(1.14);
  transform-origin: center center;
}

@media (min-width: 768px) {
  .lp-header { padding: 12px 24px 14px; }
  .lp-header-logo-wrap {
    height: 72px;
    max-width: min(400px, 92vw);
  }
  .lp-header img {
    height: 82px;
    transform: scale(1.2);
  }
}

#landing-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lp-hero {
  position: relative;
  overflow: hidden;
  padding: 40px 18px 56px;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-hero { padding: 72px 32px 88px; }
}

.lp-hero-glow {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(197, 160, 89, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
}

.lp-kicker {
  display: inline-block;
  margin: 0 0 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--lp-gold-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 768px) { .lp-kicker { font-size: 13px; } }

.lp-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .lp-hero h1 { font-size: clamp(38px, 5vw, 56px); }
}

.lp-gradient-text {
  background: linear-gradient(105deg, #fff 0%, var(--lp-gold-light) 40%, var(--lp-gold) 75%, #fff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: lp-shimmer 7s ease-in-out infinite alternate;
}

@keyframes lp-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.lp-lead {
  margin: 0 auto 28px;
  max-width: 640px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(226, 232, 240, 0.92);
  font-weight: 500;
}

@media (min-width: 768px) { .lp-lead { font-size: 18px; } }

.lp-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--lp-gold) 0%, #a38141 100%);
  color: var(--lp-navy);
  box-shadow: 0 16px 40px rgba(197, 160, 89, 0.35);
  animation: lp-float 5s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 48px rgba(197, 160, 89, 0.45);
}

@media (min-width: 768px) {
  .lp-btn-primary { padding: 16px 36px; font-size: 16px; }
}

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.lp-btn-primary:hover {
  animation: none;
  transform: translateY(-2px);
}

.lp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lp-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 768px) {
  .lp-btn-secondary { padding: 16px 28px; font-size: 15px; }
}

.lp-band {
  position: relative;
  z-index: 1;
  margin: 0 -18px;
  padding: 32px 18px 44px;
  background: linear-gradient(180deg, rgba(0, 11, 32, 0.94) 0%, rgba(0, 7, 22, 0.97) 45%, rgba(0, 12, 36, 0.95) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid rgba(197, 160, 89, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .lp-band {
    margin: 0 -32px;
    padding: 44px 32px 56px;
  }
}

.lp-section-title {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin: 0 0 14px;
  text-align: center;
}

@media (min-width: 768px) {
  .lp-section-title { font-size: 13px; margin-bottom: 14px; }
}

.lp-wrap { max-width: 1120px; margin: 0 auto; }

.lp-grid-3 {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .lp-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.lp-grid-2 {
  display: grid;
  gap: 18px;
}

@media (min-width: 768px) {
  .lp-grid-2 { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.lp-card {
  background: linear-gradient(165deg, rgba(10, 32, 62, 0.9) 0%, rgba(4, 16, 42, 0.94) 100%);
  border: 1px solid rgba(197, 160, 89, 0.28);
  border-radius: 18px;
  padding: 20px 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

@media (min-width: 768px) {
  .lp-card { border-radius: 24px; padding: 28px 32px; }
}

.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.35);
  border-color: rgba(197, 160, 89, 0.45);
}

.lp-card h3 {
  margin: 0 0 10px;
  color: var(--lp-gold);
  font-size: 16px;
  font-weight: 900;
}

.lp-card h3.lp-region-title {
  margin-bottom: 14px;
  font-size: 17px;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .lp-card h3 { font-size: 18px; }
}

.lp-card p {
  margin: 0;
  color: rgba(241, 245, 249, 0.94);
  line-height: 1.55;
  font-size: 14px;
}

@media (min-width: 768px) { .lp-card p { font-size: 15px; } }

.lp-price-wrap { max-width: 720px; margin: 0 auto; text-align: center; }

.lp-price-card {
  border: 2px solid rgba(197, 160, 89, 0.45);
  background: linear-gradient(165deg, rgba(24, 52, 92, 0.72) 0%, rgba(6, 22, 52, 0.92) 100%);
}

.lp-price-label {
  font-size: 14px;
  color: var(--lp-gold-light);
  font-weight: 800;
  margin-bottom: 8px;
}

@media (min-width: 768px) { .lp-price-label { font-size: 15px; } }

.lp-price-amount {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

@media (min-width: 768px) { .lp-price-amount { font-size: 48px; } }

.lp-price-amount span { font-size: 0.45em; color: var(--lp-gold); }

.lp-price-body {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(241, 245, 249, 0.9);
}

@media (min-width: 768px) { .lp-price-body { font-size: 14px; } }

.lp-price-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(203, 213, 225, 0.96);
  font-weight: 600;
}

.lp-industries-lead {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 28px;
  color: rgba(241, 245, 249, 0.92);
  font-size: 14px;
  line-height: 1.6;
}

@media (min-width: 768px) { .lp-industries-lead { font-size: 16px; } }

.lp-chip {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.38);
  color: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 700;
  margin: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (min-width: 768px) {
  .lp-chip { font-size: 13px; padding: 8px 14px; }
}

.lp-chips { line-height: 1.85; }

.lp-cta-strip {
  margin-top: auto;
  padding: 28px 18px calc(28px + 56px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(90deg, var(--lp-navy) 0%, #0a2463 50%, var(--lp-navy) 100%);
  border-top: 4px solid var(--lp-gold);
  text-align: center;
}

@media (min-width: 768px) {
  .lp-cta-strip { padding: 36px 32px; }
}

.lp-cta-strip p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 700;
}

@media (min-width: 768px) { .lp-cta-strip p { font-size: 18px; } }

.lp-cta-strip .lp-btn-primary {
  animation: none;
  background: linear-gradient(135deg, var(--lp-gold) 0%, var(--lp-gold-light) 45%, var(--lp-gold) 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  padding: 13px 26px;
  font-size: 14px;
}

@media (min-width: 768px) {
  .lp-cta-strip .lp-btn-primary {
    padding: 14px 32px;
    font-size: 15px;
  }
}

.lp-fab {
  position: fixed;
  z-index: 1005;
  border: none;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(135deg, var(--lp-gold) 0%, #a38141 100%);
  color: var(--lp-navy);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  right: 16px;
  max-width: min(340px, calc(100vw - 32px));
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lp-fab {
    bottom: 28px;
    right: 28px;
    padding: 16px 26px;
    font-size: 14px;
    max-width: none;
  }
}

.lp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.lp-section { padding-bottom: 36px; }

@media (min-width: 768px) { .lp-section { padding-bottom: 48px; } }

@media (prefers-reduced-motion: reduce) {
  .lp-gradient-text { animation: none; }
  .lp-btn-primary { animation: none; }
  .lp-card { transition: none; }
}
